diff --git a/common/corpus/functions.txt b/common/corpus/functions.txt index dd35d2ce..3007c900 100644 --- a/common/corpus/functions.txt +++ b/common/corpus/functions.txt @@ -71,7 +71,7 @@ const lines = new Array() (identifier) (new_expression (identifier) - (type_arguments (type_identifier)) + (call_type_arguments (type_identifier)) (arguments))))) ================================== @@ -79,6 +79,7 @@ Function calls with optional chaining and type arguments ================================== A?.(); +A(); --- @@ -86,7 +87,12 @@ A?.(); (expression_statement (call_expression (identifier) - (type_arguments (type_identifier)) + (call_type_arguments (type_identifier)) + (arguments))) + (expression_statement + (call_expression + (identifier) + (call_type_arguments (array_type (type_identifier))) (arguments)))) ================================== diff --git a/common/define-grammar.js b/common/define-grammar.js index 2b61f7cb..686d155d 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -12,7 +12,6 @@ const PREC = { PLUS: 4, REL: 5, TIMES: 6, - TYPEOF: 7, EXTENDS: 7, NEG: 9, INC: 10, @@ -24,7 +23,8 @@ const PREC = { MEMBER: 14, TYPE_ASSERTION: 16, TYPE_REFERENCE: 16, - CONSTRUCTOR_TYPE: 17 + CONSTRUCTOR_TYPE: 17, + TYPEOF: 18 }; module.exports = function defineGrammar(dialect) { @@ -39,11 +39,20 @@ module.exports = function defineGrammar(dialect) { // work. '||', $._function_signature_automatic_semicolon, + $._call_type_arguments_closing_bracket ]), conflicts: ($, previous) => previous.concat([ - [$.call_expression, $.binary_expression], - [$.call_expression, $.binary_expression, $.unary_expression], + [$._expression, $.call_expression], + [$._expression, $.arrow_function, $.call_expression], + [$.arrow_function, $.call_expression, $._property_name], + [$._expression, $.arrow_function, $.call_expression, $._property_name], + [$.call_expression, $._property_name], + [$._expression, $.call_expression, $._property_name], + [$._expression, $.call_expression, $.generic_type], + [$._expression, $.call_expression, $.new_expression], + [$._expression, $.arrow_function, $.call_expression, $.new_expression], + [$.call_expression, $.new_expression], [$.nested_type_identifier, $.nested_identifier], [$.nested_type_identifier, $.member_expression], @@ -105,26 +114,9 @@ module.exports = function defineGrammar(dialect) { optional($._initializer) ), - call_expression: ($, previous) => choice( - prec(PREC.CALL, seq( - field('function', $._expression), - field('type_arguments', optional($.type_arguments)), - field('arguments', choice($.arguments, $.template_string)) - )), - prec(PREC.MEMBER, seq( - field('function', $._primary_expression), - '?.', - field('type_arguments', optional($.type_arguments)), - field('arguments', $.arguments) - )) - ), + call_expression: $ => callExpression($, "function"), - new_expression: $ => prec.right(PREC.NEW, seq( - 'new', - field('constructor', $._primary_expression), - field('type_arguments', optional($.type_arguments)), - field('arguments', optional($.arguments)) - )), + new_expression: $ => seq('new', callExpression($, "constructor")), _augmented_assignment_lhs: ($, previous) => choice(previous, $.non_null_expression), @@ -659,8 +651,10 @@ module.exports = function defineGrammar(dialect) { 'void' ), - type_arguments: $ => seq( - '<', commaSep1($._type), optional(','), '>' + type_arguments: $ => typeArguments($), + call_type_arguments: $ => typeArguments( + $, + $._call_type_arguments_closing_bracket ), object_type: $ => seq( @@ -808,6 +802,21 @@ module.exports = function defineGrammar(dialect) { }); } +function typeArguments($, closingBracket = '>') { + return seq( + '<', commaSep1($._type), optional(','), closingBracket + ) +} + +function callExpression ($, expressionName) { + return seq( + field(expressionName, $._primary_expression), + optional('?.'), + field('type_arguments', optional($.call_type_arguments)), + field('arguments', choice($.arguments, $.template_string)) + ) +} + function commaSep1 (rule) { return sepBy1(',', rule); } diff --git a/common/scanner.h b/common/scanner.h index 888a883a..edbc67c8 100644 --- a/common/scanner.h +++ b/common/scanner.h @@ -6,6 +6,7 @@ enum TokenType { TEMPLATE_CHARS, BINARY_OPERATORS, FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON, + CALL_TYPE_ARGUMENTS_CLOSING_BRACKET }; static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } @@ -150,7 +151,22 @@ static inline bool external_scanner_scan(void *payload, TSLexer *lexer, const bo } return true; - } else { - return false; + } else if (valid_symbols[CALL_TYPE_ARGUMENTS_CLOSING_BRACKET]) { + lexer->mark_end(lexer); + + scan_whitespace_and_comments(lexer); + if (lexer->lookahead != '>') { + return false; + } + + advance(lexer); + scan_whitespace_and_comments(lexer); + if (lexer->lookahead == '(') { + lexer->mark_end(lexer); + lexer->result_symbol = CALL_TYPE_ARGUMENTS_CLOSING_BRACKET; + return true; + } } + + return false; } diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index 9e3b469b..54188853 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -3117,99 +3117,57 @@ ] }, "call_expression": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "PREC", - "value": 11, + "type": "FIELD", + "name": "function", "content": { - "type": "SEQ", + "type": "SYMBOL", + "name": "_primary_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?." + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "type_arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "call_type_arguments" }, { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "arguments" - }, - { - "type": "SYMBOL", - "name": "template_string" - } - ] - } + "type": "BLANK" } ] } }, { - "type": "PREC", - "value": 14, + "type": "FIELD", + "name": "arguments", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_primary_expression" - } - }, - { - "type": "STRING", - "value": "?." - }, - { - "type": "FIELD", - "name": "type_arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "arguments" }, { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "arguments" - } + "type": "SYMBOL", + "name": "template_string" } ] } @@ -3217,57 +3175,71 @@ ] }, "new_expression": { - "type": "PREC_RIGHT", - "value": 12, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "new" - }, - { - "type": "FIELD", - "name": "constructor", - "content": { - "type": "SYMBOL", - "name": "_primary_expression" - } - }, - { - "type": "FIELD", - "name": "type_arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "constructor", + "content": { + "type": "SYMBOL", + "name": "_primary_expression" + } + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "arguments" + "type": "STRING", + "value": "?." }, { "type": "BLANK" } ] + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "call_type_arguments" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "SYMBOL", + "name": "template_string" + } + ] + } } - } - ] - } + ] + } + ] }, "await_expression": { "type": "SEQ", @@ -8167,7 +8139,7 @@ }, "type_query": { "type": "PREC", - "value": 7, + "value": 18, "content": { "type": "SEQ", "members": [ @@ -8460,6 +8432,56 @@ } ] }, + "call_type_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_call_type_arguments_closing_bracket" + } + ] + }, "object_type": { "type": "SEQ", "members": [ @@ -9250,13 +9272,53 @@ "_expression" ], [ + "_expression", + "call_expression" + ], + [ + "_expression", + "arrow_function", + "call_expression" + ], + [ + "arrow_function", + "call_expression", + "_property_name" + ], + [ + "_expression", + "arrow_function", + "call_expression", + "_property_name" + ], + [ + "call_expression", + "_property_name" + ], + [ + "_expression", + "call_expression", + "_property_name" + ], + [ + "_expression", + "call_expression", + "generic_type" + ], + [ + "_expression", + "call_expression", + "new_expression" + ], + [ + "_expression", + "arrow_function", "call_expression", - "binary_expression" + "new_expression" ], [ "call_expression", - "binary_expression", - "unary_expression" + "new_expression" ], [ "nested_type_identifier", @@ -9397,6 +9459,10 @@ { "type": "SYMBOL", "name": "_function_signature_automatic_semicolon" + }, + { + "type": "SYMBOL", + "name": "_call_type_arguments_closing_bracket" } ], "inline": [ diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index f2904b5d..cf489107 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -1265,7 +1265,95 @@ "required": true, "types": [ { - "type": "_expression", + "type": "array", + "named": true + }, + { + "type": "arrow_function", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "class", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "function", + "named": true + }, + { + "type": "generator_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "import", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "meta_property", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "regex", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "template_string", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "undefined", "named": true } ] @@ -1275,7 +1363,7 @@ "required": false, "types": [ { - "type": "type_arguments", + "type": "call_type_arguments", "named": true } ] @@ -1326,6 +1414,101 @@ } } }, + { + "type": "call_type_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "array_type", + "named": true + }, + { + "type": "conditional_type", + "named": true + }, + { + "type": "constructor_type", + "named": true + }, + { + "type": "existential_type", + "named": true + }, + { + "type": "flow_maybe_type", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "generic_type", + "named": true + }, + { + "type": "index_type_query", + "named": true + }, + { + "type": "infer_type", + "named": true + }, + { + "type": "intersection_type", + "named": true + }, + { + "type": "literal_type", + "named": true + }, + { + "type": "lookup_type", + "named": true + }, + { + "type": "nested_type_identifier", + "named": true + }, + { + "type": "object_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "predefined_type", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "tuple_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_query", + "named": true + }, + { + "type": "union_type", + "named": true + } + ] + } + }, { "type": "catch_clause", "named": true, @@ -4740,11 +4923,15 @@ "fields": { "arguments": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "arguments", "named": true + }, + { + "type": "template_string", + "named": true } ] }, @@ -4851,7 +5038,7 @@ "required": false, "types": [ { - "type": "type_arguments", + "type": "call_type_arguments", "named": true } ] @@ -7469,11 +7656,11 @@ }, { "type": "number", - "named": false + "named": true }, { "type": "number", - "named": true + "named": false }, { "type": "of", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 34cc1193..39dee1f8 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -6,12 +6,12 @@ #endif #define LANGUAGE_VERSION 12 -#define STATE_COUNT 4003 -#define LARGE_STATE_COUNT 705 -#define SYMBOL_COUNT 337 +#define STATE_COUNT 4539 +#define LARGE_STATE_COUNT 797 +#define SYMBOL_COUNT 339 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 152 -#define EXTERNAL_TOKEN_COUNT 4 +#define TOKEN_COUNT 153 +#define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -167,198 +167,200 @@ enum { sym__automatic_semicolon = 149, sym__template_chars = 150, sym__function_signature_automatic_semicolon = 151, - sym_program = 152, - sym_export_statement = 153, - sym_export_clause = 154, - sym__import_export_specifier = 155, - sym__declaration = 156, - sym_import = 157, - sym_import_statement = 158, - sym_import_clause = 159, - sym__from_clause = 160, - sym_namespace_import = 161, - sym_named_imports = 162, - sym_expression_statement = 163, - sym_variable_declaration = 164, - sym_lexical_declaration = 165, - sym_variable_declarator = 166, - sym_statement_block = 167, - sym_else_clause = 168, - sym_if_statement = 169, - sym_switch_statement = 170, - sym_for_statement = 171, - sym_for_in_statement = 172, - sym__for_header = 173, - sym_while_statement = 174, - sym_do_statement = 175, - sym_try_statement = 176, - sym_with_statement = 177, - sym_break_statement = 178, - sym_continue_statement = 179, - sym_debugger_statement = 180, - sym_return_statement = 181, - sym_throw_statement = 182, - sym_empty_statement = 183, - sym_labeled_statement = 184, - sym_switch_body = 185, - sym_switch_case = 186, - sym_switch_default = 187, - sym_catch_clause = 188, - sym_finally_clause = 189, - sym_parenthesized_expression = 190, - sym__expression = 191, - sym_yield_expression = 192, - sym_object = 193, - sym_assignment_pattern = 194, - sym_array = 195, - sym_jsx_element = 196, - sym_jsx_fragment = 197, - sym_jsx_expression = 198, - sym_jsx_opening_element = 199, - sym_nested_identifier = 200, - sym_jsx_namespace_name = 201, - sym_jsx_closing_element = 202, - sym_jsx_self_closing_element = 203, - sym_jsx_attribute = 204, - sym_class = 205, - sym_class_declaration = 206, - sym_class_heritage = 207, - sym_function = 208, - sym_function_declaration = 209, - sym_generator_function = 210, - sym_generator_function_declaration = 211, - sym_arrow_function = 212, - sym__call_signature = 213, - sym_call_expression = 214, - sym_new_expression = 215, - sym_await_expression = 216, - sym_member_expression = 217, - sym_subscript_expression = 218, - sym_assignment_expression = 219, - sym__augmented_assignment_lhs = 220, - sym_augmented_assignment_expression = 221, - sym__initializer = 222, - sym_spread_element = 223, - sym_ternary_expression = 224, - sym_binary_expression = 225, - sym_unary_expression = 226, - sym_update_expression = 227, - sym_sequence_expression = 228, - sym_string = 229, - sym_template_string = 230, - sym_template_substitution = 231, - sym_regex = 232, - sym_meta_property = 233, - sym_arguments = 234, - sym_decorator = 235, - sym_decorator_member_expression = 236, - sym_decorator_call_expression = 237, - sym_class_body = 238, - sym_public_field_definition = 239, - sym_formal_parameters = 240, - sym_rest_parameter = 241, - sym_method_definition = 242, - sym_pair = 243, - sym__property_name = 244, - sym_computed_property_name = 245, - sym_non_null_expression = 246, - sym_method_signature = 247, - sym_abstract_method_signature = 248, - sym_function_signature = 249, - sym_as_expression = 250, - sym_import_require_clause = 251, - sym_implements_clause = 252, - sym_ambient_declaration = 253, - sym_abstract_class_declaration = 254, - sym_module = 255, - sym_internal_module = 256, - sym__module = 257, - sym_import_alias = 258, - sym_nested_type_identifier = 259, - sym_interface_declaration = 260, - sym_extends_clause = 261, - sym_enum_declaration = 262, - sym_enum_body = 263, - sym_enum_assignment = 264, - sym_type_alias_declaration = 265, - sym_accessibility_modifier = 266, - sym_required_parameter = 267, - sym_optional_parameter = 268, - sym__parameter_name = 269, - sym__rest_identifier = 270, - sym_rest_identifier = 271, - sym_omitting_type_annotation = 272, - sym_opting_type_annotation = 273, - sym_type_annotation = 274, - sym_asserts = 275, - sym__type = 276, - sym_optional_identifier = 277, - sym__tuple_type_identifier = 278, - sym_labeled_tuple_type_member = 279, - sym_optional_type = 280, - sym_rest_type = 281, - sym__tuple_type_member = 282, - sym_constructor_type = 283, - sym__primary_type = 284, - sym_infer_type = 285, - sym_conditional_type = 286, - sym_generic_type = 287, - sym_type_predicate = 288, - sym_type_predicate_annotation = 289, - sym_type_query = 290, - sym_index_type_query = 291, - sym_lookup_type = 292, - sym_mapped_type_clause = 293, - sym_literal_type = 294, - sym__number = 295, - sym_existential_type = 296, - sym_flow_maybe_type = 297, - sym_parenthesized_type = 298, - sym_predefined_type = 299, - sym_type_arguments = 300, - sym_object_type = 301, - sym_call_signature = 302, - sym_property_signature = 303, - sym_type_parameters = 304, - sym_type_parameter = 305, - sym_default_type = 306, - sym_constraint = 307, - sym_construct_signature = 308, - sym_index_signature = 309, - sym_array_type = 310, - sym__tuple_type_body = 311, - sym_tuple_type = 312, - sym_union_type = 313, - sym_intersection_type = 314, - sym_function_type = 315, - aux_sym_program_repeat1 = 316, - aux_sym_export_statement_repeat1 = 317, - aux_sym_export_clause_repeat1 = 318, - aux_sym_named_imports_repeat1 = 319, - aux_sym_variable_declaration_repeat1 = 320, - aux_sym_switch_body_repeat1 = 321, - aux_sym_object_repeat1 = 322, - aux_sym_array_repeat1 = 323, - aux_sym_jsx_element_repeat1 = 324, - aux_sym_string_repeat1 = 325, - aux_sym_string_repeat2 = 326, - aux_sym_template_string_repeat1 = 327, - aux_sym_class_body_repeat1 = 328, - aux_sym_formal_parameters_repeat1 = 329, - aux_sym__jsx_start_opening_element_repeat1 = 330, - aux_sym_implements_clause_repeat1 = 331, - aux_sym_extends_clause_repeat1 = 332, - aux_sym_enum_body_repeat1 = 333, - aux_sym_object_type_repeat1 = 334, - aux_sym_type_parameters_repeat1 = 335, - aux_sym__tuple_type_body_repeat1 = 336, - alias_sym_array_pattern = 337, - alias_sym_import_specifier = 338, - alias_sym_object_pattern = 339, - alias_sym_property_identifier = 340, - alias_sym_shorthand_property_identifier = 341, - alias_sym_statement_identifier = 342, - alias_sym_type_identifier = 343, + sym__call_type_arguments_closing_bracket = 152, + sym_program = 153, + sym_export_statement = 154, + sym_export_clause = 155, + sym__import_export_specifier = 156, + sym__declaration = 157, + sym_import = 158, + sym_import_statement = 159, + sym_import_clause = 160, + sym__from_clause = 161, + sym_namespace_import = 162, + sym_named_imports = 163, + sym_expression_statement = 164, + sym_variable_declaration = 165, + sym_lexical_declaration = 166, + sym_variable_declarator = 167, + sym_statement_block = 168, + sym_else_clause = 169, + sym_if_statement = 170, + sym_switch_statement = 171, + sym_for_statement = 172, + sym_for_in_statement = 173, + sym__for_header = 174, + sym_while_statement = 175, + sym_do_statement = 176, + sym_try_statement = 177, + sym_with_statement = 178, + sym_break_statement = 179, + sym_continue_statement = 180, + sym_debugger_statement = 181, + sym_return_statement = 182, + sym_throw_statement = 183, + sym_empty_statement = 184, + sym_labeled_statement = 185, + sym_switch_body = 186, + sym_switch_case = 187, + sym_switch_default = 188, + sym_catch_clause = 189, + sym_finally_clause = 190, + sym_parenthesized_expression = 191, + sym__expression = 192, + sym_yield_expression = 193, + sym_object = 194, + sym_assignment_pattern = 195, + sym_array = 196, + sym_jsx_element = 197, + sym_jsx_fragment = 198, + sym_jsx_expression = 199, + sym_jsx_opening_element = 200, + sym_nested_identifier = 201, + sym_jsx_namespace_name = 202, + sym_jsx_closing_element = 203, + sym_jsx_self_closing_element = 204, + sym_jsx_attribute = 205, + sym_class = 206, + sym_class_declaration = 207, + sym_class_heritage = 208, + sym_function = 209, + sym_function_declaration = 210, + sym_generator_function = 211, + sym_generator_function_declaration = 212, + sym_arrow_function = 213, + sym__call_signature = 214, + sym_call_expression = 215, + sym_new_expression = 216, + sym_await_expression = 217, + sym_member_expression = 218, + sym_subscript_expression = 219, + sym_assignment_expression = 220, + sym__augmented_assignment_lhs = 221, + sym_augmented_assignment_expression = 222, + sym__initializer = 223, + sym_spread_element = 224, + sym_ternary_expression = 225, + sym_binary_expression = 226, + sym_unary_expression = 227, + sym_update_expression = 228, + sym_sequence_expression = 229, + sym_string = 230, + sym_template_string = 231, + sym_template_substitution = 232, + sym_regex = 233, + sym_meta_property = 234, + sym_arguments = 235, + sym_decorator = 236, + sym_decorator_member_expression = 237, + sym_decorator_call_expression = 238, + sym_class_body = 239, + sym_public_field_definition = 240, + sym_formal_parameters = 241, + sym_rest_parameter = 242, + sym_method_definition = 243, + sym_pair = 244, + sym__property_name = 245, + sym_computed_property_name = 246, + sym_non_null_expression = 247, + sym_method_signature = 248, + sym_abstract_method_signature = 249, + sym_function_signature = 250, + sym_as_expression = 251, + sym_import_require_clause = 252, + sym_implements_clause = 253, + sym_ambient_declaration = 254, + sym_abstract_class_declaration = 255, + sym_module = 256, + sym_internal_module = 257, + sym__module = 258, + sym_import_alias = 259, + sym_nested_type_identifier = 260, + sym_interface_declaration = 261, + sym_extends_clause = 262, + sym_enum_declaration = 263, + sym_enum_body = 264, + sym_enum_assignment = 265, + sym_type_alias_declaration = 266, + sym_accessibility_modifier = 267, + sym_required_parameter = 268, + sym_optional_parameter = 269, + sym__parameter_name = 270, + sym__rest_identifier = 271, + sym_rest_identifier = 272, + sym_omitting_type_annotation = 273, + sym_opting_type_annotation = 274, + sym_type_annotation = 275, + sym_asserts = 276, + sym__type = 277, + sym_optional_identifier = 278, + sym__tuple_type_identifier = 279, + sym_labeled_tuple_type_member = 280, + sym_optional_type = 281, + sym_rest_type = 282, + sym__tuple_type_member = 283, + sym_constructor_type = 284, + sym__primary_type = 285, + sym_infer_type = 286, + sym_conditional_type = 287, + sym_generic_type = 288, + sym_type_predicate = 289, + sym_type_predicate_annotation = 290, + sym_type_query = 291, + sym_index_type_query = 292, + sym_lookup_type = 293, + sym_mapped_type_clause = 294, + sym_literal_type = 295, + sym__number = 296, + sym_existential_type = 297, + sym_flow_maybe_type = 298, + sym_parenthesized_type = 299, + sym_predefined_type = 300, + sym_type_arguments = 301, + sym_call_type_arguments = 302, + sym_object_type = 303, + sym_call_signature = 304, + sym_property_signature = 305, + sym_type_parameters = 306, + sym_type_parameter = 307, + sym_default_type = 308, + sym_constraint = 309, + sym_construct_signature = 310, + sym_index_signature = 311, + sym_array_type = 312, + sym__tuple_type_body = 313, + sym_tuple_type = 314, + sym_union_type = 315, + sym_intersection_type = 316, + sym_function_type = 317, + aux_sym_program_repeat1 = 318, + aux_sym_export_statement_repeat1 = 319, + aux_sym_export_clause_repeat1 = 320, + aux_sym_named_imports_repeat1 = 321, + aux_sym_variable_declaration_repeat1 = 322, + aux_sym_switch_body_repeat1 = 323, + aux_sym_object_repeat1 = 324, + aux_sym_array_repeat1 = 325, + aux_sym_jsx_element_repeat1 = 326, + aux_sym_string_repeat1 = 327, + aux_sym_string_repeat2 = 328, + aux_sym_template_string_repeat1 = 329, + aux_sym_class_body_repeat1 = 330, + aux_sym_formal_parameters_repeat1 = 331, + aux_sym__jsx_start_opening_element_repeat1 = 332, + aux_sym_implements_clause_repeat1 = 333, + aux_sym_extends_clause_repeat1 = 334, + aux_sym_enum_body_repeat1 = 335, + aux_sym_object_type_repeat1 = 336, + aux_sym_type_parameters_repeat1 = 337, + aux_sym__tuple_type_body_repeat1 = 338, + alias_sym_array_pattern = 339, + alias_sym_import_specifier = 340, + alias_sym_object_pattern = 341, + alias_sym_property_identifier = 342, + alias_sym_shorthand_property_identifier = 343, + alias_sym_statement_identifier = 344, + alias_sym_type_identifier = 345, }; static const char *ts_symbol_names[] = { @@ -514,6 +516,7 @@ static const char *ts_symbol_names[] = { [sym__automatic_semicolon] = "_automatic_semicolon", [sym__template_chars] = "_template_chars", [sym__function_signature_automatic_semicolon] = "_function_signature_automatic_semicolon", + [sym__call_type_arguments_closing_bracket] = "_call_type_arguments_closing_bracket", [sym_program] = "program", [sym_export_statement] = "export_statement", [sym_export_clause] = "export_clause", @@ -663,6 +666,7 @@ static const char *ts_symbol_names[] = { [sym_parenthesized_type] = "parenthesized_type", [sym_predefined_type] = "predefined_type", [sym_type_arguments] = "type_arguments", + [sym_call_type_arguments] = "call_type_arguments", [sym_object_type] = "object_type", [sym_call_signature] = "call_signature", [sym_property_signature] = "property_signature", @@ -861,6 +865,7 @@ static TSSymbol ts_symbol_map[] = { [sym__automatic_semicolon] = sym__automatic_semicolon, [sym__template_chars] = sym__template_chars, [sym__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, + [sym__call_type_arguments_closing_bracket] = sym__call_type_arguments_closing_bracket, [sym_program] = sym_program, [sym_export_statement] = sym_export_statement, [sym_export_clause] = sym_export_clause, @@ -1010,6 +1015,7 @@ static TSSymbol ts_symbol_map[] = { [sym_parenthesized_type] = sym_parenthesized_type, [sym_predefined_type] = sym_predefined_type, [sym_type_arguments] = sym_type_arguments, + [sym_call_type_arguments] = sym_call_type_arguments, [sym_object_type] = sym_object_type, [sym_call_signature] = sym_call_signature, [sym_property_signature] = sym_property_signature, @@ -1664,6 +1670,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__call_type_arguments_closing_bracket] = { + .visible = false, + .named = true, + }, [sym_program] = { .visible = true, .named = true, @@ -2262,6 +2272,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_call_type_arguments] = { + .visible = true, + .named = true, + }, [sym_object_type] = { .visible = true, .named = true, @@ -2521,200 +2535,201 @@ static const char *ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[208] = { +static const TSFieldMapSlice ts_field_map_slices[209] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 1}, - [5] = {.index = 3, .length = 1}, - [6] = {.index = 4, .length = 2}, - [8] = {.index = 6, .length = 2}, - [9] = {.index = 3, .length = 1}, - [10] = {.index = 3, .length = 1}, - [13] = {.index = 8, .length = 1}, - [15] = {.index = 9, .length = 1}, - [16] = {.index = 9, .length = 1}, - [17] = {.index = 10, .length = 2}, - [18] = {.index = 12, .length = 2}, - [19] = {.index = 14, .length = 2}, - [20] = {.index = 16, .length = 2}, - [21] = {.index = 18, .length = 2}, - [22] = {.index = 20, .length = 2}, - [23] = {.index = 22, .length = 2}, - [24] = {.index = 24, .length = 1}, - [25] = {.index = 25, .length = 2}, - [26] = {.index = 27, .length = 2}, - [27] = {.index = 29, .length = 2}, - [28] = {.index = 31, .length = 2}, - [30] = {.index = 33, .length = 2}, - [31] = {.index = 35, .length = 2}, - [32] = {.index = 33, .length = 2}, - [33] = {.index = 35, .length = 2}, - [34] = {.index = 33, .length = 2}, - [35] = {.index = 35, .length = 2}, - [36] = {.index = 37, .length = 2}, - [37] = {.index = 39, .length = 2}, - [38] = {.index = 41, .length = 3}, - [42] = {.index = 44, .length = 1}, - [43] = {.index = 45, .length = 2}, - [44] = {.index = 47, .length = 2}, - [45] = {.index = 49, .length = 2}, - [46] = {.index = 51, .length = 2}, - [47] = {.index = 53, .length = 1}, - [48] = {.index = 54, .length = 1}, - [49] = {.index = 55, .length = 1}, - [50] = {.index = 56, .length = 1}, - [51] = {.index = 57, .length = 2}, - [53] = {.index = 59, .length = 1}, - [54] = {.index = 60, .length = 2}, - [55] = {.index = 62, .length = 4}, - [56] = {.index = 66, .length = 2}, + [5] = {.index = 3, .length = 2}, + [6] = {.index = 5, .length = 1}, + [7] = {.index = 6, .length = 2}, + [9] = {.index = 8, .length = 2}, + [10] = {.index = 5, .length = 1}, + [11] = {.index = 5, .length = 1}, + [14] = {.index = 10, .length = 1}, + [16] = {.index = 3, .length = 2}, + [17] = {.index = 11, .length = 2}, + [18] = {.index = 13, .length = 2}, + [19] = {.index = 15, .length = 2}, + [20] = {.index = 17, .length = 2}, + [21] = {.index = 19, .length = 2}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 23, .length = 1}, + [24] = {.index = 24, .length = 2}, + [25] = {.index = 26, .length = 2}, + [26] = {.index = 28, .length = 2}, + [27] = {.index = 30, .length = 3}, + [28] = {.index = 33, .length = 2}, + [30] = {.index = 35, .length = 2}, + [31] = {.index = 37, .length = 2}, + [32] = {.index = 35, .length = 2}, + [33] = {.index = 37, .length = 2}, + [34] = {.index = 35, .length = 2}, + [35] = {.index = 37, .length = 2}, + [36] = {.index = 39, .length = 2}, + [37] = {.index = 41, .length = 2}, + [38] = {.index = 43, .length = 3}, + [42] = {.index = 46, .length = 1}, + [43] = {.index = 47, .length = 2}, + [44] = {.index = 49, .length = 2}, + [45] = {.index = 51, .length = 2}, + [46] = {.index = 53, .length = 2}, + [47] = {.index = 55, .length = 1}, + [48] = {.index = 56, .length = 1}, + [49] = {.index = 57, .length = 1}, + [50] = {.index = 58, .length = 1}, + [51] = {.index = 59, .length = 2}, + [53] = {.index = 61, .length = 1}, + [54] = {.index = 62, .length = 2}, + [55] = {.index = 64, .length = 4}, + [56] = {.index = 68, .length = 2}, [57] = {.index = 68, .length = 2}, - [58] = {.index = 66, .length = 2}, - [59] = {.index = 68, .length = 2}, - [60] = {.index = 25, .length = 2}, - [61] = {.index = 29, .length = 2}, - [62] = {.index = 22, .length = 2}, - [63] = {.index = 27, .length = 2}, - [64] = {.index = 57, .length = 2}, - [65] = {.index = 70, .length = 3}, - [66] = {.index = 73, .length = 2}, - [67] = {.index = 75, .length = 3}, - [68] = {.index = 22, .length = 2}, - [69] = {.index = 22, .length = 2}, - [70] = {.index = 78, .length = 2}, - [71] = {.index = 80, .length = 4}, - [72] = {.index = 84, .length = 3}, - [73] = {.index = 87, .length = 2}, - [74] = {.index = 89, .length = 1}, - [75] = {.index = 90, .length = 1}, - [76] = {.index = 91, .length = 1}, - [77] = {.index = 92, .length = 2}, - [78] = {.index = 94, .length = 3}, - [79] = {.index = 22, .length = 2}, - [80] = {.index = 97, .length = 2}, - [81] = {.index = 99, .length = 5}, - [82] = {.index = 104, .length = 2}, - [83] = {.index = 106, .length = 1}, - [84] = {.index = 107, .length = 2}, - [85] = {.index = 109, .length = 3}, - [86] = {.index = 109, .length = 3}, - [87] = {.index = 109, .length = 3}, - [88] = {.index = 112, .length = 2}, - [89] = {.index = 114, .length = 3}, - [90] = {.index = 117, .length = 3}, - [94] = {.index = 120, .length = 1}, - [95] = {.index = 121, .length = 3}, - [96] = {.index = 124, .length = 2}, - [97] = {.index = 126, .length = 2}, - [98] = {.index = 128, .length = 2}, - [99] = {.index = 130, .length = 2}, - [100] = {.index = 132, .length = 4}, - [101] = {.index = 136, .length = 2}, - [102] = {.index = 138, .length = 3}, - [103] = {.index = 141, .length = 3}, - [104] = {.index = 144, .length = 2}, - [105] = {.index = 146, .length = 2}, - [106] = {.index = 148, .length = 4}, - [107] = {.index = 146, .length = 2}, - [108] = {.index = 152, .length = 4}, - [109] = {.index = 156, .length = 4}, - [110] = {.index = 160, .length = 5}, - [111] = {.index = 165, .length = 3}, - [112] = {.index = 165, .length = 3}, - [113] = {.index = 92, .length = 2}, - [114] = {.index = 94, .length = 3}, - [115] = {.index = 112, .length = 2}, - [116] = {.index = 168, .length = 3}, - [117] = {.index = 171, .length = 2}, - [118] = {.index = 173, .length = 3}, - [119] = {.index = 176, .length = 2}, - [120] = {.index = 104, .length = 2}, - [121] = {.index = 178, .length = 2}, - [122] = {.index = 180, .length = 5}, - [123] = {.index = 185, .length = 2}, - [124] = {.index = 187, .length = 1}, - [125] = {.index = 188, .length = 1}, - [126] = {.index = 189, .length = 1}, - [127] = {.index = 190, .length = 1}, - [128] = {.index = 191, .length = 2}, - [129] = {.index = 193, .length = 3}, - [130] = {.index = 196, .length = 1}, - [131] = {.index = 197, .length = 2}, - [132] = {.index = 199, .length = 2}, - [133] = {.index = 201, .length = 2}, - [134] = {.index = 203, .length = 4}, - [135] = {.index = 207, .length = 3}, - [136] = {.index = 210, .length = 2}, - [137] = {.index = 212, .length = 4}, - [138] = {.index = 216, .length = 4}, - [139] = {.index = 220, .length = 5}, - [140] = {.index = 178, .length = 2}, - [141] = {.index = 225, .length = 2}, - [142] = {.index = 227, .length = 3}, - [143] = {.index = 230, .length = 3}, - [144] = {.index = 233, .length = 2}, - [145] = {.index = 235, .length = 3}, - [146] = {.index = 238, .length = 4}, - [147] = {.index = 242, .length = 3}, - [148] = {.index = 245, .length = 3}, - [149] = {.index = 248, .length = 2}, - [150] = {.index = 250, .length = 5}, - [151] = {.index = 255, .length = 3}, - [152] = {.index = 258, .length = 2}, + [58] = {.index = 24, .length = 2}, + [59] = {.index = 28, .length = 2}, + [60] = {.index = 30, .length = 3}, + [61] = {.index = 21, .length = 2}, + [62] = {.index = 26, .length = 2}, + [63] = {.index = 59, .length = 2}, + [64] = {.index = 70, .length = 3}, + [65] = {.index = 21, .length = 2}, + [66] = {.index = 21, .length = 2}, + [67] = {.index = 73, .length = 2}, + [68] = {.index = 75, .length = 4}, + [69] = {.index = 79, .length = 3}, + [70] = {.index = 82, .length = 2}, + [71] = {.index = 84, .length = 1}, + [72] = {.index = 85, .length = 1}, + [73] = {.index = 86, .length = 1}, + [74] = {.index = 87, .length = 2}, + [75] = {.index = 89, .length = 3}, + [76] = {.index = 92, .length = 3}, + [77] = {.index = 21, .length = 2}, + [78] = {.index = 95, .length = 2}, + [79] = {.index = 97, .length = 5}, + [80] = {.index = 102, .length = 2}, + [81] = {.index = 104, .length = 1}, + [82] = {.index = 105, .length = 2}, + [83] = {.index = 107, .length = 3}, + [84] = {.index = 107, .length = 3}, + [85] = {.index = 107, .length = 3}, + [86] = {.index = 110, .length = 2}, + [87] = {.index = 112, .length = 3}, + [88] = {.index = 115, .length = 3}, + [92] = {.index = 118, .length = 1}, + [93] = {.index = 119, .length = 3}, + [94] = {.index = 122, .length = 2}, + [95] = {.index = 124, .length = 2}, + [96] = {.index = 126, .length = 2}, + [97] = {.index = 128, .length = 2}, + [98] = {.index = 130, .length = 4}, + [99] = {.index = 134, .length = 2}, + [100] = {.index = 136, .length = 3}, + [101] = {.index = 139, .length = 2}, + [102] = {.index = 141, .length = 2}, + [103] = {.index = 143, .length = 4}, + [104] = {.index = 141, .length = 2}, + [105] = {.index = 147, .length = 4}, + [106] = {.index = 151, .length = 4}, + [107] = {.index = 155, .length = 5}, + [108] = {.index = 160, .length = 2}, + [109] = {.index = 162, .length = 3}, + [110] = {.index = 160, .length = 2}, + [111] = {.index = 162, .length = 3}, + [112] = {.index = 87, .length = 2}, + [113] = {.index = 92, .length = 3}, + [114] = {.index = 110, .length = 2}, + [115] = {.index = 165, .length = 3}, + [116] = {.index = 168, .length = 2}, + [117] = {.index = 170, .length = 3}, + [118] = {.index = 173, .length = 2}, + [119] = {.index = 102, .length = 2}, + [120] = {.index = 175, .length = 2}, + [121] = {.index = 177, .length = 2}, + [122] = {.index = 179, .length = 5}, + [123] = {.index = 184, .length = 2}, + [124] = {.index = 186, .length = 1}, + [125] = {.index = 187, .length = 1}, + [126] = {.index = 188, .length = 1}, + [127] = {.index = 189, .length = 1}, + [128] = {.index = 190, .length = 2}, + [129] = {.index = 192, .length = 3}, + [130] = {.index = 195, .length = 1}, + [131] = {.index = 196, .length = 2}, + [132] = {.index = 198, .length = 2}, + [133] = {.index = 200, .length = 2}, + [134] = {.index = 202, .length = 4}, + [135] = {.index = 206, .length = 3}, + [136] = {.index = 209, .length = 4}, + [137] = {.index = 213, .length = 4}, + [138] = {.index = 217, .length = 5}, + [139] = {.index = 222, .length = 3}, + [140] = {.index = 222, .length = 3}, + [141] = {.index = 177, .length = 2}, + [142] = {.index = 225, .length = 2}, + [143] = {.index = 227, .length = 3}, + [144] = {.index = 230, .length = 3}, + [145] = {.index = 233, .length = 2}, + [146] = {.index = 235, .length = 3}, + [147] = {.index = 238, .length = 4}, + [148] = {.index = 242, .length = 3}, + [149] = {.index = 245, .length = 3}, + [150] = {.index = 248, .length = 2}, + [151] = {.index = 250, .length = 5}, + [152] = {.index = 255, .length = 3}, [153] = {.index = 258, .length = 2}, - [154] = {.index = 260, .length = 3}, - [155] = {.index = 258, .length = 2}, + [154] = {.index = 258, .length = 2}, + [155] = {.index = 260, .length = 3}, [156] = {.index = 258, .length = 2}, - [157] = {.index = 263, .length = 2}, - [158] = {.index = 265, .length = 4}, - [159] = {.index = 269, .length = 2}, - [160] = {.index = 271, .length = 2}, - [161] = {.index = 273, .length = 2}, - [162] = {.index = 275, .length = 2}, - [163] = {.index = 277, .length = 3}, - [164] = {.index = 280, .length = 3}, - [165] = {.index = 283, .length = 1}, - [166] = {.index = 284, .length = 5}, - [167] = {.index = 289, .length = 3}, - [169] = {.index = 292, .length = 4}, - [170] = {.index = 296, .length = 3}, - [171] = {.index = 299, .length = 4}, - [172] = {.index = 303, .length = 5}, - [173] = {.index = 308, .length = 2}, + [157] = {.index = 258, .length = 2}, + [158] = {.index = 263, .length = 2}, + [159] = {.index = 265, .length = 4}, + [160] = {.index = 269, .length = 2}, + [161] = {.index = 271, .length = 2}, + [162] = {.index = 273, .length = 2}, + [163] = {.index = 275, .length = 2}, + [164] = {.index = 277, .length = 3}, + [165] = {.index = 280, .length = 3}, + [166] = {.index = 283, .length = 1}, + [167] = {.index = 284, .length = 5}, + [168] = {.index = 289, .length = 3}, + [170] = {.index = 292, .length = 4}, + [171] = {.index = 296, .length = 3}, + [172] = {.index = 299, .length = 4}, + [173] = {.index = 303, .length = 5}, [174] = {.index = 308, .length = 2}, [175] = {.index = 308, .length = 2}, [176] = {.index = 308, .length = 2}, - [177] = {.index = 310, .length = 4}, - [178] = {.index = 314, .length = 2}, + [177] = {.index = 308, .length = 2}, + [178] = {.index = 310, .length = 4}, [179] = {.index = 314, .length = 2}, [180] = {.index = 314, .length = 2}, - [181] = {.index = 316, .length = 4}, - [182] = {.index = 320, .length = 4}, - [183] = {.index = 324, .length = 2}, - [184] = {.index = 326, .length = 2}, - [185] = {.index = 328, .length = 3}, - [186] = {.index = 331, .length = 3}, - [187] = {.index = 334, .length = 2}, - [188] = {.index = 336, .length = 2}, - [189] = {.index = 338, .length = 4}, - [190] = {.index = 342, .length = 5}, - [191] = {.index = 347, .length = 5}, - [192] = {.index = 352, .length = 1}, - [193] = {.index = 353, .length = 4}, - [194] = {.index = 357, .length = 4}, - [195] = {.index = 361, .length = 3}, - [196] = {.index = 364, .length = 2}, - [197] = {.index = 366, .length = 2}, - [198] = {.index = 368, .length = 3}, - [199] = {.index = 371, .length = 5}, - [200] = {.index = 376, .length = 5}, - [201] = {.index = 381, .length = 4}, - [202] = {.index = 385, .length = 4}, - [203] = {.index = 389, .length = 3}, - [204] = {.index = 392, .length = 4}, - [205] = {.index = 396, .length = 5}, - [206] = {.index = 352, .length = 1}, - [207] = {.index = 401, .length = 4}, + [181] = {.index = 314, .length = 2}, + [182] = {.index = 316, .length = 4}, + [183] = {.index = 320, .length = 4}, + [184] = {.index = 324, .length = 2}, + [185] = {.index = 326, .length = 2}, + [186] = {.index = 328, .length = 3}, + [187] = {.index = 331, .length = 3}, + [188] = {.index = 334, .length = 2}, + [189] = {.index = 336, .length = 2}, + [190] = {.index = 338, .length = 4}, + [191] = {.index = 342, .length = 5}, + [192] = {.index = 347, .length = 5}, + [193] = {.index = 352, .length = 1}, + [194] = {.index = 353, .length = 4}, + [195] = {.index = 357, .length = 4}, + [196] = {.index = 361, .length = 3}, + [197] = {.index = 364, .length = 2}, + [198] = {.index = 366, .length = 2}, + [199] = {.index = 368, .length = 3}, + [200] = {.index = 371, .length = 4}, + [201] = {.index = 375, .length = 5}, + [202] = {.index = 380, .length = 5}, + [203] = {.index = 385, .length = 4}, + [204] = {.index = 389, .length = 4}, + [205] = {.index = 393, .length = 3}, + [206] = {.index = 396, .length = 5}, + [207] = {.index = 352, .length = 1}, + [208] = {.index = 401, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2725,325 +2740,324 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [2] = {field_declaration, 1}, [3] = + {field_arguments, 1}, + {field_function, 0}, + [5] = {field_name, 0}, - [4] = + [6] = {field_body, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [6] = + [8] = {field_argument, 1}, {field_operator, 0}, - [8] = - {field_body, 1}, - [9] = - {field_constructor, 1}, [10] = + {field_body, 1}, + [11] = {field_argument, 0}, {field_operator, 1}, - [12] = - {field_arguments, 1}, - {field_function, 0}, - [14] = + [13] = {field_close_tag, 1}, {field_open_tag, 0}, - [16] = + [15] = {field_parameters, 0}, {field_return_type, 1}, - [18] = + [17] = {field_parameters, 1}, {field_type_parameters, 0}, - [20] = + [19] = {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, - [22] = + [21] = {field_left, 0}, {field_right, 2}, - [24] = + [23] = {field_label, 0}, - [25] = + [24] = {field_object, 0}, {field_property, 2}, - [27] = + [26] = {field_body, 2}, {field_parameter, 0}, - [29] = + [28] = + {field_arguments, 2}, + {field_function, 0}, + [30] = {field_arguments, 2}, {field_function, 0}, - [31] = + {field_type_arguments, 1}, + [33] = {field_body, 1}, {field_name, 0}, - [33] = + [35] = {field_name, 0}, {field_value, 1, .inherited = true}, - [35] = + [37] = {field_name, 0}, {field_type, 1}, - [37] = + [39] = {field_condition, 1}, {field_consequence, 2}, - [39] = + [41] = {field_body, 2}, {field_value, 1}, - [41] = + [43] = {field_body, 2}, {field_left, 1, .inherited = true}, {field_right, 1, .inherited = true}, - [44] = + [46] = {field_value, 1, .inherited = true}, - [45] = + [47] = {field_body, 2}, {field_condition, 1}, - [47] = + [49] = {field_body, 1}, {field_handler, 2}, - [49] = + [51] = {field_body, 1}, {field_finalizer, 2}, - [51] = + [53] = {field_body, 2}, {field_object, 1}, - [53] = + [55] = {field_label, 1}, - [54] = + [56] = {field_name, 1}, - [55] = + [57] = {field_attribute, 0}, - [56] = + [58] = {field_pattern, 1}, - [57] = + [59] = {field_body, 2}, {field_name, 1}, - [59] = + [61] = {field_body, 2}, - [60] = + [62] = {field_body, 2}, {field_type_parameters, 1}, - [62] = + [64] = {field_body, 2}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [66] = - {field_arguments, 2}, - {field_constructor, 1}, [68] = + {field_arguments, 2}, {field_constructor, 1}, - {field_type_arguments, 2}, [70] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, [73] = - {field_argument, 0, .inherited = true}, - {field_operator, 0, .inherited = true}, - [75] = - {field_arguments, 2}, - {field_function, 0}, - {field_type_arguments, 1}, - [78] = {field_close_tag, 2}, {field_open_tag, 0}, - [80] = + [75] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [84] = + [79] = {field_parameters, 1}, {field_return_type, 2}, {field_type_parameters, 0}, - [87] = + [82] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [89] = + [84] = {field_source, 1}, - [90] = + [85] = {field_source, 2, .inherited = true}, - [91] = + [86] = {field_value, 2}, - [92] = + [87] = {field_index, 2}, {field_object, 0}, - [94] = + [89] = + {field_parameters, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + {field_type_parameters, 0, .inherited = true}, + [92] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [97] = + [95] = {field_key, 0}, {field_value, 2}, - [99] = + [97] = {field_body, 2}, {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [104] = + [102] = {field_alias, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [106] = + [104] = {field_value, 1}, - [107] = + [105] = {field_name, 0}, {field_type, 2}, - [109] = + [107] = {field_name, 0}, {field_type, 1}, {field_value, 2, .inherited = true}, - [112] = + [110] = {field_body, 3}, {field_name, 2}, - [114] = + [112] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [117] = + [115] = {field_body, 3}, {field_left, 2, .inherited = true}, {field_right, 2, .inherited = true}, - [120] = + [118] = {field_value, 2, .inherited = true}, - [121] = + [119] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [124] = + [122] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [126] = + [124] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [128] = + [126] = {field_name, 1}, {field_type_arguments, 2}, - [130] = + [128] = {field_flags, 3}, {field_pattern, 1}, - [132] = + [130] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [136] = + [134] = {field_body, 3}, {field_name, 1}, - [138] = + [136] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [141] = - {field_parameters, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - {field_type_parameters, 0, .inherited = true}, - [144] = + [139] = {field_body, 3}, {field_type_parameters, 1}, - [146] = + [141] = {field_body, 3}, {field_parameter, 1}, - [148] = + [143] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [152] = + [147] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [156] = + [151] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [160] = + [155] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [165] = + [160] = + {field_arguments, 3}, + {field_constructor, 1}, + [162] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [168] = + [165] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [171] = + [168] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [173] = + [170] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [176] = + [173] = {field_alias, 2}, {field_name, 0}, - [178] = + [175] = + {field_module, 0}, + {field_name, 2}, + [177] = {field_index, 3}, {field_object, 0}, - [180] = + [179] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [185] = + [184] = {field_name, 1}, {field_value, 3}, - [187] = + [186] = {field_source, 3, .inherited = true}, - [188] = + [187] = {field_decorator, 1, .inherited = true}, - [189] = + [188] = {field_decorator, 2, .inherited = true}, - [190] = + [189] = {field_value, 3, .inherited = true}, - [191] = + [190] = {field_body, 1}, {field_condition, 3}, - [193] = + [192] = {field_attribute, 3, .inherited = true}, {field_name, 1}, {field_type_arguments, 2}, - [196] = + [195] = {field_name, 2}, - [197] = + [196] = {field_name, 1}, {field_value, 2, .inherited = true}, - [199] = + [198] = {field_name, 1}, {field_type, 2}, - [201] = + [200] = {field_name, 0}, {field_value, 2, .inherited = true}, - [203] = + [202] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [207] = + [206] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [210] = - {field_module, 0}, - {field_name, 2}, - [212] = + [209] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [216] = + [213] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [220] = + [217] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, + [222] = + {field_arguments, 4}, + {field_constructor, 1}, + {field_type_arguments, 3}, [225] = {field_body, 4}, {field_name, 2}, @@ -3240,36 +3254,36 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 4}, {field_value, 5, .inherited = true}, [371] = + {field_alternative, 6}, + {field_consequence, 4}, + {field_left, 0}, + {field_right, 2}, + [375] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [376] = + [380] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [381] = + [385] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [385] = + [389] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [389] = + [393] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [392] = - {field_alternative, 6}, - {field_consequence, 4}, - {field_left, 0}, - {field_right, 2}, [396] = {field_body, 8}, {field_name, 5}, @@ -3283,41 +3297,44 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type_parameters, 7, .inherited = true}, }; -static TSSymbol ts_alias_sequences[208][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[209][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym_identifier, }, - [7] = { + [5] = { + [0] = sym_identifier, + }, + [8] = { [0] = alias_sym_property_identifier, }, - [9] = { + [10] = { [0] = alias_sym_object_pattern, }, - [10] = { + [11] = { [0] = alias_sym_array_pattern, }, - [11] = { + [12] = { [0] = alias_sym_object_pattern, }, - [12] = { + [13] = { [0] = alias_sym_array_pattern, }, - [14] = { + [15] = { [0] = alias_sym_type_identifier, }, - [15] = { - [1] = sym_identifier, + [22] = { + [0] = sym_identifier, }, [23] = { - [0] = sym_identifier, + [0] = alias_sym_statement_identifier, }, [24] = { - [0] = alias_sym_statement_identifier, + [0] = sym_identifier, + [2] = alias_sym_property_identifier, }, [25] = { [0] = sym_identifier, - [2] = alias_sym_property_identifier, }, [26] = { [0] = sym_identifier, @@ -3361,61 +3378,64 @@ static TSSymbol ts_alias_sequences[208][MAX_ALIAS_SEQUENCE_LENGTH] = { [56] = { [1] = sym_identifier, }, - [57] = { - [1] = sym_identifier, - }, - [60] = { + [58] = { [2] = alias_sym_property_identifier, }, - [68] = { + [65] = { [0] = alias_sym_object_pattern, }, - [69] = { + [66] = { [0] = alias_sym_array_pattern, }, - [77] = { + [74] = { [0] = sym_identifier, }, - [78] = { + [76] = { [0] = sym_identifier, }, - [79] = { + [77] = { [0] = alias_sym_shorthand_property_identifier, }, - [82] = { + [80] = { [1] = alias_sym_import_specifier, }, - [86] = { + [84] = { [0] = alias_sym_object_pattern, }, - [87] = { + [85] = { [0] = alias_sym_array_pattern, }, - [91] = { + [89] = { [2] = sym_identifier, }, - [92] = { + [90] = { [2] = alias_sym_object_pattern, }, - [93] = { + [91] = { [2] = alias_sym_array_pattern, }, - [101] = { + [99] = { [1] = alias_sym_type_identifier, }, - [102] = { + [100] = { [1] = alias_sym_type_identifier, }, - [105] = { + [102] = { [1] = sym_identifier, }, - [111] = { + [108] = { + [1] = sym_identifier, + }, + [109] = { [1] = sym_identifier, }, + [114] = { + [2] = alias_sym_type_identifier, + }, [115] = { [2] = alias_sym_type_identifier, }, - [116] = { + [120] = { [2] = alias_sym_type_identifier, }, [121] = { @@ -3427,70 +3447,70 @@ static TSSymbol ts_alias_sequences[208][MAX_ALIAS_SEQUENCE_LENGTH] = { [135] = { [1] = alias_sym_type_identifier, }, - [136] = { - [2] = alias_sym_type_identifier, - }, - [141] = { - [2] = alias_sym_type_identifier, + [139] = { + [1] = sym_identifier, }, [142] = { [2] = alias_sym_type_identifier, }, - [145] = { + [143] = { [2] = alias_sym_type_identifier, }, [146] = { [2] = alias_sym_type_identifier, }, - [148] = { + [147] = { + [2] = alias_sym_type_identifier, + }, + [149] = { [3] = alias_sym_type_identifier, }, - [151] = { + [152] = { [1] = alias_sym_type_identifier, }, - [152] = { + [153] = { [1] = sym_identifier, }, - [155] = { + [156] = { [1] = alias_sym_object_pattern, }, - [156] = { + [157] = { [1] = alias_sym_array_pattern, }, - [167] = { + [168] = { [2] = alias_sym_type_identifier, }, - [168] = { + [169] = { [3] = alias_sym_property_identifier, }, - [169] = { + [170] = { [2] = alias_sym_type_identifier, }, - [170] = { + [171] = { [3] = alias_sym_type_identifier, }, - [171] = { + [172] = { [3] = alias_sym_type_identifier, }, - [173] = { + [174] = { [2] = sym_identifier, }, - [175] = { + [176] = { [2] = alias_sym_object_pattern, }, - [176] = { + [177] = { [2] = alias_sym_array_pattern, }, - [179] = { + [180] = { [2] = alias_sym_object_pattern, }, - [180] = { + [181] = { [2] = alias_sym_array_pattern, }, - [189] = { + [190] = { [3] = alias_sym_type_identifier, }, - [206] = { + [207] = { [3] = sym_identifier, }, }; @@ -3647,7 +3667,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(99); if (lookahead == '0') ADVANCE(203); if (lookahead == ':') ADVANCE(89); - if (lookahead == ';') ADVANCE(88); if (lookahead == '<') ADVANCE(93); if (lookahead == '=') ADVANCE(78); if (lookahead == '>') ADVANCE(96); @@ -3671,7 +3690,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && - lookahead != '@' && + (lookahead < ';' || '@' < lookahead) && lookahead != '~') ADVANCE(214); END_STATE(); case 7: @@ -3739,7 +3758,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(91); if (lookahead == '^') ADVANCE(143); if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(81); + if (lookahead == '{') ADVANCE(80); if (lookahead == '|') ADVANCE(148); if (lookahead == '}') ADVANCE(83); if (lookahead == '\t' || @@ -3779,7 +3798,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(91); if (lookahead == '^') ADVANCE(143); if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(81); + if (lookahead == '{') ADVANCE(80); if (lookahead == '|') ADVANCE(148); if (lookahead == '}') ADVANCE(83); if (lookahead == '\t' || @@ -3814,7 +3833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(36); if (lookahead == '^') ADVANCE(143); if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(80); + if (lookahead == '{') ADVANCE(81); if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\n' || @@ -3851,7 +3870,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(36); if (lookahead == '^') ADVANCE(143); if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(80); + if (lookahead == '{') ADVANCE(81); if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\n' || @@ -4104,7 +4123,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 21: if (lookahead == '&') ADVANCE(140); - if (lookahead == '(') ADVANCE(86); if (lookahead == ',') ADVANCE(82); if (lookahead == '-') ADVANCE(33); if (lookahead == '.') ADVANCE(106); @@ -4116,7 +4134,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(31); if (lookahead == '[') ADVANCE(90); if (lookahead == '\\') ADVANCE(36); - if (lookahead == '`') ADVANCE(196); if (lookahead == '{') ADVANCE(80); if (lookahead == '|') ADVANCE(145); if (lookahead == '\t' || @@ -4129,7 +4146,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(21) if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(212); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); if (lookahead != 0 && (lookahead < 0 || '~' < lookahead)) ADVANCE(214); END_STATE(); @@ -6354,38 +6372,38 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [66] = {.lex_state = 13}, [67] = {.lex_state = 13}, [68] = {.lex_state = 13}, - [69] = {.lex_state = 13}, + [69] = {.lex_state = 69, .external_lex_state = 2}, [70] = {.lex_state = 13}, [71] = {.lex_state = 13}, - [72] = {.lex_state = 13}, - [73] = {.lex_state = 13}, - [74] = {.lex_state = 13}, - [75] = {.lex_state = 13}, - [76] = {.lex_state = 13}, - [77] = {.lex_state = 13}, - [78] = {.lex_state = 13}, - [79] = {.lex_state = 13}, - [80] = {.lex_state = 13}, - [81] = {.lex_state = 13}, - [82] = {.lex_state = 13}, - [83] = {.lex_state = 13}, - [84] = {.lex_state = 70, .external_lex_state = 2}, - [85] = {.lex_state = 69, .external_lex_state = 2}, - [86] = {.lex_state = 70, .external_lex_state = 3}, + [72] = {.lex_state = 6, .external_lex_state = 2}, + [73] = {.lex_state = 6, .external_lex_state = 2}, + [74] = {.lex_state = 70, .external_lex_state = 2}, + [75] = {.lex_state = 70, .external_lex_state = 2}, + [76] = {.lex_state = 70, .external_lex_state = 3}, + [77] = {.lex_state = 70, .external_lex_state = 3}, + [78] = {.lex_state = 70, .external_lex_state = 2}, + [79] = {.lex_state = 69, .external_lex_state = 2}, + [80] = {.lex_state = 70, .external_lex_state = 2}, + [81] = {.lex_state = 70, .external_lex_state = 2}, + [82] = {.lex_state = 70, .external_lex_state = 2}, + [83] = {.lex_state = 7, .external_lex_state = 2}, + [84] = {.lex_state = 7, .external_lex_state = 2}, + [85] = {.lex_state = 6, .external_lex_state = 2}, + [86] = {.lex_state = 6, .external_lex_state = 2}, [87] = {.lex_state = 70, .external_lex_state = 2}, - [88] = {.lex_state = 69, .external_lex_state = 2}, - [89] = {.lex_state = 6, .external_lex_state = 2}, - [90] = {.lex_state = 70, .external_lex_state = 2}, + [88] = {.lex_state = 70, .external_lex_state = 3}, + [89] = {.lex_state = 70, .external_lex_state = 2}, + [90] = {.lex_state = 70, .external_lex_state = 3}, [91] = {.lex_state = 70, .external_lex_state = 3}, - [92] = {.lex_state = 7, .external_lex_state = 2}, - [93] = {.lex_state = 6, .external_lex_state = 2}, - [94] = {.lex_state = 6, .external_lex_state = 3}, - [95] = {.lex_state = 6, .external_lex_state = 2}, + [92] = {.lex_state = 70, .external_lex_state = 3}, + [93] = {.lex_state = 70, .external_lex_state = 3}, + [94] = {.lex_state = 70, .external_lex_state = 3}, + [95] = {.lex_state = 70, .external_lex_state = 3}, [96] = {.lex_state = 70, .external_lex_state = 3}, [97] = {.lex_state = 70, .external_lex_state = 3}, [98] = {.lex_state = 70, .external_lex_state = 3}, [99] = {.lex_state = 70, .external_lex_state = 3}, - [100] = {.lex_state = 6, .external_lex_state = 2}, + [100] = {.lex_state = 70, .external_lex_state = 3}, [101] = {.lex_state = 70, .external_lex_state = 3}, [102] = {.lex_state = 70, .external_lex_state = 3}, [103] = {.lex_state = 70, .external_lex_state = 3}, @@ -6399,66 +6417,66 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [111] = {.lex_state = 70, .external_lex_state = 3}, [112] = {.lex_state = 70, .external_lex_state = 3}, [113] = {.lex_state = 70, .external_lex_state = 3}, - [114] = {.lex_state = 6, .external_lex_state = 3}, + [114] = {.lex_state = 70, .external_lex_state = 3}, [115] = {.lex_state = 70, .external_lex_state = 3}, - [116] = {.lex_state = 70, .external_lex_state = 3}, - [117] = {.lex_state = 70, .external_lex_state = 3}, - [118] = {.lex_state = 6, .external_lex_state = 2}, - [119] = {.lex_state = 70, .external_lex_state = 3}, - [120] = {.lex_state = 70, .external_lex_state = 3}, - [121] = {.lex_state = 70, .external_lex_state = 3}, - [122] = {.lex_state = 70, .external_lex_state = 3}, - [123] = {.lex_state = 70, .external_lex_state = 3}, - [124] = {.lex_state = 70, .external_lex_state = 3}, - [125] = {.lex_state = 70, .external_lex_state = 3}, + [116] = {.lex_state = 70, .external_lex_state = 2}, + [117] = {.lex_state = 70, .external_lex_state = 2}, + [118] = {.lex_state = 70, .external_lex_state = 2}, + [119] = {.lex_state = 70, .external_lex_state = 2}, + [120] = {.lex_state = 70, .external_lex_state = 2}, + [121] = {.lex_state = 70, .external_lex_state = 2}, + [122] = {.lex_state = 70, .external_lex_state = 2}, + [123] = {.lex_state = 70, .external_lex_state = 2}, + [124] = {.lex_state = 70, .external_lex_state = 2}, + [125] = {.lex_state = 70, .external_lex_state = 2}, [126] = {.lex_state = 70, .external_lex_state = 2}, [127] = {.lex_state = 70, .external_lex_state = 2}, [128] = {.lex_state = 70, .external_lex_state = 2}, - [129] = {.lex_state = 70, .external_lex_state = 2}, - [130] = {.lex_state = 70, .external_lex_state = 2}, - [131] = {.lex_state = 70, .external_lex_state = 2}, - [132] = {.lex_state = 70, .external_lex_state = 2}, - [133] = {.lex_state = 70, .external_lex_state = 2}, - [134] = {.lex_state = 70, .external_lex_state = 2}, - [135] = {.lex_state = 70, .external_lex_state = 2}, - [136] = {.lex_state = 70, .external_lex_state = 2}, - [137] = {.lex_state = 70, .external_lex_state = 2}, - [138] = {.lex_state = 6, .external_lex_state = 2}, + [129] = {.lex_state = 71}, + [130] = {.lex_state = 71}, + [131] = {.lex_state = 71}, + [132] = {.lex_state = 71}, + [133] = {.lex_state = 71}, + [134] = {.lex_state = 71}, + [135] = {.lex_state = 71}, + [136] = {.lex_state = 71}, + [137] = {.lex_state = 71}, + [138] = {.lex_state = 71}, [139] = {.lex_state = 71}, [140] = {.lex_state = 71}, [141] = {.lex_state = 71}, [142] = {.lex_state = 71}, - [143] = {.lex_state = 71}, - [144] = {.lex_state = 71}, - [145] = {.lex_state = 71}, + [143] = {.lex_state = 69, .external_lex_state = 3}, + [144] = {.lex_state = 69, .external_lex_state = 3}, + [145] = {.lex_state = 69, .external_lex_state = 3}, [146] = {.lex_state = 71, .external_lex_state = 4}, [147] = {.lex_state = 71}, - [148] = {.lex_state = 71}, - [149] = {.lex_state = 71}, - [150] = {.lex_state = 71}, - [151] = {.lex_state = 71}, + [148] = {.lex_state = 69, .external_lex_state = 3}, + [149] = {.lex_state = 69, .external_lex_state = 3}, + [150] = {.lex_state = 69, .external_lex_state = 3}, + [151] = {.lex_state = 69, .external_lex_state = 3}, [152] = {.lex_state = 71}, - [153] = {.lex_state = 71}, - [154] = {.lex_state = 71}, + [153] = {.lex_state = 69, .external_lex_state = 3}, + [154] = {.lex_state = 69, .external_lex_state = 3}, [155] = {.lex_state = 71}, [156] = {.lex_state = 71}, [157] = {.lex_state = 71}, [158] = {.lex_state = 71}, [159] = {.lex_state = 71}, [160] = {.lex_state = 71}, - [161] = {.lex_state = 69, .external_lex_state = 3}, + [161] = {.lex_state = 71}, [162] = {.lex_state = 71}, [163] = {.lex_state = 71}, [164] = {.lex_state = 71}, [165] = {.lex_state = 71}, [166] = {.lex_state = 71}, - [167] = {.lex_state = 69, .external_lex_state = 3}, - [168] = {.lex_state = 69, .external_lex_state = 3}, + [167] = {.lex_state = 71}, + [168] = {.lex_state = 71}, [169] = {.lex_state = 71}, [170] = {.lex_state = 71}, [171] = {.lex_state = 71}, [172] = {.lex_state = 71}, - [173] = {.lex_state = 71}, + [173] = {.lex_state = 69, .external_lex_state = 3}, [174] = {.lex_state = 71}, [175] = {.lex_state = 71}, [176] = {.lex_state = 71}, @@ -6466,22 +6484,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [178] = {.lex_state = 71}, [179] = {.lex_state = 69, .external_lex_state = 3}, [180] = {.lex_state = 71}, - [181] = {.lex_state = 71}, + [181] = {.lex_state = 69, .external_lex_state = 3}, [182] = {.lex_state = 71}, [183] = {.lex_state = 71}, [184] = {.lex_state = 71}, - [185] = {.lex_state = 71}, - [186] = {.lex_state = 69, .external_lex_state = 3}, + [185] = {.lex_state = 71, .external_lex_state = 4}, + [186] = {.lex_state = 71}, [187] = {.lex_state = 71}, [188] = {.lex_state = 71}, - [189] = {.lex_state = 69, .external_lex_state = 3}, + [189] = {.lex_state = 71}, [190] = {.lex_state = 71}, [191] = {.lex_state = 71}, [192] = {.lex_state = 71}, [193] = {.lex_state = 71}, [194] = {.lex_state = 71}, - [195] = {.lex_state = 69, .external_lex_state = 3}, - [196] = {.lex_state = 69, .external_lex_state = 3}, + [195] = {.lex_state = 71}, + [196] = {.lex_state = 71}, [197] = {.lex_state = 71}, [198] = {.lex_state = 71}, [199] = {.lex_state = 71}, @@ -6491,20 +6509,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [203] = {.lex_state = 71}, [204] = {.lex_state = 71}, [205] = {.lex_state = 71}, - [206] = {.lex_state = 69, .external_lex_state = 3}, + [206] = {.lex_state = 71}, [207] = {.lex_state = 71}, [208] = {.lex_state = 71}, [209] = {.lex_state = 71}, [210] = {.lex_state = 71}, - [211] = {.lex_state = 71, .external_lex_state = 4}, + [211] = {.lex_state = 71}, [212] = {.lex_state = 71}, [213] = {.lex_state = 71}, - [214] = {.lex_state = 71}, + [214] = {.lex_state = 69, .external_lex_state = 3}, [215] = {.lex_state = 71}, [216] = {.lex_state = 71}, [217] = {.lex_state = 71}, - [218] = {.lex_state = 71}, - [219] = {.lex_state = 71}, + [218] = {.lex_state = 69, .external_lex_state = 3}, + [219] = {.lex_state = 69, .external_lex_state = 3}, [220] = {.lex_state = 71}, [221] = {.lex_state = 71}, [222] = {.lex_state = 71}, @@ -6533,7 +6551,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [245] = {.lex_state = 71}, [246] = {.lex_state = 71}, [247] = {.lex_state = 71}, - [248] = {.lex_state = 69, .external_lex_state = 3}, + [248] = {.lex_state = 71}, [249] = {.lex_state = 71}, [250] = {.lex_state = 71}, [251] = {.lex_state = 71}, @@ -6543,7 +6561,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [255] = {.lex_state = 71}, [256] = {.lex_state = 71}, [257] = {.lex_state = 71}, - [258] = {.lex_state = 69, .external_lex_state = 3}, + [258] = {.lex_state = 71}, [259] = {.lex_state = 71}, [260] = {.lex_state = 71}, [261] = {.lex_state = 71}, @@ -6574,7 +6592,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [286] = {.lex_state = 71}, [287] = {.lex_state = 71}, [288] = {.lex_state = 71}, - [289] = {.lex_state = 69, .external_lex_state = 3}, + [289] = {.lex_state = 71}, [290] = {.lex_state = 71}, [291] = {.lex_state = 71}, [292] = {.lex_state = 71}, @@ -6745,9 +6763,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [457] = {.lex_state = 71}, [458] = {.lex_state = 71}, [459] = {.lex_state = 71}, - [460] = {.lex_state = 69, .external_lex_state = 3}, - [461] = {.lex_state = 69, .external_lex_state = 3}, - [462] = {.lex_state = 69, .external_lex_state = 3}, + [460] = {.lex_state = 71}, + [461] = {.lex_state = 71}, + [462] = {.lex_state = 71}, [463] = {.lex_state = 71}, [464] = {.lex_state = 71}, [465] = {.lex_state = 71}, @@ -6785,172 +6803,172 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [497] = {.lex_state = 71}, [498] = {.lex_state = 71}, [499] = {.lex_state = 71}, - [500] = {.lex_state = 69, .external_lex_state = 3}, - [501] = {.lex_state = 69, .external_lex_state = 3}, - [502] = {.lex_state = 69, .external_lex_state = 3}, - [503] = {.lex_state = 69, .external_lex_state = 3}, - [504] = {.lex_state = 69, .external_lex_state = 3}, - [505] = {.lex_state = 69, .external_lex_state = 3}, - [506] = {.lex_state = 69, .external_lex_state = 3}, - [507] = {.lex_state = 69, .external_lex_state = 3}, - [508] = {.lex_state = 69, .external_lex_state = 3}, - [509] = {.lex_state = 69, .external_lex_state = 2}, - [510] = {.lex_state = 14}, - [511] = {.lex_state = 14}, - [512] = {.lex_state = 14}, - [513] = {.lex_state = 14}, - [514] = {.lex_state = 69, .external_lex_state = 3}, - [515] = {.lex_state = 14}, - [516] = {.lex_state = 14}, - [517] = {.lex_state = 69, .external_lex_state = 2}, - [518] = {.lex_state = 69, .external_lex_state = 3}, - [519] = {.lex_state = 6, .external_lex_state = 2}, - [520] = {.lex_state = 69, .external_lex_state = 3}, - [521] = {.lex_state = 69, .external_lex_state = 2}, - [522] = {.lex_state = 69, .external_lex_state = 3}, - [523] = {.lex_state = 69, .external_lex_state = 2}, - [524] = {.lex_state = 69, .external_lex_state = 3}, - [525] = {.lex_state = 69, .external_lex_state = 3}, + [500] = {.lex_state = 71}, + [501] = {.lex_state = 71}, + [502] = {.lex_state = 71}, + [503] = {.lex_state = 71}, + [504] = {.lex_state = 71}, + [505] = {.lex_state = 71}, + [506] = {.lex_state = 71}, + [507] = {.lex_state = 71}, + [508] = {.lex_state = 71}, + [509] = {.lex_state = 71}, + [510] = {.lex_state = 71}, + [511] = {.lex_state = 71}, + [512] = {.lex_state = 71}, + [513] = {.lex_state = 71}, + [514] = {.lex_state = 71}, + [515] = {.lex_state = 71}, + [516] = {.lex_state = 71}, + [517] = {.lex_state = 71}, + [518] = {.lex_state = 71}, + [519] = {.lex_state = 71}, + [520] = {.lex_state = 71}, + [521] = {.lex_state = 71}, + [522] = {.lex_state = 71}, + [523] = {.lex_state = 71}, + [524] = {.lex_state = 71}, + [525] = {.lex_state = 71}, [526] = {.lex_state = 69, .external_lex_state = 3}, - [527] = {.lex_state = 71}, + [527] = {.lex_state = 69, .external_lex_state = 3}, [528] = {.lex_state = 69, .external_lex_state = 3}, - [529] = {.lex_state = 71}, - [530] = {.lex_state = 69, .external_lex_state = 3}, - [531] = {.lex_state = 69, .external_lex_state = 3}, - [532] = {.lex_state = 69, .external_lex_state = 2}, - [533] = {.lex_state = 69, .external_lex_state = 2}, - [534] = {.lex_state = 71}, - [535] = {.lex_state = 71}, + [529] = {.lex_state = 69, .external_lex_state = 3}, + [530] = {.lex_state = 71}, + [531] = {.lex_state = 71}, + [532] = {.lex_state = 71}, + [533] = {.lex_state = 69, .external_lex_state = 3}, + [534] = {.lex_state = 69, .external_lex_state = 3}, + [535] = {.lex_state = 69, .external_lex_state = 3}, [536] = {.lex_state = 71}, - [537] = {.lex_state = 69, .external_lex_state = 2}, + [537] = {.lex_state = 69, .external_lex_state = 3}, [538] = {.lex_state = 71}, - [539] = {.lex_state = 69, .external_lex_state = 2}, - [540] = {.lex_state = 69, .external_lex_state = 2}, + [539] = {.lex_state = 69, .external_lex_state = 3}, + [540] = {.lex_state = 71}, [541] = {.lex_state = 71}, - [542] = {.lex_state = 6, .external_lex_state = 2}, - [543] = {.lex_state = 71, .external_lex_state = 4}, - [544] = {.lex_state = 69, .external_lex_state = 2}, - [545] = {.lex_state = 71, .external_lex_state = 4}, - [546] = {.lex_state = 69, .external_lex_state = 2}, - [547] = {.lex_state = 71, .external_lex_state = 4}, - [548] = {.lex_state = 71, .external_lex_state = 4}, - [549] = {.lex_state = 69, .external_lex_state = 2}, - [550] = {.lex_state = 71, .external_lex_state = 4}, + [542] = {.lex_state = 71}, + [543] = {.lex_state = 71}, + [544] = {.lex_state = 71}, + [545] = {.lex_state = 71}, + [546] = {.lex_state = 71}, + [547] = {.lex_state = 71}, + [548] = {.lex_state = 71}, + [549] = {.lex_state = 71}, + [550] = {.lex_state = 71}, [551] = {.lex_state = 71}, - [552] = {.lex_state = 69, .external_lex_state = 3}, - [553] = {.lex_state = 69, .external_lex_state = 3}, - [554] = {.lex_state = 69, .external_lex_state = 3}, - [555] = {.lex_state = 71, .external_lex_state = 4}, - [556] = {.lex_state = 69, .external_lex_state = 2}, - [557] = {.lex_state = 71, .external_lex_state = 4}, - [558] = {.lex_state = 69, .external_lex_state = 2}, + [552] = {.lex_state = 71}, + [553] = {.lex_state = 71}, + [554] = {.lex_state = 71}, + [555] = {.lex_state = 71}, + [556] = {.lex_state = 71}, + [557] = {.lex_state = 71}, + [558] = {.lex_state = 71}, [559] = {.lex_state = 71}, [560] = {.lex_state = 71}, [561] = {.lex_state = 71}, - [562] = {.lex_state = 71, .external_lex_state = 4}, + [562] = {.lex_state = 71}, [563] = {.lex_state = 71}, [564] = {.lex_state = 71}, - [565] = {.lex_state = 69, .external_lex_state = 2}, - [566] = {.lex_state = 69, .external_lex_state = 2}, + [565] = {.lex_state = 71}, + [566] = {.lex_state = 71}, [567] = {.lex_state = 71}, - [568] = {.lex_state = 69, .external_lex_state = 2}, + [568] = {.lex_state = 71}, [569] = {.lex_state = 71}, - [570] = {.lex_state = 69, .external_lex_state = 2}, - [571] = {.lex_state = 69, .external_lex_state = 2}, - [572] = {.lex_state = 71, .external_lex_state = 4}, - [573] = {.lex_state = 71, .external_lex_state = 4}, - [574] = {.lex_state = 69, .external_lex_state = 2}, - [575] = {.lex_state = 71, .external_lex_state = 4}, - [576] = {.lex_state = 69, .external_lex_state = 2}, - [577] = {.lex_state = 69, .external_lex_state = 2}, - [578] = {.lex_state = 71}, - [579] = {.lex_state = 71, .external_lex_state = 4}, - [580] = {.lex_state = 71}, - [581] = {.lex_state = 71}, - [582] = {.lex_state = 71}, - [583] = {.lex_state = 71, .external_lex_state = 4}, - [584] = {.lex_state = 71}, - [585] = {.lex_state = 71, .external_lex_state = 4}, - [586] = {.lex_state = 71}, - [587] = {.lex_state = 71, .external_lex_state = 4}, - [588] = {.lex_state = 71, .external_lex_state = 4}, - [589] = {.lex_state = 71}, - [590] = {.lex_state = 71}, - [591] = {.lex_state = 71}, - [592] = {.lex_state = 71, .external_lex_state = 4}, - [593] = {.lex_state = 71, .external_lex_state = 4}, - [594] = {.lex_state = 71, .external_lex_state = 4}, - [595] = {.lex_state = 71, .external_lex_state = 4}, - [596] = {.lex_state = 71}, - [597] = {.lex_state = 71}, - [598] = {.lex_state = 71}, - [599] = {.lex_state = 14}, - [600] = {.lex_state = 71}, - [601] = {.lex_state = 71}, - [602] = {.lex_state = 71}, - [603] = {.lex_state = 71}, - [604] = {.lex_state = 71}, + [570] = {.lex_state = 71}, + [571] = {.lex_state = 69, .external_lex_state = 3}, + [572] = {.lex_state = 69, .external_lex_state = 3}, + [573] = {.lex_state = 69, .external_lex_state = 3}, + [574] = {.lex_state = 69, .external_lex_state = 3}, + [575] = {.lex_state = 69, .external_lex_state = 2}, + [576] = {.lex_state = 69, .external_lex_state = 3}, + [577] = {.lex_state = 69, .external_lex_state = 3}, + [578] = {.lex_state = 69, .external_lex_state = 3}, + [579] = {.lex_state = 69, .external_lex_state = 3}, + [580] = {.lex_state = 69, .external_lex_state = 2}, + [581] = {.lex_state = 69, .external_lex_state = 3}, + [582] = {.lex_state = 69, .external_lex_state = 2}, + [583] = {.lex_state = 14}, + [584] = {.lex_state = 6, .external_lex_state = 2}, + [585] = {.lex_state = 14}, + [586] = {.lex_state = 14}, + [587] = {.lex_state = 69, .external_lex_state = 2}, + [588] = {.lex_state = 69, .external_lex_state = 2}, + [589] = {.lex_state = 69, .external_lex_state = 2}, + [590] = {.lex_state = 69, .external_lex_state = 2}, + [591] = {.lex_state = 69, .external_lex_state = 2}, + [592] = {.lex_state = 14}, + [593] = {.lex_state = 14}, + [594] = {.lex_state = 69, .external_lex_state = 2}, + [595] = {.lex_state = 6, .external_lex_state = 2}, + [596] = {.lex_state = 14}, + [597] = {.lex_state = 69, .external_lex_state = 2}, + [598] = {.lex_state = 14}, + [599] = {.lex_state = 69, .external_lex_state = 2}, + [600] = {.lex_state = 69, .external_lex_state = 2}, + [601] = {.lex_state = 69, .external_lex_state = 3}, + [602] = {.lex_state = 69, .external_lex_state = 3}, + [603] = {.lex_state = 69, .external_lex_state = 2}, + [604] = {.lex_state = 69, .external_lex_state = 2}, [605] = {.lex_state = 71}, [606] = {.lex_state = 71}, - [607] = {.lex_state = 71}, - [608] = {.lex_state = 71}, - [609] = {.lex_state = 71}, - [610] = {.lex_state = 71}, - [611] = {.lex_state = 71}, - [612] = {.lex_state = 71}, - [613] = {.lex_state = 71}, + [607] = {.lex_state = 69, .external_lex_state = 2}, + [608] = {.lex_state = 69, .external_lex_state = 2}, + [609] = {.lex_state = 69, .external_lex_state = 2}, + [610] = {.lex_state = 69, .external_lex_state = 2}, + [611] = {.lex_state = 69, .external_lex_state = 2}, + [612] = {.lex_state = 69, .external_lex_state = 2}, + [613] = {.lex_state = 69, .external_lex_state = 2}, [614] = {.lex_state = 71}, - [615] = {.lex_state = 71}, - [616] = {.lex_state = 71}, - [617] = {.lex_state = 71}, - [618] = {.lex_state = 71}, - [619] = {.lex_state = 71}, - [620] = {.lex_state = 71}, - [621] = {.lex_state = 71}, + [615] = {.lex_state = 69, .external_lex_state = 2}, + [616] = {.lex_state = 69, .external_lex_state = 2}, + [617] = {.lex_state = 69, .external_lex_state = 2}, + [618] = {.lex_state = 69, .external_lex_state = 2}, + [619] = {.lex_state = 71, .external_lex_state = 4}, + [620] = {.lex_state = 69, .external_lex_state = 2}, + [621] = {.lex_state = 69, .external_lex_state = 2}, [622] = {.lex_state = 71}, [623] = {.lex_state = 71}, - [624] = {.lex_state = 71}, - [625] = {.lex_state = 71}, - [626] = {.lex_state = 71}, - [627] = {.lex_state = 71}, + [624] = {.lex_state = 69, .external_lex_state = 2}, + [625] = {.lex_state = 69, .external_lex_state = 2}, + [626] = {.lex_state = 69, .external_lex_state = 2}, + [627] = {.lex_state = 71, .external_lex_state = 4}, [628] = {.lex_state = 71}, - [629] = {.lex_state = 71}, + [629] = {.lex_state = 69, .external_lex_state = 2}, [630] = {.lex_state = 71}, [631] = {.lex_state = 71}, [632] = {.lex_state = 71}, - [633] = {.lex_state = 71}, - [634] = {.lex_state = 71}, + [633] = {.lex_state = 71, .external_lex_state = 4}, + [634] = {.lex_state = 71, .external_lex_state = 4}, [635] = {.lex_state = 71}, - [636] = {.lex_state = 71}, - [637] = {.lex_state = 71}, + [636] = {.lex_state = 71, .external_lex_state = 4}, + [637] = {.lex_state = 71, .external_lex_state = 4}, [638] = {.lex_state = 71}, [639] = {.lex_state = 71}, - [640] = {.lex_state = 71}, + [640] = {.lex_state = 71, .external_lex_state = 4}, [641] = {.lex_state = 71}, - [642] = {.lex_state = 71}, + [642] = {.lex_state = 71, .external_lex_state = 4}, [643] = {.lex_state = 71}, [644] = {.lex_state = 71}, [645] = {.lex_state = 71}, - [646] = {.lex_state = 71}, + [646] = {.lex_state = 71, .external_lex_state = 4}, [647] = {.lex_state = 71}, - [648] = {.lex_state = 71}, + [648] = {.lex_state = 71, .external_lex_state = 4}, [649] = {.lex_state = 71}, [650] = {.lex_state = 71}, - [651] = {.lex_state = 71}, - [652] = {.lex_state = 71}, + [651] = {.lex_state = 71, .external_lex_state = 4}, + [652] = {.lex_state = 71, .external_lex_state = 4}, [653] = {.lex_state = 71}, [654] = {.lex_state = 71}, [655] = {.lex_state = 71}, - [656] = {.lex_state = 71}, - [657] = {.lex_state = 71}, - [658] = {.lex_state = 71}, + [656] = {.lex_state = 71, .external_lex_state = 4}, + [657] = {.lex_state = 71, .external_lex_state = 4}, + [658] = {.lex_state = 71, .external_lex_state = 4}, [659] = {.lex_state = 71}, [660] = {.lex_state = 71}, - [661] = {.lex_state = 71}, - [662] = {.lex_state = 71}, - [663] = {.lex_state = 71}, - [664] = {.lex_state = 71}, - [665] = {.lex_state = 71}, + [661] = {.lex_state = 71, .external_lex_state = 4}, + [662] = {.lex_state = 71, .external_lex_state = 4}, + [663] = {.lex_state = 71, .external_lex_state = 4}, + [664] = {.lex_state = 71, .external_lex_state = 4}, + [665] = {.lex_state = 71, .external_lex_state = 4}, [666] = {.lex_state = 71}, [667] = {.lex_state = 71}, [668] = {.lex_state = 71}, @@ -6961,7 +6979,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [673] = {.lex_state = 71}, [674] = {.lex_state = 71}, [675] = {.lex_state = 71}, - [676] = {.lex_state = 71}, + [676] = {.lex_state = 14}, [677] = {.lex_state = 71}, [678] = {.lex_state = 71}, [679] = {.lex_state = 71}, @@ -6975,318 +6993,318 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 71}, [688] = {.lex_state = 71}, [689] = {.lex_state = 71}, - [690] = {.lex_state = 14}, - [691] = {.lex_state = 14}, - [692] = {.lex_state = 14}, - [693] = {.lex_state = 14}, - [694] = {.lex_state = 14}, - [695] = {.lex_state = 14}, - [696] = {.lex_state = 69, .external_lex_state = 2}, - [697] = {.lex_state = 14}, - [698] = {.lex_state = 69, .external_lex_state = 3}, - [699] = {.lex_state = 69, .external_lex_state = 3}, - [700] = {.lex_state = 69, .external_lex_state = 3}, - [701] = {.lex_state = 69, .external_lex_state = 3}, - [702] = {.lex_state = 69, .external_lex_state = 3}, - [703] = {.lex_state = 69, .external_lex_state = 3}, - [704] = {.lex_state = 69, .external_lex_state = 3}, - [705] = {.lex_state = 69, .external_lex_state = 2}, - [706] = {.lex_state = 69, .external_lex_state = 2}, - [707] = {.lex_state = 69, .external_lex_state = 2}, - [708] = {.lex_state = 6, .external_lex_state = 2}, - [709] = {.lex_state = 69, .external_lex_state = 3}, - [710] = {.lex_state = 69, .external_lex_state = 3}, - [711] = {.lex_state = 69, .external_lex_state = 3}, - [712] = {.lex_state = 69, .external_lex_state = 3}, - [713] = {.lex_state = 69, .external_lex_state = 3}, - [714] = {.lex_state = 69, .external_lex_state = 3}, - [715] = {.lex_state = 69, .external_lex_state = 3}, - [716] = {.lex_state = 69, .external_lex_state = 3}, - [717] = {.lex_state = 69, .external_lex_state = 3}, - [718] = {.lex_state = 6, .external_lex_state = 2}, - [719] = {.lex_state = 69, .external_lex_state = 2}, - [720] = {.lex_state = 69, .external_lex_state = 2}, - [721] = {.lex_state = 69, .external_lex_state = 2}, - [722] = {.lex_state = 69, .external_lex_state = 2}, - [723] = {.lex_state = 69, .external_lex_state = 2}, - [724] = {.lex_state = 69, .external_lex_state = 2}, - [725] = {.lex_state = 69, .external_lex_state = 2}, - [726] = {.lex_state = 69, .external_lex_state = 2}, - [727] = {.lex_state = 69, .external_lex_state = 2}, - [728] = {.lex_state = 69, .external_lex_state = 2}, - [729] = {.lex_state = 69, .external_lex_state = 3}, - [730] = {.lex_state = 14}, - [731] = {.lex_state = 69, .external_lex_state = 2}, - [732] = {.lex_state = 69, .external_lex_state = 2}, - [733] = {.lex_state = 69, .external_lex_state = 3}, - [734] = {.lex_state = 69, .external_lex_state = 3}, - [735] = {.lex_state = 69, .external_lex_state = 2}, - [736] = {.lex_state = 69, .external_lex_state = 3}, - [737] = {.lex_state = 69, .external_lex_state = 3}, - [738] = {.lex_state = 69, .external_lex_state = 3}, - [739] = {.lex_state = 69, .external_lex_state = 2}, - [740] = {.lex_state = 69, .external_lex_state = 2}, - [741] = {.lex_state = 69, .external_lex_state = 2}, - [742] = {.lex_state = 69, .external_lex_state = 2}, - [743] = {.lex_state = 69, .external_lex_state = 2}, - [744] = {.lex_state = 69, .external_lex_state = 2}, - [745] = {.lex_state = 69, .external_lex_state = 2}, - [746] = {.lex_state = 69, .external_lex_state = 3}, - [747] = {.lex_state = 69, .external_lex_state = 2}, - [748] = {.lex_state = 69, .external_lex_state = 2}, - [749] = {.lex_state = 69, .external_lex_state = 2}, - [750] = {.lex_state = 69, .external_lex_state = 2}, - [751] = {.lex_state = 69, .external_lex_state = 2}, - [752] = {.lex_state = 69, .external_lex_state = 3}, - [753] = {.lex_state = 69, .external_lex_state = 2}, - [754] = {.lex_state = 69, .external_lex_state = 2}, - [755] = {.lex_state = 69, .external_lex_state = 2}, - [756] = {.lex_state = 69, .external_lex_state = 2}, - [757] = {.lex_state = 69, .external_lex_state = 2}, - [758] = {.lex_state = 69, .external_lex_state = 3}, - [759] = {.lex_state = 69, .external_lex_state = 3}, + [690] = {.lex_state = 71}, + [691] = {.lex_state = 71}, + [692] = {.lex_state = 71}, + [693] = {.lex_state = 71}, + [694] = {.lex_state = 71}, + [695] = {.lex_state = 71}, + [696] = {.lex_state = 71}, + [697] = {.lex_state = 71}, + [698] = {.lex_state = 71}, + [699] = {.lex_state = 71}, + [700] = {.lex_state = 71}, + [701] = {.lex_state = 71}, + [702] = {.lex_state = 71}, + [703] = {.lex_state = 71}, + [704] = {.lex_state = 71}, + [705] = {.lex_state = 71}, + [706] = {.lex_state = 71}, + [707] = {.lex_state = 71}, + [708] = {.lex_state = 71}, + [709] = {.lex_state = 71}, + [710] = {.lex_state = 71}, + [711] = {.lex_state = 71}, + [712] = {.lex_state = 71}, + [713] = {.lex_state = 71}, + [714] = {.lex_state = 71}, + [715] = {.lex_state = 71}, + [716] = {.lex_state = 71}, + [717] = {.lex_state = 71}, + [718] = {.lex_state = 71}, + [719] = {.lex_state = 71}, + [720] = {.lex_state = 71}, + [721] = {.lex_state = 71}, + [722] = {.lex_state = 71}, + [723] = {.lex_state = 71}, + [724] = {.lex_state = 71}, + [725] = {.lex_state = 71}, + [726] = {.lex_state = 71}, + [727] = {.lex_state = 71}, + [728] = {.lex_state = 71}, + [729] = {.lex_state = 71}, + [730] = {.lex_state = 71}, + [731] = {.lex_state = 71}, + [732] = {.lex_state = 71}, + [733] = {.lex_state = 71}, + [734] = {.lex_state = 71}, + [735] = {.lex_state = 71}, + [736] = {.lex_state = 71}, + [737] = {.lex_state = 71}, + [738] = {.lex_state = 71}, + [739] = {.lex_state = 71}, + [740] = {.lex_state = 71}, + [741] = {.lex_state = 71}, + [742] = {.lex_state = 71}, + [743] = {.lex_state = 71}, + [744] = {.lex_state = 71}, + [745] = {.lex_state = 71}, + [746] = {.lex_state = 71}, + [747] = {.lex_state = 71}, + [748] = {.lex_state = 71}, + [749] = {.lex_state = 71}, + [750] = {.lex_state = 71}, + [751] = {.lex_state = 71}, + [752] = {.lex_state = 71}, + [753] = {.lex_state = 71}, + [754] = {.lex_state = 71}, + [755] = {.lex_state = 71}, + [756] = {.lex_state = 71}, + [757] = {.lex_state = 71}, + [758] = {.lex_state = 71}, + [759] = {.lex_state = 71}, [760] = {.lex_state = 69, .external_lex_state = 3}, - [761] = {.lex_state = 69, .external_lex_state = 2}, - [762] = {.lex_state = 14}, + [761] = {.lex_state = 69, .external_lex_state = 3}, + [762] = {.lex_state = 69, .external_lex_state = 3}, [763] = {.lex_state = 69, .external_lex_state = 3}, [764] = {.lex_state = 69, .external_lex_state = 3}, [765] = {.lex_state = 69, .external_lex_state = 3}, - [766] = {.lex_state = 69, .external_lex_state = 3}, - [767] = {.lex_state = 69, .external_lex_state = 2}, - [768] = {.lex_state = 69, .external_lex_state = 3}, - [769] = {.lex_state = 69, .external_lex_state = 3}, - [770] = {.lex_state = 69, .external_lex_state = 5}, - [771] = {.lex_state = 69, .external_lex_state = 3}, + [766] = {.lex_state = 14}, + [767] = {.lex_state = 14}, + [768] = {.lex_state = 14}, + [769] = {.lex_state = 14}, + [770] = {.lex_state = 14}, + [771] = {.lex_state = 14}, [772] = {.lex_state = 14}, - [773] = {.lex_state = 69, .external_lex_state = 2}, - [774] = {.lex_state = 69, .external_lex_state = 3}, + [773] = {.lex_state = 69, .external_lex_state = 3}, + [774] = {.lex_state = 14}, [775] = {.lex_state = 69, .external_lex_state = 3}, [776] = {.lex_state = 69, .external_lex_state = 2}, - [777] = {.lex_state = 69, .external_lex_state = 3}, - [778] = {.lex_state = 14}, - [779] = {.lex_state = 69, .external_lex_state = 2}, - [780] = {.lex_state = 14}, - [781] = {.lex_state = 14}, - [782] = {.lex_state = 69, .external_lex_state = 2}, - [783] = {.lex_state = 69, .external_lex_state = 2}, - [784] = {.lex_state = 14}, - [785] = {.lex_state = 14}, - [786] = {.lex_state = 14}, + [777] = {.lex_state = 69, .external_lex_state = 2}, + [778] = {.lex_state = 69, .external_lex_state = 3}, + [779] = {.lex_state = 69, .external_lex_state = 3}, + [780] = {.lex_state = 69, .external_lex_state = 3}, + [781] = {.lex_state = 69, .external_lex_state = 3}, + [782] = {.lex_state = 69, .external_lex_state = 3}, + [783] = {.lex_state = 69, .external_lex_state = 3}, + [784] = {.lex_state = 69, .external_lex_state = 3}, + [785] = {.lex_state = 69, .external_lex_state = 2}, + [786] = {.lex_state = 69, .external_lex_state = 2}, [787] = {.lex_state = 6, .external_lex_state = 2}, - [788] = {.lex_state = 69, .external_lex_state = 3}, - [789] = {.lex_state = 69, .external_lex_state = 3}, - [790] = {.lex_state = 17}, + [788] = {.lex_state = 69, .external_lex_state = 2}, + [789] = {.lex_state = 69, .external_lex_state = 2}, + [790] = {.lex_state = 69, .external_lex_state = 2}, [791] = {.lex_state = 69, .external_lex_state = 2}, - [792] = {.lex_state = 69, .external_lex_state = 3}, - [793] = {.lex_state = 14}, + [792] = {.lex_state = 6, .external_lex_state = 2}, + [793] = {.lex_state = 69, .external_lex_state = 2}, [794] = {.lex_state = 69, .external_lex_state = 2}, [795] = {.lex_state = 69, .external_lex_state = 2}, - [796] = {.lex_state = 14}, - [797] = {.lex_state = 69, .external_lex_state = 3}, - [798] = {.lex_state = 6, .external_lex_state = 2}, - [799] = {.lex_state = 69, .external_lex_state = 2}, - [800] = {.lex_state = 16}, - [801] = {.lex_state = 69, .external_lex_state = 2}, - [802] = {.lex_state = 69, .external_lex_state = 2}, + [796] = {.lex_state = 69, .external_lex_state = 2}, + [797] = {.lex_state = 69, .external_lex_state = 2}, + [798] = {.lex_state = 69, .external_lex_state = 2}, + [799] = {.lex_state = 69, .external_lex_state = 3}, + [800] = {.lex_state = 69, .external_lex_state = 3}, + [801] = {.lex_state = 69, .external_lex_state = 3}, + [802] = {.lex_state = 69, .external_lex_state = 3}, [803] = {.lex_state = 69, .external_lex_state = 3}, [804] = {.lex_state = 69, .external_lex_state = 2}, - [805] = {.lex_state = 69, .external_lex_state = 3}, - [806] = {.lex_state = 69, .external_lex_state = 2}, - [807] = {.lex_state = 6, .external_lex_state = 2}, - [808] = {.lex_state = 17}, - [809] = {.lex_state = 6, .external_lex_state = 2}, + [805] = {.lex_state = 69, .external_lex_state = 2}, + [806] = {.lex_state = 69, .external_lex_state = 3}, + [807] = {.lex_state = 69, .external_lex_state = 3}, + [808] = {.lex_state = 69, .external_lex_state = 2}, + [809] = {.lex_state = 69, .external_lex_state = 3}, [810] = {.lex_state = 69, .external_lex_state = 2}, - [811] = {.lex_state = 14}, + [811] = {.lex_state = 69, .external_lex_state = 2}, [812] = {.lex_state = 69, .external_lex_state = 3}, - [813] = {.lex_state = 14}, - [814] = {.lex_state = 17}, - [815] = {.lex_state = 6, .external_lex_state = 2}, - [816] = {.lex_state = 69, .external_lex_state = 2}, - [817] = {.lex_state = 6, .external_lex_state = 2}, - [818] = {.lex_state = 14}, - [819] = {.lex_state = 69, .external_lex_state = 3}, - [820] = {.lex_state = 14}, - [821] = {.lex_state = 69, .external_lex_state = 3}, - [822] = {.lex_state = 14}, - [823] = {.lex_state = 17}, - [824] = {.lex_state = 14}, - [825] = {.lex_state = 17}, - [826] = {.lex_state = 14}, - [827] = {.lex_state = 14}, - [828] = {.lex_state = 14}, - [829] = {.lex_state = 14}, - [830] = {.lex_state = 14}, - [831] = {.lex_state = 14}, - [832] = {.lex_state = 14}, - [833] = {.lex_state = 69, .external_lex_state = 2}, - [834] = {.lex_state = 17}, - [835] = {.lex_state = 14}, + [813] = {.lex_state = 69, .external_lex_state = 2}, + [814] = {.lex_state = 69, .external_lex_state = 3}, + [815] = {.lex_state = 69, .external_lex_state = 3}, + [816] = {.lex_state = 69, .external_lex_state = 5}, + [817] = {.lex_state = 69, .external_lex_state = 3}, + [818] = {.lex_state = 69, .external_lex_state = 2}, + [819] = {.lex_state = 69, .external_lex_state = 2}, + [820] = {.lex_state = 69, .external_lex_state = 3}, + [821] = {.lex_state = 69, .external_lex_state = 2}, + [822] = {.lex_state = 69, .external_lex_state = 2}, + [823] = {.lex_state = 69, .external_lex_state = 2}, + [824] = {.lex_state = 69, .external_lex_state = 3}, + [825] = {.lex_state = 69, .external_lex_state = 3}, + [826] = {.lex_state = 69, .external_lex_state = 2}, + [827] = {.lex_state = 69, .external_lex_state = 3}, + [828] = {.lex_state = 69, .external_lex_state = 2}, + [829] = {.lex_state = 6, .external_lex_state = 2}, + [830] = {.lex_state = 69, .external_lex_state = 3}, + [831] = {.lex_state = 69, .external_lex_state = 3}, + [832] = {.lex_state = 69, .external_lex_state = 2}, + [833] = {.lex_state = 69, .external_lex_state = 3}, + [834] = {.lex_state = 69, .external_lex_state = 2}, + [835] = {.lex_state = 69, .external_lex_state = 3}, [836] = {.lex_state = 14}, - [837] = {.lex_state = 14}, - [838] = {.lex_state = 69, .external_lex_state = 2}, - [839] = {.lex_state = 17}, - [840] = {.lex_state = 14}, + [837] = {.lex_state = 6, .external_lex_state = 2}, + [838] = {.lex_state = 6, .external_lex_state = 2}, + [839] = {.lex_state = 69, .external_lex_state = 2}, + [840] = {.lex_state = 69, .external_lex_state = 2}, [841] = {.lex_state = 69, .external_lex_state = 2}, - [842] = {.lex_state = 14}, + [842] = {.lex_state = 69, .external_lex_state = 2}, [843] = {.lex_state = 69, .external_lex_state = 2}, - [844] = {.lex_state = 69, .external_lex_state = 3}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 17}, - [847] = {.lex_state = 17}, - [848] = {.lex_state = 14}, - [849] = {.lex_state = 14}, - [850] = {.lex_state = 14}, - [851] = {.lex_state = 14}, - [852] = {.lex_state = 14}, - [853] = {.lex_state = 14}, - [854] = {.lex_state = 14}, - [855] = {.lex_state = 69, .external_lex_state = 2}, + [844] = {.lex_state = 69, .external_lex_state = 2}, + [845] = {.lex_state = 69, .external_lex_state = 2}, + [846] = {.lex_state = 69, .external_lex_state = 2}, + [847] = {.lex_state = 69, .external_lex_state = 6}, + [848] = {.lex_state = 69, .external_lex_state = 2}, + [849] = {.lex_state = 69, .external_lex_state = 2}, + [850] = {.lex_state = 69, .external_lex_state = 2}, + [851] = {.lex_state = 69, .external_lex_state = 2}, + [852] = {.lex_state = 69, .external_lex_state = 3}, + [853] = {.lex_state = 69, .external_lex_state = 2}, + [854] = {.lex_state = 69, .external_lex_state = 6}, + [855] = {.lex_state = 69, .external_lex_state = 3}, [856] = {.lex_state = 69, .external_lex_state = 3}, - [857] = {.lex_state = 14}, - [858] = {.lex_state = 69, .external_lex_state = 3}, - [859] = {.lex_state = 14}, - [860] = {.lex_state = 14}, - [861] = {.lex_state = 14}, - [862] = {.lex_state = 14}, + [857] = {.lex_state = 69, .external_lex_state = 3}, + [858] = {.lex_state = 69, .external_lex_state = 2}, + [859] = {.lex_state = 69, .external_lex_state = 3}, + [860] = {.lex_state = 69, .external_lex_state = 3}, + [861] = {.lex_state = 69, .external_lex_state = 3}, + [862] = {.lex_state = 69, .external_lex_state = 3}, [863] = {.lex_state = 69, .external_lex_state = 2}, - [864] = {.lex_state = 14}, - [865] = {.lex_state = 14}, - [866] = {.lex_state = 14}, - [867] = {.lex_state = 14}, - [868] = {.lex_state = 14}, - [869] = {.lex_state = 14}, - [870] = {.lex_state = 6, .external_lex_state = 2}, - [871] = {.lex_state = 14}, - [872] = {.lex_state = 14}, + [864] = {.lex_state = 69, .external_lex_state = 2}, + [865] = {.lex_state = 69, .external_lex_state = 2}, + [866] = {.lex_state = 69, .external_lex_state = 3}, + [867] = {.lex_state = 69, .external_lex_state = 2}, + [868] = {.lex_state = 69, .external_lex_state = 3}, + [869] = {.lex_state = 69, .external_lex_state = 2}, + [870] = {.lex_state = 69, .external_lex_state = 3}, + [871] = {.lex_state = 69, .external_lex_state = 2}, + [872] = {.lex_state = 69, .external_lex_state = 2}, [873] = {.lex_state = 69, .external_lex_state = 3}, - [874] = {.lex_state = 6, .external_lex_state = 2}, - [875] = {.lex_state = 14}, - [876] = {.lex_state = 14}, - [877] = {.lex_state = 14}, - [878] = {.lex_state = 14}, - [879] = {.lex_state = 14}, - [880] = {.lex_state = 14}, - [881] = {.lex_state = 14}, - [882] = {.lex_state = 14}, - [883] = {.lex_state = 14}, - [884] = {.lex_state = 69, .external_lex_state = 3}, - [885] = {.lex_state = 14}, - [886] = {.lex_state = 69, .external_lex_state = 3}, - [887] = {.lex_state = 14}, - [888] = {.lex_state = 14}, - [889] = {.lex_state = 14}, + [874] = {.lex_state = 69, .external_lex_state = 2}, + [875] = {.lex_state = 69, .external_lex_state = 2}, + [876] = {.lex_state = 69, .external_lex_state = 2}, + [877] = {.lex_state = 69, .external_lex_state = 3}, + [878] = {.lex_state = 6, .external_lex_state = 2}, + [879] = {.lex_state = 69, .external_lex_state = 2}, + [880] = {.lex_state = 69, .external_lex_state = 3}, + [881] = {.lex_state = 69, .external_lex_state = 2}, + [882] = {.lex_state = 69, .external_lex_state = 2}, + [883] = {.lex_state = 69, .external_lex_state = 2}, + [884] = {.lex_state = 14, .external_lex_state = 7}, + [885] = {.lex_state = 6, .external_lex_state = 2}, + [886] = {.lex_state = 14}, + [887] = {.lex_state = 14, .external_lex_state = 7}, + [888] = {.lex_state = 14, .external_lex_state = 7}, + [889] = {.lex_state = 14, .external_lex_state = 7}, [890] = {.lex_state = 14}, [891] = {.lex_state = 14}, - [892] = {.lex_state = 14}, - [893] = {.lex_state = 14}, + [892] = {.lex_state = 69, .external_lex_state = 2}, + [893] = {.lex_state = 69, .external_lex_state = 2}, [894] = {.lex_state = 14}, - [895] = {.lex_state = 14}, - [896] = {.lex_state = 14}, - [897] = {.lex_state = 14}, - [898] = {.lex_state = 14}, + [895] = {.lex_state = 69, .external_lex_state = 2}, + [896] = {.lex_state = 69, .external_lex_state = 3}, + [897] = {.lex_state = 69, .external_lex_state = 2}, + [898] = {.lex_state = 14, .external_lex_state = 7}, [899] = {.lex_state = 14}, - [900] = {.lex_state = 14}, - [901] = {.lex_state = 14}, - [902] = {.lex_state = 14}, - [903] = {.lex_state = 14}, - [904] = {.lex_state = 14}, - [905] = {.lex_state = 14}, - [906] = {.lex_state = 69, .external_lex_state = 3}, - [907] = {.lex_state = 14}, - [908] = {.lex_state = 69, .external_lex_state = 2}, - [909] = {.lex_state = 14}, - [910] = {.lex_state = 14}, - [911] = {.lex_state = 69, .external_lex_state = 3}, - [912] = {.lex_state = 69, .external_lex_state = 3}, - [913] = {.lex_state = 69, .external_lex_state = 2}, - [914] = {.lex_state = 14}, - [915] = {.lex_state = 69, .external_lex_state = 3}, - [916] = {.lex_state = 14}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 14}, - [919] = {.lex_state = 14}, - [920] = {.lex_state = 14}, - [921] = {.lex_state = 14}, - [922] = {.lex_state = 69, .external_lex_state = 2}, - [923] = {.lex_state = 14}, + [900] = {.lex_state = 69, .external_lex_state = 2}, + [901] = {.lex_state = 14, .external_lex_state = 7}, + [902] = {.lex_state = 14, .external_lex_state = 7}, + [903] = {.lex_state = 69, .external_lex_state = 3}, + [904] = {.lex_state = 6, .external_lex_state = 2}, + [905] = {.lex_state = 69, .external_lex_state = 3}, + [906] = {.lex_state = 14}, + [907] = {.lex_state = 6, .external_lex_state = 2}, + [908] = {.lex_state = 14, .external_lex_state = 7}, + [909] = {.lex_state = 14, .external_lex_state = 7}, + [910] = {.lex_state = 69, .external_lex_state = 2}, + [911] = {.lex_state = 14, .external_lex_state = 7}, + [912] = {.lex_state = 14}, + [913] = {.lex_state = 6, .external_lex_state = 2}, + [914] = {.lex_state = 69, .external_lex_state = 2}, + [915] = {.lex_state = 69, .external_lex_state = 2}, + [916] = {.lex_state = 69, .external_lex_state = 2}, + [917] = {.lex_state = 14, .external_lex_state = 7}, + [918] = {.lex_state = 69, .external_lex_state = 2}, + [919] = {.lex_state = 69, .external_lex_state = 2}, + [920] = {.lex_state = 14, .external_lex_state = 7}, + [921] = {.lex_state = 14, .external_lex_state = 7}, + [922] = {.lex_state = 14}, + [923] = {.lex_state = 69, .external_lex_state = 2}, [924] = {.lex_state = 14}, - [925] = {.lex_state = 14}, - [926] = {.lex_state = 14}, - [927] = {.lex_state = 14}, + [925] = {.lex_state = 69, .external_lex_state = 2}, + [926] = {.lex_state = 69, .external_lex_state = 2}, + [927] = {.lex_state = 69, .external_lex_state = 3}, [928] = {.lex_state = 14}, [929] = {.lex_state = 14}, - [930] = {.lex_state = 14}, - [931] = {.lex_state = 69, .external_lex_state = 3}, - [932] = {.lex_state = 14}, - [933] = {.lex_state = 14}, - [934] = {.lex_state = 14}, - [935] = {.lex_state = 14}, - [936] = {.lex_state = 14}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 14}, - [939] = {.lex_state = 69, .external_lex_state = 3}, + [930] = {.lex_state = 69, .external_lex_state = 2}, + [931] = {.lex_state = 14}, + [932] = {.lex_state = 69, .external_lex_state = 2}, + [933] = {.lex_state = 14, .external_lex_state = 7}, + [934] = {.lex_state = 69, .external_lex_state = 2}, + [935] = {.lex_state = 69, .external_lex_state = 2}, + [936] = {.lex_state = 14, .external_lex_state = 7}, + [937] = {.lex_state = 69, .external_lex_state = 2}, + [938] = {.lex_state = 69, .external_lex_state = 2}, + [939] = {.lex_state = 14, .external_lex_state = 7}, [940] = {.lex_state = 14}, - [941] = {.lex_state = 14}, + [941] = {.lex_state = 69, .external_lex_state = 2}, [942] = {.lex_state = 14}, [943] = {.lex_state = 14}, [944] = {.lex_state = 14}, - [945] = {.lex_state = 69, .external_lex_state = 5}, - [946] = {.lex_state = 14}, - [947] = {.lex_state = 69, .external_lex_state = 3}, + [945] = {.lex_state = 69, .external_lex_state = 2}, + [946] = {.lex_state = 17}, + [947] = {.lex_state = 14}, [948] = {.lex_state = 14}, [949] = {.lex_state = 14}, - [950] = {.lex_state = 69, .external_lex_state = 3}, + [950] = {.lex_state = 14}, [951] = {.lex_state = 14}, [952] = {.lex_state = 14}, - [953] = {.lex_state = 14}, + [953] = {.lex_state = 17}, [954] = {.lex_state = 14}, - [955] = {.lex_state = 14}, + [955] = {.lex_state = 69, .external_lex_state = 2}, [956] = {.lex_state = 14}, [957] = {.lex_state = 14}, [958] = {.lex_state = 14}, - [959] = {.lex_state = 14}, + [959] = {.lex_state = 69, .external_lex_state = 2}, [960] = {.lex_state = 14}, - [961] = {.lex_state = 14}, - [962] = {.lex_state = 14}, - [963] = {.lex_state = 14}, - [964] = {.lex_state = 14}, + [961] = {.lex_state = 69, .external_lex_state = 2}, + [962] = {.lex_state = 6, .external_lex_state = 2}, + [963] = {.lex_state = 17}, + [964] = {.lex_state = 69, .external_lex_state = 2}, [965] = {.lex_state = 14}, - [966] = {.lex_state = 69, .external_lex_state = 2}, + [966] = {.lex_state = 14}, [967] = {.lex_state = 14}, - [968] = {.lex_state = 14}, + [968] = {.lex_state = 69, .external_lex_state = 2}, [969] = {.lex_state = 14}, - [970] = {.lex_state = 69, .external_lex_state = 2}, + [970] = {.lex_state = 14}, [971] = {.lex_state = 14}, [972] = {.lex_state = 14}, - [973] = {.lex_state = 14}, + [973] = {.lex_state = 17}, [974] = {.lex_state = 14}, [975] = {.lex_state = 14}, [976] = {.lex_state = 14}, - [977] = {.lex_state = 14}, + [977] = {.lex_state = 69, .external_lex_state = 3}, [978] = {.lex_state = 14}, - [979] = {.lex_state = 14}, - [980] = {.lex_state = 69, .external_lex_state = 3}, - [981] = {.lex_state = 14}, - [982] = {.lex_state = 14}, + [979] = {.lex_state = 69, .external_lex_state = 3}, + [980] = {.lex_state = 14}, + [981] = {.lex_state = 14, .external_lex_state = 7}, + [982] = {.lex_state = 69, .external_lex_state = 2}, [983] = {.lex_state = 14}, - [984] = {.lex_state = 14}, - [985] = {.lex_state = 14}, + [984] = {.lex_state = 16}, + [985] = {.lex_state = 14, .external_lex_state = 7}, [986] = {.lex_state = 14}, [987] = {.lex_state = 14}, - [988] = {.lex_state = 14}, + [988] = {.lex_state = 17}, [989] = {.lex_state = 14}, - [990] = {.lex_state = 14}, + [990] = {.lex_state = 6, .external_lex_state = 2}, [991] = {.lex_state = 14}, [992] = {.lex_state = 14}, - [993] = {.lex_state = 14}, - [994] = {.lex_state = 69, .external_lex_state = 3}, - [995] = {.lex_state = 69, .external_lex_state = 3}, + [993] = {.lex_state = 17}, + [994] = {.lex_state = 14}, + [995] = {.lex_state = 14}, [996] = {.lex_state = 14}, - [997] = {.lex_state = 69, .external_lex_state = 3}, + [997] = {.lex_state = 14}, [998] = {.lex_state = 69, .external_lex_state = 3}, [999] = {.lex_state = 14}, [1000] = {.lex_state = 14}, - [1001] = {.lex_state = 69, .external_lex_state = 3}, + [1001] = {.lex_state = 14}, [1002] = {.lex_state = 14}, [1003] = {.lex_state = 14}, [1004] = {.lex_state = 14}, @@ -7294,7 +7312,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1006] = {.lex_state = 14}, [1007] = {.lex_state = 14}, [1008] = {.lex_state = 14}, - [1009] = {.lex_state = 69, .external_lex_state = 3}, + [1009] = {.lex_state = 14}, [1010] = {.lex_state = 14}, [1011] = {.lex_state = 14}, [1012] = {.lex_state = 14}, @@ -7305,7 +7323,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1017] = {.lex_state = 14}, [1018] = {.lex_state = 14}, [1019] = {.lex_state = 14}, - [1020] = {.lex_state = 6, .external_lex_state = 2}, + [1020] = {.lex_state = 14}, [1021] = {.lex_state = 14}, [1022] = {.lex_state = 14}, [1023] = {.lex_state = 14}, @@ -7323,10 +7341,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1035] = {.lex_state = 14}, [1036] = {.lex_state = 14}, [1037] = {.lex_state = 14}, - [1038] = {.lex_state = 69, .external_lex_state = 2}, + [1038] = {.lex_state = 14}, [1039] = {.lex_state = 14}, [1040] = {.lex_state = 14}, - [1041] = {.lex_state = 69, .external_lex_state = 3}, + [1041] = {.lex_state = 14}, [1042] = {.lex_state = 14}, [1043] = {.lex_state = 14}, [1044] = {.lex_state = 14}, @@ -7337,13 +7355,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1049] = {.lex_state = 14}, [1050] = {.lex_state = 14}, [1051] = {.lex_state = 14}, - [1052] = {.lex_state = 14}, + [1052] = {.lex_state = 69, .external_lex_state = 3}, [1053] = {.lex_state = 14}, [1054] = {.lex_state = 14}, [1055] = {.lex_state = 14}, [1056] = {.lex_state = 14}, - [1057] = {.lex_state = 69, .external_lex_state = 2}, - [1058] = {.lex_state = 14}, + [1057] = {.lex_state = 14}, + [1058] = {.lex_state = 69, .external_lex_state = 2}, [1059] = {.lex_state = 14}, [1060] = {.lex_state = 14}, [1061] = {.lex_state = 14}, @@ -7351,148 +7369,148 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1063] = {.lex_state = 14}, [1064] = {.lex_state = 14}, [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 69, .external_lex_state = 3}, - [1067] = {.lex_state = 69, .external_lex_state = 2}, + [1066] = {.lex_state = 14}, + [1067] = {.lex_state = 14}, [1068] = {.lex_state = 14}, [1069] = {.lex_state = 14}, [1070] = {.lex_state = 14}, [1071] = {.lex_state = 14}, [1072] = {.lex_state = 14}, [1073] = {.lex_state = 14}, - [1074] = {.lex_state = 69, .external_lex_state = 3}, + [1074] = {.lex_state = 14}, [1075] = {.lex_state = 14}, [1076] = {.lex_state = 14}, [1077] = {.lex_state = 14}, [1078] = {.lex_state = 14}, - [1079] = {.lex_state = 14}, + [1079] = {.lex_state = 69, .external_lex_state = 3}, [1080] = {.lex_state = 14}, [1081] = {.lex_state = 14}, [1082] = {.lex_state = 14}, [1083] = {.lex_state = 14}, - [1084] = {.lex_state = 14}, - [1085] = {.lex_state = 69, .external_lex_state = 3}, + [1084] = {.lex_state = 69, .external_lex_state = 3}, + [1085] = {.lex_state = 14}, [1086] = {.lex_state = 14}, - [1087] = {.lex_state = 69, .external_lex_state = 3}, + [1087] = {.lex_state = 14}, [1088] = {.lex_state = 14}, [1089] = {.lex_state = 14}, [1090] = {.lex_state = 14}, [1091] = {.lex_state = 14}, [1092] = {.lex_state = 14}, [1093] = {.lex_state = 14}, - [1094] = {.lex_state = 69, .external_lex_state = 3}, - [1095] = {.lex_state = 69, .external_lex_state = 3}, + [1094] = {.lex_state = 14}, + [1095] = {.lex_state = 14}, [1096] = {.lex_state = 14}, [1097] = {.lex_state = 14}, - [1098] = {.lex_state = 69, .external_lex_state = 2}, + [1098] = {.lex_state = 14}, [1099] = {.lex_state = 14}, - [1100] = {.lex_state = 69, .external_lex_state = 2}, - [1101] = {.lex_state = 69, .external_lex_state = 2}, - [1102] = {.lex_state = 69, .external_lex_state = 2}, - [1103] = {.lex_state = 69, .external_lex_state = 3}, - [1104] = {.lex_state = 69, .external_lex_state = 2}, - [1105] = {.lex_state = 69, .external_lex_state = 2}, - [1106] = {.lex_state = 69, .external_lex_state = 3}, - [1107] = {.lex_state = 69, .external_lex_state = 2}, - [1108] = {.lex_state = 69, .external_lex_state = 2}, - [1109] = {.lex_state = 69, .external_lex_state = 3}, - [1110] = {.lex_state = 6, .external_lex_state = 2}, - [1111] = {.lex_state = 6, .external_lex_state = 2}, - [1112] = {.lex_state = 69, .external_lex_state = 3}, - [1113] = {.lex_state = 6, .external_lex_state = 2}, + [1100] = {.lex_state = 14}, + [1101] = {.lex_state = 14}, + [1102] = {.lex_state = 14}, + [1103] = {.lex_state = 14}, + [1104] = {.lex_state = 14}, + [1105] = {.lex_state = 14}, + [1106] = {.lex_state = 14}, + [1107] = {.lex_state = 14}, + [1108] = {.lex_state = 14}, + [1109] = {.lex_state = 14}, + [1110] = {.lex_state = 14}, + [1111] = {.lex_state = 14}, + [1112] = {.lex_state = 69, .external_lex_state = 2}, + [1113] = {.lex_state = 14}, [1114] = {.lex_state = 69, .external_lex_state = 2}, - [1115] = {.lex_state = 69, .external_lex_state = 2}, - [1116] = {.lex_state = 69, .external_lex_state = 3}, - [1117] = {.lex_state = 6, .external_lex_state = 2}, - [1118] = {.lex_state = 69, .external_lex_state = 2}, - [1119] = {.lex_state = 6, .external_lex_state = 2}, - [1120] = {.lex_state = 69, .external_lex_state = 2}, - [1121] = {.lex_state = 69, .external_lex_state = 2}, - [1122] = {.lex_state = 69, .external_lex_state = 3}, - [1123] = {.lex_state = 69, .external_lex_state = 2}, - [1124] = {.lex_state = 69, .external_lex_state = 3}, - [1125] = {.lex_state = 69, .external_lex_state = 2}, - [1126] = {.lex_state = 69, .external_lex_state = 2}, - [1127] = {.lex_state = 69, .external_lex_state = 2}, - [1128] = {.lex_state = 69, .external_lex_state = 2}, - [1129] = {.lex_state = 69, .external_lex_state = 2}, - [1130] = {.lex_state = 69, .external_lex_state = 2}, - [1131] = {.lex_state = 69, .external_lex_state = 2}, - [1132] = {.lex_state = 69, .external_lex_state = 2}, - [1133] = {.lex_state = 69, .external_lex_state = 2}, - [1134] = {.lex_state = 6, .external_lex_state = 2}, - [1135] = {.lex_state = 6, .external_lex_state = 2}, - [1136] = {.lex_state = 69, .external_lex_state = 2}, - [1137] = {.lex_state = 6, .external_lex_state = 2}, + [1115] = {.lex_state = 14}, + [1116] = {.lex_state = 14}, + [1117] = {.lex_state = 14}, + [1118] = {.lex_state = 14}, + [1119] = {.lex_state = 14}, + [1120] = {.lex_state = 14}, + [1121] = {.lex_state = 14}, + [1122] = {.lex_state = 14}, + [1123] = {.lex_state = 14}, + [1124] = {.lex_state = 14}, + [1125] = {.lex_state = 14}, + [1126] = {.lex_state = 14}, + [1127] = {.lex_state = 14}, + [1128] = {.lex_state = 69, .external_lex_state = 3}, + [1129] = {.lex_state = 14}, + [1130] = {.lex_state = 14}, + [1131] = {.lex_state = 14}, + [1132] = {.lex_state = 14}, + [1133] = {.lex_state = 14}, + [1134] = {.lex_state = 14}, + [1135] = {.lex_state = 14}, + [1136] = {.lex_state = 14}, + [1137] = {.lex_state = 14}, [1138] = {.lex_state = 69, .external_lex_state = 3}, - [1139] = {.lex_state = 17}, - [1140] = {.lex_state = 6, .external_lex_state = 2}, - [1141] = {.lex_state = 6, .external_lex_state = 2}, - [1142] = {.lex_state = 69, .external_lex_state = 2}, - [1143] = {.lex_state = 17}, - [1144] = {.lex_state = 6, .external_lex_state = 2}, - [1145] = {.lex_state = 6, .external_lex_state = 2}, - [1146] = {.lex_state = 69, .external_lex_state = 2}, - [1147] = {.lex_state = 69, .external_lex_state = 2}, - [1148] = {.lex_state = 69, .external_lex_state = 3}, - [1149] = {.lex_state = 69, .external_lex_state = 2}, - [1150] = {.lex_state = 6, .external_lex_state = 2}, - [1151] = {.lex_state = 69, .external_lex_state = 2}, - [1152] = {.lex_state = 6, .external_lex_state = 2}, - [1153] = {.lex_state = 69, .external_lex_state = 2}, - [1154] = {.lex_state = 69, .external_lex_state = 2}, - [1155] = {.lex_state = 6, .external_lex_state = 2}, - [1156] = {.lex_state = 69, .external_lex_state = 2}, - [1157] = {.lex_state = 6, .external_lex_state = 2}, - [1158] = {.lex_state = 69, .external_lex_state = 2}, - [1159] = {.lex_state = 69, .external_lex_state = 2}, - [1160] = {.lex_state = 6, .external_lex_state = 2}, - [1161] = {.lex_state = 69, .external_lex_state = 2}, - [1162] = {.lex_state = 69, .external_lex_state = 2}, - [1163] = {.lex_state = 69, .external_lex_state = 3}, - [1164] = {.lex_state = 69, .external_lex_state = 2}, - [1165] = {.lex_state = 69, .external_lex_state = 2}, - [1166] = {.lex_state = 69, .external_lex_state = 2}, - [1167] = {.lex_state = 69, .external_lex_state = 3}, - [1168] = {.lex_state = 69, .external_lex_state = 2}, - [1169] = {.lex_state = 69, .external_lex_state = 3}, - [1170] = {.lex_state = 69, .external_lex_state = 2}, - [1171] = {.lex_state = 69, .external_lex_state = 2}, - [1172] = {.lex_state = 69, .external_lex_state = 2}, - [1173] = {.lex_state = 69, .external_lex_state = 2}, - [1174] = {.lex_state = 69, .external_lex_state = 2}, - [1175] = {.lex_state = 69, .external_lex_state = 2}, - [1176] = {.lex_state = 69, .external_lex_state = 2}, - [1177] = {.lex_state = 69, .external_lex_state = 2}, - [1178] = {.lex_state = 69, .external_lex_state = 2}, - [1179] = {.lex_state = 69, .external_lex_state = 2}, - [1180] = {.lex_state = 69, .external_lex_state = 2}, - [1181] = {.lex_state = 69, .external_lex_state = 2}, - [1182] = {.lex_state = 69, .external_lex_state = 2}, - [1183] = {.lex_state = 69, .external_lex_state = 2}, - [1184] = {.lex_state = 70, .external_lex_state = 3}, - [1185] = {.lex_state = 71, .external_lex_state = 4}, + [1139] = {.lex_state = 14}, + [1140] = {.lex_state = 14}, + [1141] = {.lex_state = 14}, + [1142] = {.lex_state = 14}, + [1143] = {.lex_state = 14}, + [1144] = {.lex_state = 14}, + [1145] = {.lex_state = 14}, + [1146] = {.lex_state = 14}, + [1147] = {.lex_state = 14}, + [1148] = {.lex_state = 14}, + [1149] = {.lex_state = 14}, + [1150] = {.lex_state = 14}, + [1151] = {.lex_state = 14}, + [1152] = {.lex_state = 14}, + [1153] = {.lex_state = 14}, + [1154] = {.lex_state = 14}, + [1155] = {.lex_state = 14}, + [1156] = {.lex_state = 14}, + [1157] = {.lex_state = 14}, + [1158] = {.lex_state = 14}, + [1159] = {.lex_state = 69, .external_lex_state = 3}, + [1160] = {.lex_state = 14}, + [1161] = {.lex_state = 14}, + [1162] = {.lex_state = 14}, + [1163] = {.lex_state = 14}, + [1164] = {.lex_state = 14}, + [1165] = {.lex_state = 14}, + [1166] = {.lex_state = 14}, + [1167] = {.lex_state = 14}, + [1168] = {.lex_state = 14}, + [1169] = {.lex_state = 14}, + [1170] = {.lex_state = 14}, + [1171] = {.lex_state = 14}, + [1172] = {.lex_state = 14}, + [1173] = {.lex_state = 14}, + [1174] = {.lex_state = 14}, + [1175] = {.lex_state = 14}, + [1176] = {.lex_state = 14}, + [1177] = {.lex_state = 14}, + [1178] = {.lex_state = 14}, + [1179] = {.lex_state = 14}, + [1180] = {.lex_state = 14}, + [1181] = {.lex_state = 69, .external_lex_state = 3}, + [1182] = {.lex_state = 14}, + [1183] = {.lex_state = 14}, + [1184] = {.lex_state = 14}, + [1185] = {.lex_state = 14}, [1186] = {.lex_state = 14}, - [1187] = {.lex_state = 71, .external_lex_state = 4}, + [1187] = {.lex_state = 14}, [1188] = {.lex_state = 14}, [1189] = {.lex_state = 14}, [1190] = {.lex_state = 14}, - [1191] = {.lex_state = 71, .external_lex_state = 4}, + [1191] = {.lex_state = 14}, [1192] = {.lex_state = 14}, [1193] = {.lex_state = 14}, - [1194] = {.lex_state = 71, .external_lex_state = 4}, - [1195] = {.lex_state = 70, .external_lex_state = 2}, - [1196] = {.lex_state = 71, .external_lex_state = 4}, - [1197] = {.lex_state = 70, .external_lex_state = 2}, - [1198] = {.lex_state = 71, .external_lex_state = 4}, - [1199] = {.lex_state = 70, .external_lex_state = 2}, - [1200] = {.lex_state = 70, .external_lex_state = 2}, - [1201] = {.lex_state = 70, .external_lex_state = 2}, - [1202] = {.lex_state = 70, .external_lex_state = 2}, - [1203] = {.lex_state = 70, .external_lex_state = 2}, - [1204] = {.lex_state = 70, .external_lex_state = 2}, - [1205] = {.lex_state = 70, .external_lex_state = 2}, - [1206] = {.lex_state = 70, .external_lex_state = 2}, - [1207] = {.lex_state = 70, .external_lex_state = 2}, + [1194] = {.lex_state = 14}, + [1195] = {.lex_state = 14}, + [1196] = {.lex_state = 14}, + [1197] = {.lex_state = 14}, + [1198] = {.lex_state = 14}, + [1199] = {.lex_state = 14}, + [1200] = {.lex_state = 14}, + [1201] = {.lex_state = 14}, + [1202] = {.lex_state = 14}, + [1203] = {.lex_state = 14}, + [1204] = {.lex_state = 14}, + [1205] = {.lex_state = 14}, + [1206] = {.lex_state = 14}, + [1207] = {.lex_state = 14}, [1208] = {.lex_state = 14}, [1209] = {.lex_state = 14}, [1210] = {.lex_state = 14}, @@ -7511,334 +7529,334 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1223] = {.lex_state = 14}, [1224] = {.lex_state = 14}, [1225] = {.lex_state = 14}, - [1226] = {.lex_state = 70, .external_lex_state = 2}, - [1227] = {.lex_state = 70, .external_lex_state = 3}, - [1228] = {.lex_state = 70, .external_lex_state = 2}, - [1229] = {.lex_state = 70, .external_lex_state = 2}, - [1230] = {.lex_state = 70, .external_lex_state = 3}, - [1231] = {.lex_state = 70, .external_lex_state = 2}, - [1232] = {.lex_state = 14}, - [1233] = {.lex_state = 70, .external_lex_state = 2}, + [1226] = {.lex_state = 14}, + [1227] = {.lex_state = 14}, + [1228] = {.lex_state = 14}, + [1229] = {.lex_state = 14}, + [1230] = {.lex_state = 14}, + [1231] = {.lex_state = 14}, + [1232] = {.lex_state = 69, .external_lex_state = 5}, + [1233] = {.lex_state = 14}, [1234] = {.lex_state = 14}, [1235] = {.lex_state = 14}, [1236] = {.lex_state = 14}, [1237] = {.lex_state = 14}, - [1238] = {.lex_state = 70, .external_lex_state = 2}, + [1238] = {.lex_state = 14}, [1239] = {.lex_state = 14}, - [1240] = {.lex_state = 70, .external_lex_state = 2}, - [1241] = {.lex_state = 70, .external_lex_state = 2}, + [1240] = {.lex_state = 69, .external_lex_state = 2}, + [1241] = {.lex_state = 14}, [1242] = {.lex_state = 14}, - [1243] = {.lex_state = 70, .external_lex_state = 2}, - [1244] = {.lex_state = 70, .external_lex_state = 3}, - [1245] = {.lex_state = 70, .external_lex_state = 2}, - [1246] = {.lex_state = 70, .external_lex_state = 2}, - [1247] = {.lex_state = 70, .external_lex_state = 2}, - [1248] = {.lex_state = 70, .external_lex_state = 2}, - [1249] = {.lex_state = 70, .external_lex_state = 2}, - [1250] = {.lex_state = 70, .external_lex_state = 2}, - [1251] = {.lex_state = 70, .external_lex_state = 2}, - [1252] = {.lex_state = 70, .external_lex_state = 2}, - [1253] = {.lex_state = 70, .external_lex_state = 2}, - [1254] = {.lex_state = 70, .external_lex_state = 2}, - [1255] = {.lex_state = 70, .external_lex_state = 2}, - [1256] = {.lex_state = 70, .external_lex_state = 3}, - [1257] = {.lex_state = 70, .external_lex_state = 2}, - [1258] = {.lex_state = 70, .external_lex_state = 2}, - [1259] = {.lex_state = 70, .external_lex_state = 2}, - [1260] = {.lex_state = 70, .external_lex_state = 2}, - [1261] = {.lex_state = 70, .external_lex_state = 2}, - [1262] = {.lex_state = 70, .external_lex_state = 2}, - [1263] = {.lex_state = 70, .external_lex_state = 2}, - [1264] = {.lex_state = 70, .external_lex_state = 3}, - [1265] = {.lex_state = 70, .external_lex_state = 2}, - [1266] = {.lex_state = 70, .external_lex_state = 2}, - [1267] = {.lex_state = 70, .external_lex_state = 2}, - [1268] = {.lex_state = 70, .external_lex_state = 2}, - [1269] = {.lex_state = 70, .external_lex_state = 2}, - [1270] = {.lex_state = 70, .external_lex_state = 2}, - [1271] = {.lex_state = 70, .external_lex_state = 2}, - [1272] = {.lex_state = 70, .external_lex_state = 2}, - [1273] = {.lex_state = 70, .external_lex_state = 2}, - [1274] = {.lex_state = 70, .external_lex_state = 2}, - [1275] = {.lex_state = 70, .external_lex_state = 2}, - [1276] = {.lex_state = 70, .external_lex_state = 2}, - [1277] = {.lex_state = 70, .external_lex_state = 2}, - [1278] = {.lex_state = 70, .external_lex_state = 2}, - [1279] = {.lex_state = 70, .external_lex_state = 2}, - [1280] = {.lex_state = 70, .external_lex_state = 2}, - [1281] = {.lex_state = 70, .external_lex_state = 2}, - [1282] = {.lex_state = 70, .external_lex_state = 2}, - [1283] = {.lex_state = 70, .external_lex_state = 2}, - [1284] = {.lex_state = 70, .external_lex_state = 2}, - [1285] = {.lex_state = 70, .external_lex_state = 2}, - [1286] = {.lex_state = 70, .external_lex_state = 2}, - [1287] = {.lex_state = 70, .external_lex_state = 2}, - [1288] = {.lex_state = 70, .external_lex_state = 2}, - [1289] = {.lex_state = 70, .external_lex_state = 2}, - [1290] = {.lex_state = 70, .external_lex_state = 2}, - [1291] = {.lex_state = 70, .external_lex_state = 2}, - [1292] = {.lex_state = 70, .external_lex_state = 2}, - [1293] = {.lex_state = 70, .external_lex_state = 2}, - [1294] = {.lex_state = 70, .external_lex_state = 2}, - [1295] = {.lex_state = 70, .external_lex_state = 2}, - [1296] = {.lex_state = 70, .external_lex_state = 2}, - [1297] = {.lex_state = 70, .external_lex_state = 2}, - [1298] = {.lex_state = 70, .external_lex_state = 2}, - [1299] = {.lex_state = 70, .external_lex_state = 2}, - [1300] = {.lex_state = 70, .external_lex_state = 3}, - [1301] = {.lex_state = 70, .external_lex_state = 3}, - [1302] = {.lex_state = 70, .external_lex_state = 2}, - [1303] = {.lex_state = 70, .external_lex_state = 2}, - [1304] = {.lex_state = 70, .external_lex_state = 2}, - [1305] = {.lex_state = 70, .external_lex_state = 2}, - [1306] = {.lex_state = 70, .external_lex_state = 2}, - [1307] = {.lex_state = 70, .external_lex_state = 2}, - [1308] = {.lex_state = 70, .external_lex_state = 3}, - [1309] = {.lex_state = 70, .external_lex_state = 2}, - [1310] = {.lex_state = 70, .external_lex_state = 2}, - [1311] = {.lex_state = 70, .external_lex_state = 2}, - [1312] = {.lex_state = 70, .external_lex_state = 2}, - [1313] = {.lex_state = 70, .external_lex_state = 2}, - [1314] = {.lex_state = 70, .external_lex_state = 2}, - [1315] = {.lex_state = 70, .external_lex_state = 2}, - [1316] = {.lex_state = 70, .external_lex_state = 2}, - [1317] = {.lex_state = 70, .external_lex_state = 2}, - [1318] = {.lex_state = 70, .external_lex_state = 2}, - [1319] = {.lex_state = 70, .external_lex_state = 2}, - [1320] = {.lex_state = 70, .external_lex_state = 2}, - [1321] = {.lex_state = 70, .external_lex_state = 2}, - [1322] = {.lex_state = 70, .external_lex_state = 2}, - [1323] = {.lex_state = 70, .external_lex_state = 2}, - [1324] = {.lex_state = 70, .external_lex_state = 3}, - [1325] = {.lex_state = 70, .external_lex_state = 2}, - [1326] = {.lex_state = 70, .external_lex_state = 2}, - [1327] = {.lex_state = 70, .external_lex_state = 2}, - [1328] = {.lex_state = 70, .external_lex_state = 2}, - [1329] = {.lex_state = 70, .external_lex_state = 2}, - [1330] = {.lex_state = 70, .external_lex_state = 3}, - [1331] = {.lex_state = 70, .external_lex_state = 3}, - [1332] = {.lex_state = 70, .external_lex_state = 3}, - [1333] = {.lex_state = 70, .external_lex_state = 2}, - [1334] = {.lex_state = 70, .external_lex_state = 2}, - [1335] = {.lex_state = 70, .external_lex_state = 2}, - [1336] = {.lex_state = 70, .external_lex_state = 3}, - [1337] = {.lex_state = 70, .external_lex_state = 3}, - [1338] = {.lex_state = 70, .external_lex_state = 2}, - [1339] = {.lex_state = 70, .external_lex_state = 2}, - [1340] = {.lex_state = 70, .external_lex_state = 3}, - [1341] = {.lex_state = 70, .external_lex_state = 2}, - [1342] = {.lex_state = 70, .external_lex_state = 3}, - [1343] = {.lex_state = 70, .external_lex_state = 2}, - [1344] = {.lex_state = 70, .external_lex_state = 2}, - [1345] = {.lex_state = 70, .external_lex_state = 2}, - [1346] = {.lex_state = 70, .external_lex_state = 3}, - [1347] = {.lex_state = 70, .external_lex_state = 3}, - [1348] = {.lex_state = 70, .external_lex_state = 2}, - [1349] = {.lex_state = 70, .external_lex_state = 3}, - [1350] = {.lex_state = 70, .external_lex_state = 3}, - [1351] = {.lex_state = 70, .external_lex_state = 3}, - [1352] = {.lex_state = 70, .external_lex_state = 2}, - [1353] = {.lex_state = 70, .external_lex_state = 3}, - [1354] = {.lex_state = 70, .external_lex_state = 3}, - [1355] = {.lex_state = 70, .external_lex_state = 2}, - [1356] = {.lex_state = 70, .external_lex_state = 3}, - [1357] = {.lex_state = 70, .external_lex_state = 2}, - [1358] = {.lex_state = 70, .external_lex_state = 2}, - [1359] = {.lex_state = 70, .external_lex_state = 2}, - [1360] = {.lex_state = 70, .external_lex_state = 2}, - [1361] = {.lex_state = 70, .external_lex_state = 2}, - [1362] = {.lex_state = 70, .external_lex_state = 2}, - [1363] = {.lex_state = 70, .external_lex_state = 2}, - [1364] = {.lex_state = 7, .external_lex_state = 2}, - [1365] = {.lex_state = 70, .external_lex_state = 3}, - [1366] = {.lex_state = 70, .external_lex_state = 2}, - [1367] = {.lex_state = 70, .external_lex_state = 3}, - [1368] = {.lex_state = 70, .external_lex_state = 2}, - [1369] = {.lex_state = 70, .external_lex_state = 3}, - [1370] = {.lex_state = 70, .external_lex_state = 3}, - [1371] = {.lex_state = 70, .external_lex_state = 2}, - [1372] = {.lex_state = 70, .external_lex_state = 3}, - [1373] = {.lex_state = 70, .external_lex_state = 2}, - [1374] = {.lex_state = 70, .external_lex_state = 2}, - [1375] = {.lex_state = 70, .external_lex_state = 3}, - [1376] = {.lex_state = 70, .external_lex_state = 3}, - [1377] = {.lex_state = 70, .external_lex_state = 3}, - [1378] = {.lex_state = 70, .external_lex_state = 2}, - [1379] = {.lex_state = 70, .external_lex_state = 2}, - [1380] = {.lex_state = 70, .external_lex_state = 3}, - [1381] = {.lex_state = 70, .external_lex_state = 3}, - [1382] = {.lex_state = 70, .external_lex_state = 2}, - [1383] = {.lex_state = 70, .external_lex_state = 2}, - [1384] = {.lex_state = 70, .external_lex_state = 2}, - [1385] = {.lex_state = 70, .external_lex_state = 2}, - [1386] = {.lex_state = 70, .external_lex_state = 2}, - [1387] = {.lex_state = 70, .external_lex_state = 2}, - [1388] = {.lex_state = 70, .external_lex_state = 2}, - [1389] = {.lex_state = 70, .external_lex_state = 2}, - [1390] = {.lex_state = 70, .external_lex_state = 2}, - [1391] = {.lex_state = 70, .external_lex_state = 2}, - [1392] = {.lex_state = 70, .external_lex_state = 2}, + [1243] = {.lex_state = 14}, + [1244] = {.lex_state = 14}, + [1245] = {.lex_state = 14}, + [1246] = {.lex_state = 14}, + [1247] = {.lex_state = 14}, + [1248] = {.lex_state = 14}, + [1249] = {.lex_state = 14}, + [1250] = {.lex_state = 14}, + [1251] = {.lex_state = 14}, + [1252] = {.lex_state = 14}, + [1253] = {.lex_state = 14}, + [1254] = {.lex_state = 14}, + [1255] = {.lex_state = 14}, + [1256] = {.lex_state = 14}, + [1257] = {.lex_state = 14}, + [1258] = {.lex_state = 14}, + [1259] = {.lex_state = 14}, + [1260] = {.lex_state = 14}, + [1261] = {.lex_state = 14}, + [1262] = {.lex_state = 14}, + [1263] = {.lex_state = 14}, + [1264] = {.lex_state = 14}, + [1265] = {.lex_state = 69, .external_lex_state = 3}, + [1266] = {.lex_state = 14}, + [1267] = {.lex_state = 14}, + [1268] = {.lex_state = 14}, + [1269] = {.lex_state = 14}, + [1270] = {.lex_state = 14}, + [1271] = {.lex_state = 14}, + [1272] = {.lex_state = 14}, + [1273] = {.lex_state = 14}, + [1274] = {.lex_state = 14}, + [1275] = {.lex_state = 14}, + [1276] = {.lex_state = 14}, + [1277] = {.lex_state = 14}, + [1278] = {.lex_state = 14}, + [1279] = {.lex_state = 14}, + [1280] = {.lex_state = 14}, + [1281] = {.lex_state = 14}, + [1282] = {.lex_state = 14}, + [1283] = {.lex_state = 14}, + [1284] = {.lex_state = 14}, + [1285] = {.lex_state = 69, .external_lex_state = 3}, + [1286] = {.lex_state = 14}, + [1287] = {.lex_state = 14}, + [1288] = {.lex_state = 14}, + [1289] = {.lex_state = 14}, + [1290] = {.lex_state = 14}, + [1291] = {.lex_state = 14}, + [1292] = {.lex_state = 14}, + [1293] = {.lex_state = 14}, + [1294] = {.lex_state = 14}, + [1295] = {.lex_state = 14}, + [1296] = {.lex_state = 14}, + [1297] = {.lex_state = 14}, + [1298] = {.lex_state = 14}, + [1299] = {.lex_state = 14}, + [1300] = {.lex_state = 14}, + [1301] = {.lex_state = 14}, + [1302] = {.lex_state = 14}, + [1303] = {.lex_state = 14}, + [1304] = {.lex_state = 14}, + [1305] = {.lex_state = 14}, + [1306] = {.lex_state = 14}, + [1307] = {.lex_state = 14}, + [1308] = {.lex_state = 14}, + [1309] = {.lex_state = 14}, + [1310] = {.lex_state = 14}, + [1311] = {.lex_state = 14}, + [1312] = {.lex_state = 14}, + [1313] = {.lex_state = 69, .external_lex_state = 3}, + [1314] = {.lex_state = 14}, + [1315] = {.lex_state = 14}, + [1316] = {.lex_state = 14}, + [1317] = {.lex_state = 14}, + [1318] = {.lex_state = 69, .external_lex_state = 2}, + [1319] = {.lex_state = 14}, + [1320] = {.lex_state = 14}, + [1321] = {.lex_state = 69, .external_lex_state = 3}, + [1322] = {.lex_state = 6, .external_lex_state = 2}, + [1323] = {.lex_state = 69, .external_lex_state = 2}, + [1324] = {.lex_state = 69, .external_lex_state = 2}, + [1325] = {.lex_state = 69, .external_lex_state = 2}, + [1326] = {.lex_state = 69, .external_lex_state = 2}, + [1327] = {.lex_state = 69, .external_lex_state = 2}, + [1328] = {.lex_state = 69, .external_lex_state = 2}, + [1329] = {.lex_state = 69, .external_lex_state = 2}, + [1330] = {.lex_state = 6, .external_lex_state = 2}, + [1331] = {.lex_state = 69, .external_lex_state = 2}, + [1332] = {.lex_state = 69, .external_lex_state = 3}, + [1333] = {.lex_state = 69, .external_lex_state = 2}, + [1334] = {.lex_state = 69, .external_lex_state = 2}, + [1335] = {.lex_state = 69, .external_lex_state = 2}, + [1336] = {.lex_state = 69, .external_lex_state = 2}, + [1337] = {.lex_state = 69, .external_lex_state = 2}, + [1338] = {.lex_state = 69, .external_lex_state = 2}, + [1339] = {.lex_state = 69, .external_lex_state = 2}, + [1340] = {.lex_state = 69, .external_lex_state = 2}, + [1341] = {.lex_state = 69, .external_lex_state = 2}, + [1342] = {.lex_state = 69, .external_lex_state = 2}, + [1343] = {.lex_state = 69, .external_lex_state = 2}, + [1344] = {.lex_state = 69, .external_lex_state = 2}, + [1345] = {.lex_state = 69, .external_lex_state = 2}, + [1346] = {.lex_state = 69, .external_lex_state = 6}, + [1347] = {.lex_state = 69, .external_lex_state = 2}, + [1348] = {.lex_state = 17}, + [1349] = {.lex_state = 69, .external_lex_state = 2}, + [1350] = {.lex_state = 6, .external_lex_state = 2}, + [1351] = {.lex_state = 6, .external_lex_state = 2}, + [1352] = {.lex_state = 69, .external_lex_state = 2}, + [1353] = {.lex_state = 69, .external_lex_state = 6}, + [1354] = {.lex_state = 69, .external_lex_state = 2}, + [1355] = {.lex_state = 69, .external_lex_state = 2}, + [1356] = {.lex_state = 69, .external_lex_state = 2}, + [1357] = {.lex_state = 69, .external_lex_state = 2}, + [1358] = {.lex_state = 69, .external_lex_state = 3}, + [1359] = {.lex_state = 6, .external_lex_state = 2}, + [1360] = {.lex_state = 69, .external_lex_state = 2}, + [1361] = {.lex_state = 69, .external_lex_state = 2}, + [1362] = {.lex_state = 6, .external_lex_state = 2}, + [1363] = {.lex_state = 69, .external_lex_state = 2}, + [1364] = {.lex_state = 69, .external_lex_state = 2}, + [1365] = {.lex_state = 69, .external_lex_state = 2}, + [1366] = {.lex_state = 17}, + [1367] = {.lex_state = 6, .external_lex_state = 2}, + [1368] = {.lex_state = 6, .external_lex_state = 2}, + [1369] = {.lex_state = 69, .external_lex_state = 2}, + [1370] = {.lex_state = 69, .external_lex_state = 2}, + [1371] = {.lex_state = 69, .external_lex_state = 2}, + [1372] = {.lex_state = 6, .external_lex_state = 2}, + [1373] = {.lex_state = 6, .external_lex_state = 2}, + [1374] = {.lex_state = 69, .external_lex_state = 2}, + [1375] = {.lex_state = 69, .external_lex_state = 2}, + [1376] = {.lex_state = 6, .external_lex_state = 2}, + [1377] = {.lex_state = 6, .external_lex_state = 2}, + [1378] = {.lex_state = 69, .external_lex_state = 2}, + [1379] = {.lex_state = 69, .external_lex_state = 2}, + [1380] = {.lex_state = 69, .external_lex_state = 2}, + [1381] = {.lex_state = 6, .external_lex_state = 2}, + [1382] = {.lex_state = 69, .external_lex_state = 2}, + [1383] = {.lex_state = 69, .external_lex_state = 2}, + [1384] = {.lex_state = 69, .external_lex_state = 2}, + [1385] = {.lex_state = 69, .external_lex_state = 3}, + [1386] = {.lex_state = 69, .external_lex_state = 3}, + [1387] = {.lex_state = 69, .external_lex_state = 2}, + [1388] = {.lex_state = 69, .external_lex_state = 2}, + [1389] = {.lex_state = 69, .external_lex_state = 2}, + [1390] = {.lex_state = 6, .external_lex_state = 2}, + [1391] = {.lex_state = 69, .external_lex_state = 2}, + [1392] = {.lex_state = 69, .external_lex_state = 2}, [1393] = {.lex_state = 70, .external_lex_state = 3}, - [1394] = {.lex_state = 70, .external_lex_state = 2}, - [1395] = {.lex_state = 70, .external_lex_state = 3}, - [1396] = {.lex_state = 70, .external_lex_state = 2}, + [1394] = {.lex_state = 14}, + [1395] = {.lex_state = 14}, + [1396] = {.lex_state = 14}, [1397] = {.lex_state = 70, .external_lex_state = 2}, - [1398] = {.lex_state = 70, .external_lex_state = 3}, - [1399] = {.lex_state = 70, .external_lex_state = 3}, - [1400] = {.lex_state = 70, .external_lex_state = 2}, - [1401] = {.lex_state = 70, .external_lex_state = 3}, - [1402] = {.lex_state = 70, .external_lex_state = 2}, - [1403] = {.lex_state = 70, .external_lex_state = 2}, - [1404] = {.lex_state = 70, .external_lex_state = 3}, + [1398] = {.lex_state = 14}, + [1399] = {.lex_state = 14}, + [1400] = {.lex_state = 14}, + [1401] = {.lex_state = 14}, + [1402] = {.lex_state = 71, .external_lex_state = 4}, + [1403] = {.lex_state = 71, .external_lex_state = 4}, + [1404] = {.lex_state = 70, .external_lex_state = 2}, [1405] = {.lex_state = 70, .external_lex_state = 2}, [1406] = {.lex_state = 70, .external_lex_state = 2}, [1407] = {.lex_state = 70, .external_lex_state = 2}, [1408] = {.lex_state = 70, .external_lex_state = 2}, [1409] = {.lex_state = 70, .external_lex_state = 2}, - [1410] = {.lex_state = 70, .external_lex_state = 3}, + [1410] = {.lex_state = 70, .external_lex_state = 2}, [1411] = {.lex_state = 70, .external_lex_state = 2}, [1412] = {.lex_state = 70, .external_lex_state = 2}, - [1413] = {.lex_state = 70, .external_lex_state = 2}, + [1413] = {.lex_state = 71, .external_lex_state = 4}, [1414] = {.lex_state = 70, .external_lex_state = 2}, - [1415] = {.lex_state = 70, .external_lex_state = 3}, + [1415] = {.lex_state = 70, .external_lex_state = 2}, [1416] = {.lex_state = 70, .external_lex_state = 2}, [1417] = {.lex_state = 70, .external_lex_state = 2}, - [1418] = {.lex_state = 70, .external_lex_state = 3}, - [1419] = {.lex_state = 70, .external_lex_state = 3}, - [1420] = {.lex_state = 70, .external_lex_state = 3}, - [1421] = {.lex_state = 70, .external_lex_state = 3}, - [1422] = {.lex_state = 70, .external_lex_state = 2}, - [1423] = {.lex_state = 70, .external_lex_state = 2}, - [1424] = {.lex_state = 70, .external_lex_state = 3}, - [1425] = {.lex_state = 70, .external_lex_state = 2}, - [1426] = {.lex_state = 70, .external_lex_state = 3}, - [1427] = {.lex_state = 70, .external_lex_state = 2}, - [1428] = {.lex_state = 70, .external_lex_state = 2}, - [1429] = {.lex_state = 70, .external_lex_state = 2}, - [1430] = {.lex_state = 70, .external_lex_state = 2}, + [1418] = {.lex_state = 71, .external_lex_state = 4}, + [1419] = {.lex_state = 70, .external_lex_state = 2}, + [1420] = {.lex_state = 14}, + [1421] = {.lex_state = 70, .external_lex_state = 2}, + [1422] = {.lex_state = 14}, + [1423] = {.lex_state = 70, .external_lex_state = 3}, + [1424] = {.lex_state = 14}, + [1425] = {.lex_state = 14}, + [1426] = {.lex_state = 14}, + [1427] = {.lex_state = 14}, + [1428] = {.lex_state = 14}, + [1429] = {.lex_state = 14}, + [1430] = {.lex_state = 14}, [1431] = {.lex_state = 70, .external_lex_state = 2}, - [1432] = {.lex_state = 70, .external_lex_state = 2}, - [1433] = {.lex_state = 70, .external_lex_state = 2}, - [1434] = {.lex_state = 70, .external_lex_state = 2}, + [1432] = {.lex_state = 14}, + [1433] = {.lex_state = 14}, + [1434] = {.lex_state = 14}, [1435] = {.lex_state = 70, .external_lex_state = 3}, - [1436] = {.lex_state = 70, .external_lex_state = 3}, + [1436] = {.lex_state = 14}, [1437] = {.lex_state = 70, .external_lex_state = 3}, - [1438] = {.lex_state = 70, .external_lex_state = 2}, - [1439] = {.lex_state = 70, .external_lex_state = 3}, - [1440] = {.lex_state = 70, .external_lex_state = 2}, - [1441] = {.lex_state = 70, .external_lex_state = 2}, - [1442] = {.lex_state = 70, .external_lex_state = 2}, - [1443] = {.lex_state = 70, .external_lex_state = 3}, - [1444] = {.lex_state = 70, .external_lex_state = 2}, - [1445] = {.lex_state = 70, .external_lex_state = 3}, + [1438] = {.lex_state = 14}, + [1439] = {.lex_state = 14}, + [1440] = {.lex_state = 14}, + [1441] = {.lex_state = 14}, + [1442] = {.lex_state = 14}, + [1443] = {.lex_state = 14}, + [1444] = {.lex_state = 14}, + [1445] = {.lex_state = 14}, [1446] = {.lex_state = 70, .external_lex_state = 2}, [1447] = {.lex_state = 70, .external_lex_state = 3}, - [1448] = {.lex_state = 70, .external_lex_state = 3}, + [1448] = {.lex_state = 70, .external_lex_state = 2}, [1449] = {.lex_state = 70, .external_lex_state = 3}, [1450] = {.lex_state = 70, .external_lex_state = 3}, [1451] = {.lex_state = 70, .external_lex_state = 3}, [1452] = {.lex_state = 70, .external_lex_state = 2}, - [1453] = {.lex_state = 70, .external_lex_state = 3}, - [1454] = {.lex_state = 70, .external_lex_state = 3}, - [1455] = {.lex_state = 70, .external_lex_state = 3}, - [1456] = {.lex_state = 70, .external_lex_state = 3}, - [1457] = {.lex_state = 70, .external_lex_state = 3}, - [1458] = {.lex_state = 70, .external_lex_state = 2}, - [1459] = {.lex_state = 70, .external_lex_state = 3}, - [1460] = {.lex_state = 7, .external_lex_state = 2}, - [1461] = {.lex_state = 70, .external_lex_state = 2}, - [1462] = {.lex_state = 70, .external_lex_state = 2}, + [1453] = {.lex_state = 70, .external_lex_state = 2}, + [1454] = {.lex_state = 14}, + [1455] = {.lex_state = 14}, + [1456] = {.lex_state = 70, .external_lex_state = 2}, + [1457] = {.lex_state = 70, .external_lex_state = 2}, + [1458] = {.lex_state = 70, .external_lex_state = 3}, + [1459] = {.lex_state = 70, .external_lex_state = 2}, + [1460] = {.lex_state = 70, .external_lex_state = 2}, + [1461] = {.lex_state = 14}, + [1462] = {.lex_state = 14}, [1463] = {.lex_state = 70, .external_lex_state = 2}, - [1464] = {.lex_state = 70, .external_lex_state = 2}, - [1465] = {.lex_state = 70, .external_lex_state = 3}, + [1464] = {.lex_state = 70, .external_lex_state = 3}, + [1465] = {.lex_state = 14}, [1466] = {.lex_state = 70, .external_lex_state = 2}, - [1467] = {.lex_state = 70, .external_lex_state = 3}, + [1467] = {.lex_state = 14}, [1468] = {.lex_state = 70, .external_lex_state = 3}, - [1469] = {.lex_state = 70, .external_lex_state = 3}, + [1469] = {.lex_state = 14}, [1470] = {.lex_state = 70, .external_lex_state = 2}, [1471] = {.lex_state = 70, .external_lex_state = 2}, - [1472] = {.lex_state = 70, .external_lex_state = 3}, - [1473] = {.lex_state = 70, .external_lex_state = 3}, + [1472] = {.lex_state = 14}, + [1473] = {.lex_state = 70, .external_lex_state = 2}, [1474] = {.lex_state = 70, .external_lex_state = 2}, - [1475] = {.lex_state = 7, .external_lex_state = 2}, + [1475] = {.lex_state = 70, .external_lex_state = 3}, [1476] = {.lex_state = 70, .external_lex_state = 2}, - [1477] = {.lex_state = 70, .external_lex_state = 3}, - [1478] = {.lex_state = 7, .external_lex_state = 2}, - [1479] = {.lex_state = 7, .external_lex_state = 2}, - [1480] = {.lex_state = 70, .external_lex_state = 3}, + [1477] = {.lex_state = 70, .external_lex_state = 2}, + [1478] = {.lex_state = 70, .external_lex_state = 2}, + [1479] = {.lex_state = 70, .external_lex_state = 2}, + [1480] = {.lex_state = 70, .external_lex_state = 2}, [1481] = {.lex_state = 70, .external_lex_state = 2}, - [1482] = {.lex_state = 7, .external_lex_state = 2}, + [1482] = {.lex_state = 70, .external_lex_state = 2}, [1483] = {.lex_state = 70, .external_lex_state = 2}, [1484] = {.lex_state = 70, .external_lex_state = 2}, [1485] = {.lex_state = 70, .external_lex_state = 2}, - [1486] = {.lex_state = 70, .external_lex_state = 2}, + [1486] = {.lex_state = 70, .external_lex_state = 5}, [1487] = {.lex_state = 70, .external_lex_state = 2}, - [1488] = {.lex_state = 7, .external_lex_state = 2}, + [1488] = {.lex_state = 70, .external_lex_state = 2}, [1489] = {.lex_state = 70, .external_lex_state = 2}, [1490] = {.lex_state = 70, .external_lex_state = 2}, - [1491] = {.lex_state = 70, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 2}, - [1493] = {.lex_state = 70, .external_lex_state = 2}, - [1494] = {.lex_state = 7, .external_lex_state = 2}, - [1495] = {.lex_state = 7, .external_lex_state = 2}, + [1491] = {.lex_state = 70, .external_lex_state = 2}, + [1492] = {.lex_state = 70, .external_lex_state = 2}, + [1493] = {.lex_state = 70, .external_lex_state = 3}, + [1494] = {.lex_state = 70, .external_lex_state = 2}, + [1495] = {.lex_state = 70, .external_lex_state = 2}, [1496] = {.lex_state = 70, .external_lex_state = 2}, - [1497] = {.lex_state = 70, .external_lex_state = 2}, - [1498] = {.lex_state = 7, .external_lex_state = 2}, - [1499] = {.lex_state = 7, .external_lex_state = 2}, - [1500] = {.lex_state = 70, .external_lex_state = 2}, - [1501] = {.lex_state = 7, .external_lex_state = 2}, + [1497] = {.lex_state = 70, .external_lex_state = 3}, + [1498] = {.lex_state = 70, .external_lex_state = 2}, + [1499] = {.lex_state = 70, .external_lex_state = 2}, + [1500] = {.lex_state = 70, .external_lex_state = 3}, + [1501] = {.lex_state = 70, .external_lex_state = 2}, [1502] = {.lex_state = 70, .external_lex_state = 2}, [1503] = {.lex_state = 70, .external_lex_state = 3}, - [1504] = {.lex_state = 70, .external_lex_state = 2}, - [1505] = {.lex_state = 70, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 2}, + [1504] = {.lex_state = 70, .external_lex_state = 3}, + [1505] = {.lex_state = 70, .external_lex_state = 2}, + [1506] = {.lex_state = 70, .external_lex_state = 3}, [1507] = {.lex_state = 70, .external_lex_state = 2}, - [1508] = {.lex_state = 70, .external_lex_state = 3}, - [1509] = {.lex_state = 70, .external_lex_state = 2}, - [1510] = {.lex_state = 70, .external_lex_state = 2}, - [1511] = {.lex_state = 70, .external_lex_state = 2}, + [1508] = {.lex_state = 70, .external_lex_state = 2}, + [1509] = {.lex_state = 70, .external_lex_state = 3}, + [1510] = {.lex_state = 70, .external_lex_state = 3}, + [1511] = {.lex_state = 70, .external_lex_state = 3}, [1512] = {.lex_state = 70, .external_lex_state = 2}, - [1513] = {.lex_state = 70, .external_lex_state = 2}, - [1514] = {.lex_state = 70, .external_lex_state = 3}, + [1513] = {.lex_state = 70, .external_lex_state = 3}, + [1514] = {.lex_state = 70, .external_lex_state = 2}, [1515] = {.lex_state = 70, .external_lex_state = 3}, - [1516] = {.lex_state = 70, .external_lex_state = 2}, + [1516] = {.lex_state = 70, .external_lex_state = 3}, [1517] = {.lex_state = 70, .external_lex_state = 2}, [1518] = {.lex_state = 70, .external_lex_state = 2}, [1519] = {.lex_state = 70, .external_lex_state = 2}, [1520] = {.lex_state = 70, .external_lex_state = 2}, [1521] = {.lex_state = 70, .external_lex_state = 2}, - [1522] = {.lex_state = 70, .external_lex_state = 3}, + [1522] = {.lex_state = 70, .external_lex_state = 2}, [1523] = {.lex_state = 70, .external_lex_state = 3}, [1524] = {.lex_state = 70, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 2}, - [1526] = {.lex_state = 70, .external_lex_state = 3}, - [1527] = {.lex_state = 70, .external_lex_state = 3}, + [1525] = {.lex_state = 70, .external_lex_state = 3}, + [1526] = {.lex_state = 70, .external_lex_state = 2}, + [1527] = {.lex_state = 70, .external_lex_state = 2}, [1528] = {.lex_state = 70, .external_lex_state = 3}, [1529] = {.lex_state = 70, .external_lex_state = 2}, - [1530] = {.lex_state = 7, .external_lex_state = 2}, - [1531] = {.lex_state = 7, .external_lex_state = 2}, + [1530] = {.lex_state = 70, .external_lex_state = 2}, + [1531] = {.lex_state = 70, .external_lex_state = 2}, [1532] = {.lex_state = 70, .external_lex_state = 2}, [1533] = {.lex_state = 70, .external_lex_state = 2}, [1534] = {.lex_state = 70, .external_lex_state = 2}, [1535] = {.lex_state = 70, .external_lex_state = 2}, [1536] = {.lex_state = 70, .external_lex_state = 2}, - [1537] = {.lex_state = 7, .external_lex_state = 2}, - [1538] = {.lex_state = 7, .external_lex_state = 2}, + [1537] = {.lex_state = 70, .external_lex_state = 3}, + [1538] = {.lex_state = 70, .external_lex_state = 2}, [1539] = {.lex_state = 70, .external_lex_state = 2}, - [1540] = {.lex_state = 70, .external_lex_state = 2}, - [1541] = {.lex_state = 70, .external_lex_state = 2}, - [1542] = {.lex_state = 70, .external_lex_state = 3}, - [1543] = {.lex_state = 70, .external_lex_state = 2}, - [1544] = {.lex_state = 70, .external_lex_state = 2}, - [1545] = {.lex_state = 70, .external_lex_state = 2}, - [1546] = {.lex_state = 70, .external_lex_state = 2}, - [1547] = {.lex_state = 70, .external_lex_state = 2}, - [1548] = {.lex_state = 7, .external_lex_state = 2}, + [1540] = {.lex_state = 70, .external_lex_state = 3}, + [1541] = {.lex_state = 70, .external_lex_state = 3}, + [1542] = {.lex_state = 70, .external_lex_state = 2}, + [1543] = {.lex_state = 70, .external_lex_state = 3}, + [1544] = {.lex_state = 70, .external_lex_state = 3}, + [1545] = {.lex_state = 70, .external_lex_state = 3}, + [1546] = {.lex_state = 70, .external_lex_state = 3}, + [1547] = {.lex_state = 70, .external_lex_state = 3}, + [1548] = {.lex_state = 70, .external_lex_state = 2}, [1549] = {.lex_state = 70, .external_lex_state = 2}, - [1550] = {.lex_state = 7, .external_lex_state = 2}, + [1550] = {.lex_state = 70, .external_lex_state = 2}, [1551] = {.lex_state = 70, .external_lex_state = 2}, [1552] = {.lex_state = 7, .external_lex_state = 2}, - [1553] = {.lex_state = 8, .external_lex_state = 2}, + [1553] = {.lex_state = 7, .external_lex_state = 2}, [1554] = {.lex_state = 70, .external_lex_state = 2}, [1555] = {.lex_state = 70, .external_lex_state = 2}, [1556] = {.lex_state = 70, .external_lex_state = 2}, @@ -7847,2447 +7865,2983 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1559] = {.lex_state = 70, .external_lex_state = 2}, [1560] = {.lex_state = 70, .external_lex_state = 2}, [1561] = {.lex_state = 70, .external_lex_state = 2}, - [1562] = {.lex_state = 70, .external_lex_state = 3}, - [1563] = {.lex_state = 70, .external_lex_state = 3}, + [1562] = {.lex_state = 70, .external_lex_state = 2}, + [1563] = {.lex_state = 70, .external_lex_state = 2}, [1564] = {.lex_state = 70, .external_lex_state = 2}, - [1565] = {.lex_state = 70, .external_lex_state = 2}, - [1566] = {.lex_state = 70, .external_lex_state = 2}, - [1567] = {.lex_state = 7, .external_lex_state = 2}, + [1565] = {.lex_state = 70, .external_lex_state = 3}, + [1566] = {.lex_state = 70, .external_lex_state = 3}, + [1567] = {.lex_state = 70, .external_lex_state = 2}, [1568] = {.lex_state = 70, .external_lex_state = 2}, [1569] = {.lex_state = 70, .external_lex_state = 2}, - [1570] = {.lex_state = 70, .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}, + [1570] = {.lex_state = 70, .external_lex_state = 5}, + [1571] = {.lex_state = 70, .external_lex_state = 2}, + [1572] = {.lex_state = 70, .external_lex_state = 2}, + [1573] = {.lex_state = 70, .external_lex_state = 2}, [1574] = {.lex_state = 70, .external_lex_state = 2}, - [1575] = {.lex_state = 7, .external_lex_state = 2}, - [1576] = {.lex_state = 7, .external_lex_state = 2}, + [1575] = {.lex_state = 70, .external_lex_state = 2}, + [1576] = {.lex_state = 70, .external_lex_state = 2}, [1577] = {.lex_state = 70, .external_lex_state = 3}, [1578] = {.lex_state = 70, .external_lex_state = 2}, [1579] = {.lex_state = 70, .external_lex_state = 2}, [1580] = {.lex_state = 70, .external_lex_state = 2}, - [1581] = {.lex_state = 7, .external_lex_state = 2}, + [1581] = {.lex_state = 70, .external_lex_state = 2}, [1582] = {.lex_state = 70, .external_lex_state = 2}, - [1583] = {.lex_state = 70, .external_lex_state = 3}, - [1584] = {.lex_state = 7, .external_lex_state = 2}, + [1583] = {.lex_state = 70, .external_lex_state = 2}, + [1584] = {.lex_state = 70, .external_lex_state = 2}, [1585] = {.lex_state = 70, .external_lex_state = 2}, - [1586] = {.lex_state = 70, .external_lex_state = 3}, - [1587] = {.lex_state = 70, .external_lex_state = 3}, - [1588] = {.lex_state = 70, .external_lex_state = 2}, + [1586] = {.lex_state = 7, .external_lex_state = 2}, + [1587] = {.lex_state = 7, .external_lex_state = 2}, + [1588] = {.lex_state = 70, .external_lex_state = 3}, [1589] = {.lex_state = 70, .external_lex_state = 2}, - [1590] = {.lex_state = 70, .external_lex_state = 3}, - [1591] = {.lex_state = 70, .external_lex_state = 3}, - [1592] = {.lex_state = 70, .external_lex_state = 3}, - [1593] = {.lex_state = 70, .external_lex_state = 3}, - [1594] = {.lex_state = 70, .external_lex_state = 3}, + [1590] = {.lex_state = 70, .external_lex_state = 2}, + [1591] = {.lex_state = 70, .external_lex_state = 2}, + [1592] = {.lex_state = 70, .external_lex_state = 2}, + [1593] = {.lex_state = 70, .external_lex_state = 2}, + [1594] = {.lex_state = 70, .external_lex_state = 2}, [1595] = {.lex_state = 70, .external_lex_state = 2}, [1596] = {.lex_state = 70, .external_lex_state = 2}, [1597] = {.lex_state = 70, .external_lex_state = 2}, [1598] = {.lex_state = 70, .external_lex_state = 2}, - [1599] = {.lex_state = 70, .external_lex_state = 3}, - [1600] = {.lex_state = 70, .external_lex_state = 3}, + [1599] = {.lex_state = 70, .external_lex_state = 2}, + [1600] = {.lex_state = 70, .external_lex_state = 2}, [1601] = {.lex_state = 70, .external_lex_state = 3}, - [1602] = {.lex_state = 70, .external_lex_state = 3}, + [1602] = {.lex_state = 70, .external_lex_state = 2}, [1603] = {.lex_state = 70, .external_lex_state = 2}, - [1604] = {.lex_state = 70, .external_lex_state = 3}, - [1605] = {.lex_state = 70, .external_lex_state = 5}, - [1606] = {.lex_state = 70, .external_lex_state = 3}, + [1604] = {.lex_state = 70, .external_lex_state = 2}, + [1605] = {.lex_state = 70, .external_lex_state = 2}, + [1606] = {.lex_state = 70, .external_lex_state = 2}, [1607] = {.lex_state = 70, .external_lex_state = 2}, [1608] = {.lex_state = 70, .external_lex_state = 2}, - [1609] = {.lex_state = 70, .external_lex_state = 3}, + [1609] = {.lex_state = 70, .external_lex_state = 2}, [1610] = {.lex_state = 70, .external_lex_state = 2}, - [1611] = {.lex_state = 70, .external_lex_state = 3}, - [1612] = {.lex_state = 70, .external_lex_state = 3}, - [1613] = {.lex_state = 70, .external_lex_state = 5}, - [1614] = {.lex_state = 70, .external_lex_state = 3}, + [1611] = {.lex_state = 70, .external_lex_state = 2}, + [1612] = {.lex_state = 70, .external_lex_state = 2}, + [1613] = {.lex_state = 70, .external_lex_state = 2}, + [1614] = {.lex_state = 70, .external_lex_state = 2}, [1615] = {.lex_state = 70, .external_lex_state = 2}, [1616] = {.lex_state = 70, .external_lex_state = 2}, - [1617] = {.lex_state = 70, .external_lex_state = 3}, - [1618] = {.lex_state = 70, .external_lex_state = 3}, - [1619] = {.lex_state = 70, .external_lex_state = 2}, - [1620] = {.lex_state = 70, .external_lex_state = 3}, - [1621] = {.lex_state = 70, .external_lex_state = 3}, - [1622] = {.lex_state = 70, .external_lex_state = 3}, - [1623] = {.lex_state = 70, .external_lex_state = 3}, - [1624] = {.lex_state = 70, .external_lex_state = 3}, + [1617] = {.lex_state = 70, .external_lex_state = 2}, + [1618] = {.lex_state = 70, .external_lex_state = 2}, + [1619] = {.lex_state = 70, .external_lex_state = 3}, + [1620] = {.lex_state = 70, .external_lex_state = 2}, + [1621] = {.lex_state = 70, .external_lex_state = 2}, + [1622] = {.lex_state = 70, .external_lex_state = 2}, + [1623] = {.lex_state = 70, .external_lex_state = 2}, + [1624] = {.lex_state = 70, .external_lex_state = 2}, [1625] = {.lex_state = 70, .external_lex_state = 2}, - [1626] = {.lex_state = 70, .external_lex_state = 5}, + [1626] = {.lex_state = 70, .external_lex_state = 2}, [1627] = {.lex_state = 70, .external_lex_state = 3}, - [1628] = {.lex_state = 70, .external_lex_state = 2}, + [1628] = {.lex_state = 70, .external_lex_state = 3}, [1629] = {.lex_state = 70, .external_lex_state = 3}, - [1630] = {.lex_state = 70, .external_lex_state = 2}, - [1631] = {.lex_state = 70, .external_lex_state = 3}, - [1632] = {.lex_state = 70, .external_lex_state = 3}, - [1633] = {.lex_state = 70, .external_lex_state = 5}, - [1634] = {.lex_state = 70, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 2}, - [1636] = {.lex_state = 70, .external_lex_state = 3}, + [1630] = {.lex_state = 70, .external_lex_state = 3}, + [1631] = {.lex_state = 70, .external_lex_state = 2}, + [1632] = {.lex_state = 70, .external_lex_state = 2}, + [1633] = {.lex_state = 70, .external_lex_state = 2}, + [1634] = {.lex_state = 70, .external_lex_state = 2}, + [1635] = {.lex_state = 70, .external_lex_state = 3}, + [1636] = {.lex_state = 70, .external_lex_state = 2}, [1637] = {.lex_state = 70, .external_lex_state = 2}, - [1638] = {.lex_state = 7, .external_lex_state = 2}, + [1638] = {.lex_state = 70, .external_lex_state = 2}, [1639] = {.lex_state = 70, .external_lex_state = 2}, - [1640] = {.lex_state = 70, .external_lex_state = 2}, + [1640] = {.lex_state = 7, .external_lex_state = 2}, [1641] = {.lex_state = 70, .external_lex_state = 3}, - [1642] = {.lex_state = 70, .external_lex_state = 5}, + [1642] = {.lex_state = 70, .external_lex_state = 2}, [1643] = {.lex_state = 70, .external_lex_state = 2}, - [1644] = {.lex_state = 70, .external_lex_state = 5}, - [1645] = {.lex_state = 7, .external_lex_state = 2}, - [1646] = {.lex_state = 70, .external_lex_state = 5}, + [1644] = {.lex_state = 70, .external_lex_state = 2}, + [1645] = {.lex_state = 70, .external_lex_state = 2}, + [1646] = {.lex_state = 70, .external_lex_state = 2}, [1647] = {.lex_state = 70, .external_lex_state = 2}, - [1648] = {.lex_state = 70, .external_lex_state = 2}, + [1648] = {.lex_state = 70, .external_lex_state = 3}, [1649] = {.lex_state = 70, .external_lex_state = 3}, - [1650] = {.lex_state = 70, .external_lex_state = 3}, - [1651] = {.lex_state = 70, .external_lex_state = 3}, - [1652] = {.lex_state = 70, .external_lex_state = 3}, - [1653] = {.lex_state = 70, .external_lex_state = 3}, - [1654] = {.lex_state = 70, .external_lex_state = 3}, - [1655] = {.lex_state = 70, .external_lex_state = 3}, - [1656] = {.lex_state = 70, .external_lex_state = 3}, - [1657] = {.lex_state = 70, .external_lex_state = 3}, + [1650] = {.lex_state = 70, .external_lex_state = 2}, + [1651] = {.lex_state = 70, .external_lex_state = 2}, + [1652] = {.lex_state = 70, .external_lex_state = 2}, + [1653] = {.lex_state = 70, .external_lex_state = 2}, + [1654] = {.lex_state = 70, .external_lex_state = 2}, + [1655] = {.lex_state = 70, .external_lex_state = 2}, + [1656] = {.lex_state = 70, .external_lex_state = 2}, + [1657] = {.lex_state = 70, .external_lex_state = 2}, [1658] = {.lex_state = 70, .external_lex_state = 3}, - [1659] = {.lex_state = 70, .external_lex_state = 3}, - [1660] = {.lex_state = 70, .external_lex_state = 3}, - [1661] = {.lex_state = 70, .external_lex_state = 3}, + [1659] = {.lex_state = 70, .external_lex_state = 2}, + [1660] = {.lex_state = 70, .external_lex_state = 2}, + [1661] = {.lex_state = 70, .external_lex_state = 2}, [1662] = {.lex_state = 70, .external_lex_state = 3}, - [1663] = {.lex_state = 70, .external_lex_state = 3}, - [1664] = {.lex_state = 70, .external_lex_state = 3}, + [1663] = {.lex_state = 70, .external_lex_state = 2}, + [1664] = {.lex_state = 7, .external_lex_state = 2}, [1665] = {.lex_state = 70, .external_lex_state = 2}, - [1666] = {.lex_state = 70, .external_lex_state = 5}, + [1666] = {.lex_state = 70, .external_lex_state = 3}, [1667] = {.lex_state = 70, .external_lex_state = 3}, - [1668] = {.lex_state = 70, .external_lex_state = 2}, - [1669] = {.lex_state = 70, .external_lex_state = 3}, + [1668] = {.lex_state = 70, .external_lex_state = 3}, + [1669] = {.lex_state = 7, .external_lex_state = 2}, [1670] = {.lex_state = 70, .external_lex_state = 3}, - [1671] = {.lex_state = 70, .external_lex_state = 3}, - [1672] = {.lex_state = 70, .external_lex_state = 2}, - [1673] = {.lex_state = 70, .external_lex_state = 5}, - [1674] = {.lex_state = 70, .external_lex_state = 2}, + [1671] = {.lex_state = 70, .external_lex_state = 2}, + [1672] = {.lex_state = 70, .external_lex_state = 3}, + [1673] = {.lex_state = 70, .external_lex_state = 2}, + [1674] = {.lex_state = 70, .external_lex_state = 6}, [1675] = {.lex_state = 70, .external_lex_state = 3}, [1676] = {.lex_state = 70, .external_lex_state = 3}, [1677] = {.lex_state = 70, .external_lex_state = 3}, - [1678] = {.lex_state = 70, .external_lex_state = 3}, - [1679] = {.lex_state = 70, .external_lex_state = 5}, - [1680] = {.lex_state = 70, .external_lex_state = 2}, - [1681] = {.lex_state = 70, .external_lex_state = 2}, - [1682] = {.lex_state = 70, .external_lex_state = 3}, - [1683] = {.lex_state = 70, .external_lex_state = 3}, + [1678] = {.lex_state = 8, .external_lex_state = 2}, + [1679] = {.lex_state = 70, .external_lex_state = 2}, + [1680] = {.lex_state = 7, .external_lex_state = 2}, + [1681] = {.lex_state = 70, .external_lex_state = 6}, + [1682] = {.lex_state = 70, .external_lex_state = 2}, + [1683] = {.lex_state = 70, .external_lex_state = 2}, [1684] = {.lex_state = 70, .external_lex_state = 3}, [1685] = {.lex_state = 70, .external_lex_state = 3}, [1686] = {.lex_state = 70, .external_lex_state = 3}, - [1687] = {.lex_state = 70, .external_lex_state = 5}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 70, .external_lex_state = 3}, - [1690] = {.lex_state = 7, .external_lex_state = 2}, - [1691] = {.lex_state = 70, .external_lex_state = 3}, - [1692] = {.lex_state = 70, .external_lex_state = 3}, - [1693] = {.lex_state = 70, .external_lex_state = 2}, - [1694] = {.lex_state = 70, .external_lex_state = 3}, - [1695] = {.lex_state = 70, .external_lex_state = 3}, + [1687] = {.lex_state = 70, .external_lex_state = 2}, + [1688] = {.lex_state = 70, .external_lex_state = 2}, + [1689] = {.lex_state = 7, .external_lex_state = 2}, + [1690] = {.lex_state = 70, .external_lex_state = 3}, + [1691] = {.lex_state = 70, .external_lex_state = 2}, + [1692] = {.lex_state = 70, .external_lex_state = 2}, + [1693] = {.lex_state = 70, .external_lex_state = 3}, + [1694] = {.lex_state = 70, .external_lex_state = 5}, + [1695] = {.lex_state = 70, .external_lex_state = 5}, [1696] = {.lex_state = 70, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 2}, - [1698] = {.lex_state = 70, .external_lex_state = 3}, - [1699] = {.lex_state = 70, .external_lex_state = 3}, - [1700] = {.lex_state = 70, .external_lex_state = 3}, + [1697] = {.lex_state = 70, .external_lex_state = 3}, + [1698] = {.lex_state = 70, .external_lex_state = 5}, + [1699] = {.lex_state = 7, .external_lex_state = 2}, + [1700] = {.lex_state = 70, .external_lex_state = 5}, [1701] = {.lex_state = 70, .external_lex_state = 3}, [1702] = {.lex_state = 70, .external_lex_state = 3}, [1703] = {.lex_state = 70, .external_lex_state = 3}, - [1704] = {.lex_state = 70, .external_lex_state = 2}, + [1704] = {.lex_state = 70, .external_lex_state = 3}, [1705] = {.lex_state = 70, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 2}, - [1707] = {.lex_state = 70, .external_lex_state = 2}, + [1706] = {.lex_state = 70, .external_lex_state = 3}, + [1707] = {.lex_state = 70, .external_lex_state = 5}, [1708] = {.lex_state = 70, .external_lex_state = 3}, - [1709] = {.lex_state = 70, .external_lex_state = 2}, - [1710] = {.lex_state = 70, .external_lex_state = 2}, + [1709] = {.lex_state = 70, .external_lex_state = 3}, + [1710] = {.lex_state = 70, .external_lex_state = 3}, [1711] = {.lex_state = 70, .external_lex_state = 3}, - [1712] = {.lex_state = 70, .external_lex_state = 2}, - [1713] = {.lex_state = 8, .external_lex_state = 3}, - [1714] = {.lex_state = 70, .external_lex_state = 3}, - [1715] = {.lex_state = 70, .external_lex_state = 3}, + [1712] = {.lex_state = 8, .external_lex_state = 3}, + [1713] = {.lex_state = 70, .external_lex_state = 3}, + [1714] = {.lex_state = 70, .external_lex_state = 2}, + [1715] = {.lex_state = 7, .external_lex_state = 2}, [1716] = {.lex_state = 70, .external_lex_state = 3}, - [1717] = {.lex_state = 70, .external_lex_state = 3}, - [1718] = {.lex_state = 70, .external_lex_state = 3}, - [1719] = {.lex_state = 70, .external_lex_state = 3}, - [1720] = {.lex_state = 70, .external_lex_state = 2}, - [1721] = {.lex_state = 70, .external_lex_state = 2}, - [1722] = {.lex_state = 70, .external_lex_state = 2}, - [1723] = {.lex_state = 70, .external_lex_state = 3}, + [1717] = {.lex_state = 7, .external_lex_state = 2}, + [1718] = {.lex_state = 7, .external_lex_state = 2}, + [1719] = {.lex_state = 70, .external_lex_state = 5}, + [1720] = {.lex_state = 70, .external_lex_state = 3}, + [1721] = {.lex_state = 70, .external_lex_state = 3}, + [1722] = {.lex_state = 70, .external_lex_state = 5}, + [1723] = {.lex_state = 70, .external_lex_state = 2}, [1724] = {.lex_state = 70, .external_lex_state = 3}, [1725] = {.lex_state = 70, .external_lex_state = 3}, [1726] = {.lex_state = 70, .external_lex_state = 3}, - [1727] = {.lex_state = 70, .external_lex_state = 2}, + [1727] = {.lex_state = 70, .external_lex_state = 3}, [1728] = {.lex_state = 70, .external_lex_state = 3}, [1729] = {.lex_state = 70, .external_lex_state = 3}, [1730] = {.lex_state = 70, .external_lex_state = 3}, - [1731] = {.lex_state = 70, .external_lex_state = 3}, + [1731] = {.lex_state = 70, .external_lex_state = 5}, [1732] = {.lex_state = 70, .external_lex_state = 3}, - [1733] = {.lex_state = 70, .external_lex_state = 2}, + [1733] = {.lex_state = 70, .external_lex_state = 5}, [1734] = {.lex_state = 70, .external_lex_state = 3}, [1735] = {.lex_state = 70, .external_lex_state = 3}, - [1736] = {.lex_state = 70, .external_lex_state = 5}, + [1736] = {.lex_state = 70, .external_lex_state = 2}, [1737] = {.lex_state = 70, .external_lex_state = 3}, - [1738] = {.lex_state = 7, .external_lex_state = 2}, + [1738] = {.lex_state = 70, .external_lex_state = 3}, [1739] = {.lex_state = 70, .external_lex_state = 3}, [1740] = {.lex_state = 70, .external_lex_state = 3}, - [1741] = {.lex_state = 70, .external_lex_state = 2}, + [1741] = {.lex_state = 7, .external_lex_state = 3}, [1742] = {.lex_state = 70, .external_lex_state = 3}, [1743] = {.lex_state = 70, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 2}, + [1744] = {.lex_state = 70, .external_lex_state = 3}, [1745] = {.lex_state = 70, .external_lex_state = 3}, [1746] = {.lex_state = 70, .external_lex_state = 3}, [1747] = {.lex_state = 70, .external_lex_state = 3}, [1748] = {.lex_state = 70, .external_lex_state = 3}, - [1749] = {.lex_state = 70, .external_lex_state = 3}, - [1750] = {.lex_state = 70, .external_lex_state = 3}, + [1749] = {.lex_state = 70, .external_lex_state = 2}, + [1750] = {.lex_state = 70, .external_lex_state = 2}, [1751] = {.lex_state = 70, .external_lex_state = 2}, - [1752] = {.lex_state = 7, .external_lex_state = 2}, - [1753] = {.lex_state = 8, .external_lex_state = 2}, + [1752] = {.lex_state = 70, .external_lex_state = 3}, + [1753] = {.lex_state = 70, .external_lex_state = 5}, [1754] = {.lex_state = 70, .external_lex_state = 3}, - [1755] = {.lex_state = 7, .external_lex_state = 2}, - [1756] = {.lex_state = 7, .external_lex_state = 2}, - [1757] = {.lex_state = 7, .external_lex_state = 2}, - [1758] = {.lex_state = 7, .external_lex_state = 2}, - [1759] = {.lex_state = 70, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 2}, - [1761] = {.lex_state = 70, .external_lex_state = 2}, + [1755] = {.lex_state = 70, .external_lex_state = 3}, + [1756] = {.lex_state = 70, .external_lex_state = 3}, + [1757] = {.lex_state = 70, .external_lex_state = 3}, + [1758] = {.lex_state = 70, .external_lex_state = 3}, + [1759] = {.lex_state = 70, .external_lex_state = 5}, + [1760] = {.lex_state = 70, .external_lex_state = 3}, + [1761] = {.lex_state = 70, .external_lex_state = 3}, [1762] = {.lex_state = 70, .external_lex_state = 3}, - [1763] = {.lex_state = 14}, + [1763] = {.lex_state = 70, .external_lex_state = 3}, [1764] = {.lex_state = 70, .external_lex_state = 3}, - [1765] = {.lex_state = 70, .external_lex_state = 2}, - [1766] = {.lex_state = 70, .external_lex_state = 3}, + [1765] = {.lex_state = 70, .external_lex_state = 3}, + [1766] = {.lex_state = 70, .external_lex_state = 6}, [1767] = {.lex_state = 70, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 2}, + [1768] = {.lex_state = 70, .external_lex_state = 3}, [1769] = {.lex_state = 70, .external_lex_state = 2}, - [1770] = {.lex_state = 7, .external_lex_state = 2}, - [1771] = {.lex_state = 71}, - [1772] = {.lex_state = 7, .external_lex_state = 2}, - [1773] = {.lex_state = 14}, - [1774] = {.lex_state = 7, .external_lex_state = 2}, - [1775] = {.lex_state = 70, .external_lex_state = 2}, - [1776] = {.lex_state = 7, .external_lex_state = 2}, - [1777] = {.lex_state = 70, .external_lex_state = 2}, - [1778] = {.lex_state = 7, .external_lex_state = 2}, - [1779] = {.lex_state = 7, .external_lex_state = 2}, - [1780] = {.lex_state = 70, .external_lex_state = 2}, + [1770] = {.lex_state = 70, .external_lex_state = 3}, + [1771] = {.lex_state = 70, .external_lex_state = 2}, + [1772] = {.lex_state = 70, .external_lex_state = 2}, + [1773] = {.lex_state = 70, .external_lex_state = 2}, + [1774] = {.lex_state = 70, .external_lex_state = 2}, + [1775] = {.lex_state = 70, .external_lex_state = 3}, + [1776] = {.lex_state = 70, .external_lex_state = 3}, + [1777] = {.lex_state = 70, .external_lex_state = 5}, + [1778] = {.lex_state = 70, .external_lex_state = 3}, + [1779] = {.lex_state = 70, .external_lex_state = 5}, + [1780] = {.lex_state = 70, .external_lex_state = 3}, [1781] = {.lex_state = 70, .external_lex_state = 3}, - [1782] = {.lex_state = 70, .external_lex_state = 3}, + [1782] = {.lex_state = 14}, [1783] = {.lex_state = 7, .external_lex_state = 2}, - [1784] = {.lex_state = 70, .external_lex_state = 3}, + [1784] = {.lex_state = 7, .external_lex_state = 2}, [1785] = {.lex_state = 7, .external_lex_state = 2}, [1786] = {.lex_state = 70, .external_lex_state = 3}, [1787] = {.lex_state = 7, .external_lex_state = 2}, [1788] = {.lex_state = 7, .external_lex_state = 2}, - [1789] = {.lex_state = 7, .external_lex_state = 2}, - [1790] = {.lex_state = 7, .external_lex_state = 2}, + [1789] = {.lex_state = 70, .external_lex_state = 3}, + [1790] = {.lex_state = 70, .external_lex_state = 2}, [1791] = {.lex_state = 7, .external_lex_state = 2}, [1792] = {.lex_state = 7, .external_lex_state = 2}, - [1793] = {.lex_state = 70, .external_lex_state = 2}, - [1794] = {.lex_state = 7, .external_lex_state = 2}, + [1793] = {.lex_state = 70, .external_lex_state = 3}, + [1794] = {.lex_state = 70, .external_lex_state = 3}, [1795] = {.lex_state = 70, .external_lex_state = 3}, - [1796] = {.lex_state = 70, .external_lex_state = 3}, + [1796] = {.lex_state = 7, .external_lex_state = 2}, [1797] = {.lex_state = 70, .external_lex_state = 3}, - [1798] = {.lex_state = 7, .external_lex_state = 2}, - [1799] = {.lex_state = 7, .external_lex_state = 2}, - [1800] = {.lex_state = 70, .external_lex_state = 2}, + [1798] = {.lex_state = 70, .external_lex_state = 3}, + [1799] = {.lex_state = 70, .external_lex_state = 3}, + [1800] = {.lex_state = 71}, [1801] = {.lex_state = 70, .external_lex_state = 3}, - [1802] = {.lex_state = 70, .external_lex_state = 2}, + [1802] = {.lex_state = 70, .external_lex_state = 3}, [1803] = {.lex_state = 70, .external_lex_state = 3}, [1804] = {.lex_state = 70, .external_lex_state = 3}, - [1805] = {.lex_state = 70, .external_lex_state = 3}, + [1805] = {.lex_state = 70, .external_lex_state = 2}, [1806] = {.lex_state = 70, .external_lex_state = 2}, - [1807] = {.lex_state = 7, .external_lex_state = 2}, + [1807] = {.lex_state = 70, .external_lex_state = 3}, [1808] = {.lex_state = 70, .external_lex_state = 3}, - [1809] = {.lex_state = 7, .external_lex_state = 2}, - [1810] = {.lex_state = 7, .external_lex_state = 2}, + [1809] = {.lex_state = 70, .external_lex_state = 3}, + [1810] = {.lex_state = 14}, [1811] = {.lex_state = 70, .external_lex_state = 2}, - [1812] = {.lex_state = 7, .external_lex_state = 2}, + [1812] = {.lex_state = 70, .external_lex_state = 2}, [1813] = {.lex_state = 7, .external_lex_state = 2}, - [1814] = {.lex_state = 70, .external_lex_state = 3}, - [1815] = {.lex_state = 7, .external_lex_state = 2}, + [1814] = {.lex_state = 70, .external_lex_state = 2}, + [1815] = {.lex_state = 70, .external_lex_state = 2}, [1816] = {.lex_state = 7, .external_lex_state = 2}, [1817] = {.lex_state = 7, .external_lex_state = 2}, - [1818] = {.lex_state = 14}, - [1819] = {.lex_state = 7, .external_lex_state = 2}, + [1818] = {.lex_state = 7, .external_lex_state = 2}, + [1819] = {.lex_state = 70, .external_lex_state = 2}, [1820] = {.lex_state = 7, .external_lex_state = 2}, - [1821] = {.lex_state = 70, .external_lex_state = 3}, - [1822] = {.lex_state = 7, .external_lex_state = 2}, - [1823] = {.lex_state = 7, .external_lex_state = 2}, - [1824] = {.lex_state = 7, .external_lex_state = 2}, - [1825] = {.lex_state = 70, .external_lex_state = 3}, - [1826] = {.lex_state = 7, .external_lex_state = 2}, - [1827] = {.lex_state = 14}, - [1828] = {.lex_state = 7, .external_lex_state = 2}, - [1829] = {.lex_state = 70, .external_lex_state = 3}, + [1821] = {.lex_state = 70, .external_lex_state = 2}, + [1822] = {.lex_state = 70, .external_lex_state = 2}, + [1823] = {.lex_state = 70, .external_lex_state = 2}, + [1824] = {.lex_state = 70, .external_lex_state = 3}, + [1825] = {.lex_state = 70, .external_lex_state = 2}, + [1826] = {.lex_state = 70, .external_lex_state = 3}, + [1827] = {.lex_state = 70, .external_lex_state = 2}, + [1828] = {.lex_state = 70, .external_lex_state = 2}, + [1829] = {.lex_state = 70, .external_lex_state = 2}, [1830] = {.lex_state = 70, .external_lex_state = 2}, - [1831] = {.lex_state = 70, .external_lex_state = 3}, - [1832] = {.lex_state = 7, .external_lex_state = 2}, - [1833] = {.lex_state = 7, .external_lex_state = 2}, - [1834] = {.lex_state = 71}, - [1835] = {.lex_state = 70, .external_lex_state = 3}, - [1836] = {.lex_state = 7, .external_lex_state = 2}, - [1837] = {.lex_state = 7, .external_lex_state = 2}, - [1838] = {.lex_state = 71}, - [1839] = {.lex_state = 7, .external_lex_state = 2}, - [1840] = {.lex_state = 7, .external_lex_state = 2}, + [1831] = {.lex_state = 70, .external_lex_state = 2}, + [1832] = {.lex_state = 70, .external_lex_state = 3}, + [1833] = {.lex_state = 70, .external_lex_state = 3}, + [1834] = {.lex_state = 70, .external_lex_state = 3}, + [1835] = {.lex_state = 70, .external_lex_state = 2}, + [1836] = {.lex_state = 70, .external_lex_state = 3}, + [1837] = {.lex_state = 70, .external_lex_state = 3}, + [1838] = {.lex_state = 70, .external_lex_state = 3}, + [1839] = {.lex_state = 70, .external_lex_state = 3}, + [1840] = {.lex_state = 70, .external_lex_state = 2}, [1841] = {.lex_state = 7, .external_lex_state = 2}, - [1842] = {.lex_state = 70, .external_lex_state = 2}, - [1843] = {.lex_state = 70, .external_lex_state = 3}, - [1844] = {.lex_state = 71}, - [1845] = {.lex_state = 70, .external_lex_state = 3}, + [1842] = {.lex_state = 7, .external_lex_state = 2}, + [1843] = {.lex_state = 70, .external_lex_state = 2}, + [1844] = {.lex_state = 7, .external_lex_state = 2}, + [1845] = {.lex_state = 14}, [1846] = {.lex_state = 7, .external_lex_state = 2}, [1847] = {.lex_state = 7, .external_lex_state = 3}, [1848] = {.lex_state = 7, .external_lex_state = 2}, [1849] = {.lex_state = 70, .external_lex_state = 3}, - [1850] = {.lex_state = 70, .external_lex_state = 3}, - [1851] = {.lex_state = 7, .external_lex_state = 2}, - [1852] = {.lex_state = 7, .external_lex_state = 2}, + [1850] = {.lex_state = 7, .external_lex_state = 2}, + [1851] = {.lex_state = 70, .external_lex_state = 2}, + [1852] = {.lex_state = 70, .external_lex_state = 3}, [1853] = {.lex_state = 70, .external_lex_state = 3}, - [1854] = {.lex_state = 70, .external_lex_state = 2}, - [1855] = {.lex_state = 7, .external_lex_state = 2}, - [1856] = {.lex_state = 70, .external_lex_state = 3}, - [1857] = {.lex_state = 7, .external_lex_state = 2}, - [1858] = {.lex_state = 70, .external_lex_state = 3}, - [1859] = {.lex_state = 70, .external_lex_state = 3}, - [1860] = {.lex_state = 7, .external_lex_state = 2}, - [1861] = {.lex_state = 7, .external_lex_state = 2}, - [1862] = {.lex_state = 7, .external_lex_state = 2}, - [1863] = {.lex_state = 70, .external_lex_state = 3}, + [1854] = {.lex_state = 70, .external_lex_state = 3}, + [1855] = {.lex_state = 70, .external_lex_state = 3}, + [1856] = {.lex_state = 14}, + [1857] = {.lex_state = 70, .external_lex_state = 3}, + [1858] = {.lex_state = 70, .external_lex_state = 2}, + [1859] = {.lex_state = 70, .external_lex_state = 2}, + [1860] = {.lex_state = 70, .external_lex_state = 3}, + [1861] = {.lex_state = 70, .external_lex_state = 3}, + [1862] = {.lex_state = 70, .external_lex_state = 3}, + [1863] = {.lex_state = 70, .external_lex_state = 2}, [1864] = {.lex_state = 7, .external_lex_state = 2}, - [1865] = {.lex_state = 70, .external_lex_state = 3}, - [1866] = {.lex_state = 7, .external_lex_state = 2}, - [1867] = {.lex_state = 70, .external_lex_state = 3}, + [1865] = {.lex_state = 7, .external_lex_state = 2}, + [1866] = {.lex_state = 70, .external_lex_state = 3}, + [1867] = {.lex_state = 7, .external_lex_state = 2}, [1868] = {.lex_state = 70, .external_lex_state = 2}, - [1869] = {.lex_state = 70, .external_lex_state = 2}, - [1870] = {.lex_state = 7, .external_lex_state = 2}, - [1871] = {.lex_state = 70, .external_lex_state = 2}, - [1872] = {.lex_state = 71}, + [1869] = {.lex_state = 7, .external_lex_state = 2}, + [1870] = {.lex_state = 70, .external_lex_state = 3}, + [1871] = {.lex_state = 70, .external_lex_state = 3}, + [1872] = {.lex_state = 70, .external_lex_state = 3}, [1873] = {.lex_state = 70, .external_lex_state = 2}, - [1874] = {.lex_state = 70, .external_lex_state = 3}, - [1875] = {.lex_state = 7, .external_lex_state = 2}, - [1876] = {.lex_state = 14}, - [1877] = {.lex_state = 70, .external_lex_state = 2}, - [1878] = {.lex_state = 70, .external_lex_state = 3}, - [1879] = {.lex_state = 70, .external_lex_state = 3}, - [1880] = {.lex_state = 70, .external_lex_state = 2}, - [1881] = {.lex_state = 7, .external_lex_state = 2}, - [1882] = {.lex_state = 7, .external_lex_state = 2}, - [1883] = {.lex_state = 7, .external_lex_state = 2}, + [1874] = {.lex_state = 14}, + [1875] = {.lex_state = 70, .external_lex_state = 2}, + [1876] = {.lex_state = 70, .external_lex_state = 3}, + [1877] = {.lex_state = 70, .external_lex_state = 3}, + [1878] = {.lex_state = 70, .external_lex_state = 2}, + [1879] = {.lex_state = 7, .external_lex_state = 2}, + [1880] = {.lex_state = 70, .external_lex_state = 3}, + [1881] = {.lex_state = 70, .external_lex_state = 2}, + [1882] = {.lex_state = 70, .external_lex_state = 2}, + [1883] = {.lex_state = 14}, [1884] = {.lex_state = 70, .external_lex_state = 2}, - [1885] = {.lex_state = 7, .external_lex_state = 2}, - [1886] = {.lex_state = 14}, - [1887] = {.lex_state = 14}, + [1885] = {.lex_state = 70, .external_lex_state = 2}, + [1886] = {.lex_state = 70, .external_lex_state = 2}, + [1887] = {.lex_state = 70, .external_lex_state = 2}, [1888] = {.lex_state = 70, .external_lex_state = 3}, [1889] = {.lex_state = 70, .external_lex_state = 3}, [1890] = {.lex_state = 70, .external_lex_state = 3}, - [1891] = {.lex_state = 70, .external_lex_state = 3}, - [1892] = {.lex_state = 7, .external_lex_state = 2}, - [1893] = {.lex_state = 70, .external_lex_state = 3}, - [1894] = {.lex_state = 70, .external_lex_state = 3}, - [1895] = {.lex_state = 14}, - [1896] = {.lex_state = 7, .external_lex_state = 2}, - [1897] = {.lex_state = 14}, + [1891] = {.lex_state = 7, .external_lex_state = 2}, + [1892] = {.lex_state = 70, .external_lex_state = 3}, + [1893] = {.lex_state = 7, .external_lex_state = 2}, + [1894] = {.lex_state = 7, .external_lex_state = 2}, + [1895] = {.lex_state = 70, .external_lex_state = 3}, + [1896] = {.lex_state = 70, .external_lex_state = 3}, + [1897] = {.lex_state = 70, .external_lex_state = 3}, [1898] = {.lex_state = 7, .external_lex_state = 2}, - [1899] = {.lex_state = 70, .external_lex_state = 2}, - [1900] = {.lex_state = 14}, - [1901] = {.lex_state = 70, .external_lex_state = 3}, + [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 = 2}, [1903] = {.lex_state = 70, .external_lex_state = 2}, [1904] = {.lex_state = 7, .external_lex_state = 2}, - [1905] = {.lex_state = 14}, - [1906] = {.lex_state = 70, .external_lex_state = 2}, - [1907] = {.lex_state = 70, .external_lex_state = 2}, - [1908] = {.lex_state = 7, .external_lex_state = 3}, - [1909] = {.lex_state = 14}, - [1910] = {.lex_state = 10, .external_lex_state = 2}, - [1911] = {.lex_state = 70, .external_lex_state = 2}, - [1912] = {.lex_state = 7, .external_lex_state = 2}, + [1905] = {.lex_state = 70, .external_lex_state = 3}, + [1906] = {.lex_state = 7, .external_lex_state = 3}, + [1907] = {.lex_state = 70, .external_lex_state = 3}, + [1908] = {.lex_state = 7, .external_lex_state = 2}, + [1909] = {.lex_state = 7, .external_lex_state = 2}, + [1910] = {.lex_state = 7, .external_lex_state = 2}, + [1911] = {.lex_state = 7, .external_lex_state = 2}, + [1912] = {.lex_state = 14}, [1913] = {.lex_state = 7, .external_lex_state = 2}, - [1914] = {.lex_state = 14}, - [1915] = {.lex_state = 70, .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 = 70, .external_lex_state = 3}, - [1918] = {.lex_state = 70, .external_lex_state = 3}, - [1919] = {.lex_state = 70, .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 = 2}, [1920] = {.lex_state = 7, .external_lex_state = 2}, [1921] = {.lex_state = 7, .external_lex_state = 2}, - [1922] = {.lex_state = 70, .external_lex_state = 3}, + [1922] = {.lex_state = 7, .external_lex_state = 2}, [1923] = {.lex_state = 70, .external_lex_state = 2}, [1924] = {.lex_state = 7, .external_lex_state = 2}, - [1925] = {.lex_state = 7, .external_lex_state = 2}, - [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 = 2}, - [1930] = {.lex_state = 7, .external_lex_state = 2}, - [1931] = {.lex_state = 7, .external_lex_state = 2}, - [1932] = {.lex_state = 70, .external_lex_state = 2}, - [1933] = {.lex_state = 7, .external_lex_state = 2}, + [1925] = {.lex_state = 70, .external_lex_state = 3}, + [1926] = {.lex_state = 70, .external_lex_state = 2}, + [1927] = {.lex_state = 70, .external_lex_state = 3}, + [1928] = {.lex_state = 70, .external_lex_state = 3}, + [1929] = {.lex_state = 70, .external_lex_state = 3}, + [1930] = {.lex_state = 8, .external_lex_state = 2}, + [1931] = {.lex_state = 70, .external_lex_state = 3}, + [1932] = {.lex_state = 14}, + [1933] = {.lex_state = 71}, [1934] = {.lex_state = 70, .external_lex_state = 2}, - [1935] = {.lex_state = 71, .external_lex_state = 4}, - [1936] = {.lex_state = 71, .external_lex_state = 4}, + [1935] = {.lex_state = 70, .external_lex_state = 3}, + [1936] = {.lex_state = 70, .external_lex_state = 2}, [1937] = {.lex_state = 7, .external_lex_state = 2}, [1938] = {.lex_state = 7, .external_lex_state = 2}, - [1939] = {.lex_state = 71, .external_lex_state = 4}, - [1940] = {.lex_state = 70, .external_lex_state = 2}, - [1941] = {.lex_state = 7, .external_lex_state = 2}, - [1942] = {.lex_state = 70, .external_lex_state = 2}, + [1939] = {.lex_state = 70, .external_lex_state = 3}, + [1940] = {.lex_state = 7, .external_lex_state = 2}, + [1941] = {.lex_state = 70, .external_lex_state = 3}, + [1942] = {.lex_state = 7, .external_lex_state = 2}, [1943] = {.lex_state = 7, .external_lex_state = 2}, - [1944] = {.lex_state = 7, .external_lex_state = 2}, - [1945] = {.lex_state = 7, .external_lex_state = 2}, - [1946] = {.lex_state = 7, .external_lex_state = 2}, - [1947] = {.lex_state = 7, .external_lex_state = 2}, - [1948] = {.lex_state = 7, .external_lex_state = 2}, - [1949] = {.lex_state = 71, .external_lex_state = 4}, - [1950] = {.lex_state = 70, .external_lex_state = 2}, - [1951] = {.lex_state = 70, .external_lex_state = 2}, + [1944] = {.lex_state = 70, .external_lex_state = 2}, + [1945] = {.lex_state = 70, .external_lex_state = 2}, + [1946] = {.lex_state = 70, .external_lex_state = 3}, + [1947] = {.lex_state = 70, .external_lex_state = 3}, + [1948] = {.lex_state = 70, .external_lex_state = 3}, + [1949] = {.lex_state = 7, .external_lex_state = 2}, + [1950] = {.lex_state = 70, .external_lex_state = 3}, + [1951] = {.lex_state = 7, .external_lex_state = 2}, [1952] = {.lex_state = 7, .external_lex_state = 2}, - [1953] = {.lex_state = 7, .external_lex_state = 2}, - [1954] = {.lex_state = 7, .external_lex_state = 2}, - [1955] = {.lex_state = 7, .external_lex_state = 2}, - [1956] = {.lex_state = 7, .external_lex_state = 2}, - [1957] = {.lex_state = 7, .external_lex_state = 2}, - [1958] = {.lex_state = 71, .external_lex_state = 4}, - [1959] = {.lex_state = 7, .external_lex_state = 2}, - [1960] = {.lex_state = 70, .external_lex_state = 2}, - [1961] = {.lex_state = 70, .external_lex_state = 2}, - [1962] = {.lex_state = 7, .external_lex_state = 2}, + [1953] = {.lex_state = 70, .external_lex_state = 3}, + [1954] = {.lex_state = 70, .external_lex_state = 3}, + [1955] = {.lex_state = 70, .external_lex_state = 3}, + [1956] = {.lex_state = 70, .external_lex_state = 3}, + [1957] = {.lex_state = 70, .external_lex_state = 3}, + [1958] = {.lex_state = 70, .external_lex_state = 3}, + [1959] = {.lex_state = 70, .external_lex_state = 3}, + [1960] = {.lex_state = 70, .external_lex_state = 3}, + [1961] = {.lex_state = 7, .external_lex_state = 2}, + [1962] = {.lex_state = 70, .external_lex_state = 2}, [1963] = {.lex_state = 7, .external_lex_state = 2}, [1964] = {.lex_state = 70, .external_lex_state = 3}, - [1965] = {.lex_state = 70, .external_lex_state = 3}, - [1966] = {.lex_state = 7, .external_lex_state = 2}, - [1967] = {.lex_state = 70, .external_lex_state = 2}, - [1968] = {.lex_state = 7, .external_lex_state = 2}, - [1969] = {.lex_state = 70, .external_lex_state = 2}, - [1970] = {.lex_state = 7, .external_lex_state = 2}, + [1965] = {.lex_state = 14}, + [1966] = {.lex_state = 70, .external_lex_state = 3}, + [1967] = {.lex_state = 70, .external_lex_state = 3}, + [1968] = {.lex_state = 70, .external_lex_state = 2}, + [1969] = {.lex_state = 7, .external_lex_state = 2}, + [1970] = {.lex_state = 70, .external_lex_state = 2}, [1971] = {.lex_state = 7, .external_lex_state = 2}, - [1972] = {.lex_state = 7, .external_lex_state = 2}, - [1973] = {.lex_state = 70, .external_lex_state = 2}, - [1974] = {.lex_state = 7, .external_lex_state = 2}, - [1975] = {.lex_state = 7, .external_lex_state = 2}, + [1972] = {.lex_state = 70, .external_lex_state = 2}, + [1973] = {.lex_state = 71}, + [1974] = {.lex_state = 14}, + [1975] = {.lex_state = 70, .external_lex_state = 3}, [1976] = {.lex_state = 71}, - [1977] = {.lex_state = 71, .external_lex_state = 4}, + [1977] = {.lex_state = 70, .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 = 70, .external_lex_state = 2}, - [1982] = {.lex_state = 7, .external_lex_state = 2}, - [1983] = {.lex_state = 7, .external_lex_state = 2}, - [1984] = {.lex_state = 7, .external_lex_state = 2}, + [1980] = {.lex_state = 70, .external_lex_state = 3}, + [1981] = {.lex_state = 70, .external_lex_state = 3}, + [1982] = {.lex_state = 70, .external_lex_state = 2}, + [1983] = {.lex_state = 70, .external_lex_state = 2}, + [1984] = {.lex_state = 70, .external_lex_state = 3}, [1985] = {.lex_state = 7, .external_lex_state = 2}, - [1986] = {.lex_state = 71, .external_lex_state = 4}, - [1987] = {.lex_state = 70, .external_lex_state = 2}, - [1988] = {.lex_state = 71, .external_lex_state = 4}, - [1989] = {.lex_state = 7, .external_lex_state = 2}, - [1990] = {.lex_state = 7, .external_lex_state = 2}, - [1991] = {.lex_state = 71, .external_lex_state = 4}, - [1992] = {.lex_state = 70, .external_lex_state = 2}, - [1993] = {.lex_state = 7, .external_lex_state = 2}, - [1994] = {.lex_state = 7, .external_lex_state = 2}, - [1995] = {.lex_state = 7, .external_lex_state = 2}, - [1996] = {.lex_state = 71, .external_lex_state = 4}, - [1997] = {.lex_state = 7, .external_lex_state = 2}, - [1998] = {.lex_state = 71, .external_lex_state = 4}, - [1999] = {.lex_state = 7, .external_lex_state = 2}, + [1986] = {.lex_state = 10, .external_lex_state = 2}, + [1987] = {.lex_state = 7, .external_lex_state = 2}, + [1988] = {.lex_state = 70, .external_lex_state = 3}, + [1989] = {.lex_state = 70, .external_lex_state = 3}, + [1990] = {.lex_state = 70, .external_lex_state = 3}, + [1991] = {.lex_state = 7, .external_lex_state = 2}, + [1992] = {.lex_state = 14}, + [1993] = {.lex_state = 70, .external_lex_state = 2}, + [1994] = {.lex_state = 70, .external_lex_state = 2}, + [1995] = {.lex_state = 14}, + [1996] = {.lex_state = 70, .external_lex_state = 3}, + [1997] = {.lex_state = 70, .external_lex_state = 3}, + [1998] = {.lex_state = 70, .external_lex_state = 3}, + [1999] = {.lex_state = 70, .external_lex_state = 3}, [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 = 71, .external_lex_state = 4}, + [2001] = {.lex_state = 71}, + [2002] = {.lex_state = 14}, + [2003] = {.lex_state = 70, .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 = 70, .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 = 70, .external_lex_state = 2}, - [2011] = {.lex_state = 71, .external_lex_state = 4}, - [2012] = {.lex_state = 70, .external_lex_state = 2}, - [2013] = {.lex_state = 71, .external_lex_state = 4}, - [2014] = {.lex_state = 71, .external_lex_state = 4}, - [2015] = {.lex_state = 71, .external_lex_state = 4}, + [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 = 70, .external_lex_state = 2}, + [2015] = {.lex_state = 7, .external_lex_state = 2}, [2016] = {.lex_state = 70, .external_lex_state = 2}, - [2017] = {.lex_state = 71, .external_lex_state = 4}, - [2018] = {.lex_state = 70, .external_lex_state = 2}, - [2019] = {.lex_state = 71, .external_lex_state = 4}, + [2017] = {.lex_state = 70, .external_lex_state = 2}, + [2018] = {.lex_state = 71}, + [2019] = {.lex_state = 7, .external_lex_state = 2}, [2020] = {.lex_state = 70, .external_lex_state = 2}, - [2021] = {.lex_state = 71, .external_lex_state = 4}, - [2022] = {.lex_state = 71, .external_lex_state = 4}, - [2023] = {.lex_state = 71, .external_lex_state = 4}, - [2024] = {.lex_state = 71, .external_lex_state = 4}, - [2025] = {.lex_state = 71, .external_lex_state = 4}, - [2026] = {.lex_state = 71, .external_lex_state = 4}, - [2027] = {.lex_state = 71, .external_lex_state = 4}, - [2028] = {.lex_state = 71, .external_lex_state = 4}, - [2029] = {.lex_state = 71, .external_lex_state = 4}, - [2030] = {.lex_state = 71, .external_lex_state = 4}, - [2031] = {.lex_state = 71, .external_lex_state = 4}, - [2032] = {.lex_state = 70, .external_lex_state = 2}, - [2033] = {.lex_state = 71, .external_lex_state = 4}, - [2034] = {.lex_state = 71, .external_lex_state = 4}, - [2035] = {.lex_state = 71, .external_lex_state = 4}, - [2036] = {.lex_state = 71, .external_lex_state = 4}, + [2021] = {.lex_state = 70, .external_lex_state = 2}, + [2022] = {.lex_state = 7, .external_lex_state = 2}, + [2023] = {.lex_state = 7, .external_lex_state = 2}, + [2024] = {.lex_state = 70, .external_lex_state = 2}, + [2025] = {.lex_state = 70, .external_lex_state = 2}, + [2026] = {.lex_state = 70, .external_lex_state = 2}, + [2027] = {.lex_state = 70, .external_lex_state = 2}, + [2028] = {.lex_state = 70, .external_lex_state = 2}, + [2029] = {.lex_state = 70, .external_lex_state = 3}, + [2030] = {.lex_state = 7, .external_lex_state = 2}, + [2031] = {.lex_state = 7, .external_lex_state = 2}, + [2032] = {.lex_state = 7, .external_lex_state = 2}, + [2033] = {.lex_state = 7, .external_lex_state = 2}, + [2034] = {.lex_state = 70, .external_lex_state = 6}, + [2035] = {.lex_state = 70, .external_lex_state = 3}, + [2036] = {.lex_state = 7, .external_lex_state = 2}, [2037] = {.lex_state = 70, .external_lex_state = 2}, - [2038] = {.lex_state = 71, .external_lex_state = 4}, - [2039] = {.lex_state = 70, .external_lex_state = 2}, + [2038] = {.lex_state = 7, .external_lex_state = 2}, + [2039] = {.lex_state = 7, .external_lex_state = 2}, [2040] = {.lex_state = 70, .external_lex_state = 2}, - [2041] = {.lex_state = 71, .external_lex_state = 4}, - [2042] = {.lex_state = 71, .external_lex_state = 4}, - [2043] = {.lex_state = 71, .external_lex_state = 4}, - [2044] = {.lex_state = 71, .external_lex_state = 4}, - [2045] = {.lex_state = 71, .external_lex_state = 4}, - [2046] = {.lex_state = 71, .external_lex_state = 4}, + [2041] = {.lex_state = 7, .external_lex_state = 2}, + [2042] = {.lex_state = 7, .external_lex_state = 2}, + [2043] = {.lex_state = 7, .external_lex_state = 2}, + [2044] = {.lex_state = 7, .external_lex_state = 2}, + [2045] = {.lex_state = 7, .external_lex_state = 2}, + [2046] = {.lex_state = 70, .external_lex_state = 2}, [2047] = {.lex_state = 70, .external_lex_state = 2}, - [2048] = {.lex_state = 71, .external_lex_state = 4}, - [2049] = {.lex_state = 71, .external_lex_state = 4}, - [2050] = {.lex_state = 71, .external_lex_state = 4}, - [2051] = {.lex_state = 71, .external_lex_state = 4}, - [2052] = {.lex_state = 71, .external_lex_state = 4}, - [2053] = {.lex_state = 70, .external_lex_state = 2}, - [2054] = {.lex_state = 71, .external_lex_state = 4}, - [2055] = {.lex_state = 70, .external_lex_state = 2}, + [2048] = {.lex_state = 7, .external_lex_state = 2}, + [2049] = {.lex_state = 70, .external_lex_state = 2}, + [2050] = {.lex_state = 70, .external_lex_state = 2}, + [2051] = {.lex_state = 7, .external_lex_state = 2}, + [2052] = {.lex_state = 70, .external_lex_state = 2}, + [2053] = {.lex_state = 7, .external_lex_state = 2}, + [2054] = {.lex_state = 7, .external_lex_state = 2}, + [2055] = {.lex_state = 7, .external_lex_state = 2}, [2056] = {.lex_state = 70, .external_lex_state = 2}, - [2057] = {.lex_state = 71, .external_lex_state = 4}, - [2058] = {.lex_state = 71}, - [2059] = {.lex_state = 71}, - [2060] = {.lex_state = 71, .external_lex_state = 4}, - [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 71}, - [2063] = {.lex_state = 71, .external_lex_state = 4}, - [2064] = {.lex_state = 71}, - [2065] = {.lex_state = 71, .external_lex_state = 4}, - [2066] = {.lex_state = 71}, - [2067] = {.lex_state = 71, .external_lex_state = 4}, - [2068] = {.lex_state = 71}, - [2069] = {.lex_state = 71}, - [2070] = {.lex_state = 71, .external_lex_state = 4}, - [2071] = {.lex_state = 71}, - [2072] = {.lex_state = 71}, - [2073] = {.lex_state = 71, .external_lex_state = 4}, - [2074] = {.lex_state = 71}, - [2075] = {.lex_state = 71}, - [2076] = {.lex_state = 71, .external_lex_state = 4}, - [2077] = {.lex_state = 71}, - [2078] = {.lex_state = 71}, - [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 70, .external_lex_state = 2}, - [2081] = {.lex_state = 71}, - [2082] = {.lex_state = 71}, - [2083] = {.lex_state = 71}, - [2084] = {.lex_state = 71, .external_lex_state = 4}, - [2085] = {.lex_state = 71}, - [2086] = {.lex_state = 71, .external_lex_state = 4}, - [2087] = {.lex_state = 71, .external_lex_state = 4}, - [2088] = {.lex_state = 17}, - [2089] = {.lex_state = 71, .external_lex_state = 4}, - [2090] = {.lex_state = 71, .external_lex_state = 4}, - [2091] = {.lex_state = 71}, - [2092] = {.lex_state = 71, .external_lex_state = 4}, - [2093] = {.lex_state = 71, .external_lex_state = 4}, - [2094] = {.lex_state = 71}, - [2095] = {.lex_state = 71}, + [2057] = {.lex_state = 70, .external_lex_state = 2}, + [2058] = {.lex_state = 7, .external_lex_state = 2}, + [2059] = {.lex_state = 70, .external_lex_state = 2}, + [2060] = {.lex_state = 70, .external_lex_state = 2}, + [2061] = {.lex_state = 7, .external_lex_state = 2}, + [2062] = {.lex_state = 7, .external_lex_state = 2}, + [2063] = {.lex_state = 70, .external_lex_state = 2}, + [2064] = {.lex_state = 7, .external_lex_state = 2}, + [2065] = {.lex_state = 70, .external_lex_state = 3}, + [2066] = {.lex_state = 70, .external_lex_state = 3}, + [2067] = {.lex_state = 7, .external_lex_state = 2}, + [2068] = {.lex_state = 7, .external_lex_state = 2}, + [2069] = {.lex_state = 7, .external_lex_state = 2}, + [2070] = {.lex_state = 7, .external_lex_state = 2}, + [2071] = {.lex_state = 7, .external_lex_state = 2}, + [2072] = {.lex_state = 7, .external_lex_state = 2}, + [2073] = {.lex_state = 7, .external_lex_state = 2}, + [2074] = {.lex_state = 70, .external_lex_state = 2}, + [2075] = {.lex_state = 70, .external_lex_state = 2}, + [2076] = {.lex_state = 7, .external_lex_state = 2}, + [2077] = {.lex_state = 7, .external_lex_state = 2}, + [2078] = {.lex_state = 7, .external_lex_state = 2}, + [2079] = {.lex_state = 7, .external_lex_state = 2}, + [2080] = {.lex_state = 7, .external_lex_state = 2}, + [2081] = {.lex_state = 7, .external_lex_state = 2}, + [2082] = {.lex_state = 70, .external_lex_state = 2}, + [2083] = {.lex_state = 7, .external_lex_state = 2}, + [2084] = {.lex_state = 70, .external_lex_state = 3}, + [2085] = {.lex_state = 70, .external_lex_state = 2}, + [2086] = {.lex_state = 70, .external_lex_state = 6}, + [2087] = {.lex_state = 7, .external_lex_state = 2}, + [2088] = {.lex_state = 7, .external_lex_state = 2}, + [2089] = {.lex_state = 7, .external_lex_state = 2}, + [2090] = {.lex_state = 7, .external_lex_state = 2}, + [2091] = {.lex_state = 7, .external_lex_state = 2}, + [2092] = {.lex_state = 7, .external_lex_state = 2}, + [2093] = {.lex_state = 7, .external_lex_state = 2}, + [2094] = {.lex_state = 70, .external_lex_state = 6}, + [2095] = {.lex_state = 70, .external_lex_state = 2}, [2096] = {.lex_state = 70, .external_lex_state = 2}, - [2097] = {.lex_state = 71, .external_lex_state = 4}, - [2098] = {.lex_state = 71}, - [2099] = {.lex_state = 71}, - [2100] = {.lex_state = 71}, - [2101] = {.lex_state = 71, .external_lex_state = 4}, - [2102] = {.lex_state = 71}, - [2103] = {.lex_state = 71}, - [2104] = {.lex_state = 70, .external_lex_state = 2}, + [2097] = {.lex_state = 70, .external_lex_state = 2}, + [2098] = {.lex_state = 7, .external_lex_state = 2}, + [2099] = {.lex_state = 70, .external_lex_state = 2}, + [2100] = {.lex_state = 71, .external_lex_state = 4}, + [2101] = {.lex_state = 70, .external_lex_state = 2}, + [2102] = {.lex_state = 7, .external_lex_state = 2}, + [2103] = {.lex_state = 70, .external_lex_state = 6}, + [2104] = {.lex_state = 70, .external_lex_state = 6}, [2105] = {.lex_state = 71, .external_lex_state = 4}, - [2106] = {.lex_state = 71}, - [2107] = {.lex_state = 71, .external_lex_state = 4}, - [2108] = {.lex_state = 71}, - [2109] = {.lex_state = 71}, - [2110] = {.lex_state = 17}, - [2111] = {.lex_state = 71}, - [2112] = {.lex_state = 71}, - [2113] = {.lex_state = 71}, - [2114] = {.lex_state = 71}, - [2115] = {.lex_state = 71}, - [2116] = {.lex_state = 71}, - [2117] = {.lex_state = 71, .external_lex_state = 4}, - [2118] = {.lex_state = 71}, - [2119] = {.lex_state = 71}, - [2120] = {.lex_state = 71}, - [2121] = {.lex_state = 71}, - [2122] = {.lex_state = 71}, - [2123] = {.lex_state = 71}, - [2124] = {.lex_state = 71}, - [2125] = {.lex_state = 71}, - [2126] = {.lex_state = 71}, - [2127] = {.lex_state = 71}, - [2128] = {.lex_state = 71}, - [2129] = {.lex_state = 71}, - [2130] = {.lex_state = 71}, - [2131] = {.lex_state = 71}, - [2132] = {.lex_state = 71}, - [2133] = {.lex_state = 17}, - [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 17}, - [2136] = {.lex_state = 17}, - [2137] = {.lex_state = 17}, - [2138] = {.lex_state = 71}, - [2139] = {.lex_state = 71}, - [2140] = {.lex_state = 71}, - [2141] = {.lex_state = 71}, - [2142] = {.lex_state = 71}, - [2143] = {.lex_state = 71}, - [2144] = {.lex_state = 14, .external_lex_state = 4}, - [2145] = {.lex_state = 14, .external_lex_state = 4}, - [2146] = {.lex_state = 14, .external_lex_state = 4}, - [2147] = {.lex_state = 14, .external_lex_state = 4}, - [2148] = {.lex_state = 14, .external_lex_state = 4}, - [2149] = {.lex_state = 71}, - [2150] = {.lex_state = 71}, - [2151] = {.lex_state = 14, .external_lex_state = 4}, - [2152] = {.lex_state = 14, .external_lex_state = 4}, - [2153] = {.lex_state = 71}, - [2154] = {.lex_state = 71}, - [2155] = {.lex_state = 14, .external_lex_state = 4}, - [2156] = {.lex_state = 14, .external_lex_state = 4}, - [2157] = {.lex_state = 71}, - [2158] = {.lex_state = 14, .external_lex_state = 4}, - [2159] = {.lex_state = 14, .external_lex_state = 4}, - [2160] = {.lex_state = 14, .external_lex_state = 4}, - [2161] = {.lex_state = 71}, - [2162] = {.lex_state = 14, .external_lex_state = 4}, - [2163] = {.lex_state = 14, .external_lex_state = 4}, - [2164] = {.lex_state = 14, .external_lex_state = 4}, - [2165] = {.lex_state = 14, .external_lex_state = 4}, - [2166] = {.lex_state = 14, .external_lex_state = 4}, - [2167] = {.lex_state = 71}, - [2168] = {.lex_state = 71}, - [2169] = {.lex_state = 71}, - [2170] = {.lex_state = 71}, - [2171] = {.lex_state = 71}, - [2172] = {.lex_state = 71}, - [2173] = {.lex_state = 71}, - [2174] = {.lex_state = 71}, - [2175] = {.lex_state = 71}, - [2176] = {.lex_state = 71}, - [2177] = {.lex_state = 71}, - [2178] = {.lex_state = 71}, - [2179] = {.lex_state = 71}, - [2180] = {.lex_state = 71}, - [2181] = {.lex_state = 71}, - [2182] = {.lex_state = 71}, - [2183] = {.lex_state = 71}, - [2184] = {.lex_state = 71}, - [2185] = {.lex_state = 71}, - [2186] = {.lex_state = 71}, - [2187] = {.lex_state = 71}, - [2188] = {.lex_state = 71}, - [2189] = {.lex_state = 71}, - [2190] = {.lex_state = 71}, - [2191] = {.lex_state = 71}, - [2192] = {.lex_state = 71}, - [2193] = {.lex_state = 14}, - [2194] = {.lex_state = 71}, - [2195] = {.lex_state = 71}, - [2196] = {.lex_state = 71}, - [2197] = {.lex_state = 71}, - [2198] = {.lex_state = 71}, - [2199] = {.lex_state = 71}, - [2200] = {.lex_state = 71}, - [2201] = {.lex_state = 71}, - [2202] = {.lex_state = 71}, - [2203] = {.lex_state = 71}, - [2204] = {.lex_state = 71}, - [2205] = {.lex_state = 71}, - [2206] = {.lex_state = 71}, - [2207] = {.lex_state = 71}, - [2208] = {.lex_state = 71}, - [2209] = {.lex_state = 71}, - [2210] = {.lex_state = 71}, - [2211] = {.lex_state = 71}, - [2212] = {.lex_state = 71}, - [2213] = {.lex_state = 71}, - [2214] = {.lex_state = 71}, - [2215] = {.lex_state = 71}, - [2216] = {.lex_state = 71}, - [2217] = {.lex_state = 71}, - [2218] = {.lex_state = 71}, - [2219] = {.lex_state = 71}, - [2220] = {.lex_state = 71}, - [2221] = {.lex_state = 71}, - [2222] = {.lex_state = 71}, - [2223] = {.lex_state = 71}, - [2224] = {.lex_state = 71}, - [2225] = {.lex_state = 71}, - [2226] = {.lex_state = 71}, - [2227] = {.lex_state = 71}, - [2228] = {.lex_state = 21}, - [2229] = {.lex_state = 21}, - [2230] = {.lex_state = 71}, - [2231] = {.lex_state = 21}, - [2232] = {.lex_state = 71}, - [2233] = {.lex_state = 71}, - [2234] = {.lex_state = 71}, - [2235] = {.lex_state = 71}, + [2106] = {.lex_state = 7, .external_lex_state = 2}, + [2107] = {.lex_state = 7, .external_lex_state = 2}, + [2108] = {.lex_state = 7, .external_lex_state = 2}, + [2109] = {.lex_state = 7, .external_lex_state = 2}, + [2110] = {.lex_state = 70, .external_lex_state = 2}, + [2111] = {.lex_state = 7, .external_lex_state = 2}, + [2112] = {.lex_state = 70, .external_lex_state = 2}, + [2113] = {.lex_state = 7, .external_lex_state = 2}, + [2114] = {.lex_state = 7, .external_lex_state = 2}, + [2115] = {.lex_state = 7, .external_lex_state = 2}, + [2116] = {.lex_state = 70, .external_lex_state = 2}, + [2117] = {.lex_state = 70, .external_lex_state = 6}, + [2118] = {.lex_state = 70, .external_lex_state = 2}, + [2119] = {.lex_state = 7, .external_lex_state = 2}, + [2120] = {.lex_state = 71, .external_lex_state = 4}, + [2121] = {.lex_state = 7, .external_lex_state = 2}, + [2122] = {.lex_state = 70, .external_lex_state = 2}, + [2123] = {.lex_state = 7, .external_lex_state = 2}, + [2124] = {.lex_state = 7, .external_lex_state = 2}, + [2125] = {.lex_state = 7, .external_lex_state = 2}, + [2126] = {.lex_state = 7, .external_lex_state = 2}, + [2127] = {.lex_state = 7, .external_lex_state = 2}, + [2128] = {.lex_state = 70, .external_lex_state = 6}, + [2129] = {.lex_state = 7, .external_lex_state = 2}, + [2130] = {.lex_state = 70, .external_lex_state = 2}, + [2131] = {.lex_state = 70, .external_lex_state = 6}, + [2132] = {.lex_state = 7, .external_lex_state = 2}, + [2133] = {.lex_state = 70, .external_lex_state = 6}, + [2134] = {.lex_state = 7, .external_lex_state = 2}, + [2135] = {.lex_state = 7, .external_lex_state = 2}, + [2136] = {.lex_state = 70, .external_lex_state = 6}, + [2137] = {.lex_state = 7, .external_lex_state = 2}, + [2138] = {.lex_state = 7, .external_lex_state = 2}, + [2139] = {.lex_state = 7, .external_lex_state = 2}, + [2140] = {.lex_state = 7, .external_lex_state = 2}, + [2141] = {.lex_state = 71, .external_lex_state = 4}, + [2142] = {.lex_state = 7, .external_lex_state = 2}, + [2143] = {.lex_state = 70, .external_lex_state = 2}, + [2144] = {.lex_state = 70, .external_lex_state = 2}, + [2145] = {.lex_state = 7, .external_lex_state = 2}, + [2146] = {.lex_state = 71, .external_lex_state = 4}, + [2147] = {.lex_state = 7, .external_lex_state = 2}, + [2148] = {.lex_state = 7, .external_lex_state = 2}, + [2149] = {.lex_state = 7, .external_lex_state = 2}, + [2150] = {.lex_state = 71, .external_lex_state = 4}, + [2151] = {.lex_state = 7, .external_lex_state = 2}, + [2152] = {.lex_state = 70, .external_lex_state = 2}, + [2153] = {.lex_state = 7, .external_lex_state = 2}, + [2154] = {.lex_state = 70, .external_lex_state = 2}, + [2155] = {.lex_state = 70, .external_lex_state = 2}, + [2156] = {.lex_state = 70, .external_lex_state = 2}, + [2157] = {.lex_state = 70, .external_lex_state = 2}, + [2158] = {.lex_state = 70, .external_lex_state = 2}, + [2159] = {.lex_state = 70, .external_lex_state = 2}, + [2160] = {.lex_state = 70, .external_lex_state = 2}, + [2161] = {.lex_state = 70, .external_lex_state = 2}, + [2162] = {.lex_state = 70, .external_lex_state = 2}, + [2163] = {.lex_state = 70, .external_lex_state = 2}, + [2164] = {.lex_state = 70, .external_lex_state = 2}, + [2165] = {.lex_state = 70, .external_lex_state = 2}, + [2166] = {.lex_state = 70, .external_lex_state = 6}, + [2167] = {.lex_state = 70, .external_lex_state = 6}, + [2168] = {.lex_state = 7, .external_lex_state = 2}, + [2169] = {.lex_state = 70, .external_lex_state = 6}, + [2170] = {.lex_state = 7, .external_lex_state = 2}, + [2171] = {.lex_state = 7, .external_lex_state = 2}, + [2172] = {.lex_state = 7, .external_lex_state = 2}, + [2173] = {.lex_state = 7, .external_lex_state = 2}, + [2174] = {.lex_state = 70, .external_lex_state = 2}, + [2175] = {.lex_state = 70, .external_lex_state = 3}, + [2176] = {.lex_state = 70, .external_lex_state = 2}, + [2177] = {.lex_state = 70, .external_lex_state = 3}, + [2178] = {.lex_state = 70, .external_lex_state = 2}, + [2179] = {.lex_state = 70, .external_lex_state = 2}, + [2180] = {.lex_state = 7, .external_lex_state = 2}, + [2181] = {.lex_state = 70, .external_lex_state = 2}, + [2182] = {.lex_state = 70, .external_lex_state = 3}, + [2183] = {.lex_state = 70, .external_lex_state = 3}, + [2184] = {.lex_state = 70, .external_lex_state = 3}, + [2185] = {.lex_state = 70, .external_lex_state = 3}, + [2186] = {.lex_state = 70, .external_lex_state = 3}, + [2187] = {.lex_state = 70, .external_lex_state = 2}, + [2188] = {.lex_state = 70, .external_lex_state = 3}, + [2189] = {.lex_state = 71, .external_lex_state = 4}, + [2190] = {.lex_state = 7, .external_lex_state = 2}, + [2191] = {.lex_state = 70, .external_lex_state = 2}, + [2192] = {.lex_state = 70, .external_lex_state = 3}, + [2193] = {.lex_state = 70, .external_lex_state = 3}, + [2194] = {.lex_state = 70, .external_lex_state = 2}, + [2195] = {.lex_state = 70, .external_lex_state = 3}, + [2196] = {.lex_state = 70, .external_lex_state = 3}, + [2197] = {.lex_state = 70, .external_lex_state = 2}, + [2198] = {.lex_state = 70, .external_lex_state = 2}, + [2199] = {.lex_state = 70, .external_lex_state = 2}, + [2200] = {.lex_state = 70, .external_lex_state = 2}, + [2201] = {.lex_state = 70, .external_lex_state = 2}, + [2202] = {.lex_state = 70, .external_lex_state = 2}, + [2203] = {.lex_state = 70, .external_lex_state = 3}, + [2204] = {.lex_state = 70, .external_lex_state = 2}, + [2205] = {.lex_state = 70, .external_lex_state = 2}, + [2206] = {.lex_state = 71, .external_lex_state = 4}, + [2207] = {.lex_state = 7, .external_lex_state = 2}, + [2208] = {.lex_state = 71, .external_lex_state = 4}, + [2209] = {.lex_state = 70, .external_lex_state = 2}, + [2210] = {.lex_state = 70, .external_lex_state = 3}, + [2211] = {.lex_state = 70, .external_lex_state = 3}, + [2212] = {.lex_state = 71, .external_lex_state = 4}, + [2213] = {.lex_state = 70, .external_lex_state = 2}, + [2214] = {.lex_state = 7, .external_lex_state = 2}, + [2215] = {.lex_state = 70, .external_lex_state = 2}, + [2216] = {.lex_state = 70, .external_lex_state = 2}, + [2217] = {.lex_state = 70, .external_lex_state = 2}, + [2218] = {.lex_state = 70, .external_lex_state = 2}, + [2219] = {.lex_state = 70, .external_lex_state = 3}, + [2220] = {.lex_state = 71, .external_lex_state = 4}, + [2221] = {.lex_state = 71, .external_lex_state = 4}, + [2222] = {.lex_state = 70, .external_lex_state = 3}, + [2223] = {.lex_state = 70, .external_lex_state = 2}, + [2224] = {.lex_state = 7, .external_lex_state = 2}, + [2225] = {.lex_state = 70, .external_lex_state = 2}, + [2226] = {.lex_state = 70, .external_lex_state = 2}, + [2227] = {.lex_state = 71, .external_lex_state = 4}, + [2228] = {.lex_state = 70, .external_lex_state = 3}, + [2229] = {.lex_state = 70, .external_lex_state = 3}, + [2230] = {.lex_state = 70, .external_lex_state = 2}, + [2231] = {.lex_state = 70, .external_lex_state = 2}, + [2232] = {.lex_state = 70, .external_lex_state = 2}, + [2233] = {.lex_state = 71, .external_lex_state = 4}, + [2234] = {.lex_state = 70, .external_lex_state = 2}, + [2235] = {.lex_state = 71, .external_lex_state = 4}, [2236] = {.lex_state = 71, .external_lex_state = 4}, - [2237] = {.lex_state = 71, .external_lex_state = 4}, - [2238] = {.lex_state = 71}, - [2239] = {.lex_state = 69}, - [2240] = {.lex_state = 69}, - [2241] = {.lex_state = 69}, - [2242] = {.lex_state = 69}, - [2243] = {.lex_state = 69}, - [2244] = {.lex_state = 69}, - [2245] = {.lex_state = 71, .external_lex_state = 4}, + [2237] = {.lex_state = 70, .external_lex_state = 2}, + [2238] = {.lex_state = 70, .external_lex_state = 2}, + [2239] = {.lex_state = 70, .external_lex_state = 2}, + [2240] = {.lex_state = 71, .external_lex_state = 4}, + [2241] = {.lex_state = 70, .external_lex_state = 3}, + [2242] = {.lex_state = 71, .external_lex_state = 4}, + [2243] = {.lex_state = 70, .external_lex_state = 2}, + [2244] = {.lex_state = 71, .external_lex_state = 4}, + [2245] = {.lex_state = 70, .external_lex_state = 2}, [2246] = {.lex_state = 71, .external_lex_state = 4}, - [2247] = {.lex_state = 21}, - [2248] = {.lex_state = 71, .external_lex_state = 4}, - [2249] = {.lex_state = 71, .external_lex_state = 4}, + [2247] = {.lex_state = 7, .external_lex_state = 2}, + [2248] = {.lex_state = 7, .external_lex_state = 2}, + [2249] = {.lex_state = 70, .external_lex_state = 2}, [2250] = {.lex_state = 71, .external_lex_state = 4}, [2251] = {.lex_state = 71, .external_lex_state = 4}, - [2252] = {.lex_state = 71, .external_lex_state = 4}, + [2252] = {.lex_state = 70, .external_lex_state = 2}, [2253] = {.lex_state = 71, .external_lex_state = 4}, [2254] = {.lex_state = 71, .external_lex_state = 4}, - [2255] = {.lex_state = 71, .external_lex_state = 4}, - [2256] = {.lex_state = 71, .external_lex_state = 4}, + [2255] = {.lex_state = 70, .external_lex_state = 3}, + [2256] = {.lex_state = 70, .external_lex_state = 2}, [2257] = {.lex_state = 71, .external_lex_state = 4}, - [2258] = {.lex_state = 71, .external_lex_state = 4}, - [2259] = {.lex_state = 21}, - [2260] = {.lex_state = 71, .external_lex_state = 4}, - [2261] = {.lex_state = 71, .external_lex_state = 4}, - [2262] = {.lex_state = 71, .external_lex_state = 4}, - [2263] = {.lex_state = 71}, - [2264] = {.lex_state = 21}, + [2258] = {.lex_state = 70, .external_lex_state = 2}, + [2259] = {.lex_state = 7, .external_lex_state = 2}, + [2260] = {.lex_state = 70, .external_lex_state = 3}, + [2261] = {.lex_state = 70, .external_lex_state = 2}, + [2262] = {.lex_state = 70, .external_lex_state = 2}, + [2263] = {.lex_state = 70, .external_lex_state = 3}, + [2264] = {.lex_state = 70, .external_lex_state = 2}, [2265] = {.lex_state = 71, .external_lex_state = 4}, - [2266] = {.lex_state = 71, .external_lex_state = 4}, - [2267] = {.lex_state = 71, .external_lex_state = 4}, + [2266] = {.lex_state = 70, .external_lex_state = 2}, + [2267] = {.lex_state = 70, .external_lex_state = 2}, [2268] = {.lex_state = 71, .external_lex_state = 4}, - [2269] = {.lex_state = 71, .external_lex_state = 4}, - [2270] = {.lex_state = 71, .external_lex_state = 4}, - [2271] = {.lex_state = 21}, - [2272] = {.lex_state = 71}, + [2269] = {.lex_state = 70, .external_lex_state = 2}, + [2270] = {.lex_state = 70, .external_lex_state = 2}, + [2271] = {.lex_state = 70, .external_lex_state = 2}, + [2272] = {.lex_state = 7, .external_lex_state = 2}, [2273] = {.lex_state = 71, .external_lex_state = 4}, - [2274] = {.lex_state = 21}, - [2275] = {.lex_state = 71, .external_lex_state = 4}, - [2276] = {.lex_state = 71, .external_lex_state = 6}, + [2274] = {.lex_state = 70, .external_lex_state = 2}, + [2275] = {.lex_state = 70, .external_lex_state = 2}, + [2276] = {.lex_state = 70, .external_lex_state = 2}, [2277] = {.lex_state = 71, .external_lex_state = 4}, - [2278] = {.lex_state = 21}, - [2279] = {.lex_state = 71, .external_lex_state = 4}, - [2280] = {.lex_state = 71, .external_lex_state = 4}, - [2281] = {.lex_state = 71, .external_lex_state = 4}, - [2282] = {.lex_state = 21}, - [2283] = {.lex_state = 71, .external_lex_state = 4}, - [2284] = {.lex_state = 71, .external_lex_state = 4}, - [2285] = {.lex_state = 21}, - [2286] = {.lex_state = 71, .external_lex_state = 4}, + [2278] = {.lex_state = 70, .external_lex_state = 2}, + [2279] = {.lex_state = 70, .external_lex_state = 2}, + [2280] = {.lex_state = 70, .external_lex_state = 2}, + [2281] = {.lex_state = 70, .external_lex_state = 2}, + [2282] = {.lex_state = 70, .external_lex_state = 2}, + [2283] = {.lex_state = 70, .external_lex_state = 2}, + [2284] = {.lex_state = 70, .external_lex_state = 2}, + [2285] = {.lex_state = 70, .external_lex_state = 2}, + [2286] = {.lex_state = 70, .external_lex_state = 2}, [2287] = {.lex_state = 71, .external_lex_state = 4}, - [2288] = {.lex_state = 71, .external_lex_state = 4}, - [2289] = {.lex_state = 71, .external_lex_state = 4}, - [2290] = {.lex_state = 71}, - [2291] = {.lex_state = 71, .external_lex_state = 4}, - [2292] = {.lex_state = 71, .external_lex_state = 4}, - [2293] = {.lex_state = 71, .external_lex_state = 4}, - [2294] = {.lex_state = 71, .external_lex_state = 4}, - [2295] = {.lex_state = 71, .external_lex_state = 4}, + [2288] = {.lex_state = 70, .external_lex_state = 2}, + [2289] = {.lex_state = 70, .external_lex_state = 2}, + [2290] = {.lex_state = 70, .external_lex_state = 2}, + [2291] = {.lex_state = 70, .external_lex_state = 2}, + [2292] = {.lex_state = 70, .external_lex_state = 2}, + [2293] = {.lex_state = 70, .external_lex_state = 3}, + [2294] = {.lex_state = 7, .external_lex_state = 2}, + [2295] = {.lex_state = 70, .external_lex_state = 3}, [2296] = {.lex_state = 71, .external_lex_state = 4}, - [2297] = {.lex_state = 71, .external_lex_state = 4}, - [2298] = {.lex_state = 71, .external_lex_state = 4}, + [2297] = {.lex_state = 70, .external_lex_state = 2}, + [2298] = {.lex_state = 70, .external_lex_state = 3}, [2299] = {.lex_state = 71, .external_lex_state = 4}, - [2300] = {.lex_state = 71, .external_lex_state = 4}, - [2301] = {.lex_state = 71, .external_lex_state = 4}, + [2300] = {.lex_state = 7, .external_lex_state = 2}, + [2301] = {.lex_state = 70, .external_lex_state = 2}, [2302] = {.lex_state = 71, .external_lex_state = 4}, - [2303] = {.lex_state = 71, .external_lex_state = 4}, + [2303] = {.lex_state = 70, .external_lex_state = 2}, [2304] = {.lex_state = 71, .external_lex_state = 4}, [2305] = {.lex_state = 71, .external_lex_state = 4}, - [2306] = {.lex_state = 71, .external_lex_state = 4}, - [2307] = {.lex_state = 71, .external_lex_state = 4}, + [2306] = {.lex_state = 70, .external_lex_state = 2}, + [2307] = {.lex_state = 70, .external_lex_state = 2}, [2308] = {.lex_state = 71, .external_lex_state = 4}, - [2309] = {.lex_state = 71, .external_lex_state = 4}, - [2310] = {.lex_state = 71}, - [2311] = {.lex_state = 71, .external_lex_state = 4}, - [2312] = {.lex_state = 71, .external_lex_state = 4}, - [2313] = {.lex_state = 71, .external_lex_state = 4}, - [2314] = {.lex_state = 71, .external_lex_state = 4}, - [2315] = {.lex_state = 71, .external_lex_state = 4}, - [2316] = {.lex_state = 71, .external_lex_state = 4}, - [2317] = {.lex_state = 71, .external_lex_state = 4}, - [2318] = {.lex_state = 71, .external_lex_state = 4}, - [2319] = {.lex_state = 71, .external_lex_state = 4}, - [2320] = {.lex_state = 71, .external_lex_state = 6}, - [2321] = {.lex_state = 71, .external_lex_state = 4}, - [2322] = {.lex_state = 71, .external_lex_state = 4}, - [2323] = {.lex_state = 71, .external_lex_state = 4}, - [2324] = {.lex_state = 71, .external_lex_state = 4}, - [2325] = {.lex_state = 71, .external_lex_state = 6}, - [2326] = {.lex_state = 71, .external_lex_state = 4}, + [2309] = {.lex_state = 70, .external_lex_state = 2}, + [2310] = {.lex_state = 7, .external_lex_state = 2}, + [2311] = {.lex_state = 7, .external_lex_state = 2}, + [2312] = {.lex_state = 7, .external_lex_state = 2}, + [2313] = {.lex_state = 7, .external_lex_state = 2}, + [2314] = {.lex_state = 7, .external_lex_state = 2}, + [2315] = {.lex_state = 7, .external_lex_state = 2}, + [2316] = {.lex_state = 7, .external_lex_state = 2}, + [2317] = {.lex_state = 7, .external_lex_state = 2}, + [2318] = {.lex_state = 7, .external_lex_state = 2}, + [2319] = {.lex_state = 70, .external_lex_state = 2}, + [2320] = {.lex_state = 7, .external_lex_state = 2}, + [2321] = {.lex_state = 70, .external_lex_state = 2}, + [2322] = {.lex_state = 70, .external_lex_state = 3}, + [2323] = {.lex_state = 70, .external_lex_state = 2}, + [2324] = {.lex_state = 70, .external_lex_state = 2}, + [2325] = {.lex_state = 70, .external_lex_state = 2}, + [2326] = {.lex_state = 70, .external_lex_state = 2}, [2327] = {.lex_state = 71, .external_lex_state = 4}, - [2328] = {.lex_state = 71, .external_lex_state = 4}, - [2329] = {.lex_state = 71, .external_lex_state = 4}, - [2330] = {.lex_state = 71}, - [2331] = {.lex_state = 71, .external_lex_state = 4}, - [2332] = {.lex_state = 71, .external_lex_state = 4}, - [2333] = {.lex_state = 71}, - [2334] = {.lex_state = 71}, + [2328] = {.lex_state = 70, .external_lex_state = 2}, + [2329] = {.lex_state = 70, .external_lex_state = 2}, + [2330] = {.lex_state = 71, .external_lex_state = 4}, + [2331] = {.lex_state = 71}, + [2332] = {.lex_state = 71}, + [2333] = {.lex_state = 70, .external_lex_state = 2}, + [2334] = {.lex_state = 71, .external_lex_state = 4}, [2335] = {.lex_state = 71, .external_lex_state = 4}, [2336] = {.lex_state = 71, .external_lex_state = 4}, - [2337] = {.lex_state = 71, .external_lex_state = 4}, - [2338] = {.lex_state = 71, .external_lex_state = 4}, - [2339] = {.lex_state = 71, .external_lex_state = 4}, - [2340] = {.lex_state = 29}, - [2341] = {.lex_state = 29}, - [2342] = {.lex_state = 29}, - [2343] = {.lex_state = 71, .external_lex_state = 4}, + [2337] = {.lex_state = 70, .external_lex_state = 3}, + [2338] = {.lex_state = 17}, + [2339] = {.lex_state = 70, .external_lex_state = 2}, + [2340] = {.lex_state = 71, .external_lex_state = 4}, + [2341] = {.lex_state = 71}, + [2342] = {.lex_state = 70, .external_lex_state = 2}, + [2343] = {.lex_state = 70, .external_lex_state = 2}, [2344] = {.lex_state = 71}, [2345] = {.lex_state = 71}, - [2346] = {.lex_state = 29}, - [2347] = {.lex_state = 71, .external_lex_state = 6}, - [2348] = {.lex_state = 29}, - [2349] = {.lex_state = 71, .external_lex_state = 6}, - [2350] = {.lex_state = 21}, - [2351] = {.lex_state = 71, .external_lex_state = 6}, - [2352] = {.lex_state = 71, .external_lex_state = 4}, - [2353] = {.lex_state = 71, .external_lex_state = 6}, - [2354] = {.lex_state = 29}, - [2355] = {.lex_state = 29}, - [2356] = {.lex_state = 21}, - [2357] = {.lex_state = 71}, + [2346] = {.lex_state = 70, .external_lex_state = 2}, + [2347] = {.lex_state = 71, .external_lex_state = 4}, + [2348] = {.lex_state = 71, .external_lex_state = 4}, + [2349] = {.lex_state = 71}, + [2350] = {.lex_state = 70, .external_lex_state = 2}, + [2351] = {.lex_state = 71}, + [2352] = {.lex_state = 70, .external_lex_state = 2}, + [2353] = {.lex_state = 70, .external_lex_state = 2}, + [2354] = {.lex_state = 71, .external_lex_state = 4}, + [2355] = {.lex_state = 70, .external_lex_state = 2}, + [2356] = {.lex_state = 70, .external_lex_state = 2}, + [2357] = {.lex_state = 70, .external_lex_state = 2}, [2358] = {.lex_state = 71}, - [2359] = {.lex_state = 71}, - [2360] = {.lex_state = 71}, + [2359] = {.lex_state = 71, .external_lex_state = 4}, + [2360] = {.lex_state = 71, .external_lex_state = 4}, [2361] = {.lex_state = 71}, - [2362] = {.lex_state = 29}, - [2363] = {.lex_state = 71, .external_lex_state = 4}, - [2364] = {.lex_state = 29}, - [2365] = {.lex_state = 71}, + [2362] = {.lex_state = 70, .external_lex_state = 2}, + [2363] = {.lex_state = 71}, + [2364] = {.lex_state = 71}, + [2365] = {.lex_state = 70, .external_lex_state = 2}, [2366] = {.lex_state = 71, .external_lex_state = 4}, [2367] = {.lex_state = 71}, [2368] = {.lex_state = 71}, - [2369] = {.lex_state = 21}, - [2370] = {.lex_state = 71}, - [2371] = {.lex_state = 21}, - [2372] = {.lex_state = 71}, + [2369] = {.lex_state = 70, .external_lex_state = 2}, + [2370] = {.lex_state = 70, .external_lex_state = 2}, + [2371] = {.lex_state = 70, .external_lex_state = 2}, + [2372] = {.lex_state = 70, .external_lex_state = 2}, [2373] = {.lex_state = 71}, - [2374] = {.lex_state = 71, .external_lex_state = 4}, - [2375] = {.lex_state = 71}, - [2376] = {.lex_state = 71, .external_lex_state = 4}, - [2377] = {.lex_state = 29}, - [2378] = {.lex_state = 71, .external_lex_state = 4}, - [2379] = {.lex_state = 21}, - [2380] = {.lex_state = 21}, - [2381] = {.lex_state = 71}, - [2382] = {.lex_state = 21}, - [2383] = {.lex_state = 71}, - [2384] = {.lex_state = 71}, - [2385] = {.lex_state = 21}, - [2386] = {.lex_state = 71, .external_lex_state = 4}, - [2387] = {.lex_state = 21}, - [2388] = {.lex_state = 71}, - [2389] = {.lex_state = 29}, - [2390] = {.lex_state = 71, .external_lex_state = 4}, + [2374] = {.lex_state = 70, .external_lex_state = 2}, + [2375] = {.lex_state = 70, .external_lex_state = 2}, + [2376] = {.lex_state = 71}, + [2377] = {.lex_state = 70, .external_lex_state = 2}, + [2378] = {.lex_state = 70, .external_lex_state = 2}, + [2379] = {.lex_state = 70, .external_lex_state = 2}, + [2380] = {.lex_state = 71, .external_lex_state = 4}, + [2381] = {.lex_state = 70, .external_lex_state = 2}, + [2382] = {.lex_state = 71, .external_lex_state = 4}, + [2383] = {.lex_state = 70, .external_lex_state = 2}, + [2384] = {.lex_state = 70, .external_lex_state = 3}, + [2385] = {.lex_state = 70, .external_lex_state = 2}, + [2386] = {.lex_state = 71}, + [2387] = {.lex_state = 71}, + [2388] = {.lex_state = 70, .external_lex_state = 3}, + [2389] = {.lex_state = 70, .external_lex_state = 2}, + [2390] = {.lex_state = 70, .external_lex_state = 2}, [2391] = {.lex_state = 71}, - [2392] = {.lex_state = 71}, - [2393] = {.lex_state = 29}, - [2394] = {.lex_state = 29}, - [2395] = {.lex_state = 21}, - [2396] = {.lex_state = 21}, - [2397] = {.lex_state = 21}, - [2398] = {.lex_state = 21}, + [2392] = {.lex_state = 70, .external_lex_state = 2}, + [2393] = {.lex_state = 71, .external_lex_state = 4}, + [2394] = {.lex_state = 71}, + [2395] = {.lex_state = 71}, + [2396] = {.lex_state = 71, .external_lex_state = 4}, + [2397] = {.lex_state = 71}, + [2398] = {.lex_state = 71, .external_lex_state = 4}, [2399] = {.lex_state = 71}, [2400] = {.lex_state = 71}, - [2401] = {.lex_state = 71}, - [2402] = {.lex_state = 21}, - [2403] = {.lex_state = 21}, - [2404] = {.lex_state = 29}, - [2405] = {.lex_state = 29}, - [2406] = {.lex_state = 21}, - [2407] = {.lex_state = 71}, - [2408] = {.lex_state = 21}, - [2409] = {.lex_state = 71, .external_lex_state = 4}, - [2410] = {.lex_state = 29}, - [2411] = {.lex_state = 71}, + [2401] = {.lex_state = 70, .external_lex_state = 2}, + [2402] = {.lex_state = 71}, + [2403] = {.lex_state = 70, .external_lex_state = 2}, + [2404] = {.lex_state = 70, .external_lex_state = 2}, + [2405] = {.lex_state = 70, .external_lex_state = 2}, + [2406] = {.lex_state = 70, .external_lex_state = 2}, + [2407] = {.lex_state = 70, .external_lex_state = 2}, + [2408] = {.lex_state = 71}, + [2409] = {.lex_state = 71}, + [2410] = {.lex_state = 71, .external_lex_state = 4}, + [2411] = {.lex_state = 71, .external_lex_state = 4}, [2412] = {.lex_state = 71}, - [2413] = {.lex_state = 29}, + [2413] = {.lex_state = 70, .external_lex_state = 3}, [2414] = {.lex_state = 71}, - [2415] = {.lex_state = 21}, - [2416] = {.lex_state = 71}, - [2417] = {.lex_state = 71}, - [2418] = {.lex_state = 29}, - [2419] = {.lex_state = 71}, - [2420] = {.lex_state = 21}, - [2421] = {.lex_state = 71, .external_lex_state = 4}, + [2415] = {.lex_state = 71}, + [2416] = {.lex_state = 70, .external_lex_state = 2}, + [2417] = {.lex_state = 70, .external_lex_state = 2}, + [2418] = {.lex_state = 71}, + [2419] = {.lex_state = 70, .external_lex_state = 2}, + [2420] = {.lex_state = 70, .external_lex_state = 2}, + [2421] = {.lex_state = 71}, [2422] = {.lex_state = 71}, [2423] = {.lex_state = 71}, - [2424] = {.lex_state = 71, .external_lex_state = 6}, - [2425] = {.lex_state = 71}, + [2424] = {.lex_state = 71}, + [2425] = {.lex_state = 70, .external_lex_state = 2}, [2426] = {.lex_state = 71}, - [2427] = {.lex_state = 71}, - [2428] = {.lex_state = 71, .external_lex_state = 6}, - [2429] = {.lex_state = 29}, - [2430] = {.lex_state = 29}, - [2431] = {.lex_state = 29}, - [2432] = {.lex_state = 71, .external_lex_state = 4}, - [2433] = {.lex_state = 21}, - [2434] = {.lex_state = 21}, - [2435] = {.lex_state = 71}, - [2436] = {.lex_state = 21}, - [2437] = {.lex_state = 71}, - [2438] = {.lex_state = 71}, - [2439] = {.lex_state = 21}, - [2440] = {.lex_state = 21}, + [2427] = {.lex_state = 70, .external_lex_state = 2}, + [2428] = {.lex_state = 70, .external_lex_state = 2}, + [2429] = {.lex_state = 71}, + [2430] = {.lex_state = 70, .external_lex_state = 2}, + [2431] = {.lex_state = 70, .external_lex_state = 2}, + [2432] = {.lex_state = 71}, + [2433] = {.lex_state = 71}, + [2434] = {.lex_state = 70, .external_lex_state = 2}, + [2435] = {.lex_state = 71, .external_lex_state = 4}, + [2436] = {.lex_state = 71}, + [2437] = {.lex_state = 70, .external_lex_state = 2}, + [2438] = {.lex_state = 17}, + [2439] = {.lex_state = 71}, + [2440] = {.lex_state = 70, .external_lex_state = 2}, [2441] = {.lex_state = 71}, - [2442] = {.lex_state = 21}, - [2443] = {.lex_state = 21}, + [2442] = {.lex_state = 70, .external_lex_state = 2}, + [2443] = {.lex_state = 71}, [2444] = {.lex_state = 71}, [2445] = {.lex_state = 71}, - [2446] = {.lex_state = 71, .external_lex_state = 6}, - [2447] = {.lex_state = 71, .external_lex_state = 6}, - [2448] = {.lex_state = 71, .external_lex_state = 6}, - [2449] = {.lex_state = 71, .external_lex_state = 6}, - [2450] = {.lex_state = 71, .external_lex_state = 4}, - [2451] = {.lex_state = 71, .external_lex_state = 6}, - [2452] = {.lex_state = 71, .external_lex_state = 6}, + [2446] = {.lex_state = 71}, + [2447] = {.lex_state = 71}, + [2448] = {.lex_state = 71}, + [2449] = {.lex_state = 71}, + [2450] = {.lex_state = 71}, + [2451] = {.lex_state = 71}, + [2452] = {.lex_state = 17}, [2453] = {.lex_state = 71}, - [2454] = {.lex_state = 71, .external_lex_state = 6}, - [2455] = {.lex_state = 71, .external_lex_state = 6}, - [2456] = {.lex_state = 71, .external_lex_state = 6}, - [2457] = {.lex_state = 71, .external_lex_state = 4}, - [2458] = {.lex_state = 71, .external_lex_state = 6}, - [2459] = {.lex_state = 71, .external_lex_state = 6}, - [2460] = {.lex_state = 71, .external_lex_state = 6}, - [2461] = {.lex_state = 71, .external_lex_state = 4}, - [2462] = {.lex_state = 71, .external_lex_state = 6}, - [2463] = {.lex_state = 71, .external_lex_state = 6}, - [2464] = {.lex_state = 21}, - [2465] = {.lex_state = 71, .external_lex_state = 6}, - [2466] = {.lex_state = 71, .external_lex_state = 6}, - [2467] = {.lex_state = 71, .external_lex_state = 6}, - [2468] = {.lex_state = 71, .external_lex_state = 4}, - [2469] = {.lex_state = 71, .external_lex_state = 6}, - [2470] = {.lex_state = 71, .external_lex_state = 6}, - [2471] = {.lex_state = 71, .external_lex_state = 6}, - [2472] = {.lex_state = 71, .external_lex_state = 4}, - [2473] = {.lex_state = 71, .external_lex_state = 6}, - [2474] = {.lex_state = 71, .external_lex_state = 6}, - [2475] = {.lex_state = 71, .external_lex_state = 4}, - [2476] = {.lex_state = 71, .external_lex_state = 6}, - [2477] = {.lex_state = 71, .external_lex_state = 6}, - [2478] = {.lex_state = 71, .external_lex_state = 6}, - [2479] = {.lex_state = 71, .external_lex_state = 6}, - [2480] = {.lex_state = 71, .external_lex_state = 6}, - [2481] = {.lex_state = 71, .external_lex_state = 6}, - [2482] = {.lex_state = 71}, - [2483] = {.lex_state = 71, .external_lex_state = 6}, - [2484] = {.lex_state = 71, .external_lex_state = 4}, - [2485] = {.lex_state = 71}, + [2454] = {.lex_state = 71}, + [2455] = {.lex_state = 71}, + [2456] = {.lex_state = 17}, + [2457] = {.lex_state = 17}, + [2458] = {.lex_state = 71}, + [2459] = {.lex_state = 17}, + [2460] = {.lex_state = 17}, + [2461] = {.lex_state = 71}, + [2462] = {.lex_state = 71}, + [2463] = {.lex_state = 14, .external_lex_state = 4}, + [2464] = {.lex_state = 14, .external_lex_state = 4}, + [2465] = {.lex_state = 14, .external_lex_state = 4}, + [2466] = {.lex_state = 71}, + [2467] = {.lex_state = 14, .external_lex_state = 4}, + [2468] = {.lex_state = 14, .external_lex_state = 4}, + [2469] = {.lex_state = 14, .external_lex_state = 4}, + [2470] = {.lex_state = 14, .external_lex_state = 4}, + [2471] = {.lex_state = 14, .external_lex_state = 4}, + [2472] = {.lex_state = 14, .external_lex_state = 4}, + [2473] = {.lex_state = 71}, + [2474] = {.lex_state = 71}, + [2475] = {.lex_state = 14, .external_lex_state = 4}, + [2476] = {.lex_state = 14, .external_lex_state = 4}, + [2477] = {.lex_state = 14, .external_lex_state = 4}, + [2478] = {.lex_state = 71}, + [2479] = {.lex_state = 14, .external_lex_state = 4}, + [2480] = {.lex_state = 71}, + [2481] = {.lex_state = 71}, + [2482] = {.lex_state = 14, .external_lex_state = 4}, + [2483] = {.lex_state = 14, .external_lex_state = 4}, + [2484] = {.lex_state = 14, .external_lex_state = 4}, + [2485] = {.lex_state = 14, .external_lex_state = 4}, [2486] = {.lex_state = 71}, [2487] = {.lex_state = 71}, - [2488] = {.lex_state = 71, .external_lex_state = 6}, - [2489] = {.lex_state = 71, .external_lex_state = 6}, - [2490] = {.lex_state = 71, .external_lex_state = 6}, - [2491] = {.lex_state = 71, .external_lex_state = 6}, - [2492] = {.lex_state = 71, .external_lex_state = 6}, - [2493] = {.lex_state = 71, .external_lex_state = 6}, - [2494] = {.lex_state = 71, .external_lex_state = 6}, - [2495] = {.lex_state = 71, .external_lex_state = 6}, - [2496] = {.lex_state = 71, .external_lex_state = 6}, - [2497] = {.lex_state = 71, .external_lex_state = 6}, - [2498] = {.lex_state = 71, .external_lex_state = 6}, - [2499] = {.lex_state = 71, .external_lex_state = 4}, - [2500] = {.lex_state = 71, .external_lex_state = 6}, - [2501] = {.lex_state = 21}, + [2488] = {.lex_state = 71}, + [2489] = {.lex_state = 71}, + [2490] = {.lex_state = 71}, + [2491] = {.lex_state = 71}, + [2492] = {.lex_state = 71}, + [2493] = {.lex_state = 71}, + [2494] = {.lex_state = 71}, + [2495] = {.lex_state = 71}, + [2496] = {.lex_state = 71}, + [2497] = {.lex_state = 71}, + [2498] = {.lex_state = 71}, + [2499] = {.lex_state = 71}, + [2500] = {.lex_state = 71}, + [2501] = {.lex_state = 71}, [2502] = {.lex_state = 71}, [2503] = {.lex_state = 71}, - [2504] = {.lex_state = 71, .external_lex_state = 4}, - [2505] = {.lex_state = 71, .external_lex_state = 4}, - [2506] = {.lex_state = 71, .external_lex_state = 4}, - [2507] = {.lex_state = 71, .external_lex_state = 4}, - [2508] = {.lex_state = 0, .external_lex_state = 4}, - [2509] = {.lex_state = 71, .external_lex_state = 4}, + [2504] = {.lex_state = 71}, + [2505] = {.lex_state = 71}, + [2506] = {.lex_state = 71}, + [2507] = {.lex_state = 14}, + [2508] = {.lex_state = 71}, + [2509] = {.lex_state = 71}, [2510] = {.lex_state = 71}, [2511] = {.lex_state = 71}, - [2512] = {.lex_state = 71, .external_lex_state = 4}, - [2513] = {.lex_state = 71, .external_lex_state = 4}, - [2514] = {.lex_state = 71, .external_lex_state = 4}, - [2515] = {.lex_state = 71, .external_lex_state = 4}, + [2512] = {.lex_state = 71}, + [2513] = {.lex_state = 71}, + [2514] = {.lex_state = 71}, + [2515] = {.lex_state = 71}, [2516] = {.lex_state = 71}, - [2517] = {.lex_state = 71, .external_lex_state = 4}, - [2518] = {.lex_state = 71, .external_lex_state = 4}, + [2517] = {.lex_state = 71}, + [2518] = {.lex_state = 71}, [2519] = {.lex_state = 71}, [2520] = {.lex_state = 71}, - [2521] = {.lex_state = 13}, + [2521] = {.lex_state = 71}, [2522] = {.lex_state = 71}, [2523] = {.lex_state = 71}, [2524] = {.lex_state = 71}, [2525] = {.lex_state = 71}, [2526] = {.lex_state = 71}, [2527] = {.lex_state = 71}, - [2528] = {.lex_state = 71, .external_lex_state = 4}, - [2529] = {.lex_state = 0, .external_lex_state = 4}, + [2528] = {.lex_state = 71}, + [2529] = {.lex_state = 71}, [2530] = {.lex_state = 71}, - [2531] = {.lex_state = 21}, + [2531] = {.lex_state = 71}, [2532] = {.lex_state = 71}, - [2533] = {.lex_state = 71, .external_lex_state = 4}, + [2533] = {.lex_state = 71}, [2534] = {.lex_state = 71}, [2535] = {.lex_state = 71}, - [2536] = {.lex_state = 71, .external_lex_state = 4}, - [2537] = {.lex_state = 71, .external_lex_state = 4}, - [2538] = {.lex_state = 0, .external_lex_state = 4}, + [2536] = {.lex_state = 71}, + [2537] = {.lex_state = 71}, + [2538] = {.lex_state = 71}, [2539] = {.lex_state = 71}, - [2540] = {.lex_state = 0, .external_lex_state = 4}, + [2540] = {.lex_state = 71}, [2541] = {.lex_state = 71}, [2542] = {.lex_state = 71}, - [2543] = {.lex_state = 71, .external_lex_state = 4}, - [2544] = {.lex_state = 71, .external_lex_state = 6}, + [2543] = {.lex_state = 71}, + [2544] = {.lex_state = 71}, [2545] = {.lex_state = 71}, [2546] = {.lex_state = 71}, [2547] = {.lex_state = 71}, - [2548] = {.lex_state = 71}, - [2549] = {.lex_state = 71}, - [2550] = {.lex_state = 71, .external_lex_state = 6}, - [2551] = {.lex_state = 71}, + [2548] = {.lex_state = 21}, + [2549] = {.lex_state = 21}, + [2550] = {.lex_state = 71}, + [2551] = {.lex_state = 21}, [2552] = {.lex_state = 71}, [2553] = {.lex_state = 71}, - [2554] = {.lex_state = 0, .external_lex_state = 4}, - [2555] = {.lex_state = 71, .external_lex_state = 4}, - [2556] = {.lex_state = 71}, - [2557] = {.lex_state = 71}, + [2554] = {.lex_state = 71}, + [2555] = {.lex_state = 71}, + [2556] = {.lex_state = 71, .external_lex_state = 4}, + [2557] = {.lex_state = 71, .external_lex_state = 4}, [2558] = {.lex_state = 71}, - [2559] = {.lex_state = 71}, - [2560] = {.lex_state = 71}, - [2561] = {.lex_state = 71}, - [2562] = {.lex_state = 71, .external_lex_state = 4}, - [2563] = {.lex_state = 71}, - [2564] = {.lex_state = 71}, - [2565] = {.lex_state = 71}, - [2566] = {.lex_state = 71, .external_lex_state = 4}, - [2567] = {.lex_state = 71}, - [2568] = {.lex_state = 71}, - [2569] = {.lex_state = 71}, - [2570] = {.lex_state = 71}, - [2571] = {.lex_state = 13}, - [2572] = {.lex_state = 71}, - [2573] = {.lex_state = 71}, + [2559] = {.lex_state = 69}, + [2560] = {.lex_state = 69}, + [2561] = {.lex_state = 69}, + [2562] = {.lex_state = 69}, + [2563] = {.lex_state = 69}, + [2564] = {.lex_state = 69}, + [2565] = {.lex_state = 69}, + [2566] = {.lex_state = 69}, + [2567] = {.lex_state = 69}, + [2568] = {.lex_state = 69}, + [2569] = {.lex_state = 71, .external_lex_state = 4}, + [2570] = {.lex_state = 71, .external_lex_state = 4}, + [2571] = {.lex_state = 71, .external_lex_state = 4}, + [2572] = {.lex_state = 71, .external_lex_state = 4}, + [2573] = {.lex_state = 71, .external_lex_state = 4}, [2574] = {.lex_state = 71, .external_lex_state = 4}, - [2575] = {.lex_state = 71}, - [2576] = {.lex_state = 21}, - [2577] = {.lex_state = 71}, + [2575] = {.lex_state = 71, .external_lex_state = 7}, + [2576] = {.lex_state = 71, .external_lex_state = 4}, + [2577] = {.lex_state = 71, .external_lex_state = 4}, [2578] = {.lex_state = 21}, - [2579] = {.lex_state = 71}, - [2580] = {.lex_state = 0, .external_lex_state = 4}, - [2581] = {.lex_state = 0, .external_lex_state = 4}, - [2582] = {.lex_state = 71}, - [2583] = {.lex_state = 71}, - [2584] = {.lex_state = 71, .external_lex_state = 6}, - [2585] = {.lex_state = 71}, - [2586] = {.lex_state = 71}, - [2587] = {.lex_state = 71}, - [2588] = {.lex_state = 0, .external_lex_state = 4}, + [2579] = {.lex_state = 71, .external_lex_state = 4}, + [2580] = {.lex_state = 71, .external_lex_state = 4}, + [2581] = {.lex_state = 21}, + [2582] = {.lex_state = 71, .external_lex_state = 4}, + [2583] = {.lex_state = 71, .external_lex_state = 4}, + [2584] = {.lex_state = 71, .external_lex_state = 4}, + [2585] = {.lex_state = 71, .external_lex_state = 4}, + [2586] = {.lex_state = 71, .external_lex_state = 4}, + [2587] = {.lex_state = 71, .external_lex_state = 4}, + [2588] = {.lex_state = 71, .external_lex_state = 4}, [2589] = {.lex_state = 71, .external_lex_state = 4}, - [2590] = {.lex_state = 71}, - [2591] = {.lex_state = 71}, - [2592] = {.lex_state = 71}, - [2593] = {.lex_state = 71}, - [2594] = {.lex_state = 71}, - [2595] = {.lex_state = 71}, - [2596] = {.lex_state = 71}, - [2597] = {.lex_state = 71}, - [2598] = {.lex_state = 0, .external_lex_state = 4}, - [2599] = {.lex_state = 71}, - [2600] = {.lex_state = 71}, - [2601] = {.lex_state = 71}, - [2602] = {.lex_state = 71}, + [2590] = {.lex_state = 71, .external_lex_state = 4}, + [2591] = {.lex_state = 21}, + [2592] = {.lex_state = 71, .external_lex_state = 4}, + [2593] = {.lex_state = 71, .external_lex_state = 4}, + [2594] = {.lex_state = 71, .external_lex_state = 4}, + [2595] = {.lex_state = 21}, + [2596] = {.lex_state = 71, .external_lex_state = 4}, + [2597] = {.lex_state = 71, .external_lex_state = 4}, + [2598] = {.lex_state = 71, .external_lex_state = 4}, + [2599] = {.lex_state = 21}, + [2600] = {.lex_state = 71, .external_lex_state = 4}, + [2601] = {.lex_state = 71, .external_lex_state = 4}, + [2602] = {.lex_state = 71, .external_lex_state = 4}, [2603] = {.lex_state = 71}, - [2604] = {.lex_state = 16}, - [2605] = {.lex_state = 71}, - [2606] = {.lex_state = 71}, - [2607] = {.lex_state = 13}, - [2608] = {.lex_state = 16}, - [2609] = {.lex_state = 71}, + [2604] = {.lex_state = 21}, + [2605] = {.lex_state = 71, .external_lex_state = 4}, + [2606] = {.lex_state = 71, .external_lex_state = 4}, + [2607] = {.lex_state = 71, .external_lex_state = 4}, + [2608] = {.lex_state = 21}, + [2609] = {.lex_state = 21}, [2610] = {.lex_state = 71}, - [2611] = {.lex_state = 71}, - [2612] = {.lex_state = 71}, - [2613] = {.lex_state = 71}, - [2614] = {.lex_state = 71}, - [2615] = {.lex_state = 19, .external_lex_state = 7}, - [2616] = {.lex_state = 71}, - [2617] = {.lex_state = 71}, - [2618] = {.lex_state = 71}, - [2619] = {.lex_state = 21}, - [2620] = {.lex_state = 71}, - [2621] = {.lex_state = 71}, - [2622] = {.lex_state = 71}, - [2623] = {.lex_state = 71}, - [2624] = {.lex_state = 71}, - [2625] = {.lex_state = 71}, - [2626] = {.lex_state = 71}, - [2627] = {.lex_state = 71}, + [2611] = {.lex_state = 71, .external_lex_state = 4}, + [2612] = {.lex_state = 71, .external_lex_state = 4}, + [2613] = {.lex_state = 71, .external_lex_state = 8}, + [2614] = {.lex_state = 71, .external_lex_state = 4}, + [2615] = {.lex_state = 71, .external_lex_state = 4}, + [2616] = {.lex_state = 71, .external_lex_state = 4}, + [2617] = {.lex_state = 71, .external_lex_state = 4}, + [2618] = {.lex_state = 71, .external_lex_state = 4}, + [2619] = {.lex_state = 71, .external_lex_state = 4}, + [2620] = {.lex_state = 71, .external_lex_state = 4}, + [2621] = {.lex_state = 71, .external_lex_state = 4}, + [2622] = {.lex_state = 71, .external_lex_state = 4}, + [2623] = {.lex_state = 71, .external_lex_state = 4}, + [2624] = {.lex_state = 71, .external_lex_state = 4}, + [2625] = {.lex_state = 71, .external_lex_state = 8}, + [2626] = {.lex_state = 71, .external_lex_state = 4}, + [2627] = {.lex_state = 71, .external_lex_state = 4}, [2628] = {.lex_state = 71, .external_lex_state = 4}, - [2629] = {.lex_state = 71}, - [2630] = {.lex_state = 21}, - [2631] = {.lex_state = 71}, - [2632] = {.lex_state = 21}, - [2633] = {.lex_state = 71}, - [2634] = {.lex_state = 21}, - [2635] = {.lex_state = 71}, - [2636] = {.lex_state = 71}, - [2637] = {.lex_state = 71}, - [2638] = {.lex_state = 0, .external_lex_state = 4}, - [2639] = {.lex_state = 16}, - [2640] = {.lex_state = 71}, - [2641] = {.lex_state = 0, .external_lex_state = 4}, - [2642] = {.lex_state = 0, .external_lex_state = 4}, - [2643] = {.lex_state = 71}, - [2644] = {.lex_state = 0, .external_lex_state = 4}, - [2645] = {.lex_state = 71}, - [2646] = {.lex_state = 71}, - [2647] = {.lex_state = 71}, - [2648] = {.lex_state = 71}, - [2649] = {.lex_state = 16}, - [2650] = {.lex_state = 71}, - [2651] = {.lex_state = 0}, - [2652] = {.lex_state = 71}, - [2653] = {.lex_state = 71}, + [2629] = {.lex_state = 71, .external_lex_state = 4}, + [2630] = {.lex_state = 71, .external_lex_state = 4}, + [2631] = {.lex_state = 71, .external_lex_state = 8}, + [2632] = {.lex_state = 71, .external_lex_state = 4}, + [2633] = {.lex_state = 71, .external_lex_state = 4}, + [2634] = {.lex_state = 71, .external_lex_state = 4}, + [2635] = {.lex_state = 71, .external_lex_state = 4}, + [2636] = {.lex_state = 71, .external_lex_state = 4}, + [2637] = {.lex_state = 71, .external_lex_state = 4}, + [2638] = {.lex_state = 71, .external_lex_state = 4}, + [2639] = {.lex_state = 71, .external_lex_state = 4}, + [2640] = {.lex_state = 71, .external_lex_state = 4}, + [2641] = {.lex_state = 71, .external_lex_state = 4}, + [2642] = {.lex_state = 71, .external_lex_state = 4}, + [2643] = {.lex_state = 71, .external_lex_state = 4}, + [2644] = {.lex_state = 71, .external_lex_state = 4}, + [2645] = {.lex_state = 71, .external_lex_state = 4}, + [2646] = {.lex_state = 71, .external_lex_state = 4}, + [2647] = {.lex_state = 71, .external_lex_state = 4}, + [2648] = {.lex_state = 71, .external_lex_state = 4}, + [2649] = {.lex_state = 71, .external_lex_state = 4}, + [2650] = {.lex_state = 71, .external_lex_state = 4}, + [2651] = {.lex_state = 71, .external_lex_state = 4}, + [2652] = {.lex_state = 71, .external_lex_state = 4}, + [2653] = {.lex_state = 71, .external_lex_state = 4}, [2654] = {.lex_state = 71}, - [2655] = {.lex_state = 0, .external_lex_state = 4}, - [2656] = {.lex_state = 0, .external_lex_state = 4}, - [2657] = {.lex_state = 21}, - [2658] = {.lex_state = 0, .external_lex_state = 4}, - [2659] = {.lex_state = 0, .external_lex_state = 4}, - [2660] = {.lex_state = 71}, - [2661] = {.lex_state = 71}, + [2655] = {.lex_state = 71, .external_lex_state = 4}, + [2656] = {.lex_state = 71, .external_lex_state = 4}, + [2657] = {.lex_state = 71, .external_lex_state = 4}, + [2658] = {.lex_state = 71, .external_lex_state = 4}, + [2659] = {.lex_state = 29}, + [2660] = {.lex_state = 71, .external_lex_state = 4}, + [2661] = {.lex_state = 29}, [2662] = {.lex_state = 71}, - [2663] = {.lex_state = 71}, - [2664] = {.lex_state = 71}, + [2663] = {.lex_state = 71, .external_lex_state = 8}, + [2664] = {.lex_state = 71, .external_lex_state = 8}, [2665] = {.lex_state = 71}, - [2666] = {.lex_state = 16}, - [2667] = {.lex_state = 71}, - [2668] = {.lex_state = 19, .external_lex_state = 7}, - [2669] = {.lex_state = 19, .external_lex_state = 7}, - [2670] = {.lex_state = 71}, + [2666] = {.lex_state = 71}, + [2667] = {.lex_state = 71, .external_lex_state = 8}, + [2668] = {.lex_state = 71, .external_lex_state = 7}, + [2669] = {.lex_state = 71}, + [2670] = {.lex_state = 29}, [2671] = {.lex_state = 71}, [2672] = {.lex_state = 71}, - [2673] = {.lex_state = 0, .external_lex_state = 4}, + [2673] = {.lex_state = 71, .external_lex_state = 4}, [2674] = {.lex_state = 71}, - [2675] = {.lex_state = 19, .external_lex_state = 7}, + [2675] = {.lex_state = 21}, [2676] = {.lex_state = 21}, - [2677] = {.lex_state = 71}, + [2677] = {.lex_state = 29}, [2678] = {.lex_state = 71}, - [2679] = {.lex_state = 0, .external_lex_state = 4}, - [2680] = {.lex_state = 71}, + [2679] = {.lex_state = 71, .external_lex_state = 4}, + [2680] = {.lex_state = 29}, [2681] = {.lex_state = 71}, - [2682] = {.lex_state = 71}, - [2683] = {.lex_state = 0, .external_lex_state = 4}, - [2684] = {.lex_state = 71}, - [2685] = {.lex_state = 0, .external_lex_state = 4}, - [2686] = {.lex_state = 71}, + [2682] = {.lex_state = 29}, + [2683] = {.lex_state = 71, .external_lex_state = 4}, + [2684] = {.lex_state = 71, .external_lex_state = 4}, + [2685] = {.lex_state = 29}, + [2686] = {.lex_state = 21}, [2687] = {.lex_state = 71}, [2688] = {.lex_state = 71}, [2689] = {.lex_state = 71}, - [2690] = {.lex_state = 0, .external_lex_state = 4}, - [2691] = {.lex_state = 19, .external_lex_state = 7}, - [2692] = {.lex_state = 71}, + [2690] = {.lex_state = 71, .external_lex_state = 7}, + [2691] = {.lex_state = 71, .external_lex_state = 8}, + [2692] = {.lex_state = 71, .external_lex_state = 4}, [2693] = {.lex_state = 71}, [2694] = {.lex_state = 71}, - [2695] = {.lex_state = 0, .external_lex_state = 4}, - [2696] = {.lex_state = 19, .external_lex_state = 7}, - [2697] = {.lex_state = 71}, - [2698] = {.lex_state = 0, .external_lex_state = 4}, - [2699] = {.lex_state = 0, .external_lex_state = 4}, - [2700] = {.lex_state = 0, .external_lex_state = 4}, + [2695] = {.lex_state = 21}, + [2696] = {.lex_state = 71}, + [2697] = {.lex_state = 29}, + [2698] = {.lex_state = 71}, + [2699] = {.lex_state = 29}, + [2700] = {.lex_state = 29}, [2701] = {.lex_state = 71}, - [2702] = {.lex_state = 0, .external_lex_state = 4}, - [2703] = {.lex_state = 71}, - [2704] = {.lex_state = 71, .external_lex_state = 4}, - [2705] = {.lex_state = 16}, - [2706] = {.lex_state = 71}, - [2707] = {.lex_state = 71, .external_lex_state = 4}, - [2708] = {.lex_state = 71}, + [2702] = {.lex_state = 21}, + [2703] = {.lex_state = 71, .external_lex_state = 4}, + [2704] = {.lex_state = 21}, + [2705] = {.lex_state = 71}, + [2706] = {.lex_state = 71, .external_lex_state = 8}, + [2707] = {.lex_state = 71}, + [2708] = {.lex_state = 21}, [2709] = {.lex_state = 71}, - [2710] = {.lex_state = 71}, - [2711] = {.lex_state = 71}, - [2712] = {.lex_state = 16}, - [2713] = {.lex_state = 71}, - [2714] = {.lex_state = 71}, - [2715] = {.lex_state = 16}, - [2716] = {.lex_state = 21}, - [2717] = {.lex_state = 71}, - [2718] = {.lex_state = 21}, - [2719] = {.lex_state = 71}, - [2720] = {.lex_state = 71}, - [2721] = {.lex_state = 71}, + [2710] = {.lex_state = 21}, + [2711] = {.lex_state = 29}, + [2712] = {.lex_state = 29}, + [2713] = {.lex_state = 21}, + [2714] = {.lex_state = 71, .external_lex_state = 4}, + [2715] = {.lex_state = 71, .external_lex_state = 7}, + [2716] = {.lex_state = 71}, + [2717] = {.lex_state = 21}, + [2718] = {.lex_state = 71}, + [2719] = {.lex_state = 21}, + [2720] = {.lex_state = 21}, + [2721] = {.lex_state = 29}, [2722] = {.lex_state = 71}, - [2723] = {.lex_state = 19, .external_lex_state = 7}, - [2724] = {.lex_state = 16}, - [2725] = {.lex_state = 16}, - [2726] = {.lex_state = 71}, - [2727] = {.lex_state = 21}, - [2728] = {.lex_state = 16}, + [2723] = {.lex_state = 71}, + [2724] = {.lex_state = 21}, + [2725] = {.lex_state = 21}, + [2726] = {.lex_state = 21}, + [2727] = {.lex_state = 71}, + [2728] = {.lex_state = 29}, [2729] = {.lex_state = 71}, - [2730] = {.lex_state = 71}, + [2730] = {.lex_state = 71, .external_lex_state = 4}, [2731] = {.lex_state = 71}, - [2732] = {.lex_state = 19, .external_lex_state = 7}, - [2733] = {.lex_state = 71}, - [2734] = {.lex_state = 19, .external_lex_state = 7}, - [2735] = {.lex_state = 0, .external_lex_state = 4}, - [2736] = {.lex_state = 71}, - [2737] = {.lex_state = 71}, + [2732] = {.lex_state = 71}, + [2733] = {.lex_state = 71, .external_lex_state = 4}, + [2734] = {.lex_state = 21}, + [2735] = {.lex_state = 71}, + [2736] = {.lex_state = 21}, + [2737] = {.lex_state = 21}, [2738] = {.lex_state = 71}, - [2739] = {.lex_state = 21}, + [2739] = {.lex_state = 71}, [2740] = {.lex_state = 21}, [2741] = {.lex_state = 71}, - [2742] = {.lex_state = 16}, + [2742] = {.lex_state = 71, .external_lex_state = 8}, [2743] = {.lex_state = 71}, - [2744] = {.lex_state = 19, .external_lex_state = 7}, - [2745] = {.lex_state = 0, .external_lex_state = 4}, + [2744] = {.lex_state = 71}, + [2745] = {.lex_state = 71}, [2746] = {.lex_state = 71}, - [2747] = {.lex_state = 16}, - [2748] = {.lex_state = 16}, - [2749] = {.lex_state = 16}, - [2750] = {.lex_state = 16}, - [2751] = {.lex_state = 71}, - [2752] = {.lex_state = 71}, + [2747] = {.lex_state = 71, .external_lex_state = 7}, + [2748] = {.lex_state = 21}, + [2749] = {.lex_state = 21}, + [2750] = {.lex_state = 29}, + [2751] = {.lex_state = 71, .external_lex_state = 7}, + [2752] = {.lex_state = 29}, [2753] = {.lex_state = 71}, - [2754] = {.lex_state = 71}, - [2755] = {.lex_state = 16}, - [2756] = {.lex_state = 0, .external_lex_state = 4}, - [2757] = {.lex_state = 71}, - [2758] = {.lex_state = 0, .external_lex_state = 4}, - [2759] = {.lex_state = 71}, - [2760] = {.lex_state = 71}, - [2761] = {.lex_state = 19, .external_lex_state = 7}, - [2762] = {.lex_state = 0, .external_lex_state = 4}, + [2754] = {.lex_state = 21}, + [2755] = {.lex_state = 21}, + [2756] = {.lex_state = 21}, + [2757] = {.lex_state = 29}, + [2758] = {.lex_state = 71}, + [2759] = {.lex_state = 21}, + [2760] = {.lex_state = 71, .external_lex_state = 7}, + [2761] = {.lex_state = 71}, + [2762] = {.lex_state = 29}, [2763] = {.lex_state = 71}, - [2764] = {.lex_state = 16}, - [2765] = {.lex_state = 0, .external_lex_state = 4}, - [2766] = {.lex_state = 71}, + [2764] = {.lex_state = 71}, + [2765] = {.lex_state = 29}, + [2766] = {.lex_state = 21}, [2767] = {.lex_state = 71}, - [2768] = {.lex_state = 71}, - [2769] = {.lex_state = 0}, - [2770] = {.lex_state = 0}, - [2771] = {.lex_state = 71}, - [2772] = {.lex_state = 71}, - [2773] = {.lex_state = 0, .external_lex_state = 4}, - [2774] = {.lex_state = 71}, - [2775] = {.lex_state = 21}, - [2776] = {.lex_state = 21}, + [2768] = {.lex_state = 29}, + [2769] = {.lex_state = 71}, + [2770] = {.lex_state = 71, .external_lex_state = 4}, + [2771] = {.lex_state = 71, .external_lex_state = 4}, + [2772] = {.lex_state = 29}, + [2773] = {.lex_state = 71}, + [2774] = {.lex_state = 71, .external_lex_state = 8}, + [2775] = {.lex_state = 71, .external_lex_state = 8}, + [2776] = {.lex_state = 71}, [2777] = {.lex_state = 71}, - [2778] = {.lex_state = 0, .external_lex_state = 4}, - [2779] = {.lex_state = 0, .external_lex_state = 4}, - [2780] = {.lex_state = 13}, - [2781] = {.lex_state = 71}, - [2782] = {.lex_state = 71}, - [2783] = {.lex_state = 0, .external_lex_state = 4}, - [2784] = {.lex_state = 0, .external_lex_state = 4}, - [2785] = {.lex_state = 0}, - [2786] = {.lex_state = 71, .external_lex_state = 6}, - [2787] = {.lex_state = 71}, - [2788] = {.lex_state = 0, .external_lex_state = 4}, - [2789] = {.lex_state = 71}, - [2790] = {.lex_state = 71, .external_lex_state = 6}, - [2791] = {.lex_state = 71}, - [2792] = {.lex_state = 0, .external_lex_state = 4}, - [2793] = {.lex_state = 0, .external_lex_state = 4}, - [2794] = {.lex_state = 21}, - [2795] = {.lex_state = 0}, - [2796] = {.lex_state = 21}, - [2797] = {.lex_state = 21}, - [2798] = {.lex_state = 71, .external_lex_state = 4}, - [2799] = {.lex_state = 71}, - [2800] = {.lex_state = 13}, - [2801] = {.lex_state = 21}, - [2802] = {.lex_state = 0, .external_lex_state = 4}, - [2803] = {.lex_state = 71}, - [2804] = {.lex_state = 71, .external_lex_state = 4}, + [2778] = {.lex_state = 71}, + [2779] = {.lex_state = 71, .external_lex_state = 8}, + [2780] = {.lex_state = 71}, + [2781] = {.lex_state = 21}, + [2782] = {.lex_state = 71, .external_lex_state = 8}, + [2783] = {.lex_state = 71}, + [2784] = {.lex_state = 71, .external_lex_state = 7}, + [2785] = {.lex_state = 71, .external_lex_state = 8}, + [2786] = {.lex_state = 71}, + [2787] = {.lex_state = 71, .external_lex_state = 8}, + [2788] = {.lex_state = 71}, + [2789] = {.lex_state = 71, .external_lex_state = 8}, + [2790] = {.lex_state = 71}, + [2791] = {.lex_state = 71, .external_lex_state = 4}, + [2792] = {.lex_state = 71}, + [2793] = {.lex_state = 71, .external_lex_state = 8}, + [2794] = {.lex_state = 71, .external_lex_state = 8}, + [2795] = {.lex_state = 71, .external_lex_state = 8}, + [2796] = {.lex_state = 71, .external_lex_state = 8}, + [2797] = {.lex_state = 71, .external_lex_state = 8}, + [2798] = {.lex_state = 71, .external_lex_state = 8}, + [2799] = {.lex_state = 71, .external_lex_state = 8}, + [2800] = {.lex_state = 71}, + [2801] = {.lex_state = 71}, + [2802] = {.lex_state = 71, .external_lex_state = 8}, + [2803] = {.lex_state = 71, .external_lex_state = 8}, + [2804] = {.lex_state = 71, .external_lex_state = 8}, [2805] = {.lex_state = 71}, [2806] = {.lex_state = 71}, - [2807] = {.lex_state = 13}, - [2808] = {.lex_state = 0, .external_lex_state = 4}, - [2809] = {.lex_state = 71}, + [2807] = {.lex_state = 71, .external_lex_state = 8}, + [2808] = {.lex_state = 71, .external_lex_state = 8}, + [2809] = {.lex_state = 71, .external_lex_state = 8}, [2810] = {.lex_state = 71}, - [2811] = {.lex_state = 0, .external_lex_state = 4}, - [2812] = {.lex_state = 71}, - [2813] = {.lex_state = 71, .external_lex_state = 4}, - [2814] = {.lex_state = 21}, - [2815] = {.lex_state = 0, .external_lex_state = 4}, - [2816] = {.lex_state = 0, .external_lex_state = 4}, - [2817] = {.lex_state = 71, .external_lex_state = 6}, - [2818] = {.lex_state = 0, .external_lex_state = 4}, - [2819] = {.lex_state = 71, .external_lex_state = 4}, - [2820] = {.lex_state = 71}, - [2821] = {.lex_state = 71}, - [2822] = {.lex_state = 21}, - [2823] = {.lex_state = 0}, - [2824] = {.lex_state = 0, .external_lex_state = 4}, - [2825] = {.lex_state = 21}, - [2826] = {.lex_state = 0, .external_lex_state = 4}, - [2827] = {.lex_state = 71, .external_lex_state = 6}, - [2828] = {.lex_state = 0, .external_lex_state = 4}, - [2829] = {.lex_state = 0, .external_lex_state = 4}, + [2811] = {.lex_state = 71}, + [2812] = {.lex_state = 71, .external_lex_state = 8}, + [2813] = {.lex_state = 71}, + [2814] = {.lex_state = 71}, + [2815] = {.lex_state = 71, .external_lex_state = 8}, + [2816] = {.lex_state = 71}, + [2817] = {.lex_state = 71, .external_lex_state = 8}, + [2818] = {.lex_state = 71}, + [2819] = {.lex_state = 71, .external_lex_state = 8}, + [2820] = {.lex_state = 71, .external_lex_state = 8}, + [2821] = {.lex_state = 71, .external_lex_state = 8}, + [2822] = {.lex_state = 71, .external_lex_state = 4}, + [2823] = {.lex_state = 71, .external_lex_state = 8}, + [2824] = {.lex_state = 71}, + [2825] = {.lex_state = 71}, + [2826] = {.lex_state = 71}, + [2827] = {.lex_state = 71, .external_lex_state = 4}, + [2828] = {.lex_state = 71}, + [2829] = {.lex_state = 71, .external_lex_state = 4}, [2830] = {.lex_state = 71, .external_lex_state = 4}, - [2831] = {.lex_state = 0, .external_lex_state = 4}, + [2831] = {.lex_state = 71}, [2832] = {.lex_state = 71}, [2833] = {.lex_state = 71}, - [2834] = {.lex_state = 0, .external_lex_state = 4}, - [2835] = {.lex_state = 71}, - [2836] = {.lex_state = 71, .external_lex_state = 4}, - [2837] = {.lex_state = 0, .external_lex_state = 4}, - [2838] = {.lex_state = 0, .external_lex_state = 4}, - [2839] = {.lex_state = 71}, - [2840] = {.lex_state = 0, .external_lex_state = 4}, - [2841] = {.lex_state = 0, .external_lex_state = 4}, - [2842] = {.lex_state = 71, .external_lex_state = 6}, + [2834] = {.lex_state = 71}, + [2835] = {.lex_state = 71, .external_lex_state = 8}, + [2836] = {.lex_state = 71, .external_lex_state = 8}, + [2837] = {.lex_state = 71, .external_lex_state = 8}, + [2838] = {.lex_state = 71, .external_lex_state = 4}, + [2839] = {.lex_state = 71, .external_lex_state = 8}, + [2840] = {.lex_state = 71}, + [2841] = {.lex_state = 71}, + [2842] = {.lex_state = 71, .external_lex_state = 8}, [2843] = {.lex_state = 71}, - [2844] = {.lex_state = 0, .external_lex_state = 4}, - [2845] = {.lex_state = 0, .external_lex_state = 4}, - [2846] = {.lex_state = 0, .external_lex_state = 4}, - [2847] = {.lex_state = 71}, - [2848] = {.lex_state = 71}, - [2849] = {.lex_state = 21}, - [2850] = {.lex_state = 0, .external_lex_state = 4}, - [2851] = {.lex_state = 71}, - [2852] = {.lex_state = 71}, - [2853] = {.lex_state = 0, .external_lex_state = 4}, + [2844] = {.lex_state = 71}, + [2845] = {.lex_state = 71, .external_lex_state = 8}, + [2846] = {.lex_state = 71, .external_lex_state = 8}, + [2847] = {.lex_state = 71, .external_lex_state = 8}, + [2848] = {.lex_state = 71, .external_lex_state = 8}, + [2849] = {.lex_state = 71}, + [2850] = {.lex_state = 71, .external_lex_state = 8}, + [2851] = {.lex_state = 71, .external_lex_state = 4}, + [2852] = {.lex_state = 71, .external_lex_state = 4}, + [2853] = {.lex_state = 71, .external_lex_state = 8}, [2854] = {.lex_state = 71}, - [2855] = {.lex_state = 71}, - [2856] = {.lex_state = 71, .external_lex_state = 4}, - [2857] = {.lex_state = 71}, - [2858] = {.lex_state = 0, .external_lex_state = 4}, - [2859] = {.lex_state = 0, .external_lex_state = 4}, - [2860] = {.lex_state = 71}, - [2861] = {.lex_state = 0, .external_lex_state = 4}, + [2855] = {.lex_state = 71, .external_lex_state = 8}, + [2856] = {.lex_state = 71, .external_lex_state = 8}, + [2857] = {.lex_state = 71, .external_lex_state = 8}, + [2858] = {.lex_state = 71}, + [2859] = {.lex_state = 71}, + [2860] = {.lex_state = 71, .external_lex_state = 7}, + [2861] = {.lex_state = 71, .external_lex_state = 4}, [2862] = {.lex_state = 71}, - [2863] = {.lex_state = 0, .external_lex_state = 4}, - [2864] = {.lex_state = 0, .external_lex_state = 4}, - [2865] = {.lex_state = 71}, - [2866] = {.lex_state = 71, .external_lex_state = 6}, - [2867] = {.lex_state = 0}, - [2868] = {.lex_state = 0, .external_lex_state = 4}, - [2869] = {.lex_state = 0}, - [2870] = {.lex_state = 0, .external_lex_state = 4}, + [2863] = {.lex_state = 71}, + [2864] = {.lex_state = 71, .external_lex_state = 7}, + [2865] = {.lex_state = 71, .external_lex_state = 7}, + [2866] = {.lex_state = 71, .external_lex_state = 7}, + [2867] = {.lex_state = 71, .external_lex_state = 4}, + [2868] = {.lex_state = 71, .external_lex_state = 7}, + [2869] = {.lex_state = 71, .external_lex_state = 4}, + [2870] = {.lex_state = 71}, [2871] = {.lex_state = 0, .external_lex_state = 4}, - [2872] = {.lex_state = 0, .external_lex_state = 4}, - [2873] = {.lex_state = 71, .external_lex_state = 6}, - [2874] = {.lex_state = 0, .external_lex_state = 4}, - [2875] = {.lex_state = 0, .external_lex_state = 4}, - [2876] = {.lex_state = 0, .external_lex_state = 4}, - [2877] = {.lex_state = 71}, + [2872] = {.lex_state = 71}, + [2873] = {.lex_state = 71, .external_lex_state = 7}, + [2874] = {.lex_state = 71, .external_lex_state = 7}, + [2875] = {.lex_state = 71}, + [2876] = {.lex_state = 71}, + [2877] = {.lex_state = 71, .external_lex_state = 7}, [2878] = {.lex_state = 71}, - [2879] = {.lex_state = 0, .external_lex_state = 4}, - [2880] = {.lex_state = 0, .external_lex_state = 4}, - [2881] = {.lex_state = 71}, - [2882] = {.lex_state = 0, .external_lex_state = 4}, - [2883] = {.lex_state = 0, .external_lex_state = 4}, - [2884] = {.lex_state = 0, .external_lex_state = 4}, - [2885] = {.lex_state = 71}, + [2879] = {.lex_state = 71}, + [2880] = {.lex_state = 71}, + [2881] = {.lex_state = 0, .external_lex_state = 4}, + [2882] = {.lex_state = 71}, + [2883] = {.lex_state = 71}, + [2884] = {.lex_state = 71}, + [2885] = {.lex_state = 71, .external_lex_state = 7}, [2886] = {.lex_state = 0, .external_lex_state = 4}, - [2887] = {.lex_state = 71}, - [2888] = {.lex_state = 71}, - [2889] = {.lex_state = 0}, + [2887] = {.lex_state = 71, .external_lex_state = 7}, + [2888] = {.lex_state = 71, .external_lex_state = 7}, + [2889] = {.lex_state = 71, .external_lex_state = 4}, [2890] = {.lex_state = 71}, [2891] = {.lex_state = 71}, - [2892] = {.lex_state = 71}, - [2893] = {.lex_state = 71, .external_lex_state = 6}, - [2894] = {.lex_state = 0, .external_lex_state = 4}, + [2892] = {.lex_state = 71, .external_lex_state = 4}, + [2893] = {.lex_state = 71, .external_lex_state = 4}, + [2894] = {.lex_state = 71, .external_lex_state = 7}, [2895] = {.lex_state = 71}, - [2896] = {.lex_state = 0, .external_lex_state = 4}, + [2896] = {.lex_state = 71}, [2897] = {.lex_state = 71}, - [2898] = {.lex_state = 71, .external_lex_state = 4}, - [2899] = {.lex_state = 71, .external_lex_state = 4}, - [2900] = {.lex_state = 0, .external_lex_state = 4}, - [2901] = {.lex_state = 0, .external_lex_state = 4}, + [2898] = {.lex_state = 71}, + [2899] = {.lex_state = 71, .external_lex_state = 7}, + [2900] = {.lex_state = 71}, + [2901] = {.lex_state = 71, .external_lex_state = 4}, [2902] = {.lex_state = 71}, - [2903] = {.lex_state = 71}, + [2903] = {.lex_state = 71, .external_lex_state = 7}, [2904] = {.lex_state = 71}, - [2905] = {.lex_state = 71}, - [2906] = {.lex_state = 71}, - [2907] = {.lex_state = 0, .external_lex_state = 4}, - [2908] = {.lex_state = 71, .external_lex_state = 6}, - [2909] = {.lex_state = 71}, - [2910] = {.lex_state = 0, .external_lex_state = 4}, - [2911] = {.lex_state = 0, .external_lex_state = 4}, - [2912] = {.lex_state = 71}, - [2913] = {.lex_state = 0, .external_lex_state = 4}, - [2914] = {.lex_state = 0, .external_lex_state = 4}, - [2915] = {.lex_state = 71}, - [2916] = {.lex_state = 0, .external_lex_state = 4}, - [2917] = {.lex_state = 71, .external_lex_state = 4}, - [2918] = {.lex_state = 0, .external_lex_state = 4}, + [2905] = {.lex_state = 71, .external_lex_state = 7}, + [2906] = {.lex_state = 71, .external_lex_state = 7}, + [2907] = {.lex_state = 71, .external_lex_state = 7}, + [2908] = {.lex_state = 71, .external_lex_state = 7}, + [2909] = {.lex_state = 71, .external_lex_state = 7}, + [2910] = {.lex_state = 71, .external_lex_state = 7}, + [2911] = {.lex_state = 71, .external_lex_state = 8}, + [2912] = {.lex_state = 71, .external_lex_state = 7}, + [2913] = {.lex_state = 71}, + [2914] = {.lex_state = 71, .external_lex_state = 7}, + [2915] = {.lex_state = 71, .external_lex_state = 7}, + [2916] = {.lex_state = 71}, + [2917] = {.lex_state = 0, .external_lex_state = 4}, + [2918] = {.lex_state = 71}, [2919] = {.lex_state = 71}, - [2920] = {.lex_state = 0, .external_lex_state = 4}, - [2921] = {.lex_state = 0, .external_lex_state = 4}, - [2922] = {.lex_state = 0}, - [2923] = {.lex_state = 0}, - [2924] = {.lex_state = 0, .external_lex_state = 4}, + [2920] = {.lex_state = 71}, + [2921] = {.lex_state = 71, .external_lex_state = 7}, + [2922] = {.lex_state = 71, .external_lex_state = 7}, + [2923] = {.lex_state = 71, .external_lex_state = 7}, + [2924] = {.lex_state = 71, .external_lex_state = 7}, [2925] = {.lex_state = 71}, - [2926] = {.lex_state = 0, .external_lex_state = 4}, - [2927] = {.lex_state = 0, .external_lex_state = 4}, - [2928] = {.lex_state = 71}, - [2929] = {.lex_state = 71}, - [2930] = {.lex_state = 71, .external_lex_state = 4}, - [2931] = {.lex_state = 71}, - [2932] = {.lex_state = 71, .external_lex_state = 6}, + [2926] = {.lex_state = 71, .external_lex_state = 4}, + [2927] = {.lex_state = 71, .external_lex_state = 4}, + [2928] = {.lex_state = 71, .external_lex_state = 7}, + [2929] = {.lex_state = 13}, + [2930] = {.lex_state = 71}, + [2931] = {.lex_state = 71, .external_lex_state = 7}, + [2932] = {.lex_state = 71, .external_lex_state = 4}, [2933] = {.lex_state = 71}, - [2934] = {.lex_state = 0, .external_lex_state = 4}, - [2935] = {.lex_state = 0, .external_lex_state = 4}, - [2936] = {.lex_state = 0, .external_lex_state = 4}, - [2937] = {.lex_state = 0}, - [2938] = {.lex_state = 71, .external_lex_state = 6}, + [2934] = {.lex_state = 71}, + [2935] = {.lex_state = 71, .external_lex_state = 7}, + [2936] = {.lex_state = 71, .external_lex_state = 4}, + [2937] = {.lex_state = 71}, + [2938] = {.lex_state = 71, .external_lex_state = 7}, [2939] = {.lex_state = 71}, - [2940] = {.lex_state = 21}, - [2941] = {.lex_state = 0, .external_lex_state = 4}, - [2942] = {.lex_state = 71, .external_lex_state = 4}, - [2943] = {.lex_state = 0, .external_lex_state = 4}, - [2944] = {.lex_state = 71, .external_lex_state = 6}, - [2945] = {.lex_state = 0, .external_lex_state = 4}, - [2946] = {.lex_state = 0, .external_lex_state = 4}, - [2947] = {.lex_state = 71, .external_lex_state = 6}, + [2940] = {.lex_state = 71}, + [2941] = {.lex_state = 71}, + [2942] = {.lex_state = 71, .external_lex_state = 7}, + [2943] = {.lex_state = 71, .external_lex_state = 7}, + [2944] = {.lex_state = 71, .external_lex_state = 7}, + [2945] = {.lex_state = 71, .external_lex_state = 7}, + [2946] = {.lex_state = 71, .external_lex_state = 8}, + [2947] = {.lex_state = 71, .external_lex_state = 7}, [2948] = {.lex_state = 71}, - [2949] = {.lex_state = 71, .external_lex_state = 6}, - [2950] = {.lex_state = 0, .external_lex_state = 4}, - [2951] = {.lex_state = 0, .external_lex_state = 4}, - [2952] = {.lex_state = 0, .external_lex_state = 4}, - [2953] = {.lex_state = 0, .external_lex_state = 4}, - [2954] = {.lex_state = 21}, - [2955] = {.lex_state = 0}, - [2956] = {.lex_state = 71}, - [2957] = {.lex_state = 16}, + [2949] = {.lex_state = 21}, + [2950] = {.lex_state = 71, .external_lex_state = 7}, + [2951] = {.lex_state = 71, .external_lex_state = 7}, + [2952] = {.lex_state = 71, .external_lex_state = 4}, + [2953] = {.lex_state = 71, .external_lex_state = 4}, + [2954] = {.lex_state = 71, .external_lex_state = 7}, + [2955] = {.lex_state = 71, .external_lex_state = 7}, + [2956] = {.lex_state = 71, .external_lex_state = 8}, + [2957] = {.lex_state = 13}, [2958] = {.lex_state = 71}, - [2959] = {.lex_state = 0, .external_lex_state = 4}, - [2960] = {.lex_state = 0, .external_lex_state = 4}, - [2961] = {.lex_state = 71, .external_lex_state = 4}, - [2962] = {.lex_state = 21}, - [2963] = {.lex_state = 0}, + [2959] = {.lex_state = 71}, + [2960] = {.lex_state = 71}, + [2961] = {.lex_state = 71}, + [2962] = {.lex_state = 71}, + [2963] = {.lex_state = 71}, [2964] = {.lex_state = 71, .external_lex_state = 4}, - [2965] = {.lex_state = 0, .external_lex_state = 4}, - [2966] = {.lex_state = 71, .external_lex_state = 6}, - [2967] = {.lex_state = 0, .external_lex_state = 4}, - [2968] = {.lex_state = 0}, - [2969] = {.lex_state = 0, .external_lex_state = 4}, - [2970] = {.lex_state = 71}, - [2971] = {.lex_state = 71}, - [2972] = {.lex_state = 0}, - [2973] = {.lex_state = 16}, + [2965] = {.lex_state = 71, .external_lex_state = 4}, + [2966] = {.lex_state = 71}, + [2967] = {.lex_state = 71}, + [2968] = {.lex_state = 71, .external_lex_state = 4}, + [2969] = {.lex_state = 71, .external_lex_state = 4}, + [2970] = {.lex_state = 71, .external_lex_state = 7}, + [2971] = {.lex_state = 71, .external_lex_state = 4}, + [2972] = {.lex_state = 71, .external_lex_state = 4}, + [2973] = {.lex_state = 71, .external_lex_state = 4}, [2974] = {.lex_state = 71}, - [2975] = {.lex_state = 0, .external_lex_state = 4}, - [2976] = {.lex_state = 13}, + [2975] = {.lex_state = 71}, + [2976] = {.lex_state = 71}, [2977] = {.lex_state = 71}, - [2978] = {.lex_state = 21}, - [2979] = {.lex_state = 0, .external_lex_state = 4}, - [2980] = {.lex_state = 0, .external_lex_state = 4}, - [2981] = {.lex_state = 0, .external_lex_state = 4}, + [2978] = {.lex_state = 0, .external_lex_state = 4}, + [2979] = {.lex_state = 71, .external_lex_state = 7}, + [2980] = {.lex_state = 71, .external_lex_state = 7}, + [2981] = {.lex_state = 71}, [2982] = {.lex_state = 71}, - [2983] = {.lex_state = 71, .external_lex_state = 6}, - [2984] = {.lex_state = 0, .external_lex_state = 4}, - [2985] = {.lex_state = 71}, - [2986] = {.lex_state = 21}, - [2987] = {.lex_state = 71}, - [2988] = {.lex_state = 71}, - [2989] = {.lex_state = 0, .external_lex_state = 4}, - [2990] = {.lex_state = 71}, - [2991] = {.lex_state = 71}, - [2992] = {.lex_state = 0}, - [2993] = {.lex_state = 0}, + [2983] = {.lex_state = 71, .external_lex_state = 4}, + [2984] = {.lex_state = 71}, + [2985] = {.lex_state = 71, .external_lex_state = 7}, + [2986] = {.lex_state = 71}, + [2987] = {.lex_state = 71, .external_lex_state = 7}, + [2988] = {.lex_state = 0, .external_lex_state = 4}, + [2989] = {.lex_state = 71}, + [2990] = {.lex_state = 0, .external_lex_state = 4}, + [2991] = {.lex_state = 0, .external_lex_state = 4}, + [2992] = {.lex_state = 71}, + [2993] = {.lex_state = 71, .external_lex_state = 7}, [2994] = {.lex_state = 71}, - [2995] = {.lex_state = 0, .external_lex_state = 4}, + [2995] = {.lex_state = 71}, [2996] = {.lex_state = 71}, - [2997] = {.lex_state = 0, .external_lex_state = 4}, - [2998] = {.lex_state = 0}, - [2999] = {.lex_state = 0, .external_lex_state = 4}, - [3000] = {.lex_state = 71}, - [3001] = {.lex_state = 0, .external_lex_state = 4}, - [3002] = {.lex_state = 71}, + [2997] = {.lex_state = 71, .external_lex_state = 7}, + [2998] = {.lex_state = 71}, + [2999] = {.lex_state = 71}, + [3000] = {.lex_state = 71, .external_lex_state = 7}, + [3001] = {.lex_state = 13}, + [3002] = {.lex_state = 19, .external_lex_state = 9}, [3003] = {.lex_state = 71}, - [3004] = {.lex_state = 0, .external_lex_state = 4}, - [3005] = {.lex_state = 0, .external_lex_state = 4}, - [3006] = {.lex_state = 0, .external_lex_state = 4}, + [3004] = {.lex_state = 71}, + [3005] = {.lex_state = 71}, + [3006] = {.lex_state = 19, .external_lex_state = 9}, [3007] = {.lex_state = 71}, [3008] = {.lex_state = 71}, - [3009] = {.lex_state = 0, .external_lex_state = 4}, + [3009] = {.lex_state = 71}, [3010] = {.lex_state = 71}, - [3011] = {.lex_state = 0, .external_lex_state = 4}, - [3012] = {.lex_state = 0, .external_lex_state = 4}, - [3013] = {.lex_state = 71}, - [3014] = {.lex_state = 0, .external_lex_state = 4}, - [3015] = {.lex_state = 0, .external_lex_state = 4}, - [3016] = {.lex_state = 0, .external_lex_state = 4}, - [3017] = {.lex_state = 71, .external_lex_state = 6}, - [3018] = {.lex_state = 0, .external_lex_state = 4}, - [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 = 71}, - [3023] = {.lex_state = 0, .external_lex_state = 4}, - [3024] = {.lex_state = 0, .external_lex_state = 4}, - [3025] = {.lex_state = 0}, - [3026] = {.lex_state = 21}, - [3027] = {.lex_state = 0}, - [3028] = {.lex_state = 71}, - [3029] = {.lex_state = 71}, - [3030] = {.lex_state = 71}, - [3031] = {.lex_state = 0, .external_lex_state = 4}, - [3032] = {.lex_state = 0, .external_lex_state = 4}, - [3033] = {.lex_state = 0, .external_lex_state = 4}, + [3011] = {.lex_state = 71}, + [3012] = {.lex_state = 71}, + [3013] = {.lex_state = 21}, + [3014] = {.lex_state = 21}, + [3015] = {.lex_state = 71}, + [3016] = {.lex_state = 71}, + [3017] = {.lex_state = 71}, + [3018] = {.lex_state = 16}, + [3019] = {.lex_state = 71}, + [3020] = {.lex_state = 71}, + [3021] = {.lex_state = 71}, + [3022] = {.lex_state = 0, .external_lex_state = 4}, + [3023] = {.lex_state = 71}, + [3024] = {.lex_state = 71}, + [3025] = {.lex_state = 71}, + [3026] = {.lex_state = 71}, + [3027] = {.lex_state = 0, .external_lex_state = 4}, + [3028] = {.lex_state = 16}, + [3029] = {.lex_state = 0, .external_lex_state = 4}, + [3030] = {.lex_state = 21}, + [3031] = {.lex_state = 71}, + [3032] = {.lex_state = 21}, + [3033] = {.lex_state = 71}, [3034] = {.lex_state = 0, .external_lex_state = 4}, [3035] = {.lex_state = 71}, [3036] = {.lex_state = 71}, [3037] = {.lex_state = 71}, [3038] = {.lex_state = 71}, - [3039] = {.lex_state = 0, .external_lex_state = 4}, + [3039] = {.lex_state = 71}, [3040] = {.lex_state = 71}, - [3041] = {.lex_state = 71, .external_lex_state = 4}, + [3041] = {.lex_state = 21}, [3042] = {.lex_state = 71}, [3043] = {.lex_state = 71}, - [3044] = {.lex_state = 71, .external_lex_state = 6}, - [3045] = {.lex_state = 71, .external_lex_state = 4}, + [3044] = {.lex_state = 71}, + [3045] = {.lex_state = 16}, [3046] = {.lex_state = 0, .external_lex_state = 4}, [3047] = {.lex_state = 71}, - [3048] = {.lex_state = 0}, + [3048] = {.lex_state = 71}, [3049] = {.lex_state = 0, .external_lex_state = 4}, [3050] = {.lex_state = 71}, - [3051] = {.lex_state = 1}, - [3052] = {.lex_state = 0}, - [3053] = {.lex_state = 0, .external_lex_state = 4}, - [3054] = {.lex_state = 3}, - [3055] = {.lex_state = 0}, + [3051] = {.lex_state = 0, .external_lex_state = 4}, + [3052] = {.lex_state = 0, .external_lex_state = 4}, + [3053] = {.lex_state = 71}, + [3054] = {.lex_state = 71}, + [3055] = {.lex_state = 71}, [3056] = {.lex_state = 0, .external_lex_state = 4}, [3057] = {.lex_state = 71}, - [3058] = {.lex_state = 0}, - [3059] = {.lex_state = 1}, - [3060] = {.lex_state = 3}, - [3061] = {.lex_state = 71}, - [3062] = {.lex_state = 71}, + [3058] = {.lex_state = 71}, + [3059] = {.lex_state = 19, .external_lex_state = 9}, + [3060] = {.lex_state = 19, .external_lex_state = 9}, + [3061] = {.lex_state = 16}, + [3062] = {.lex_state = 16}, [3063] = {.lex_state = 71}, - [3064] = {.lex_state = 71}, - [3065] = {.lex_state = 0, .external_lex_state = 4}, - [3066] = {.lex_state = 71}, + [3064] = {.lex_state = 19, .external_lex_state = 9}, + [3065] = {.lex_state = 71}, + [3066] = {.lex_state = 0, .external_lex_state = 4}, [3067] = {.lex_state = 71}, - [3068] = {.lex_state = 1}, - [3069] = {.lex_state = 3}, + [3068] = {.lex_state = 19, .external_lex_state = 9}, + [3069] = {.lex_state = 16}, [3070] = {.lex_state = 71}, [3071] = {.lex_state = 71}, [3072] = {.lex_state = 71}, - [3073] = {.lex_state = 71}, - [3074] = {.lex_state = 16}, - [3075] = {.lex_state = 71}, - [3076] = {.lex_state = 71}, + [3073] = {.lex_state = 16}, + [3074] = {.lex_state = 21}, + [3075] = {.lex_state = 16}, + [3076] = {.lex_state = 0, .external_lex_state = 4}, [3077] = {.lex_state = 71}, [3078] = {.lex_state = 71}, - [3079] = {.lex_state = 71}, - [3080] = {.lex_state = 0}, - [3081] = {.lex_state = 71}, + [3079] = {.lex_state = 19, .external_lex_state = 9}, + [3080] = {.lex_state = 16}, + [3081] = {.lex_state = 71, .external_lex_state = 7}, [3082] = {.lex_state = 71}, - [3083] = {.lex_state = 0, .external_lex_state = 4}, - [3084] = {.lex_state = 0}, + [3083] = {.lex_state = 16}, + [3084] = {.lex_state = 19, .external_lex_state = 9}, [3085] = {.lex_state = 71}, - [3086] = {.lex_state = 16}, + [3086] = {.lex_state = 0}, [3087] = {.lex_state = 71}, [3088] = {.lex_state = 71}, - [3089] = {.lex_state = 71}, - [3090] = {.lex_state = 71}, + [3089] = {.lex_state = 0, .external_lex_state = 4}, + [3090] = {.lex_state = 0, .external_lex_state = 4}, [3091] = {.lex_state = 71}, - [3092] = {.lex_state = 71, .external_lex_state = 4}, - [3093] = {.lex_state = 1}, + [3092] = {.lex_state = 0, .external_lex_state = 4}, + [3093] = {.lex_state = 0, .external_lex_state = 4}, [3094] = {.lex_state = 71}, - [3095] = {.lex_state = 71}, - [3096] = {.lex_state = 3}, + [3095] = {.lex_state = 19, .external_lex_state = 9}, + [3096] = {.lex_state = 0, .external_lex_state = 4}, [3097] = {.lex_state = 71}, - [3098] = {.lex_state = 16}, + [3098] = {.lex_state = 71}, [3099] = {.lex_state = 71}, - [3100] = {.lex_state = 3}, - [3101] = {.lex_state = 1}, + [3100] = {.lex_state = 71}, + [3101] = {.lex_state = 71, .external_lex_state = 4}, [3102] = {.lex_state = 71}, [3103] = {.lex_state = 71}, [3104] = {.lex_state = 71}, - [3105] = {.lex_state = 71}, - [3106] = {.lex_state = 0}, + [3105] = {.lex_state = 19, .external_lex_state = 9}, + [3106] = {.lex_state = 71}, [3107] = {.lex_state = 71}, [3108] = {.lex_state = 71}, [3109] = {.lex_state = 71}, - [3110] = {.lex_state = 16}, - [3111] = {.lex_state = 0}, - [3112] = {.lex_state = 1}, - [3113] = {.lex_state = 3}, - [3114] = {.lex_state = 0, .external_lex_state = 4}, + [3110] = {.lex_state = 71}, + [3111] = {.lex_state = 0, .external_lex_state = 4}, + [3112] = {.lex_state = 71}, + [3113] = {.lex_state = 71, .external_lex_state = 7}, + [3114] = {.lex_state = 71, .external_lex_state = 7}, [3115] = {.lex_state = 71}, - [3116] = {.lex_state = 71}, - [3117] = {.lex_state = 3}, - [3118] = {.lex_state = 1}, - [3119] = {.lex_state = 71}, - [3120] = {.lex_state = 0}, - [3121] = {.lex_state = 71}, - [3122] = {.lex_state = 0}, - [3123] = {.lex_state = 1}, - [3124] = {.lex_state = 0, .external_lex_state = 4}, - [3125] = {.lex_state = 3}, + [3116] = {.lex_state = 71, .external_lex_state = 4}, + [3117] = {.lex_state = 71, .external_lex_state = 4}, + [3118] = {.lex_state = 19, .external_lex_state = 9}, + [3119] = {.lex_state = 0, .external_lex_state = 4}, + [3120] = {.lex_state = 0, .external_lex_state = 4}, + [3121] = {.lex_state = 16}, + [3122] = {.lex_state = 71}, + [3123] = {.lex_state = 21}, + [3124] = {.lex_state = 71}, + [3125] = {.lex_state = 16}, [3126] = {.lex_state = 71}, [3127] = {.lex_state = 71}, - [3128] = {.lex_state = 71}, - [3129] = {.lex_state = 0}, - [3130] = {.lex_state = 0}, - [3131] = {.lex_state = 71, .external_lex_state = 6}, - [3132] = {.lex_state = 71}, - [3133] = {.lex_state = 0}, - [3134] = {.lex_state = 0, .external_lex_state = 4}, + [3128] = {.lex_state = 16}, + [3129] = {.lex_state = 0, .external_lex_state = 4}, + [3130] = {.lex_state = 71}, + [3131] = {.lex_state = 71}, + [3132] = {.lex_state = 0, .external_lex_state = 4}, + [3133] = {.lex_state = 0, .external_lex_state = 4}, + [3134] = {.lex_state = 16}, [3135] = {.lex_state = 0, .external_lex_state = 4}, [3136] = {.lex_state = 71}, - [3137] = {.lex_state = 71}, - [3138] = {.lex_state = 1}, - [3139] = {.lex_state = 3}, - [3140] = {.lex_state = 71, .external_lex_state = 6}, - [3141] = {.lex_state = 71, .external_lex_state = 6}, - [3142] = {.lex_state = 71}, - [3143] = {.lex_state = 71, .external_lex_state = 4}, + [3137] = {.lex_state = 0, .external_lex_state = 4}, + [3138] = {.lex_state = 71}, + [3139] = {.lex_state = 71}, + [3140] = {.lex_state = 71}, + [3141] = {.lex_state = 71}, + [3142] = {.lex_state = 0, .external_lex_state = 4}, + [3143] = {.lex_state = 71}, [3144] = {.lex_state = 71}, - [3145] = {.lex_state = 71}, - [3146] = {.lex_state = 71}, - [3147] = {.lex_state = 71}, - [3148] = {.lex_state = 71}, + [3145] = {.lex_state = 0, .external_lex_state = 4}, + [3146] = {.lex_state = 19, .external_lex_state = 9}, + [3147] = {.lex_state = 0, .external_lex_state = 4}, + [3148] = {.lex_state = 16}, [3149] = {.lex_state = 71}, - [3150] = {.lex_state = 71}, + [3150] = {.lex_state = 16}, [3151] = {.lex_state = 71}, - [3152] = {.lex_state = 71}, - [3153] = {.lex_state = 71}, + [3152] = {.lex_state = 16}, + [3153] = {.lex_state = 19, .external_lex_state = 9}, [3154] = {.lex_state = 71}, - [3155] = {.lex_state = 71}, - [3156] = {.lex_state = 3}, - [3157] = {.lex_state = 1}, - [3158] = {.lex_state = 19, .external_lex_state = 7}, - [3159] = {.lex_state = 71}, + [3155] = {.lex_state = 21}, + [3156] = {.lex_state = 71}, + [3157] = {.lex_state = 71, .external_lex_state = 7}, + [3158] = {.lex_state = 71}, + [3159] = {.lex_state = 16}, [3160] = {.lex_state = 71}, - [3161] = {.lex_state = 71}, + [3161] = {.lex_state = 21}, [3162] = {.lex_state = 71}, [3163] = {.lex_state = 71}, [3164] = {.lex_state = 71}, - [3165] = {.lex_state = 71}, - [3166] = {.lex_state = 71}, - [3167] = {.lex_state = 71}, - [3168] = {.lex_state = 71}, - [3169] = {.lex_state = 1}, - [3170] = {.lex_state = 3}, + [3165] = {.lex_state = 0, .external_lex_state = 4}, + [3166] = {.lex_state = 21}, + [3167] = {.lex_state = 21}, + [3168] = {.lex_state = 0, .external_lex_state = 4}, + [3169] = {.lex_state = 71}, + [3170] = {.lex_state = 71}, [3171] = {.lex_state = 71}, - [3172] = {.lex_state = 1}, - [3173] = {.lex_state = 3}, - [3174] = {.lex_state = 71}, - [3175] = {.lex_state = 71}, - [3176] = {.lex_state = 16}, - [3177] = {.lex_state = 71}, - [3178] = {.lex_state = 71}, - [3179] = {.lex_state = 1}, - [3180] = {.lex_state = 3}, - [3181] = {.lex_state = 0}, + [3172] = {.lex_state = 71, .external_lex_state = 8}, + [3173] = {.lex_state = 71}, + [3174] = {.lex_state = 0, .external_lex_state = 4}, + [3175] = {.lex_state = 21}, + [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 = 21}, + [3180] = {.lex_state = 0, .external_lex_state = 4}, + [3181] = {.lex_state = 21}, [3182] = {.lex_state = 71}, - [3183] = {.lex_state = 1}, - [3184] = {.lex_state = 3}, - [3185] = {.lex_state = 1}, - [3186] = {.lex_state = 3}, - [3187] = {.lex_state = 1}, - [3188] = {.lex_state = 3}, - [3189] = {.lex_state = 0}, + [3183] = {.lex_state = 71}, + [3184] = {.lex_state = 71}, + [3185] = {.lex_state = 71}, + [3186] = {.lex_state = 71}, + [3187] = {.lex_state = 21}, + [3188] = {.lex_state = 71}, + [3189] = {.lex_state = 71}, [3190] = {.lex_state = 71}, - [3191] = {.lex_state = 3}, - [3192] = {.lex_state = 1}, - [3193] = {.lex_state = 71}, - [3194] = {.lex_state = 71}, + [3191] = {.lex_state = 0, .external_lex_state = 4}, + [3192] = {.lex_state = 0, .external_lex_state = 4}, + [3193] = {.lex_state = 16}, + [3194] = {.lex_state = 71, .external_lex_state = 4}, [3195] = {.lex_state = 71}, - [3196] = {.lex_state = 71}, - [3197] = {.lex_state = 71}, - [3198] = {.lex_state = 71}, + [3196] = {.lex_state = 71, .external_lex_state = 4}, + [3197] = {.lex_state = 21}, + [3198] = {.lex_state = 0, .external_lex_state = 4}, [3199] = {.lex_state = 71}, - [3200] = {.lex_state = 71}, + [3200] = {.lex_state = 0}, [3201] = {.lex_state = 71}, [3202] = {.lex_state = 71}, - [3203] = {.lex_state = 29}, - [3204] = {.lex_state = 0}, + [3203] = {.lex_state = 0, .external_lex_state = 4}, + [3204] = {.lex_state = 21}, [3205] = {.lex_state = 71}, - [3206] = {.lex_state = 71}, + [3206] = {.lex_state = 21}, [3207] = {.lex_state = 71}, - [3208] = {.lex_state = 71}, - [3209] = {.lex_state = 71, .external_lex_state = 4}, - [3210] = {.lex_state = 0}, - [3211] = {.lex_state = 0}, - [3212] = {.lex_state = 0, .external_lex_state = 4}, - [3213] = {.lex_state = 0}, + [3208] = {.lex_state = 0}, + [3209] = {.lex_state = 71}, + [3210] = {.lex_state = 71}, + [3211] = {.lex_state = 71}, + [3212] = {.lex_state = 21}, + [3213] = {.lex_state = 0, .external_lex_state = 4}, [3214] = {.lex_state = 0}, - [3215] = {.lex_state = 0}, - [3216] = {.lex_state = 71}, + [3215] = {.lex_state = 0, .external_lex_state = 4}, + [3216] = {.lex_state = 0, .external_lex_state = 4}, [3217] = {.lex_state = 71}, - [3218] = {.lex_state = 0}, + [3218] = {.lex_state = 71}, [3219] = {.lex_state = 71}, [3220] = {.lex_state = 71}, - [3221] = {.lex_state = 0}, + [3221] = {.lex_state = 71}, [3222] = {.lex_state = 71, .external_lex_state = 4}, - [3223] = {.lex_state = 71}, - [3224] = {.lex_state = 0}, - [3225] = {.lex_state = 0}, - [3226] = {.lex_state = 0}, - [3227] = {.lex_state = 0}, - [3228] = {.lex_state = 71}, - [3229] = {.lex_state = 71}, - [3230] = {.lex_state = 0}, - [3231] = {.lex_state = 0}, - [3232] = {.lex_state = 0}, - [3233] = {.lex_state = 0}, - [3234] = {.lex_state = 0}, - [3235] = {.lex_state = 71}, - [3236] = {.lex_state = 71, .external_lex_state = 4}, - [3237] = {.lex_state = 71}, + [3223] = {.lex_state = 21}, + [3224] = {.lex_state = 0, .external_lex_state = 4}, + [3225] = {.lex_state = 21}, + [3226] = {.lex_state = 21}, + [3227] = {.lex_state = 71}, + [3228] = {.lex_state = 0, .external_lex_state = 4}, + [3229] = {.lex_state = 0, .external_lex_state = 4}, + [3230] = {.lex_state = 21}, + [3231] = {.lex_state = 71}, + [3232] = {.lex_state = 71}, + [3233] = {.lex_state = 21}, + [3234] = {.lex_state = 71}, + [3235] = {.lex_state = 0, .external_lex_state = 4}, + [3236] = {.lex_state = 71}, + [3237] = {.lex_state = 21}, [3238] = {.lex_state = 71}, - [3239] = {.lex_state = 71}, - [3240] = {.lex_state = 29}, - [3241] = {.lex_state = 0}, - [3242] = {.lex_state = 71}, - [3243] = {.lex_state = 0}, - [3244] = {.lex_state = 0}, + [3239] = {.lex_state = 71, .external_lex_state = 8}, + [3240] = {.lex_state = 71}, + [3241] = {.lex_state = 71}, + [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 = 71}, - [3246] = {.lex_state = 0}, - [3247] = {.lex_state = 0}, - [3248] = {.lex_state = 0}, - [3249] = {.lex_state = 71}, - [3250] = {.lex_state = 71}, + [3246] = {.lex_state = 71}, + [3247] = {.lex_state = 71, .external_lex_state = 8}, + [3248] = {.lex_state = 71}, + [3249] = {.lex_state = 0, .external_lex_state = 4}, + [3250] = {.lex_state = 13}, [3251] = {.lex_state = 71}, [3252] = {.lex_state = 71}, - [3253] = {.lex_state = 13}, - [3254] = {.lex_state = 71}, - [3255] = {.lex_state = 71, .external_lex_state = 4}, - [3256] = {.lex_state = 71}, - [3257] = {.lex_state = 0}, - [3258] = {.lex_state = 0}, - [3259] = {.lex_state = 0}, - [3260] = {.lex_state = 71, .external_lex_state = 4}, - [3261] = {.lex_state = 0}, - [3262] = {.lex_state = 29}, - [3263] = {.lex_state = 0}, - [3264] = {.lex_state = 71, .external_lex_state = 4}, - [3265] = {.lex_state = 0}, - [3266] = {.lex_state = 0}, + [3253] = {.lex_state = 71}, + [3254] = {.lex_state = 71, .external_lex_state = 4}, + [3255] = {.lex_state = 71, .external_lex_state = 7}, + [3256] = {.lex_state = 21}, + [3257] = {.lex_state = 71}, + [3258] = {.lex_state = 71}, + [3259] = {.lex_state = 71}, + [3260] = {.lex_state = 0, .external_lex_state = 4}, + [3261] = {.lex_state = 71, .external_lex_state = 4}, + [3262] = {.lex_state = 71}, + [3263] = {.lex_state = 0, .external_lex_state = 4}, + [3264] = {.lex_state = 0, .external_lex_state = 4}, + [3265] = {.lex_state = 0, .external_lex_state = 4}, + [3266] = {.lex_state = 71}, [3267] = {.lex_state = 0, .external_lex_state = 4}, - [3268] = {.lex_state = 0, .external_lex_state = 4}, - [3269] = {.lex_state = 0}, - [3270] = {.lex_state = 29}, - [3271] = {.lex_state = 0}, - [3272] = {.lex_state = 29}, + [3268] = {.lex_state = 71, .external_lex_state = 8}, + [3269] = {.lex_state = 71}, + [3270] = {.lex_state = 71}, + [3271] = {.lex_state = 71, .external_lex_state = 8}, + [3272] = {.lex_state = 71}, [3273] = {.lex_state = 71}, [3274] = {.lex_state = 71}, - [3275] = {.lex_state = 0}, - [3276] = {.lex_state = 0}, - [3277] = {.lex_state = 0, .external_lex_state = 4}, + [3275] = {.lex_state = 71}, + [3276] = {.lex_state = 71}, + [3277] = {.lex_state = 71}, [3278] = {.lex_state = 71}, - [3279] = {.lex_state = 29}, - [3280] = {.lex_state = 0}, - [3281] = {.lex_state = 0, .external_lex_state = 4}, - [3282] = {.lex_state = 71}, - [3283] = {.lex_state = 0}, + [3279] = {.lex_state = 0, .external_lex_state = 4}, + [3280] = {.lex_state = 0, .external_lex_state = 4}, + [3281] = {.lex_state = 0}, + [3282] = {.lex_state = 0, .external_lex_state = 4}, + [3283] = {.lex_state = 0, .external_lex_state = 4}, [3284] = {.lex_state = 71}, [3285] = {.lex_state = 0, .external_lex_state = 4}, - [3286] = {.lex_state = 13}, - [3287] = {.lex_state = 0}, - [3288] = {.lex_state = 0}, - [3289] = {.lex_state = 71}, - [3290] = {.lex_state = 0}, - [3291] = {.lex_state = 71}, + [3286] = {.lex_state = 0, .external_lex_state = 4}, + [3287] = {.lex_state = 0, .external_lex_state = 4}, + [3288] = {.lex_state = 71}, + [3289] = {.lex_state = 0, .external_lex_state = 4}, + [3290] = {.lex_state = 71}, + [3291] = {.lex_state = 71, .external_lex_state = 4}, [3292] = {.lex_state = 0}, [3293] = {.lex_state = 0, .external_lex_state = 4}, - [3294] = {.lex_state = 71}, - [3295] = {.lex_state = 29}, - [3296] = {.lex_state = 0, .external_lex_state = 4}, + [3294] = {.lex_state = 0, .external_lex_state = 4}, + [3295] = {.lex_state = 0}, + [3296] = {.lex_state = 71}, [3297] = {.lex_state = 0, .external_lex_state = 4}, - [3298] = {.lex_state = 0}, - [3299] = {.lex_state = 0}, - [3300] = {.lex_state = 0}, - [3301] = {.lex_state = 0}, - [3302] = {.lex_state = 0, .external_lex_state = 4}, - [3303] = {.lex_state = 71}, - [3304] = {.lex_state = 0}, + [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 = 0, .external_lex_state = 4}, + [3302] = {.lex_state = 21}, + [3303] = {.lex_state = 0, .external_lex_state = 4}, + [3304] = {.lex_state = 71, .external_lex_state = 8}, [3305] = {.lex_state = 0, .external_lex_state = 4}, [3306] = {.lex_state = 0, .external_lex_state = 4}, - [3307] = {.lex_state = 0}, - [3308] = {.lex_state = 0}, + [3307] = {.lex_state = 0, .external_lex_state = 4}, + [3308] = {.lex_state = 0, .external_lex_state = 4}, [3309] = {.lex_state = 0, .external_lex_state = 4}, - [3310] = {.lex_state = 71}, - [3311] = {.lex_state = 29}, - [3312] = {.lex_state = 0, .external_lex_state = 4}, - [3313] = {.lex_state = 29}, - [3314] = {.lex_state = 71}, + [3310] = {.lex_state = 0, .external_lex_state = 4}, + [3311] = {.lex_state = 0, .external_lex_state = 4}, + [3312] = {.lex_state = 71}, + [3313] = {.lex_state = 0}, + [3314] = {.lex_state = 0, .external_lex_state = 4}, [3315] = {.lex_state = 0, .external_lex_state = 4}, - [3316] = {.lex_state = 0}, + [3316] = {.lex_state = 71}, [3317] = {.lex_state = 0}, [3318] = {.lex_state = 0}, - [3319] = {.lex_state = 0, .external_lex_state = 4}, - [3320] = {.lex_state = 0, .external_lex_state = 4}, + [3319] = {.lex_state = 71, .external_lex_state = 8}, + [3320] = {.lex_state = 71, .external_lex_state = 8}, [3321] = {.lex_state = 0, .external_lex_state = 4}, [3322] = {.lex_state = 71}, - [3323] = {.lex_state = 0}, + [3323] = {.lex_state = 71}, [3324] = {.lex_state = 0}, - [3325] = {.lex_state = 0}, - [3326] = {.lex_state = 71}, + [3325] = {.lex_state = 0, .external_lex_state = 4}, + [3326] = {.lex_state = 71, .external_lex_state = 4}, [3327] = {.lex_state = 71}, [3328] = {.lex_state = 0, .external_lex_state = 4}, - [3329] = {.lex_state = 0}, - [3330] = {.lex_state = 0}, - [3331] = {.lex_state = 0, .external_lex_state = 4}, - [3332] = {.lex_state = 0, .external_lex_state = 4}, - [3333] = {.lex_state = 0}, - [3334] = {.lex_state = 0}, - [3335] = {.lex_state = 0}, - [3336] = {.lex_state = 0, .external_lex_state = 4}, - [3337] = {.lex_state = 0}, - [3338] = {.lex_state = 71}, - [3339] = {.lex_state = 0, .external_lex_state = 4}, - [3340] = {.lex_state = 71}, - [3341] = {.lex_state = 0, .external_lex_state = 4}, - [3342] = {.lex_state = 29}, - [3343] = {.lex_state = 0}, - [3344] = {.lex_state = 0}, - [3345] = {.lex_state = 0, .external_lex_state = 4}, + [3329] = {.lex_state = 71}, + [3330] = {.lex_state = 0, .external_lex_state = 4}, + [3331] = {.lex_state = 71, .external_lex_state = 8}, + [3332] = {.lex_state = 71, .external_lex_state = 4}, + [3333] = {.lex_state = 0, .external_lex_state = 4}, + [3334] = {.lex_state = 71}, + [3335] = {.lex_state = 71}, + [3336] = {.lex_state = 0}, + [3337] = {.lex_state = 71, .external_lex_state = 4}, + [3338] = {.lex_state = 0, .external_lex_state = 4}, + [3339] = {.lex_state = 21}, + [3340] = {.lex_state = 0, .external_lex_state = 4}, + [3341] = {.lex_state = 71}, + [3342] = {.lex_state = 0, .external_lex_state = 4}, + [3343] = {.lex_state = 0, .external_lex_state = 4}, + [3344] = {.lex_state = 0, .external_lex_state = 4}, + [3345] = {.lex_state = 16}, [3346] = {.lex_state = 0}, - [3347] = {.lex_state = 0}, + [3347] = {.lex_state = 71}, [3348] = {.lex_state = 0, .external_lex_state = 4}, - [3349] = {.lex_state = 0}, - [3350] = {.lex_state = 71}, - [3351] = {.lex_state = 0, .external_lex_state = 4}, - [3352] = {.lex_state = 0}, - [3353] = {.lex_state = 71}, - [3354] = {.lex_state = 0, .external_lex_state = 4}, + [3349] = {.lex_state = 0, .external_lex_state = 4}, + [3350] = {.lex_state = 0, .external_lex_state = 4}, + [3351] = {.lex_state = 71, .external_lex_state = 4}, + [3352] = {.lex_state = 71}, + [3353] = {.lex_state = 71, .external_lex_state = 8}, + [3354] = {.lex_state = 13}, [3355] = {.lex_state = 71}, - [3356] = {.lex_state = 0}, - [3357] = {.lex_state = 71}, - [3358] = {.lex_state = 0}, - [3359] = {.lex_state = 29}, + [3356] = {.lex_state = 71, .external_lex_state = 8}, + [3357] = {.lex_state = 0, .external_lex_state = 4}, + [3358] = {.lex_state = 71}, + [3359] = {.lex_state = 0, .external_lex_state = 4}, [3360] = {.lex_state = 0, .external_lex_state = 4}, - [3361] = {.lex_state = 0}, - [3362] = {.lex_state = 0}, - [3363] = {.lex_state = 0}, - [3364] = {.lex_state = 0}, - [3365] = {.lex_state = 29}, + [3361] = {.lex_state = 71}, + [3362] = {.lex_state = 71, .external_lex_state = 4}, + [3363] = {.lex_state = 0, .external_lex_state = 4}, + [3364] = {.lex_state = 71, .external_lex_state = 8}, + [3365] = {.lex_state = 0, .external_lex_state = 4}, [3366] = {.lex_state = 0}, - [3367] = {.lex_state = 0}, - [3368] = {.lex_state = 71}, - [3369] = {.lex_state = 0}, - [3370] = {.lex_state = 29}, - [3371] = {.lex_state = 29}, - [3372] = {.lex_state = 0}, + [3367] = {.lex_state = 71}, + [3368] = {.lex_state = 0, .external_lex_state = 4}, + [3369] = {.lex_state = 0, .external_lex_state = 4}, + [3370] = {.lex_state = 0, .external_lex_state = 4}, + [3371] = {.lex_state = 0, .external_lex_state = 4}, + [3372] = {.lex_state = 71, .external_lex_state = 4}, [3373] = {.lex_state = 0, .external_lex_state = 4}, - [3374] = {.lex_state = 0}, - [3375] = {.lex_state = 0}, - [3376] = {.lex_state = 0}, - [3377] = {.lex_state = 0}, + [3374] = {.lex_state = 0, .external_lex_state = 4}, + [3375] = {.lex_state = 71, .external_lex_state = 8}, + [3376] = {.lex_state = 71}, + [3377] = {.lex_state = 0, .external_lex_state = 4}, [3378] = {.lex_state = 71}, - [3379] = {.lex_state = 71}, - [3380] = {.lex_state = 0}, - [3381] = {.lex_state = 71}, - [3382] = {.lex_state = 0}, - [3383] = {.lex_state = 0}, - [3384] = {.lex_state = 71}, - [3385] = {.lex_state = 29}, - [3386] = {.lex_state = 0}, - [3387] = {.lex_state = 13}, - [3388] = {.lex_state = 0}, + [3379] = {.lex_state = 0, .external_lex_state = 4}, + [3380] = {.lex_state = 0, .external_lex_state = 4}, + [3381] = {.lex_state = 0, .external_lex_state = 4}, + [3382] = {.lex_state = 0, .external_lex_state = 4}, + [3383] = {.lex_state = 71, .external_lex_state = 4}, + [3384] = {.lex_state = 0, .external_lex_state = 4}, + [3385] = {.lex_state = 0, .external_lex_state = 4}, + [3386] = {.lex_state = 0, .external_lex_state = 4}, + [3387] = {.lex_state = 71}, + [3388] = {.lex_state = 71}, [3389] = {.lex_state = 71}, - [3390] = {.lex_state = 0}, + [3390] = {.lex_state = 71}, [3391] = {.lex_state = 71}, - [3392] = {.lex_state = 0}, - [3393] = {.lex_state = 0}, - [3394] = {.lex_state = 0}, + [3392] = {.lex_state = 71}, + [3393] = {.lex_state = 71}, + [3394] = {.lex_state = 71, .external_lex_state = 8}, [3395] = {.lex_state = 71}, [3396] = {.lex_state = 71}, [3397] = {.lex_state = 71}, - [3398] = {.lex_state = 71}, + [3398] = {.lex_state = 0, .external_lex_state = 4}, [3399] = {.lex_state = 71}, - [3400] = {.lex_state = 0}, + [3400] = {.lex_state = 71}, [3401] = {.lex_state = 71}, - [3402] = {.lex_state = 0}, - [3403] = {.lex_state = 0}, - [3404] = {.lex_state = 71}, - [3405] = {.lex_state = 0}, - [3406] = {.lex_state = 0}, - [3407] = {.lex_state = 0, .external_lex_state = 4}, - [3408] = {.lex_state = 0}, - [3409] = {.lex_state = 0}, - [3410] = {.lex_state = 0}, - [3411] = {.lex_state = 0}, - [3412] = {.lex_state = 0}, - [3413] = {.lex_state = 0}, - [3414] = {.lex_state = 0}, - [3415] = {.lex_state = 0}, - [3416] = {.lex_state = 0}, - [3417] = {.lex_state = 0, .external_lex_state = 4}, - [3418] = {.lex_state = 0}, - [3419] = {.lex_state = 0}, + [3402] = {.lex_state = 71}, + [3403] = {.lex_state = 21}, + [3404] = {.lex_state = 0}, + [3405] = {.lex_state = 13}, + [3406] = {.lex_state = 71}, + [3407] = {.lex_state = 71}, + [3408] = {.lex_state = 71, .external_lex_state = 8}, + [3409] = {.lex_state = 71}, + [3410] = {.lex_state = 71}, + [3411] = {.lex_state = 13}, + [3412] = {.lex_state = 21}, + [3413] = {.lex_state = 71, .external_lex_state = 4}, + [3414] = {.lex_state = 0, .external_lex_state = 4}, + [3415] = {.lex_state = 71, .external_lex_state = 8}, + [3416] = {.lex_state = 71}, + [3417] = {.lex_state = 71}, + [3418] = {.lex_state = 71}, + [3419] = {.lex_state = 71, .external_lex_state = 4}, [3420] = {.lex_state = 0, .external_lex_state = 4}, - [3421] = {.lex_state = 71}, - [3422] = {.lex_state = 0}, - [3423] = {.lex_state = 71}, - [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 0}, + [3421] = {.lex_state = 0, .external_lex_state = 4}, + [3422] = {.lex_state = 0, .external_lex_state = 4}, + [3423] = {.lex_state = 0, .external_lex_state = 4}, + [3424] = {.lex_state = 0, .external_lex_state = 4}, + [3425] = {.lex_state = 71, .external_lex_state = 8}, [3426] = {.lex_state = 0}, - [3427] = {.lex_state = 71}, - [3428] = {.lex_state = 71}, + [3427] = {.lex_state = 0, .external_lex_state = 4}, + [3428] = {.lex_state = 0, .external_lex_state = 4}, [3429] = {.lex_state = 0}, - [3430] = {.lex_state = 71}, - [3431] = {.lex_state = 71}, + [3430] = {.lex_state = 0, .external_lex_state = 4}, + [3431] = {.lex_state = 0, .external_lex_state = 4}, [3432] = {.lex_state = 71}, - [3433] = {.lex_state = 0}, - [3434] = {.lex_state = 0}, + [3433] = {.lex_state = 0, .external_lex_state = 4}, + [3434] = {.lex_state = 0, .external_lex_state = 4}, [3435] = {.lex_state = 71}, - [3436] = {.lex_state = 0, .external_lex_state = 4}, - [3437] = {.lex_state = 0}, - [3438] = {.lex_state = 71}, + [3436] = {.lex_state = 71, .external_lex_state = 4}, + [3437] = {.lex_state = 0, .external_lex_state = 4}, + [3438] = {.lex_state = 0, .external_lex_state = 4}, [3439] = {.lex_state = 0, .external_lex_state = 4}, [3440] = {.lex_state = 0, .external_lex_state = 4}, - [3441] = {.lex_state = 71}, + [3441] = {.lex_state = 0, .external_lex_state = 4}, [3442] = {.lex_state = 71}, [3443] = {.lex_state = 0, .external_lex_state = 4}, - [3444] = {.lex_state = 71}, + [3444] = {.lex_state = 0, .external_lex_state = 4}, [3445] = {.lex_state = 71}, - [3446] = {.lex_state = 0}, - [3447] = {.lex_state = 0}, - [3448] = {.lex_state = 71}, - [3449] = {.lex_state = 71}, - [3450] = {.lex_state = 71}, - [3451] = {.lex_state = 0}, - [3452] = {.lex_state = 0}, - [3453] = {.lex_state = 0}, - [3454] = {.lex_state = 71}, - [3455] = {.lex_state = 71}, - [3456] = {.lex_state = 71}, - [3457] = {.lex_state = 71}, - [3458] = {.lex_state = 71}, - [3459] = {.lex_state = 71}, - [3460] = {.lex_state = 71}, + [3446] = {.lex_state = 0, .external_lex_state = 4}, + [3447] = {.lex_state = 71}, + [3448] = {.lex_state = 0, .external_lex_state = 4}, + [3449] = {.lex_state = 71, .external_lex_state = 8}, + [3450] = {.lex_state = 0, .external_lex_state = 4}, + [3451] = {.lex_state = 0, .external_lex_state = 4}, + [3452] = {.lex_state = 71}, + [3453] = {.lex_state = 0, .external_lex_state = 4}, + [3454] = {.lex_state = 0, .external_lex_state = 4}, + [3455] = {.lex_state = 0, .external_lex_state = 4}, + [3456] = {.lex_state = 0, .external_lex_state = 4}, + [3457] = {.lex_state = 0}, + [3458] = {.lex_state = 1}, + [3459] = {.lex_state = 0}, + [3460] = {.lex_state = 3}, [3461] = {.lex_state = 0}, - [3462] = {.lex_state = 0, .external_lex_state = 4}, + [3462] = {.lex_state = 71}, [3463] = {.lex_state = 71}, [3464] = {.lex_state = 71}, - [3465] = {.lex_state = 71}, - [3466] = {.lex_state = 0}, - [3467] = {.lex_state = 71}, + [3465] = {.lex_state = 0}, + [3466] = {.lex_state = 71}, + [3467] = {.lex_state = 0}, [3468] = {.lex_state = 71}, - [3469] = {.lex_state = 0, .external_lex_state = 4}, + [3469] = {.lex_state = 16}, [3470] = {.lex_state = 71}, - [3471] = {.lex_state = 71}, - [3472] = {.lex_state = 0, .external_lex_state = 4}, + [3471] = {.lex_state = 0}, + [3472] = {.lex_state = 0}, [3473] = {.lex_state = 71}, [3474] = {.lex_state = 0}, [3475] = {.lex_state = 71}, - [3476] = {.lex_state = 71}, + [3476] = {.lex_state = 1}, [3477] = {.lex_state = 71}, - [3478] = {.lex_state = 0}, + [3478] = {.lex_state = 3}, [3479] = {.lex_state = 71}, - [3480] = {.lex_state = 71}, + [3480] = {.lex_state = 0}, [3481] = {.lex_state = 71}, - [3482] = {.lex_state = 16}, - [3483] = {.lex_state = 71}, - [3484] = {.lex_state = 71}, - [3485] = {.lex_state = 71}, + [3482] = {.lex_state = 0}, + [3483] = {.lex_state = 1}, + [3484] = {.lex_state = 0}, + [3485] = {.lex_state = 3}, [3486] = {.lex_state = 71}, - [3487] = {.lex_state = 0}, - [3488] = {.lex_state = 0}, + [3487] = {.lex_state = 71, .external_lex_state = 7}, + [3488] = {.lex_state = 71}, [3489] = {.lex_state = 71}, - [3490] = {.lex_state = 71}, - [3491] = {.lex_state = 0}, + [3490] = {.lex_state = 0}, + [3491] = {.lex_state = 1}, [3492] = {.lex_state = 71}, - [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 71}, - [3495] = {.lex_state = 71}, - [3496] = {.lex_state = 0}, + [3493] = {.lex_state = 16}, + [3494] = {.lex_state = 0, .external_lex_state = 4}, + [3495] = {.lex_state = 0}, + [3496] = {.lex_state = 71}, [3497] = {.lex_state = 71}, - [3498] = {.lex_state = 0}, - [3499] = {.lex_state = 71}, - [3500] = {.lex_state = 0}, - [3501] = {.lex_state = 71}, - [3502] = {.lex_state = 0}, + [3498] = {.lex_state = 3}, + [3499] = {.lex_state = 1}, + [3500] = {.lex_state = 0, .external_lex_state = 4}, + [3501] = {.lex_state = 71, .external_lex_state = 8}, + [3502] = {.lex_state = 71, .external_lex_state = 8}, [3503] = {.lex_state = 71}, [3504] = {.lex_state = 71}, - [3505] = {.lex_state = 71}, - [3506] = {.lex_state = 71}, + [3505] = {.lex_state = 3}, + [3506] = {.lex_state = 1}, [3507] = {.lex_state = 0}, - [3508] = {.lex_state = 71}, - [3509] = {.lex_state = 0, .external_lex_state = 4}, - [3510] = {.lex_state = 0}, - [3511] = {.lex_state = 71}, + [3508] = {.lex_state = 0}, + [3509] = {.lex_state = 1}, + [3510] = {.lex_state = 3}, + [3511] = {.lex_state = 16}, [3512] = {.lex_state = 71}, - [3513] = {.lex_state = 71}, + [3513] = {.lex_state = 0}, [3514] = {.lex_state = 0}, - [3515] = {.lex_state = 0}, + [3515] = {.lex_state = 71}, [3516] = {.lex_state = 71}, [3517] = {.lex_state = 0}, [3518] = {.lex_state = 71}, - [3519] = {.lex_state = 71}, + [3519] = {.lex_state = 0, .external_lex_state = 4}, [3520] = {.lex_state = 0}, [3521] = {.lex_state = 71}, - [3522] = {.lex_state = 0}, + [3522] = {.lex_state = 1}, [3523] = {.lex_state = 71}, - [3524] = {.lex_state = 0}, - [3525] = {.lex_state = 0}, + [3524] = {.lex_state = 71, .external_lex_state = 7}, + [3525] = {.lex_state = 3}, [3526] = {.lex_state = 0}, [3527] = {.lex_state = 0}, [3528] = {.lex_state = 71}, - [3529] = {.lex_state = 71}, + [3529] = {.lex_state = 0}, [3530] = {.lex_state = 0}, - [3531] = {.lex_state = 0}, + [3531] = {.lex_state = 71}, [3532] = {.lex_state = 71}, - [3533] = {.lex_state = 0}, - [3534] = {.lex_state = 71}, - [3535] = {.lex_state = 0}, + [3533] = {.lex_state = 71}, + [3534] = {.lex_state = 16}, + [3535] = {.lex_state = 71}, [3536] = {.lex_state = 71}, - [3537] = {.lex_state = 0}, - [3538] = {.lex_state = 0}, - [3539] = {.lex_state = 0}, - [3540] = {.lex_state = 0, .external_lex_state = 4}, + [3537] = {.lex_state = 71}, + [3538] = {.lex_state = 0, .external_lex_state = 4}, + [3539] = {.lex_state = 71}, + [3540] = {.lex_state = 71}, [3541] = {.lex_state = 71}, - [3542] = {.lex_state = 71}, - [3543] = {.lex_state = 0}, - [3544] = {.lex_state = 0}, - [3545] = {.lex_state = 71}, + [3542] = {.lex_state = 0, .external_lex_state = 4}, + [3543] = {.lex_state = 71}, + [3544] = {.lex_state = 0, .external_lex_state = 4}, + [3545] = {.lex_state = 71, .external_lex_state = 7}, [3546] = {.lex_state = 71}, - [3547] = {.lex_state = 0, .external_lex_state = 4}, - [3548] = {.lex_state = 71}, - [3549] = {.lex_state = 71}, - [3550] = {.lex_state = 71}, + [3547] = {.lex_state = 71}, + [3548] = {.lex_state = 0}, + [3549] = {.lex_state = 3}, + [3550] = {.lex_state = 1}, [3551] = {.lex_state = 71}, - [3552] = {.lex_state = 71}, - [3553] = {.lex_state = 0}, - [3554] = {.lex_state = 0}, - [3555] = {.lex_state = 0}, - [3556] = {.lex_state = 0}, - [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 0}, + [3552] = {.lex_state = 0}, + [3553] = {.lex_state = 71}, + [3554] = {.lex_state = 3}, + [3555] = {.lex_state = 1}, + [3556] = {.lex_state = 71}, + [3557] = {.lex_state = 71}, + [3558] = {.lex_state = 71}, [3559] = {.lex_state = 71}, [3560] = {.lex_state = 71}, [3561] = {.lex_state = 71}, - [3562] = {.lex_state = 71}, - [3563] = {.lex_state = 71}, - [3564] = {.lex_state = 71}, - [3565] = {.lex_state = 0}, + [3562] = {.lex_state = 0}, + [3563] = {.lex_state = 3}, + [3564] = {.lex_state = 71, .external_lex_state = 8}, + [3565] = {.lex_state = 71}, [3566] = {.lex_state = 71}, [3567] = {.lex_state = 71}, [3568] = {.lex_state = 0}, [3569] = {.lex_state = 71}, - [3570] = {.lex_state = 0}, - [3571] = {.lex_state = 71}, + [3570] = {.lex_state = 71}, + [3571] = {.lex_state = 71, .external_lex_state = 7}, [3572] = {.lex_state = 71}, - [3573] = {.lex_state = 0, .external_lex_state = 4}, - [3574] = {.lex_state = 0}, - [3575] = {.lex_state = 71}, - [3576] = {.lex_state = 0, .external_lex_state = 4}, - [3577] = {.lex_state = 0}, - [3578] = {.lex_state = 71}, + [3573] = {.lex_state = 71}, + [3574] = {.lex_state = 3}, + [3575] = {.lex_state = 1}, + [3576] = {.lex_state = 3}, + [3577] = {.lex_state = 1}, + [3578] = {.lex_state = 0}, [3579] = {.lex_state = 71}, - [3580] = {.lex_state = 71}, + [3580] = {.lex_state = 1}, [3581] = {.lex_state = 71}, - [3582] = {.lex_state = 71}, + [3582] = {.lex_state = 3}, [3583] = {.lex_state = 0}, - [3584] = {.lex_state = 71}, - [3585] = {.lex_state = 71}, - [3586] = {.lex_state = 71}, + [3584] = {.lex_state = 0, .external_lex_state = 4}, + [3585] = {.lex_state = 0}, + [3586] = {.lex_state = 0}, [3587] = {.lex_state = 0}, - [3588] = {.lex_state = 71}, + [3588] = {.lex_state = 0}, [3589] = {.lex_state = 0}, - [3590] = {.lex_state = 0}, - [3591] = {.lex_state = 0}, + [3590] = {.lex_state = 71}, + [3591] = {.lex_state = 71}, [3592] = {.lex_state = 0}, - [3593] = {.lex_state = 71}, - [3594] = {.lex_state = 71}, - [3595] = {.lex_state = 71}, - [3596] = {.lex_state = 71}, + [3593] = {.lex_state = 0}, + [3594] = {.lex_state = 0}, + [3595] = {.lex_state = 71, .external_lex_state = 4}, + [3596] = {.lex_state = 0}, [3597] = {.lex_state = 0}, - [3598] = {.lex_state = 0}, + [3598] = {.lex_state = 19, .external_lex_state = 9}, [3599] = {.lex_state = 0}, [3600] = {.lex_state = 71}, [3601] = {.lex_state = 0}, - [3602] = {.lex_state = 71}, - [3603] = {.lex_state = 0, .external_lex_state = 4}, + [3602] = {.lex_state = 1}, + [3603] = {.lex_state = 3}, [3604] = {.lex_state = 0}, [3605] = {.lex_state = 0}, - [3606] = {.lex_state = 0}, - [3607] = {.lex_state = 0}, - [3608] = {.lex_state = 71}, - [3609] = {.lex_state = 0}, + [3606] = {.lex_state = 1}, + [3607] = {.lex_state = 71, .external_lex_state = 4}, + [3608] = {.lex_state = 3}, + [3609] = {.lex_state = 71}, [3610] = {.lex_state = 71}, [3611] = {.lex_state = 71}, [3612] = {.lex_state = 71}, [3613] = {.lex_state = 71}, [3614] = {.lex_state = 71}, - [3615] = {.lex_state = 71}, + [3615] = {.lex_state = 0}, [3616] = {.lex_state = 71}, - [3617] = {.lex_state = 0}, - [3618] = {.lex_state = 0}, - [3619] = {.lex_state = 71}, - [3620] = {.lex_state = 71}, - [3621] = {.lex_state = 71}, - [3622] = {.lex_state = 71}, - [3623] = {.lex_state = 0}, - [3624] = {.lex_state = 71}, - [3625] = {.lex_state = 71}, - [3626] = {.lex_state = 0}, - [3627] = {.lex_state = 0}, + [3617] = {.lex_state = 71}, + [3618] = {.lex_state = 1}, + [3619] = {.lex_state = 3}, + [3620] = {.lex_state = 0}, + [3621] = {.lex_state = 1}, + [3622] = {.lex_state = 3}, + [3623] = {.lex_state = 71}, + [3624] = {.lex_state = 71, .external_lex_state = 7}, + [3625] = {.lex_state = 0}, + [3626] = {.lex_state = 71, .external_lex_state = 7}, + [3627] = {.lex_state = 71}, [3628] = {.lex_state = 71}, [3629] = {.lex_state = 0}, [3630] = {.lex_state = 0}, [3631] = {.lex_state = 0}, - [3632] = {.lex_state = 0}, - [3633] = {.lex_state = 71}, + [3632] = {.lex_state = 0, .external_lex_state = 4}, + [3633] = {.lex_state = 0}, [3634] = {.lex_state = 0}, - [3635] = {.lex_state = 0}, + [3635] = {.lex_state = 0, .external_lex_state = 4}, [3636] = {.lex_state = 71}, - [3637] = {.lex_state = 0, .external_lex_state = 4}, + [3637] = {.lex_state = 71}, [3638] = {.lex_state = 71}, [3639] = {.lex_state = 71}, [3640] = {.lex_state = 71}, - [3641] = {.lex_state = 0}, - [3642] = {.lex_state = 0}, + [3641] = {.lex_state = 71}, + [3642] = {.lex_state = 71}, [3643] = {.lex_state = 71}, - [3644] = {.lex_state = 0}, - [3645] = {.lex_state = 0, .external_lex_state = 4}, - [3646] = {.lex_state = 0}, - [3647] = {.lex_state = 71}, - [3648] = {.lex_state = 71}, - [3649] = {.lex_state = 71}, - [3650] = {.lex_state = 0, .external_lex_state = 4}, - [3651] = {.lex_state = 0}, + [3644] = {.lex_state = 71}, + [3645] = {.lex_state = 71}, + [3646] = {.lex_state = 71}, + [3647] = {.lex_state = 0}, + [3648] = {.lex_state = 0}, + [3649] = {.lex_state = 0}, + [3650] = {.lex_state = 71}, + [3651] = {.lex_state = 71}, [3652] = {.lex_state = 71}, - [3653] = {.lex_state = 71}, + [3653] = {.lex_state = 0}, [3654] = {.lex_state = 71}, - [3655] = {.lex_state = 71}, + [3655] = {.lex_state = 0}, [3656] = {.lex_state = 71}, [3657] = {.lex_state = 71}, - [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 71}, - [3660] = {.lex_state = 71}, - [3661] = {.lex_state = 0}, + [3658] = {.lex_state = 71}, + [3659] = {.lex_state = 1}, + [3660] = {.lex_state = 3}, + [3661] = {.lex_state = 71}, [3662] = {.lex_state = 71}, [3663] = {.lex_state = 71}, - [3664] = {.lex_state = 0}, + [3664] = {.lex_state = 71}, [3665] = {.lex_state = 71}, [3666] = {.lex_state = 71}, [3667] = {.lex_state = 71}, - [3668] = {.lex_state = 0}, + [3668] = {.lex_state = 71}, [3669] = {.lex_state = 71}, - [3670] = {.lex_state = 0}, + [3670] = {.lex_state = 71}, [3671] = {.lex_state = 71}, [3672] = {.lex_state = 71}, - [3673] = {.lex_state = 0, .external_lex_state = 4}, + [3673] = {.lex_state = 71}, [3674] = {.lex_state = 71}, - [3675] = {.lex_state = 71}, - [3676] = {.lex_state = 0, .external_lex_state = 4}, - [3677] = {.lex_state = 71}, - [3678] = {.lex_state = 0}, - [3679] = {.lex_state = 0}, - [3680] = {.lex_state = 0}, + [3675] = {.lex_state = 0}, + [3676] = {.lex_state = 71}, + [3677] = {.lex_state = 71, .external_lex_state = 7}, + [3678] = {.lex_state = 1}, + [3679] = {.lex_state = 3}, + [3680] = {.lex_state = 71, .external_lex_state = 7}, [3681] = {.lex_state = 71}, [3682] = {.lex_state = 71}, [3683] = {.lex_state = 71}, - [3684] = {.lex_state = 0, .external_lex_state = 4}, + [3684] = {.lex_state = 71, .external_lex_state = 7}, [3685] = {.lex_state = 71}, [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 0}, - [3688] = {.lex_state = 0}, - [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 0}, + [3687] = {.lex_state = 16}, + [3688] = {.lex_state = 71}, + [3689] = {.lex_state = 71}, + [3690] = {.lex_state = 71}, [3691] = {.lex_state = 71}, - [3692] = {.lex_state = 0}, - [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 0}, + [3692] = {.lex_state = 71}, + [3693] = {.lex_state = 71}, + [3694] = {.lex_state = 71}, [3695] = {.lex_state = 0}, - [3696] = {.lex_state = 0}, - [3697] = {.lex_state = 0}, + [3696] = {.lex_state = 71}, + [3697] = {.lex_state = 71}, [3698] = {.lex_state = 71}, - [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 71}, + [3699] = {.lex_state = 71}, + [3700] = {.lex_state = 0}, [3701] = {.lex_state = 71}, [3702] = {.lex_state = 0}, - [3703] = {.lex_state = 0}, - [3704] = {.lex_state = 71}, + [3703] = {.lex_state = 71}, + [3704] = {.lex_state = 0}, [3705] = {.lex_state = 71}, - [3706] = {.lex_state = 0}, - [3707] = {.lex_state = 71}, - [3708] = {.lex_state = 0}, - [3709] = {.lex_state = 71}, - [3710] = {.lex_state = 0}, + [3706] = {.lex_state = 71}, + [3707] = {.lex_state = 0}, + [3708] = {.lex_state = 71}, + [3709] = {.lex_state = 0}, + [3710] = {.lex_state = 71}, [3711] = {.lex_state = 71}, [3712] = {.lex_state = 71}, [3713] = {.lex_state = 71}, [3714] = {.lex_state = 71}, - [3715] = {.lex_state = 0}, - [3716] = {.lex_state = 0}, - [3717] = {.lex_state = 0}, - [3718] = {.lex_state = 71}, - [3719] = {.lex_state = 71}, + [3715] = {.lex_state = 71}, + [3716] = {.lex_state = 71}, + [3717] = {.lex_state = 71}, + [3718] = {.lex_state = 0}, + [3719] = {.lex_state = 0}, [3720] = {.lex_state = 0}, [3721] = {.lex_state = 0}, [3722] = {.lex_state = 71}, - [3723] = {.lex_state = 0}, + [3723] = {.lex_state = 71}, [3724] = {.lex_state = 0}, - [3725] = {.lex_state = 5}, - [3726] = {.lex_state = 0}, + [3725] = {.lex_state = 71}, + [3726] = {.lex_state = 71}, [3727] = {.lex_state = 71}, [3728] = {.lex_state = 0}, - [3729] = {.lex_state = 0}, - [3730] = {.lex_state = 0}, + [3729] = {.lex_state = 71}, + [3730] = {.lex_state = 71}, [3731] = {.lex_state = 0}, - [3732] = {.lex_state = 71}, + [3732] = {.lex_state = 0, .external_lex_state = 4}, [3733] = {.lex_state = 0}, [3734] = {.lex_state = 71}, [3735] = {.lex_state = 0}, [3736] = {.lex_state = 71}, - [3737] = {.lex_state = 0}, + [3737] = {.lex_state = 29}, [3738] = {.lex_state = 0}, - [3739] = {.lex_state = 0}, + [3739] = {.lex_state = 71, .external_lex_state = 4}, [3740] = {.lex_state = 0}, [3741] = {.lex_state = 71}, - [3742] = {.lex_state = 0}, + [3742] = {.lex_state = 71}, [3743] = {.lex_state = 0}, - [3744] = {.lex_state = 71}, + [3744] = {.lex_state = 0}, [3745] = {.lex_state = 0}, [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 71}, + [3747] = {.lex_state = 29}, [3748] = {.lex_state = 0}, - [3749] = {.lex_state = 71}, - [3750] = {.lex_state = 71}, - [3751] = {.lex_state = 14}, + [3749] = {.lex_state = 0}, + [3750] = {.lex_state = 0}, + [3751] = {.lex_state = 13}, [3752] = {.lex_state = 0}, [3753] = {.lex_state = 0}, - [3754] = {.lex_state = 5}, - [3755] = {.lex_state = 71}, - [3756] = {.lex_state = 71}, - [3757] = {.lex_state = 0}, - [3758] = {.lex_state = 71}, + [3754] = {.lex_state = 71}, + [3755] = {.lex_state = 0}, + [3756] = {.lex_state = 0}, + [3757] = {.lex_state = 71}, + [3758] = {.lex_state = 0}, [3759] = {.lex_state = 0}, [3760] = {.lex_state = 0}, [3761] = {.lex_state = 0}, [3762] = {.lex_state = 0}, - [3763] = {.lex_state = 0}, + [3763] = {.lex_state = 71}, [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 71}, + [3765] = {.lex_state = 13}, [3766] = {.lex_state = 0}, [3767] = {.lex_state = 0}, - [3768] = {.lex_state = 0}, + [3768] = {.lex_state = 71, .external_lex_state = 4}, [3769] = {.lex_state = 71}, [3770] = {.lex_state = 0}, - [3771] = {.lex_state = 0}, - [3772] = {.lex_state = 71}, - [3773] = {.lex_state = 71}, - [3774] = {.lex_state = 71}, - [3775] = {.lex_state = 0}, + [3771] = {.lex_state = 71}, + [3772] = {.lex_state = 0}, + [3773] = {.lex_state = 0}, + [3774] = {.lex_state = 0}, + [3775] = {.lex_state = 0, .external_lex_state = 7}, [3776] = {.lex_state = 71}, [3777] = {.lex_state = 0}, [3778] = {.lex_state = 0}, [3779] = {.lex_state = 0}, - [3780] = {.lex_state = 14}, + [3780] = {.lex_state = 71}, [3781] = {.lex_state = 71}, [3782] = {.lex_state = 0}, - [3783] = {.lex_state = 0}, - [3784] = {.lex_state = 71}, - [3785] = {.lex_state = 71}, + [3783] = {.lex_state = 71}, + [3784] = {.lex_state = 0}, + [3785] = {.lex_state = 0}, [3786] = {.lex_state = 0}, [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, + [3788] = {.lex_state = 0, .external_lex_state = 4}, + [3789] = {.lex_state = 71}, [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 71}, - [3792] = {.lex_state = 71}, - [3793] = {.lex_state = 71}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 0}, - [3796] = {.lex_state = 71}, + [3791] = {.lex_state = 0}, + [3792] = {.lex_state = 0}, + [3793] = {.lex_state = 0}, + [3794] = {.lex_state = 0, .external_lex_state = 4}, + [3795] = {.lex_state = 29}, + [3796] = {.lex_state = 0}, [3797] = {.lex_state = 71}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 71}, - [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 0}, + [3798] = {.lex_state = 0, .external_lex_state = 4}, + [3799] = {.lex_state = 0}, + [3800] = {.lex_state = 0, .external_lex_state = 4}, + [3801] = {.lex_state = 71}, [3802] = {.lex_state = 0}, - [3803] = {.lex_state = 71}, - [3804] = {.lex_state = 0}, - [3805] = {.lex_state = 71}, - [3806] = {.lex_state = 0}, - [3807] = {.lex_state = 71}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 71}, + [3803] = {.lex_state = 71, .external_lex_state = 4}, + [3804] = {.lex_state = 0, .external_lex_state = 4}, + [3805] = {.lex_state = 0, .external_lex_state = 4}, + [3806] = {.lex_state = 71}, + [3807] = {.lex_state = 0, .external_lex_state = 4}, + [3808] = {.lex_state = 0, .external_lex_state = 4}, + [3809] = {.lex_state = 0, .external_lex_state = 4}, [3810] = {.lex_state = 0}, [3811] = {.lex_state = 0}, [3812] = {.lex_state = 0}, [3813] = {.lex_state = 71}, - [3814] = {.lex_state = 71}, - [3815] = {.lex_state = 71}, - [3816] = {.lex_state = 14}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 0}, + [3816] = {.lex_state = 71}, [3817] = {.lex_state = 71}, - [3818] = {.lex_state = 71}, + [3818] = {.lex_state = 0}, [3819] = {.lex_state = 0}, - [3820] = {.lex_state = 71}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 71}, - [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 71}, - [3825] = {.lex_state = 71}, - [3826] = {.lex_state = 71}, - [3827] = {.lex_state = 71}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 0, .external_lex_state = 7}, + [3822] = {.lex_state = 0}, + [3823] = {.lex_state = 71, .external_lex_state = 4}, + [3824] = {.lex_state = 0}, + [3825] = {.lex_state = 0}, + [3826] = {.lex_state = 0, .external_lex_state = 4}, + [3827] = {.lex_state = 0}, [3828] = {.lex_state = 0}, - [3829] = {.lex_state = 0}, - [3830] = {.lex_state = 14}, + [3829] = {.lex_state = 0, .external_lex_state = 4}, + [3830] = {.lex_state = 0}, [3831] = {.lex_state = 0}, - [3832] = {.lex_state = 71}, - [3833] = {.lex_state = 0}, - [3834] = {.lex_state = 71}, - [3835] = {.lex_state = 71}, - [3836] = {.lex_state = 0}, + [3832] = {.lex_state = 0, .external_lex_state = 4}, + [3833] = {.lex_state = 71}, + [3834] = {.lex_state = 0}, + [3835] = {.lex_state = 0}, + [3836] = {.lex_state = 71}, [3837] = {.lex_state = 71}, - [3838] = {.lex_state = 71}, - [3839] = {.lex_state = 0}, + [3838] = {.lex_state = 0}, + [3839] = {.lex_state = 29}, [3840] = {.lex_state = 0}, [3841] = {.lex_state = 0}, [3842] = {.lex_state = 71}, - [3843] = {.lex_state = 71}, - [3844] = {.lex_state = 0}, - [3845] = {.lex_state = 71}, - [3846] = {.lex_state = 71}, + [3843] = {.lex_state = 0}, + [3844] = {.lex_state = 0, .external_lex_state = 4}, + [3845] = {.lex_state = 0}, + [3846] = {.lex_state = 0}, [3847] = {.lex_state = 71}, [3848] = {.lex_state = 0}, [3849] = {.lex_state = 0}, - [3850] = {.lex_state = 71}, - [3851] = {.lex_state = 0}, + [3850] = {.lex_state = 0}, + [3851] = {.lex_state = 71}, [3852] = {.lex_state = 0}, - [3853] = {.lex_state = 71}, + [3853] = {.lex_state = 0}, [3854] = {.lex_state = 0}, [3855] = {.lex_state = 71}, - [3856] = {.lex_state = 71}, - [3857] = {.lex_state = 71}, - [3858] = {.lex_state = 0}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 0}, + [3858] = {.lex_state = 0, .external_lex_state = 4}, [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 0}, - [3861] = {.lex_state = 0}, - [3862] = {.lex_state = 71}, - [3863] = {.lex_state = 71}, - [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 71}, - [3867] = {.lex_state = 0}, - [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 71}, - [3870] = {.lex_state = 71}, - [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 71}, + [3860] = {.lex_state = 71}, + [3861] = {.lex_state = 71}, + [3862] = {.lex_state = 0, .external_lex_state = 4}, + [3863] = {.lex_state = 0, .external_lex_state = 4}, + [3864] = {.lex_state = 0, .external_lex_state = 4}, + [3865] = {.lex_state = 0, .external_lex_state = 4}, + [3866] = {.lex_state = 0}, + [3867] = {.lex_state = 71}, + [3868] = {.lex_state = 0, .external_lex_state = 4}, + [3869] = {.lex_state = 0, .external_lex_state = 4}, + [3870] = {.lex_state = 0}, + [3871] = {.lex_state = 71}, + [3872] = {.lex_state = 0, .external_lex_state = 4}, [3873] = {.lex_state = 71}, - [3874] = {.lex_state = 0}, - [3875] = {.lex_state = 71}, + [3874] = {.lex_state = 71}, + [3875] = {.lex_state = 0}, [3876] = {.lex_state = 0}, [3877] = {.lex_state = 0}, [3878] = {.lex_state = 0}, [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 71}, + [3880] = {.lex_state = 0, .external_lex_state = 4}, [3881] = {.lex_state = 71}, - [3882] = {.lex_state = 71}, + [3882] = {.lex_state = 29}, [3883] = {.lex_state = 0}, - [3884] = {.lex_state = 0}, + [3884] = {.lex_state = 13}, [3885] = {.lex_state = 71}, [3886] = {.lex_state = 0}, - [3887] = {.lex_state = 71}, - [3888] = {.lex_state = 0}, - [3889] = {.lex_state = 71}, - [3890] = {.lex_state = 0}, - [3891] = {.lex_state = 71}, + [3887] = {.lex_state = 0, .external_lex_state = 4}, + [3888] = {.lex_state = 0, .external_lex_state = 4}, + [3889] = {.lex_state = 29}, + [3890] = {.lex_state = 0, .external_lex_state = 4}, + [3891] = {.lex_state = 0}, [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 0}, + [3893] = {.lex_state = 0, .external_lex_state = 4}, [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 0}, - [3897] = {.lex_state = 71}, - [3898] = {.lex_state = 71}, - [3899] = {.lex_state = 71}, - [3900] = {.lex_state = 71}, - [3901] = {.lex_state = 71}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 71}, - [3905] = {.lex_state = 71}, + [3895] = {.lex_state = 29}, + [3896] = {.lex_state = 71}, + [3897] = {.lex_state = 29}, + [3898] = {.lex_state = 0}, + [3899] = {.lex_state = 29}, + [3900] = {.lex_state = 29}, + [3901] = {.lex_state = 0}, + [3902] = {.lex_state = 71}, + [3903] = {.lex_state = 71}, + [3904] = {.lex_state = 29}, + [3905] = {.lex_state = 29}, [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 71}, - [3908] = {.lex_state = 71}, - [3909] = {.lex_state = 0}, - [3910] = {.lex_state = 71}, - [3911] = {.lex_state = 0}, - [3912] = {.lex_state = 71}, - [3913] = {.lex_state = 5}, + [3907] = {.lex_state = 29}, + [3908] = {.lex_state = 0}, + [3909] = {.lex_state = 71}, + [3910] = {.lex_state = 0}, + [3911] = {.lex_state = 0, .external_lex_state = 4}, + [3912] = {.lex_state = 29}, + [3913] = {.lex_state = 71}, [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 71}, + [3915] = {.lex_state = 0}, [3916] = {.lex_state = 71}, [3917] = {.lex_state = 71}, - [3918] = {.lex_state = 71}, - [3919] = {.lex_state = 71}, - [3920] = {.lex_state = 0}, - [3921] = {.lex_state = 71}, - [3922] = {.lex_state = 71}, - [3923] = {.lex_state = 71}, - [3924] = {.lex_state = 71}, - [3925] = {.lex_state = 71}, - [3926] = {.lex_state = 71}, + [3918] = {.lex_state = 0, .external_lex_state = 4}, + [3919] = {.lex_state = 0, .external_lex_state = 4}, + [3920] = {.lex_state = 0, .external_lex_state = 4}, + [3921] = {.lex_state = 0}, + [3922] = {.lex_state = 0}, + [3923] = {.lex_state = 71, .external_lex_state = 4}, + [3924] = {.lex_state = 0, .external_lex_state = 4}, + [3925] = {.lex_state = 0}, + [3926] = {.lex_state = 0, .external_lex_state = 4}, [3927] = {.lex_state = 71}, - [3928] = {.lex_state = 71}, - [3929] = {.lex_state = 71}, - [3930] = {.lex_state = 0}, + [3928] = {.lex_state = 71, .external_lex_state = 4}, + [3929] = {.lex_state = 0}, + [3930] = {.lex_state = 29}, [3931] = {.lex_state = 71}, [3932] = {.lex_state = 0}, [3933] = {.lex_state = 0}, [3934] = {.lex_state = 71}, - [3935] = {.lex_state = 71}, - [3936] = {.lex_state = 71}, - [3937] = {.lex_state = 71}, - [3938] = {.lex_state = 71}, - [3939] = {.lex_state = 71}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 0, .external_lex_state = 4}, + [3937] = {.lex_state = 0}, + [3938] = {.lex_state = 0}, + [3939] = {.lex_state = 0}, [3940] = {.lex_state = 71}, - [3941] = {.lex_state = 71}, - [3942] = {.lex_state = 71}, - [3943] = {.lex_state = 71}, + [3941] = {.lex_state = 0, .external_lex_state = 4}, + [3942] = {.lex_state = 0}, + [3943] = {.lex_state = 0}, [3944] = {.lex_state = 71}, [3945] = {.lex_state = 71}, [3946] = {.lex_state = 71}, [3947] = {.lex_state = 71}, - [3948] = {.lex_state = 0}, + [3948] = {.lex_state = 0, .external_lex_state = 4}, [3949] = {.lex_state = 71}, [3950] = {.lex_state = 0}, [3951] = {.lex_state = 71}, - [3952] = {.lex_state = 71}, - [3953] = {.lex_state = 71}, + [3952] = {.lex_state = 0, .external_lex_state = 4}, + [3953] = {.lex_state = 0}, [3954] = {.lex_state = 71}, - [3955] = {.lex_state = 71}, + [3955] = {.lex_state = 0}, [3956] = {.lex_state = 0}, [3957] = {.lex_state = 71}, - [3958] = {.lex_state = 71}, - [3959] = {.lex_state = 71}, - [3960] = {.lex_state = 0}, - [3961] = {.lex_state = 0}, - [3962] = {.lex_state = 71}, + [3958] = {.lex_state = 0, .external_lex_state = 4}, + [3959] = {.lex_state = 0}, + [3960] = {.lex_state = 0, .external_lex_state = 4}, + [3961] = {.lex_state = 71}, + [3962] = {.lex_state = 0}, [3963] = {.lex_state = 71}, - [3964] = {.lex_state = 71}, + [3964] = {.lex_state = 0}, [3965] = {.lex_state = 71}, - [3966] = {.lex_state = 71}, - [3967] = {.lex_state = 71}, + [3966] = {.lex_state = 0}, + [3967] = {.lex_state = 0}, [3968] = {.lex_state = 71}, - [3969] = {.lex_state = 0}, + [3969] = {.lex_state = 71}, [3970] = {.lex_state = 71}, [3971] = {.lex_state = 0}, - [3972] = {.lex_state = 71}, + [3972] = {.lex_state = 0}, [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 5}, + [3974] = {.lex_state = 71}, [3975] = {.lex_state = 71}, - [3976] = {.lex_state = 0}, + [3976] = {.lex_state = 71}, [3977] = {.lex_state = 71}, - [3978] = {.lex_state = 0}, + [3978] = {.lex_state = 71}, [3979] = {.lex_state = 71}, - [3980] = {.lex_state = 0}, - [3981] = {.lex_state = 0}, + [3980] = {.lex_state = 71}, + [3981] = {.lex_state = 71}, [3982] = {.lex_state = 0}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, + [3983] = {.lex_state = 0, .external_lex_state = 4}, + [3984] = {.lex_state = 71}, [3985] = {.lex_state = 71}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 71}, - [3988] = {.lex_state = 0}, + [3986] = {.lex_state = 71}, + [3987] = {.lex_state = 0, .external_lex_state = 4}, + [3988] = {.lex_state = 71}, [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 71}, - [3992] = {.lex_state = 71}, + [3990] = {.lex_state = 71}, + [3991] = {.lex_state = 0}, + [3992] = {.lex_state = 0, .external_lex_state = 4}, [3993] = {.lex_state = 71}, [3994] = {.lex_state = 71}, - [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 71}, - [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 71}, - [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 0}, + [3995] = {.lex_state = 71}, + [3996] = {.lex_state = 0}, + [3997] = {.lex_state = 71}, + [3998] = {.lex_state = 0, .external_lex_state = 4}, + [3999] = {.lex_state = 71}, + [4000] = {.lex_state = 71}, [4001] = {.lex_state = 71}, [4002] = {.lex_state = 71}, + [4003] = {.lex_state = 71}, + [4004] = {.lex_state = 71}, + [4005] = {.lex_state = 0}, + [4006] = {.lex_state = 0}, + [4007] = {.lex_state = 71}, + [4008] = {.lex_state = 0}, + [4009] = {.lex_state = 71}, + [4010] = {.lex_state = 71}, + [4011] = {.lex_state = 71}, + [4012] = {.lex_state = 71}, + [4013] = {.lex_state = 0}, + [4014] = {.lex_state = 71}, + [4015] = {.lex_state = 71}, + [4016] = {.lex_state = 71}, + [4017] = {.lex_state = 71}, + [4018] = {.lex_state = 71}, + [4019] = {.lex_state = 0}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 71}, + [4022] = {.lex_state = 0}, + [4023] = {.lex_state = 0}, + [4024] = {.lex_state = 0}, + [4025] = {.lex_state = 71}, + [4026] = {.lex_state = 71}, + [4027] = {.lex_state = 71}, + [4028] = {.lex_state = 0}, + [4029] = {.lex_state = 71}, + [4030] = {.lex_state = 71}, + [4031] = {.lex_state = 71}, + [4032] = {.lex_state = 0}, + [4033] = {.lex_state = 71}, + [4034] = {.lex_state = 71}, + [4035] = {.lex_state = 71}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 0}, + [4038] = {.lex_state = 0}, + [4039] = {.lex_state = 0}, + [4040] = {.lex_state = 71}, + [4041] = {.lex_state = 0}, + [4042] = {.lex_state = 71}, + [4043] = {.lex_state = 71}, + [4044] = {.lex_state = 0, .external_lex_state = 4}, + [4045] = {.lex_state = 0}, + [4046] = {.lex_state = 71}, + [4047] = {.lex_state = 71}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 71}, + [4050] = {.lex_state = 71}, + [4051] = {.lex_state = 0}, + [4052] = {.lex_state = 71}, + [4053] = {.lex_state = 16}, + [4054] = {.lex_state = 71}, + [4055] = {.lex_state = 0}, + [4056] = {.lex_state = 71}, + [4057] = {.lex_state = 71}, + [4058] = {.lex_state = 0}, + [4059] = {.lex_state = 71}, + [4060] = {.lex_state = 71}, + [4061] = {.lex_state = 71}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 0}, + [4064] = {.lex_state = 0}, + [4065] = {.lex_state = 71}, + [4066] = {.lex_state = 71}, + [4067] = {.lex_state = 71}, + [4068] = {.lex_state = 71}, + [4069] = {.lex_state = 71}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 0}, + [4072] = {.lex_state = 71}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 71}, + [4075] = {.lex_state = 71}, + [4076] = {.lex_state = 0, .external_lex_state = 4}, + [4077] = {.lex_state = 71}, + [4078] = {.lex_state = 71}, + [4079] = {.lex_state = 71}, + [4080] = {.lex_state = 0}, + [4081] = {.lex_state = 71}, + [4082] = {.lex_state = 0}, + [4083] = {.lex_state = 71}, + [4084] = {.lex_state = 71}, + [4085] = {.lex_state = 0, .external_lex_state = 4}, + [4086] = {.lex_state = 71}, + [4087] = {.lex_state = 71}, + [4088] = {.lex_state = 71}, + [4089] = {.lex_state = 0}, + [4090] = {.lex_state = 71}, + [4091] = {.lex_state = 71}, + [4092] = {.lex_state = 0}, + [4093] = {.lex_state = 71}, + [4094] = {.lex_state = 0}, + [4095] = {.lex_state = 0, .external_lex_state = 4}, + [4096] = {.lex_state = 71}, + [4097] = {.lex_state = 71}, + [4098] = {.lex_state = 0, .external_lex_state = 4}, + [4099] = {.lex_state = 71}, + [4100] = {.lex_state = 71}, + [4101] = {.lex_state = 71}, + [4102] = {.lex_state = 0, .external_lex_state = 4}, + [4103] = {.lex_state = 71}, + [4104] = {.lex_state = 71}, + [4105] = {.lex_state = 71}, + [4106] = {.lex_state = 0}, + [4107] = {.lex_state = 0}, + [4108] = {.lex_state = 71}, + [4109] = {.lex_state = 0}, + [4110] = {.lex_state = 0}, + [4111] = {.lex_state = 71}, + [4112] = {.lex_state = 0, .external_lex_state = 4}, + [4113] = {.lex_state = 0}, + [4114] = {.lex_state = 0}, + [4115] = {.lex_state = 71}, + [4116] = {.lex_state = 71}, + [4117] = {.lex_state = 0}, + [4118] = {.lex_state = 0}, + [4119] = {.lex_state = 71}, + [4120] = {.lex_state = 0}, + [4121] = {.lex_state = 0}, + [4122] = {.lex_state = 71}, + [4123] = {.lex_state = 71}, + [4124] = {.lex_state = 71}, + [4125] = {.lex_state = 71}, + [4126] = {.lex_state = 71}, + [4127] = {.lex_state = 0}, + [4128] = {.lex_state = 71}, + [4129] = {.lex_state = 71}, + [4130] = {.lex_state = 71}, + [4131] = {.lex_state = 71}, + [4132] = {.lex_state = 71}, + [4133] = {.lex_state = 0}, + [4134] = {.lex_state = 0}, + [4135] = {.lex_state = 71}, + [4136] = {.lex_state = 71}, + [4137] = {.lex_state = 0}, + [4138] = {.lex_state = 71}, + [4139] = {.lex_state = 0, .external_lex_state = 4}, + [4140] = {.lex_state = 0}, + [4141] = {.lex_state = 0, .external_lex_state = 4}, + [4142] = {.lex_state = 0}, + [4143] = {.lex_state = 0}, + [4144] = {.lex_state = 71}, + [4145] = {.lex_state = 71}, + [4146] = {.lex_state = 71}, + [4147] = {.lex_state = 71}, + [4148] = {.lex_state = 0}, + [4149] = {.lex_state = 0}, + [4150] = {.lex_state = 71}, + [4151] = {.lex_state = 0}, + [4152] = {.lex_state = 71}, + [4153] = {.lex_state = 71}, + [4154] = {.lex_state = 71}, + [4155] = {.lex_state = 0}, + [4156] = {.lex_state = 0}, + [4157] = {.lex_state = 0}, + [4158] = {.lex_state = 0}, + [4159] = {.lex_state = 0}, + [4160] = {.lex_state = 71}, + [4161] = {.lex_state = 0}, + [4162] = {.lex_state = 71}, + [4163] = {.lex_state = 71}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 71}, + [4166] = {.lex_state = 71}, + [4167] = {.lex_state = 0}, + [4168] = {.lex_state = 0}, + [4169] = {.lex_state = 71}, + [4170] = {.lex_state = 0}, + [4171] = {.lex_state = 71}, + [4172] = {.lex_state = 71}, + [4173] = {.lex_state = 71}, + [4174] = {.lex_state = 0}, + [4175] = {.lex_state = 71}, + [4176] = {.lex_state = 0}, + [4177] = {.lex_state = 71}, + [4178] = {.lex_state = 0}, + [4179] = {.lex_state = 0}, + [4180] = {.lex_state = 0}, + [4181] = {.lex_state = 71}, + [4182] = {.lex_state = 71}, + [4183] = {.lex_state = 71}, + [4184] = {.lex_state = 0}, + [4185] = {.lex_state = 0}, + [4186] = {.lex_state = 71}, + [4187] = {.lex_state = 71}, + [4188] = {.lex_state = 0}, + [4189] = {.lex_state = 0}, + [4190] = {.lex_state = 71}, + [4191] = {.lex_state = 71}, + [4192] = {.lex_state = 0}, + [4193] = {.lex_state = 71}, + [4194] = {.lex_state = 0}, + [4195] = {.lex_state = 71}, + [4196] = {.lex_state = 0}, + [4197] = {.lex_state = 0}, + [4198] = {.lex_state = 0}, + [4199] = {.lex_state = 71}, + [4200] = {.lex_state = 71}, + [4201] = {.lex_state = 0}, + [4202] = {.lex_state = 0}, + [4203] = {.lex_state = 0}, + [4204] = {.lex_state = 71}, + [4205] = {.lex_state = 71}, + [4206] = {.lex_state = 0}, + [4207] = {.lex_state = 71}, + [4208] = {.lex_state = 71}, + [4209] = {.lex_state = 71}, + [4210] = {.lex_state = 71}, + [4211] = {.lex_state = 71}, + [4212] = {.lex_state = 0}, + [4213] = {.lex_state = 71}, + [4214] = {.lex_state = 71}, + [4215] = {.lex_state = 0}, + [4216] = {.lex_state = 71}, + [4217] = {.lex_state = 71}, + [4218] = {.lex_state = 0}, + [4219] = {.lex_state = 71}, + [4220] = {.lex_state = 0}, + [4221] = {.lex_state = 0}, + [4222] = {.lex_state = 71}, + [4223] = {.lex_state = 0}, + [4224] = {.lex_state = 0}, + [4225] = {.lex_state = 0}, + [4226] = {.lex_state = 71}, + [4227] = {.lex_state = 0}, + [4228] = {.lex_state = 0}, + [4229] = {.lex_state = 0}, + [4230] = {.lex_state = 0}, + [4231] = {.lex_state = 0}, + [4232] = {.lex_state = 0}, + [4233] = {.lex_state = 71}, + [4234] = {.lex_state = 0}, + [4235] = {.lex_state = 0}, + [4236] = {.lex_state = 71}, + [4237] = {.lex_state = 0}, + [4238] = {.lex_state = 0}, + [4239] = {.lex_state = 0}, + [4240] = {.lex_state = 0}, + [4241] = {.lex_state = 14}, + [4242] = {.lex_state = 71}, + [4243] = {.lex_state = 0}, + [4244] = {.lex_state = 0}, + [4245] = {.lex_state = 71}, + [4246] = {.lex_state = 71}, + [4247] = {.lex_state = 0}, + [4248] = {.lex_state = 0}, + [4249] = {.lex_state = 71}, + [4250] = {.lex_state = 71}, + [4251] = {.lex_state = 0}, + [4252] = {.lex_state = 71}, + [4253] = {.lex_state = 0}, + [4254] = {.lex_state = 0}, + [4255] = {.lex_state = 0}, + [4256] = {.lex_state = 71}, + [4257] = {.lex_state = 71}, + [4258] = {.lex_state = 0}, + [4259] = {.lex_state = 71}, + [4260] = {.lex_state = 71}, + [4261] = {.lex_state = 71}, + [4262] = {.lex_state = 71}, + [4263] = {.lex_state = 71}, + [4264] = {.lex_state = 0}, + [4265] = {.lex_state = 0}, + [4266] = {.lex_state = 0}, + [4267] = {.lex_state = 0}, + [4268] = {.lex_state = 0}, + [4269] = {.lex_state = 71}, + [4270] = {.lex_state = 0}, + [4271] = {.lex_state = 71}, + [4272] = {.lex_state = 0}, + [4273] = {.lex_state = 71}, + [4274] = {.lex_state = 0}, + [4275] = {.lex_state = 0}, + [4276] = {.lex_state = 71}, + [4277] = {.lex_state = 0}, + [4278] = {.lex_state = 71}, + [4279] = {.lex_state = 71}, + [4280] = {.lex_state = 71}, + [4281] = {.lex_state = 0}, + [4282] = {.lex_state = 0}, + [4283] = {.lex_state = 71}, + [4284] = {.lex_state = 0}, + [4285] = {.lex_state = 0}, + [4286] = {.lex_state = 0}, + [4287] = {.lex_state = 0}, + [4288] = {.lex_state = 0}, + [4289] = {.lex_state = 5}, + [4290] = {.lex_state = 0}, + [4291] = {.lex_state = 0}, + [4292] = {.lex_state = 0}, + [4293] = {.lex_state = 0}, + [4294] = {.lex_state = 0}, + [4295] = {.lex_state = 0}, + [4296] = {.lex_state = 0}, + [4297] = {.lex_state = 71}, + [4298] = {.lex_state = 0}, + [4299] = {.lex_state = 0}, + [4300] = {.lex_state = 71}, + [4301] = {.lex_state = 0}, + [4302] = {.lex_state = 0}, + [4303] = {.lex_state = 71}, + [4304] = {.lex_state = 71}, + [4305] = {.lex_state = 0}, + [4306] = {.lex_state = 0}, + [4307] = {.lex_state = 0}, + [4308] = {.lex_state = 71}, + [4309] = {.lex_state = 71}, + [4310] = {.lex_state = 0}, + [4311] = {.lex_state = 0}, + [4312] = {.lex_state = 0}, + [4313] = {.lex_state = 0}, + [4314] = {.lex_state = 0}, + [4315] = {.lex_state = 71}, + [4316] = {.lex_state = 0}, + [4317] = {.lex_state = 71}, + [4318] = {.lex_state = 0}, + [4319] = {.lex_state = 0}, + [4320] = {.lex_state = 0}, + [4321] = {.lex_state = 71}, + [4322] = {.lex_state = 0}, + [4323] = {.lex_state = 0}, + [4324] = {.lex_state = 71}, + [4325] = {.lex_state = 14}, + [4326] = {.lex_state = 71}, + [4327] = {.lex_state = 71}, + [4328] = {.lex_state = 71}, + [4329] = {.lex_state = 71}, + [4330] = {.lex_state = 0}, + [4331] = {.lex_state = 71}, + [4332] = {.lex_state = 0}, + [4333] = {.lex_state = 71}, + [4334] = {.lex_state = 0}, + [4335] = {.lex_state = 0}, + [4336] = {.lex_state = 71}, + [4337] = {.lex_state = 0}, + [4338] = {.lex_state = 0}, + [4339] = {.lex_state = 0}, + [4340] = {.lex_state = 0}, + [4341] = {.lex_state = 71}, + [4342] = {.lex_state = 0}, + [4343] = {.lex_state = 0}, + [4344] = {.lex_state = 71}, + [4345] = {.lex_state = 71}, + [4346] = {.lex_state = 71}, + [4347] = {.lex_state = 71}, + [4348] = {.lex_state = 71}, + [4349] = {.lex_state = 71}, + [4350] = {.lex_state = 71}, + [4351] = {.lex_state = 0}, + [4352] = {.lex_state = 71}, + [4353] = {.lex_state = 0}, + [4354] = {.lex_state = 71}, + [4355] = {.lex_state = 0}, + [4356] = {.lex_state = 71}, + [4357] = {.lex_state = 0}, + [4358] = {.lex_state = 71}, + [4359] = {.lex_state = 71}, + [4360] = {.lex_state = 0}, + [4361] = {.lex_state = 71}, + [4362] = {.lex_state = 71}, + [4363] = {.lex_state = 0}, + [4364] = {.lex_state = 0}, + [4365] = {.lex_state = 0}, + [4366] = {.lex_state = 0}, + [4367] = {.lex_state = 5}, + [4368] = {.lex_state = 0}, + [4369] = {.lex_state = 0}, + [4370] = {.lex_state = 0}, + [4371] = {.lex_state = 0}, + [4372] = {.lex_state = 0}, + [4373] = {.lex_state = 71}, + [4374] = {.lex_state = 0}, + [4375] = {.lex_state = 0}, + [4376] = {.lex_state = 0}, + [4377] = {.lex_state = 0}, + [4378] = {.lex_state = 0}, + [4379] = {.lex_state = 0}, + [4380] = {.lex_state = 71}, + [4381] = {.lex_state = 0}, + [4382] = {.lex_state = 0}, + [4383] = {.lex_state = 0}, + [4384] = {.lex_state = 0}, + [4385] = {.lex_state = 71}, + [4386] = {.lex_state = 0}, + [4387] = {.lex_state = 71}, + [4388] = {.lex_state = 5}, + [4389] = {.lex_state = 0}, + [4390] = {.lex_state = 0}, + [4391] = {.lex_state = 0}, + [4392] = {.lex_state = 71}, + [4393] = {.lex_state = 71}, + [4394] = {.lex_state = 0}, + [4395] = {.lex_state = 0}, + [4396] = {.lex_state = 0}, + [4397] = {.lex_state = 0}, + [4398] = {.lex_state = 0}, + [4399] = {.lex_state = 71}, + [4400] = {.lex_state = 0}, + [4401] = {.lex_state = 0}, + [4402] = {.lex_state = 0}, + [4403] = {.lex_state = 0}, + [4404] = {.lex_state = 0}, + [4405] = {.lex_state = 0}, + [4406] = {.lex_state = 0}, + [4407] = {.lex_state = 0}, + [4408] = {.lex_state = 0}, + [4409] = {.lex_state = 14}, + [4410] = {.lex_state = 71}, + [4411] = {.lex_state = 71}, + [4412] = {.lex_state = 71}, + [4413] = {.lex_state = 0}, + [4414] = {.lex_state = 0}, + [4415] = {.lex_state = 71}, + [4416] = {.lex_state = 0}, + [4417] = {.lex_state = 0}, + [4418] = {.lex_state = 0}, + [4419] = {.lex_state = 0}, + [4420] = {.lex_state = 0}, + [4421] = {.lex_state = 71}, + [4422] = {.lex_state = 71}, + [4423] = {.lex_state = 0}, + [4424] = {.lex_state = 0}, + [4425] = {.lex_state = 0}, + [4426] = {.lex_state = 0}, + [4427] = {.lex_state = 0}, + [4428] = {.lex_state = 0}, + [4429] = {.lex_state = 0}, + [4430] = {.lex_state = 71}, + [4431] = {.lex_state = 71}, + [4432] = {.lex_state = 0}, + [4433] = {.lex_state = 0}, + [4434] = {.lex_state = 71}, + [4435] = {.lex_state = 71}, + [4436] = {.lex_state = 71}, + [4437] = {.lex_state = 71}, + [4438] = {.lex_state = 0}, + [4439] = {.lex_state = 71}, + [4440] = {.lex_state = 0}, + [4441] = {.lex_state = 0}, + [4442] = {.lex_state = 71}, + [4443] = {.lex_state = 71}, + [4444] = {.lex_state = 71}, + [4445] = {.lex_state = 71}, + [4446] = {.lex_state = 71}, + [4447] = {.lex_state = 71}, + [4448] = {.lex_state = 71}, + [4449] = {.lex_state = 0}, + [4450] = {.lex_state = 0}, + [4451] = {.lex_state = 0}, + [4452] = {.lex_state = 0}, + [4453] = {.lex_state = 0}, + [4454] = {.lex_state = 71}, + [4455] = {.lex_state = 71}, + [4456] = {.lex_state = 0}, + [4457] = {.lex_state = 71}, + [4458] = {.lex_state = 0}, + [4459] = {.lex_state = 71}, + [4460] = {.lex_state = 0}, + [4461] = {.lex_state = 0}, + [4462] = {.lex_state = 0}, + [4463] = {.lex_state = 71}, + [4464] = {.lex_state = 14}, + [4465] = {.lex_state = 71}, + [4466] = {.lex_state = 71}, + [4467] = {.lex_state = 71}, + [4468] = {.lex_state = 71}, + [4469] = {.lex_state = 0}, + [4470] = {.lex_state = 71}, + [4471] = {.lex_state = 71}, + [4472] = {.lex_state = 71}, + [4473] = {.lex_state = 71}, + [4474] = {.lex_state = 71}, + [4475] = {.lex_state = 71}, + [4476] = {.lex_state = 71}, + [4477] = {.lex_state = 71}, + [4478] = {.lex_state = 71}, + [4479] = {.lex_state = 71}, + [4480] = {.lex_state = 71}, + [4481] = {.lex_state = 71}, + [4482] = {.lex_state = 71}, + [4483] = {.lex_state = 0}, + [4484] = {.lex_state = 71}, + [4485] = {.lex_state = 0}, + [4486] = {.lex_state = 5}, + [4487] = {.lex_state = 0}, + [4488] = {.lex_state = 71}, + [4489] = {.lex_state = 71}, + [4490] = {.lex_state = 0}, + [4491] = {.lex_state = 71}, + [4492] = {.lex_state = 71}, + [4493] = {.lex_state = 71}, + [4494] = {.lex_state = 71}, + [4495] = {.lex_state = 71}, + [4496] = {.lex_state = 71}, + [4497] = {.lex_state = 71}, + [4498] = {.lex_state = 0}, + [4499] = {.lex_state = 0}, + [4500] = {.lex_state = 71}, + [4501] = {.lex_state = 71}, + [4502] = {.lex_state = 71}, + [4503] = {.lex_state = 71}, + [4504] = {.lex_state = 71}, + [4505] = {.lex_state = 0}, + [4506] = {.lex_state = 71}, + [4507] = {.lex_state = 71}, + [4508] = {.lex_state = 0}, + [4509] = {.lex_state = 71}, + [4510] = {.lex_state = 71}, + [4511] = {.lex_state = 0}, + [4512] = {.lex_state = 71}, + [4513] = {.lex_state = 0}, + [4514] = {.lex_state = 71}, + [4515] = {.lex_state = 71}, + [4516] = {.lex_state = 71}, + [4517] = {.lex_state = 0}, + [4518] = {.lex_state = 0}, + [4519] = {.lex_state = 0}, + [4520] = {.lex_state = 71}, + [4521] = {.lex_state = 0}, + [4522] = {.lex_state = 71}, + [4523] = {.lex_state = 0}, + [4524] = {.lex_state = 71}, + [4525] = {.lex_state = 71}, + [4526] = {.lex_state = 0}, + [4527] = {.lex_state = 0}, + [4528] = {.lex_state = 0}, + [4529] = {.lex_state = 71}, + [4530] = {.lex_state = 0}, + [4531] = {.lex_state = 0}, + [4532] = {.lex_state = 0}, + [4533] = {.lex_state = 71}, + [4534] = {.lex_state = 0}, + [4535] = {.lex_state = 0}, + [4536] = {.lex_state = 71}, + [4537] = {.lex_state = 0}, + [4538] = {.lex_state = 0}, }; enum { @@ -10295,6 +10849,7 @@ enum { ts_external_token__template_chars = 1, ts_external_token_PIPE_PIPE = 2, ts_external_token__function_signature_automatic_semicolon = 3, + ts_external_token__call_type_arguments_closing_bracket = 4, }; static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -10302,14 +10857,16 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__template_chars] = sym__template_chars, [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, [ts_external_token__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, + [ts_external_token__call_type_arguments_closing_bracket] = sym__call_type_arguments_closing_bracket, }; -static bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token__template_chars] = true, [ts_external_token_PIPE_PIPE] = true, [ts_external_token__function_signature_automatic_semicolon] = true, + [ts_external_token__call_type_arguments_closing_bracket] = true, }, [2] = { [ts_external_token_PIPE_PIPE] = true, @@ -10327,10 +10884,17 @@ static bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__function_signature_automatic_semicolon] = true, }, [6] = { + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token__call_type_arguments_closing_bracket] = true, + }, + [7] = { + [ts_external_token__call_type_arguments_closing_bracket] = true, + }, + [8] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token__function_signature_automatic_semicolon] = true, }, - [7] = { + [9] = { [ts_external_token__template_chars] = true, }, }; @@ -10481,82 +11045,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1), [sym__template_chars] = ACTIONS(1), [sym__function_signature_automatic_semicolon] = ACTIONS(1), + [sym__call_type_arguments_closing_bracket] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3960), - [sym_export_statement] = STATE(20), - [sym__declaration] = STATE(20), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(2678), + [sym_program] = STATE(4288), + [sym_export_statement] = STATE(25), + [sym__declaration] = STATE(25), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(3088), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -10631,87 +11196,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [2] = { - [sym_export_statement] = STATE(26), - [sym__declaration] = STATE(26), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1831), - [sym_assignment_pattern] = STATE(3418), - [sym_array] = STATE(1748), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_spread_element] = STATE(3418), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1829), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_method_definition] = STATE(3418), - [sym_pair] = STATE(3418), - [sym__property_name] = STATE(2575), - [sym_computed_property_name] = STATE(2575), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_accessibility_modifier] = STATE(2200), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(2678), - [aux_sym_object_repeat1] = STATE(3400), + [sym_export_statement] = STATE(15), + [sym__declaration] = STATE(15), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1641), + [sym_assignment_pattern] = STATE(3910), + [sym_array] = STATE(1648), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_spread_element] = STATE(3910), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1601), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_method_definition] = STATE(3910), + [sym_pair] = STATE(3910), + [sym__property_name] = STATE(2896), + [sym_computed_property_name] = STATE(2896), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_accessibility_modifier] = STATE(2519), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3088), + [aux_sym_object_repeat1] = STATE(3901), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), @@ -10788,87 +11353,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(139), }, [3] = { - [sym_export_statement] = STATE(14), - [sym__declaration] = STATE(14), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1831), - [sym_assignment_pattern] = STATE(3411), - [sym_array] = STATE(1748), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_spread_element] = STATE(3411), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1829), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_method_definition] = STATE(3411), - [sym_pair] = STATE(3411), - [sym__property_name] = STATE(2575), - [sym_computed_property_name] = STATE(2575), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_accessibility_modifier] = STATE(2200), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2678), - [aux_sym_object_repeat1] = STATE(3415), + [sym_export_statement] = STATE(17), + [sym__declaration] = STATE(17), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1641), + [sym_assignment_pattern] = STATE(3782), + [sym_array] = STATE(1648), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_spread_element] = STATE(3782), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1601), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_method_definition] = STATE(3782), + [sym_pair] = STATE(3782), + [sym__property_name] = STATE(2896), + [sym_computed_property_name] = STATE(2896), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_accessibility_modifier] = STATE(2519), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3088), + [aux_sym_object_repeat1] = STATE(3796), [sym_identifier] = ACTIONS(141), [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), @@ -10945,95 +11510,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(165), }, [4] = { - [sym_export_statement] = STATE(27), - [sym__declaration] = STATE(27), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1831), - [sym_assignment_pattern] = STATE(3363), - [sym_array] = STATE(1748), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_spread_element] = STATE(3363), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1829), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_method_definition] = STATE(3363), - [sym_pair] = STATE(3363), - [sym__property_name] = STATE(2575), - [sym_computed_property_name] = STATE(2575), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_accessibility_modifier] = STATE(2200), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2678), - [aux_sym_object_repeat1] = STATE(3367), - [sym_identifier] = ACTIONS(167), - [anon_sym_export] = ACTIONS(169), + [sym_export_statement] = STATE(17), + [sym__declaration] = STATE(17), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1641), + [sym_assignment_pattern] = STATE(3782), + [sym_array] = STATE(1648), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_spread_element] = STATE(3782), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1601), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_method_definition] = STATE(3782), + [sym_pair] = STATE(3782), + [sym__property_name] = STATE(2896), + [sym_computed_property_name] = STATE(2896), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_accessibility_modifier] = STATE(2519), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3088), + [aux_sym_object_repeat1] = STATE(3796), + [sym_identifier] = ACTIONS(141), + [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_type] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(167), + [anon_sym_type] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -11060,7 +11625,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(177), + [anon_sym_async] = ACTIONS(151), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -11083,32 +11648,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(179), + [anon_sym_static] = ACTIONS(153), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(181), - [anon_sym_set] = ACTIONS(181), - [anon_sym_declare] = ACTIONS(183), - [anon_sym_public] = ACTIONS(185), - [anon_sym_private] = ACTIONS(185), - [anon_sym_protected] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_any] = ACTIONS(189), - [anon_sym_number] = ACTIONS(189), - [anon_sym_boolean] = ACTIONS(189), - [anon_sym_string] = ACTIONS(189), - [anon_sym_symbol] = ACTIONS(189), + [anon_sym_get] = ACTIONS(155), + [anon_sym_set] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_public] = ACTIONS(159), + [anon_sym_private] = ACTIONS(159), + [anon_sym_protected] = ACTIONS(159), + [anon_sym_module] = ACTIONS(161), + [anon_sym_any] = ACTIONS(163), + [anon_sym_number] = ACTIONS(163), + [anon_sym_boolean] = ACTIONS(163), + [anon_sym_string] = ACTIONS(163), + [anon_sym_symbol] = ACTIONS(163), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(191), + [sym_readonly] = ACTIONS(165), }, [5] = { [sym_export_statement] = STATE(21), [sym__declaration] = STATE(21), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(21), [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(21), [sym_if_statement] = STATE(21), [sym_switch_statement] = STATE(21), @@ -11125,72 +11690,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(21), [sym_empty_statement] = STATE(21), [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1831), - [sym_assignment_pattern] = STATE(3363), - [sym_array] = STATE(1748), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_spread_element] = STATE(3363), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1829), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_method_definition] = STATE(3363), - [sym_pair] = STATE(3363), - [sym__property_name] = STATE(2575), - [sym_computed_property_name] = STATE(2575), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_accessibility_modifier] = STATE(2200), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1641), + [sym_assignment_pattern] = STATE(3792), + [sym_array] = STATE(1648), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_spread_element] = STATE(3792), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1601), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_method_definition] = STATE(3792), + [sym_pair] = STATE(3792), + [sym__property_name] = STATE(2896), + [sym_computed_property_name] = STATE(2896), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_accessibility_modifier] = STATE(2519), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2678), - [aux_sym_object_repeat1] = STATE(3367), - [sym_identifier] = ACTIONS(167), - [anon_sym_export] = ACTIONS(169), + [aux_sym_export_statement_repeat1] = STATE(3088), + [aux_sym_object_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(169), + [anon_sym_export] = ACTIONS(171), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(173), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(193), - [anon_sym_type] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_type] = ACTIONS(177), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -11217,7 +11782,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(177), + [anon_sym_async] = ACTIONS(179), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -11240,114 +11805,114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(179), + [anon_sym_static] = ACTIONS(181), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(181), - [anon_sym_set] = ACTIONS(181), - [anon_sym_declare] = ACTIONS(183), - [anon_sym_public] = ACTIONS(185), - [anon_sym_private] = ACTIONS(185), - [anon_sym_protected] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_any] = ACTIONS(189), - [anon_sym_number] = ACTIONS(189), - [anon_sym_boolean] = ACTIONS(189), - [anon_sym_string] = ACTIONS(189), - [anon_sym_symbol] = ACTIONS(189), + [anon_sym_get] = ACTIONS(183), + [anon_sym_set] = ACTIONS(183), + [anon_sym_declare] = ACTIONS(185), + [anon_sym_public] = ACTIONS(187), + [anon_sym_private] = ACTIONS(187), + [anon_sym_protected] = ACTIONS(187), + [anon_sym_module] = ACTIONS(189), + [anon_sym_any] = ACTIONS(191), + [anon_sym_number] = ACTIONS(191), + [anon_sym_boolean] = ACTIONS(191), + [anon_sym_string] = ACTIONS(191), + [anon_sym_symbol] = ACTIONS(191), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(191), + [sym_readonly] = ACTIONS(193), }, [6] = { - [sym_export_statement] = STATE(27), - [sym__declaration] = STATE(27), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1831), - [sym_assignment_pattern] = STATE(3363), - [sym_array] = STATE(1748), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_spread_element] = STATE(3363), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1829), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_method_definition] = STATE(3363), - [sym_pair] = STATE(3363), - [sym__property_name] = STATE(2575), - [sym_computed_property_name] = STATE(2575), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_accessibility_modifier] = STATE(2200), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2678), - [aux_sym_object_repeat1] = STATE(3367), - [sym_identifier] = ACTIONS(167), - [anon_sym_export] = ACTIONS(169), + [sym_export_statement] = STATE(26), + [sym__declaration] = STATE(26), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1641), + [sym_assignment_pattern] = STATE(3782), + [sym_array] = STATE(1648), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_spread_element] = STATE(3782), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1601), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_method_definition] = STATE(3782), + [sym_pair] = STATE(3782), + [sym__property_name] = STATE(2896), + [sym_computed_property_name] = STATE(2896), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_accessibility_modifier] = STATE(2519), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3088), + [aux_sym_object_repeat1] = STATE(3796), + [sym_identifier] = ACTIONS(141), + [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), [anon_sym_RBRACE] = ACTIONS(195), - [anon_sym_type] = ACTIONS(175), + [anon_sym_type] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -11374,7 +11939,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(177), + [anon_sym_async] = ACTIONS(151), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -11397,32 +11962,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(179), + [anon_sym_static] = ACTIONS(153), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(181), - [anon_sym_set] = ACTIONS(181), - [anon_sym_declare] = ACTIONS(183), - [anon_sym_public] = ACTIONS(185), - [anon_sym_private] = ACTIONS(185), - [anon_sym_protected] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_any] = ACTIONS(189), - [anon_sym_number] = ACTIONS(189), - [anon_sym_boolean] = ACTIONS(189), - [anon_sym_string] = ACTIONS(189), - [anon_sym_symbol] = ACTIONS(189), + [anon_sym_get] = ACTIONS(155), + [anon_sym_set] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_public] = ACTIONS(159), + [anon_sym_private] = ACTIONS(159), + [anon_sym_protected] = ACTIONS(159), + [anon_sym_module] = ACTIONS(161), + [anon_sym_any] = ACTIONS(163), + [anon_sym_number] = ACTIONS(163), + [anon_sym_boolean] = ACTIONS(163), + [anon_sym_string] = ACTIONS(163), + [anon_sym_symbol] = ACTIONS(163), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(191), + [sym_readonly] = ACTIONS(165), }, [7] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11439,56 +12004,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [ts_builtin_sym_end] = ACTIONS(197), [sym_identifier] = ACTIONS(199), [anon_sym_export] = ACTIONS(202), @@ -11567,11 +12132,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [8] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11588,56 +12153,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(345), @@ -11715,11 +12280,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [9] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11736,56 +12301,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(349), @@ -11863,11 +12428,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [10] = { [sym_export_statement] = STATE(8), [sym__declaration] = STATE(8), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(8), [sym_expression_statement] = STATE(8), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(8), [sym_if_statement] = STATE(8), [sym_switch_statement] = STATE(8), @@ -11884,56 +12449,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(8), [sym_empty_statement] = STATE(8), [sym_labeled_statement] = STATE(8), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(353), @@ -12011,11 +12576,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [11] = { [sym_export_statement] = STATE(9), [sym__declaration] = STATE(9), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -12032,56 +12597,56 @@ static 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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(357), @@ -12157,84 +12722,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [12] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), - [ts_builtin_sym_end] = ACTIONS(361), + [sym_export_statement] = STATE(17), + [sym__declaration] = STATE(17), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(361), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12303,79 +12868,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [13] = { - [sym_export_statement] = STATE(17), - [sym__declaration] = STATE(17), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(2678), + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12449,79 +13014,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [14] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [sym_export_statement] = STATE(26), + [sym__declaration] = STATE(26), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12597,11 +13162,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [15] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -12618,56 +13183,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12743,11 +13308,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [16] = { [sym_export_statement] = STATE(15), [sym__declaration] = STATE(15), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(15), [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(15), [sym_if_statement] = STATE(15), [sym_switch_statement] = STATE(15), @@ -12764,56 +13329,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(15), [sym_empty_statement] = STATE(15), [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12889,11 +13454,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [17] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -12910,56 +13475,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13033,79 +13598,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [18] = { - [sym_export_statement] = STATE(12), - [sym__declaration] = STATE(12), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(2678), + [sym_export_statement] = STATE(28), + [sym__declaration] = STATE(28), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(3088), [ts_builtin_sym_end] = ACTIONS(373), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), @@ -13179,79 +13744,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [19] = { - [sym_export_statement] = STATE(14), - [sym__declaration] = STATE(14), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2678), + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13325,84 +13890,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [20] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), - [ts_builtin_sym_end] = ACTIONS(373), + [sym_export_statement] = STATE(23), + [sym__declaration] = STATE(23), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13473,11 +14038,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [21] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -13494,202 +14059,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_type] = 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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), - }, - [22] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13762,80 +14181,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [23] = { - [sym_export_statement] = STATE(21), - [sym__declaration] = STATE(21), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2678), + [22] = { + [sym_export_statement] = STATE(19), + [sym__declaration] = STATE(19), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13908,14 +14327,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [24] = { + [23] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -13932,56 +14351,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -14054,80 +14473,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [25] = { - [sym_export_statement] = STATE(26), - [sym__declaration] = STATE(26), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(2678), + [24] = { + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -14200,14 +14619,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [26] = { + [25] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -14224,61 +14643,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), + [ts_builtin_sym_end] = ACTIONS(373), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -14346,14 +14765,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [27] = { + [26] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1749), + [sym_import] = STATE(1630), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -14370,207 +14789,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2678), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_type] = 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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), - }, - [28] = { - [sym_export_statement] = STATE(27), - [sym__declaration] = STATE(27), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2678), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -14638,83 +14911,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [29] = { - [sym_export_statement] = STATE(640), - [sym__declaration] = STATE(640), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_for_in_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_with_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_debugger_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_empty_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), + [27] = { + [sym_export_statement] = STATE(21), + [sym__declaration] = STATE(21), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -14782,99 +15057,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [30] = { - [sym_export_statement] = STATE(640), - [sym__declaration] = STATE(640), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_for_in_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_with_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_debugger_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_empty_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [28] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(3088), + [ts_builtin_sym_end] = ACTIONS(391), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14885,9 +15162,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14908,97 +15185,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, - [31] = { - [sym_export_statement] = STATE(648), - [sym__declaration] = STATE(648), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(648), - [sym_expression_statement] = STATE(648), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(648), - [sym_if_statement] = STATE(648), - [sym_switch_statement] = STATE(648), - [sym_for_statement] = STATE(648), - [sym_for_in_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_statement] = STATE(648), - [sym_try_statement] = STATE(648), - [sym_with_statement] = STATE(648), - [sym_break_statement] = STATE(648), - [sym_continue_statement] = STATE(648), - [sym_debugger_statement] = STATE(648), - [sym_return_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym_empty_statement] = STATE(648), - [sym_labeled_statement] = STATE(648), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), + [29] = { + [sym_export_statement] = STATE(687), + [sym__declaration] = STATE(687), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(687), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(687), + [sym_if_statement] = STATE(687), + [sym_switch_statement] = STATE(687), + [sym_for_statement] = STATE(687), + [sym_for_in_statement] = STATE(687), + [sym_while_statement] = STATE(687), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(687), + [sym_with_statement] = STATE(687), + [sym_break_statement] = STATE(687), + [sym_continue_statement] = STATE(687), + [sym_debugger_statement] = STATE(687), + [sym_return_statement] = STATE(687), + [sym_throw_statement] = STATE(687), + [sym_empty_statement] = STATE(687), + [sym_labeled_statement] = STATE(687), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -15070,79 +15347,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [32] = { - [sym_export_statement] = STATE(627), - [sym__declaration] = STATE(627), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(627), - [sym_expression_statement] = STATE(627), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(627), - [sym_if_statement] = STATE(627), - [sym_switch_statement] = STATE(627), - [sym_for_statement] = STATE(627), - [sym_for_in_statement] = STATE(627), - [sym_while_statement] = STATE(627), - [sym_do_statement] = STATE(627), - [sym_try_statement] = STATE(627), - [sym_with_statement] = STATE(627), - [sym_break_statement] = STATE(627), - [sym_continue_statement] = STATE(627), - [sym_debugger_statement] = STATE(627), - [sym_return_statement] = STATE(627), - [sym_throw_statement] = STATE(627), - [sym_empty_statement] = STATE(627), - [sym_labeled_statement] = STATE(627), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), + [30] = { + [sym_export_statement] = STATE(724), + [sym__declaration] = STATE(724), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(724), + [sym_expression_statement] = STATE(724), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_switch_statement] = STATE(724), + [sym_for_statement] = STATE(724), + [sym_for_in_statement] = STATE(724), + [sym_while_statement] = STATE(724), + [sym_do_statement] = STATE(724), + [sym_try_statement] = STATE(724), + [sym_with_statement] = STATE(724), + [sym_break_statement] = STATE(724), + [sym_continue_statement] = STATE(724), + [sym_debugger_statement] = STATE(724), + [sym_return_statement] = STATE(724), + [sym_throw_statement] = STATE(724), + [sym_empty_statement] = STATE(724), + [sym_labeled_statement] = STATE(724), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15214,223 +15491,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [33] = { - [sym_export_statement] = STATE(667), - [sym__declaration] = STATE(667), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(667), - [sym_expression_statement] = STATE(667), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_switch_statement] = STATE(667), - [sym_for_statement] = STATE(667), - [sym_for_in_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_statement] = STATE(667), - [sym_try_statement] = STATE(667), - [sym_with_statement] = STATE(667), - [sym_break_statement] = STATE(667), - [sym_continue_statement] = STATE(667), - [sym_debugger_statement] = STATE(667), - [sym_return_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym_empty_statement] = STATE(667), - [sym_labeled_statement] = STATE(667), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), - [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(403), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), - }, - [34] = { - [sym_export_statement] = STATE(3327), - [sym__declaration] = STATE(3327), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(3327), - [sym_expression_statement] = STATE(3327), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(3327), - [sym_if_statement] = STATE(3327), - [sym_switch_statement] = STATE(3327), - [sym_for_statement] = STATE(3327), - [sym_for_in_statement] = STATE(3327), - [sym_while_statement] = STATE(3327), - [sym_do_statement] = STATE(3327), - [sym_try_statement] = STATE(3327), - [sym_with_statement] = STATE(3327), - [sym_break_statement] = STATE(3327), - [sym_continue_statement] = STATE(3327), - [sym_debugger_statement] = STATE(3327), - [sym_return_statement] = STATE(3327), - [sym_throw_statement] = STATE(3327), - [sym_empty_statement] = STATE(3327), - [sym_labeled_statement] = STATE(3327), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), + [31] = { + [sym_export_statement] = STATE(696), + [sym__declaration] = STATE(696), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(696), + [sym_expression_statement] = STATE(696), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(696), + [sym_if_statement] = STATE(696), + [sym_switch_statement] = STATE(696), + [sym_for_statement] = STATE(696), + [sym_for_in_statement] = STATE(696), + [sym_while_statement] = STATE(696), + [sym_do_statement] = STATE(696), + [sym_try_statement] = STATE(696), + [sym_with_statement] = STATE(696), + [sym_break_statement] = STATE(696), + [sym_continue_statement] = STATE(696), + [sym_debugger_statement] = STATE(696), + [sym_return_statement] = STATE(696), + [sym_throw_statement] = STATE(696), + [sym_empty_statement] = STATE(696), + [sym_labeled_statement] = STATE(696), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -15502,99 +15635,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(441), }, - [35] = { - [sym_export_statement] = STATE(642), - [sym__declaration] = STATE(642), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [32] = { + [sym_export_statement] = STATE(729), + [sym__declaration] = STATE(729), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(729), + [sym_expression_statement] = STATE(729), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(729), + [sym_if_statement] = STATE(729), + [sym_switch_statement] = STATE(729), + [sym_for_statement] = STATE(729), + [sym_for_in_statement] = STATE(729), + [sym_while_statement] = STATE(729), + [sym_do_statement] = STATE(729), + [sym_try_statement] = STATE(729), + [sym_with_statement] = STATE(729), + [sym_break_statement] = STATE(729), + [sym_continue_statement] = STATE(729), + [sym_debugger_statement] = STATE(729), + [sym_return_statement] = STATE(729), + [sym_throw_statement] = STATE(729), + [sym_empty_statement] = STATE(729), + [sym_labeled_statement] = STATE(729), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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(431), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15605,9 +15738,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -15628,97 +15761,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(93), }, - [36] = { - [sym_export_statement] = STATE(3396), - [sym__declaration] = STATE(3396), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(3396), - [sym_expression_statement] = STATE(3396), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(3396), - [sym_if_statement] = STATE(3396), - [sym_switch_statement] = STATE(3396), - [sym_for_statement] = STATE(3396), - [sym_for_in_statement] = STATE(3396), - [sym_while_statement] = STATE(3396), - [sym_do_statement] = STATE(3396), - [sym_try_statement] = STATE(3396), - [sym_with_statement] = STATE(3396), - [sym_break_statement] = STATE(3396), - [sym_continue_statement] = STATE(3396), - [sym_debugger_statement] = STATE(3396), - [sym_return_statement] = STATE(3396), - [sym_throw_statement] = STATE(3396), - [sym_empty_statement] = STATE(3396), - [sym_labeled_statement] = STATE(3396), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), + [33] = { + [sym_export_statement] = STATE(729), + [sym__declaration] = STATE(729), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(729), + [sym_expression_statement] = STATE(729), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(729), + [sym_if_statement] = STATE(729), + [sym_switch_statement] = STATE(729), + [sym_for_statement] = STATE(729), + [sym_for_in_statement] = STATE(729), + [sym_while_statement] = STATE(729), + [sym_do_statement] = STATE(729), + [sym_try_statement] = STATE(729), + [sym_with_statement] = STATE(729), + [sym_break_statement] = STATE(729), + [sym_continue_statement] = STATE(729), + [sym_debugger_statement] = STATE(729), + [sym_return_statement] = STATE(729), + [sym_throw_statement] = STATE(729), + [sym_empty_statement] = STATE(729), + [sym_labeled_statement] = STATE(729), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -15790,79 +15923,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(441), }, - [37] = { - [sym_export_statement] = STATE(642), - [sym__declaration] = STATE(642), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), + [34] = { + [sym_export_statement] = STATE(728), + [sym__declaration] = STATE(728), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_for_in_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_try_statement] = STATE(728), + [sym_with_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_debugger_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_throw_statement] = STATE(728), + [sym_empty_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15934,99 +16067,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [38] = { - [sym_export_statement] = STATE(601), - [sym__declaration] = STATE(601), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(601), - [sym_expression_statement] = STATE(601), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(601), - [sym_if_statement] = STATE(601), - [sym_switch_statement] = STATE(601), - [sym_for_statement] = STATE(601), - [sym_for_in_statement] = STATE(601), - [sym_while_statement] = STATE(601), - [sym_do_statement] = STATE(601), - [sym_try_statement] = STATE(601), - [sym_with_statement] = STATE(601), - [sym_break_statement] = STATE(601), - [sym_continue_statement] = STATE(601), - [sym_debugger_statement] = STATE(601), - [sym_return_statement] = STATE(601), - [sym_throw_statement] = STATE(601), - [sym_empty_statement] = STATE(601), - [sym_labeled_statement] = STATE(601), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [35] = { + [sym_export_statement] = STATE(739), + [sym__declaration] = STATE(739), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(739), + [sym_expression_statement] = STATE(739), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(739), + [sym_if_statement] = STATE(739), + [sym_switch_statement] = STATE(739), + [sym_for_statement] = STATE(739), + [sym_for_in_statement] = STATE(739), + [sym_while_statement] = STATE(739), + [sym_do_statement] = STATE(739), + [sym_try_statement] = STATE(739), + [sym_with_statement] = STATE(739), + [sym_break_statement] = STATE(739), + [sym_continue_statement] = STATE(739), + [sym_debugger_statement] = STATE(739), + [sym_return_statement] = STATE(739), + [sym_throw_statement] = STATE(739), + [sym_empty_statement] = STATE(739), + [sym_labeled_statement] = STATE(739), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [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(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16037,9 +16170,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -16060,117 +16193,117 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, - [39] = { - [sym_export_statement] = STATE(642), - [sym__declaration] = STATE(642), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [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(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), + [36] = { + [sym_export_statement] = STATE(687), + [sym__declaration] = STATE(687), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(687), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(687), + [sym_if_statement] = STATE(687), + [sym_switch_statement] = STATE(687), + [sym_for_statement] = STATE(687), + [sym_for_in_statement] = STATE(687), + [sym_while_statement] = STATE(687), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(687), + [sym_with_statement] = STATE(687), + [sym_break_statement] = STATE(687), + [sym_continue_statement] = STATE(687), + [sym_debugger_statement] = STATE(687), + [sym_return_statement] = STATE(687), + [sym_throw_statement] = STATE(687), + [sym_empty_statement] = STATE(687), + [sym_labeled_statement] = STATE(687), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [anon_sym_type] = ACTIONS(429), [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(403), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16182,7 +16315,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), + [anon_sym_async] = ACTIONS(439), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -16204,117 +16337,117 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(441), }, - [40] = { - [sym_export_statement] = STATE(665), - [sym__declaration] = STATE(665), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(665), - [sym_if_statement] = STATE(665), - [sym_switch_statement] = STATE(665), - [sym_for_statement] = STATE(665), - [sym_for_in_statement] = STATE(665), - [sym_while_statement] = STATE(665), - [sym_do_statement] = STATE(665), - [sym_try_statement] = STATE(665), - [sym_with_statement] = STATE(665), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(665), - [sym_debugger_statement] = STATE(665), - [sym_return_statement] = STATE(665), - [sym_throw_statement] = STATE(665), - [sym_empty_statement] = STATE(665), - [sym_labeled_statement] = STATE(665), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), + [37] = { + [sym_export_statement] = STATE(739), + [sym__declaration] = STATE(739), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(739), + [sym_expression_statement] = STATE(739), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(739), + [sym_if_statement] = STATE(739), + [sym_switch_statement] = STATE(739), + [sym_for_statement] = STATE(739), + [sym_for_in_statement] = STATE(739), + [sym_while_statement] = STATE(739), + [sym_do_statement] = STATE(739), + [sym_try_statement] = STATE(739), + [sym_with_statement] = STATE(739), + [sym_break_statement] = STATE(739), + [sym_continue_statement] = STATE(739), + [sym_debugger_statement] = STATE(739), + [sym_return_statement] = STATE(739), + [sym_throw_statement] = STATE(739), + [sym_empty_statement] = STATE(739), + [sym_labeled_statement] = STATE(739), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [anon_sym_type] = ACTIONS(429), [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(403), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16326,7 +16459,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), + [anon_sym_async] = ACTIONS(439), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -16348,97 +16481,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(441), }, - [41] = { - [sym_export_statement] = STATE(665), - [sym__declaration] = STATE(665), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(665), - [sym_if_statement] = STATE(665), - [sym_switch_statement] = STATE(665), - [sym_for_statement] = STATE(665), - [sym_for_in_statement] = STATE(665), - [sym_while_statement] = STATE(665), - [sym_do_statement] = STATE(665), - [sym_try_statement] = STATE(665), - [sym_with_statement] = STATE(665), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(665), - [sym_debugger_statement] = STATE(665), - [sym_return_statement] = STATE(665), - [sym_throw_statement] = STATE(665), - [sym_empty_statement] = STATE(665), - [sym_labeled_statement] = STATE(665), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), + [38] = { + [sym_export_statement] = STATE(719), + [sym__declaration] = STATE(719), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(719), + [sym_expression_statement] = STATE(719), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(719), + [sym_if_statement] = STATE(719), + [sym_switch_statement] = STATE(719), + [sym_for_statement] = STATE(719), + [sym_for_in_statement] = STATE(719), + [sym_while_statement] = STATE(719), + [sym_do_statement] = STATE(719), + [sym_try_statement] = STATE(719), + [sym_with_statement] = STATE(719), + [sym_break_statement] = STATE(719), + [sym_continue_statement] = STATE(719), + [sym_debugger_statement] = STATE(719), + [sym_return_statement] = STATE(719), + [sym_throw_statement] = STATE(719), + [sym_empty_statement] = STATE(719), + [sym_labeled_statement] = STATE(719), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -16510,79 +16643,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(441), }, - [42] = { - [sym_export_statement] = STATE(627), - [sym__declaration] = STATE(627), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(627), - [sym_expression_statement] = STATE(627), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(627), - [sym_if_statement] = STATE(627), - [sym_switch_statement] = STATE(627), - [sym_for_statement] = STATE(627), - [sym_for_in_statement] = STATE(627), - [sym_while_statement] = STATE(627), - [sym_do_statement] = STATE(627), - [sym_try_statement] = STATE(627), - [sym_with_statement] = STATE(627), - [sym_break_statement] = STATE(627), - [sym_continue_statement] = STATE(627), - [sym_debugger_statement] = STATE(627), - [sym_return_statement] = STATE(627), - [sym_throw_statement] = STATE(627), - [sym_empty_statement] = STATE(627), - [sym_labeled_statement] = STATE(627), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), + [39] = { + [sym_export_statement] = STATE(670), + [sym__declaration] = STATE(670), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_for_in_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_with_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_debugger_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_empty_statement] = STATE(670), + [sym_labeled_statement] = STATE(670), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -16654,79 +16787,367 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(441), }, - [43] = { - [sym_export_statement] = STATE(648), - [sym__declaration] = STATE(648), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(648), - [sym_expression_statement] = STATE(648), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(648), - [sym_if_statement] = STATE(648), - [sym_switch_statement] = STATE(648), - [sym_for_statement] = STATE(648), - [sym_for_in_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_statement] = STATE(648), - [sym_try_statement] = STATE(648), - [sym_with_statement] = STATE(648), - [sym_break_statement] = STATE(648), - [sym_continue_statement] = STATE(648), - [sym_debugger_statement] = STATE(648), - [sym_return_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym_empty_statement] = STATE(648), - [sym_labeled_statement] = STATE(648), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), + [40] = { + [sym_export_statement] = STATE(3917), + [sym__declaration] = STATE(3917), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(3917), + [sym_expression_statement] = STATE(3917), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(3917), + [sym_if_statement] = STATE(3917), + [sym_switch_statement] = STATE(3917), + [sym_for_statement] = STATE(3917), + [sym_for_in_statement] = STATE(3917), + [sym_while_statement] = STATE(3917), + [sym_do_statement] = STATE(3917), + [sym_try_statement] = STATE(3917), + [sym_with_statement] = STATE(3917), + [sym_break_statement] = STATE(3917), + [sym_continue_statement] = STATE(3917), + [sym_debugger_statement] = STATE(3917), + [sym_return_statement] = STATE(3917), + [sym_throw_statement] = STATE(3917), + [sym_empty_statement] = STATE(3917), + [sym_labeled_statement] = STATE(3917), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(429), + [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(431), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(435), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(437), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(439), + [anon_sym_function] = ACTIONS(415), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(441), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(441), + }, + [41] = { + [sym_export_statement] = STATE(719), + [sym__declaration] = STATE(719), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(719), + [sym_expression_statement] = STATE(719), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(719), + [sym_if_statement] = STATE(719), + [sym_switch_statement] = STATE(719), + [sym_for_statement] = STATE(719), + [sym_for_in_statement] = STATE(719), + [sym_while_statement] = STATE(719), + [sym_do_statement] = STATE(719), + [sym_try_statement] = STATE(719), + [sym_with_statement] = STATE(719), + [sym_break_statement] = STATE(719), + [sym_continue_statement] = STATE(719), + [sym_debugger_statement] = STATE(719), + [sym_return_statement] = STATE(719), + [sym_throw_statement] = STATE(719), + [sym_empty_statement] = STATE(719), + [sym_labeled_statement] = STATE(719), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), + [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(403), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(409), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(417), + }, + [42] = { + [sym_export_statement] = STATE(696), + [sym__declaration] = STATE(696), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(696), + [sym_expression_statement] = STATE(696), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(696), + [sym_if_statement] = STATE(696), + [sym_switch_statement] = STATE(696), + [sym_for_statement] = STATE(696), + [sym_for_in_statement] = STATE(696), + [sym_while_statement] = STATE(696), + [sym_do_statement] = STATE(696), + [sym_try_statement] = STATE(696), + [sym_with_statement] = STATE(696), + [sym_break_statement] = STATE(696), + [sym_continue_statement] = STATE(696), + [sym_debugger_statement] = STATE(696), + [sym_return_statement] = STATE(696), + [sym_throw_statement] = STATE(696), + [sym_empty_statement] = STATE(696), + [sym_labeled_statement] = STATE(696), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -16798,99 +17219,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [44] = { - [sym_export_statement] = STATE(635), - [sym__declaration] = STATE(635), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(635), - [sym_expression_statement] = STATE(635), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(635), - [sym_if_statement] = STATE(635), - [sym_switch_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_for_in_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_do_statement] = STATE(635), - [sym_try_statement] = STATE(635), - [sym_with_statement] = STATE(635), - [sym_break_statement] = STATE(635), - [sym_continue_statement] = STATE(635), - [sym_debugger_statement] = STATE(635), - [sym_return_statement] = STATE(635), - [sym_throw_statement] = STATE(635), - [sym_empty_statement] = STATE(635), - [sym_labeled_statement] = STATE(635), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), + [43] = { + [sym_export_statement] = STATE(728), + [sym__declaration] = STATE(728), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_for_in_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_try_statement] = STATE(728), + [sym_with_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_debugger_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_throw_statement] = STATE(728), + [sym_empty_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [anon_sym_type] = ACTIONS(401), [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(431), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16902,7 +17323,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), + [anon_sym_async] = ACTIONS(413), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -16924,97 +17345,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(417), }, - [45] = { - [sym_export_statement] = STATE(627), - [sym__declaration] = STATE(627), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(627), - [sym_expression_statement] = STATE(627), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(627), - [sym_if_statement] = STATE(627), - [sym_switch_statement] = STATE(627), - [sym_for_statement] = STATE(627), - [sym_for_in_statement] = STATE(627), - [sym_while_statement] = STATE(627), - [sym_do_statement] = STATE(627), - [sym_try_statement] = STATE(627), - [sym_with_statement] = STATE(627), - [sym_break_statement] = STATE(627), - [sym_continue_statement] = STATE(627), - [sym_debugger_statement] = STATE(627), - [sym_return_statement] = STATE(627), - [sym_throw_statement] = STATE(627), - [sym_empty_statement] = STATE(627), - [sym_labeled_statement] = STATE(627), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), + [44] = { + [sym_export_statement] = STATE(729), + [sym__declaration] = STATE(729), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(729), + [sym_expression_statement] = STATE(729), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(729), + [sym_if_statement] = STATE(729), + [sym_switch_statement] = STATE(729), + [sym_for_statement] = STATE(729), + [sym_for_in_statement] = STATE(729), + [sym_while_statement] = STATE(729), + [sym_do_statement] = STATE(729), + [sym_try_statement] = STATE(729), + [sym_with_statement] = STATE(729), + [sym_break_statement] = STATE(729), + [sym_continue_statement] = STATE(729), + [sym_debugger_statement] = STATE(729), + [sym_return_statement] = STATE(729), + [sym_throw_statement] = STATE(729), + [sym_empty_statement] = STATE(729), + [sym_labeled_statement] = STATE(729), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -17086,99 +17507,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [46] = { - [sym_export_statement] = STATE(578), - [sym__declaration] = STATE(578), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_for_in_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_with_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_debugger_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_empty_statement] = STATE(578), - [sym_labeled_statement] = STATE(578), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [45] = { + [sym_export_statement] = STATE(4252), + [sym__declaration] = STATE(4252), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(4252), + [sym_expression_statement] = STATE(4252), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_switch_statement] = STATE(4252), + [sym_for_statement] = STATE(4252), + [sym_for_in_statement] = STATE(4252), + [sym_while_statement] = STATE(4252), + [sym_do_statement] = STATE(4252), + [sym_try_statement] = STATE(4252), + [sym_with_statement] = STATE(4252), + [sym_break_statement] = STATE(4252), + [sym_continue_statement] = STATE(4252), + [sym_debugger_statement] = STATE(4252), + [sym_return_statement] = STATE(4252), + [sym_throw_statement] = STATE(4252), + [sym_empty_statement] = STATE(4252), + [sym_labeled_statement] = STATE(4252), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [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(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17189,9 +17610,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -17212,97 +17633,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, - [47] = { - [sym_export_statement] = STATE(640), - [sym__declaration] = STATE(640), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_for_in_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_with_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_debugger_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_empty_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), + [46] = { + [sym_export_statement] = STATE(3723), + [sym__declaration] = STATE(3723), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(3723), + [sym_expression_statement] = STATE(3723), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(3723), + [sym_if_statement] = STATE(3723), + [sym_switch_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_for_in_statement] = STATE(3723), + [sym_while_statement] = STATE(3723), + [sym_do_statement] = STATE(3723), + [sym_try_statement] = STATE(3723), + [sym_with_statement] = STATE(3723), + [sym_break_statement] = STATE(3723), + [sym_continue_statement] = STATE(3723), + [sym_debugger_statement] = STATE(3723), + [sym_return_statement] = STATE(3723), + [sym_throw_statement] = STATE(3723), + [sym_empty_statement] = STATE(3723), + [sym_labeled_statement] = STATE(3723), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -17374,79 +17795,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(441), }, - [48] = { - [sym_export_statement] = STATE(635), - [sym__declaration] = STATE(635), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(635), - [sym_expression_statement] = STATE(635), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(635), - [sym_if_statement] = STATE(635), - [sym_switch_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_for_in_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_do_statement] = STATE(635), - [sym_try_statement] = STATE(635), - [sym_with_statement] = STATE(635), - [sym_break_statement] = STATE(635), - [sym_continue_statement] = STATE(635), - [sym_debugger_statement] = STATE(635), - [sym_return_statement] = STATE(635), - [sym_throw_statement] = STATE(635), - [sym_empty_statement] = STATE(635), - [sym_labeled_statement] = STATE(635), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), + [47] = { + [sym_export_statement] = STATE(660), + [sym__declaration] = STATE(660), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [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(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -17518,79 +17939,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [49] = { - [sym_export_statement] = STATE(665), - [sym__declaration] = STATE(665), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(665), - [sym_if_statement] = STATE(665), - [sym_switch_statement] = STATE(665), - [sym_for_statement] = STATE(665), - [sym_for_in_statement] = STATE(665), - [sym_while_statement] = STATE(665), - [sym_do_statement] = STATE(665), - [sym_try_statement] = STATE(665), - [sym_with_statement] = STATE(665), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(665), - [sym_debugger_statement] = STATE(665), - [sym_return_statement] = STATE(665), - [sym_throw_statement] = STATE(665), - [sym_empty_statement] = STATE(665), - [sym_labeled_statement] = STATE(665), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), + [48] = { + [sym_export_statement] = STATE(670), + [sym__declaration] = STATE(670), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_for_in_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_with_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_debugger_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_empty_statement] = STATE(670), + [sym_labeled_statement] = STATE(670), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -17662,99 +18083,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [50] = { - [sym_export_statement] = STATE(667), - [sym__declaration] = STATE(667), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(667), - [sym_expression_statement] = STATE(667), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_switch_statement] = STATE(667), - [sym_for_statement] = STATE(667), - [sym_for_in_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_statement] = STATE(667), - [sym_try_statement] = STATE(667), - [sym_with_statement] = STATE(667), - [sym_break_statement] = STATE(667), - [sym_continue_statement] = STATE(667), - [sym_debugger_statement] = STATE(667), - [sym_return_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym_empty_statement] = STATE(667), - [sym_labeled_statement] = STATE(667), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(105), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2678), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [49] = { + [sym_export_statement] = STATE(724), + [sym__declaration] = STATE(724), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(724), + [sym_expression_statement] = STATE(724), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_switch_statement] = STATE(724), + [sym_for_statement] = STATE(724), + [sym_for_in_statement] = STATE(724), + [sym_while_statement] = STATE(724), + [sym_do_statement] = STATE(724), + [sym_try_statement] = STATE(724), + [sym_with_statement] = STATE(724), + [sym_break_statement] = STATE(724), + [sym_continue_statement] = STATE(724), + [sym_debugger_statement] = STATE(724), + [sym_return_statement] = STATE(724), + [sym_throw_statement] = STATE(724), + [sym_empty_statement] = STATE(724), + [sym_labeled_statement] = STATE(724), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(429), [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(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17765,9 +18186,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(439), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -17788,117 +18209,117 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(441), }, - [51] = { - [sym_export_statement] = STATE(648), - [sym__declaration] = STATE(648), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(648), - [sym_expression_statement] = STATE(648), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(648), - [sym_if_statement] = STATE(648), - [sym_switch_statement] = STATE(648), - [sym_for_statement] = STATE(648), - [sym_for_in_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_statement] = STATE(648), - [sym_try_statement] = STATE(648), - [sym_with_statement] = STATE(648), - [sym_break_statement] = STATE(648), - [sym_continue_statement] = STATE(648), - [sym_debugger_statement] = STATE(648), - [sym_return_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym_empty_statement] = STATE(648), - [sym_labeled_statement] = STATE(648), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [50] = { + [sym_export_statement] = STATE(739), + [sym__declaration] = STATE(739), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(739), + [sym_expression_statement] = STATE(739), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(739), + [sym_if_statement] = STATE(739), + [sym_switch_statement] = STATE(739), + [sym_for_statement] = STATE(739), + [sym_for_in_statement] = STATE(739), + [sym_while_statement] = STATE(739), + [sym_do_statement] = STATE(739), + [sym_try_statement] = STATE(739), + [sym_with_statement] = STATE(739), + [sym_break_statement] = STATE(739), + [sym_continue_statement] = STATE(739), + [sym_debugger_statement] = STATE(739), + [sym_return_statement] = STATE(739), + [sym_throw_statement] = STATE(739), + [sym_empty_statement] = STATE(739), + [sym_labeled_statement] = STATE(739), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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(431), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17909,9 +18330,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -17932,97 +18353,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(93), }, - [52] = { - [sym_export_statement] = STATE(635), - [sym__declaration] = STATE(635), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(635), - [sym_expression_statement] = STATE(635), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(635), - [sym_if_statement] = STATE(635), - [sym_switch_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_for_in_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_do_statement] = STATE(635), - [sym_try_statement] = STATE(635), - [sym_with_statement] = STATE(635), - [sym_break_statement] = STATE(635), - [sym_continue_statement] = STATE(635), - [sym_debugger_statement] = STATE(635), - [sym_return_statement] = STATE(635), - [sym_throw_statement] = STATE(635), - [sym_empty_statement] = STATE(635), - [sym_labeled_statement] = STATE(635), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), + [51] = { + [sym_export_statement] = STATE(724), + [sym__declaration] = STATE(724), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(724), + [sym_expression_statement] = STATE(724), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_switch_statement] = STATE(724), + [sym_for_statement] = STATE(724), + [sym_for_in_statement] = STATE(724), + [sym_while_statement] = STATE(724), + [sym_do_statement] = STATE(724), + [sym_try_statement] = STATE(724), + [sym_with_statement] = STATE(724), + [sym_break_statement] = STATE(724), + [sym_continue_statement] = STATE(724), + [sym_debugger_statement] = STATE(724), + [sym_return_statement] = STATE(724), + [sym_throw_statement] = STATE(724), + [sym_empty_statement] = STATE(724), + [sym_labeled_statement] = STATE(724), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -18094,99 +18515,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [53] = { - [sym_export_statement] = STATE(667), - [sym__declaration] = STATE(667), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(667), - [sym_expression_statement] = STATE(667), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_switch_statement] = STATE(667), - [sym_for_statement] = STATE(667), - [sym_for_in_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_statement] = STATE(667), - [sym_try_statement] = STATE(667), - [sym_with_statement] = STATE(667), - [sym_break_statement] = STATE(667), - [sym_continue_statement] = STATE(667), - [sym_debugger_statement] = STATE(667), - [sym_return_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym_empty_statement] = STATE(667), - [sym_labeled_statement] = STATE(667), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [52] = { + [sym_export_statement] = STATE(687), + [sym__declaration] = STATE(687), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(687), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(687), + [sym_if_statement] = STATE(687), + [sym_switch_statement] = STATE(687), + [sym_for_statement] = STATE(687), + [sym_for_in_statement] = STATE(687), + [sym_while_statement] = STATE(687), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(687), + [sym_with_statement] = STATE(687), + [sym_break_statement] = STATE(687), + [sym_continue_statement] = STATE(687), + [sym_debugger_statement] = STATE(687), + [sym_return_statement] = STATE(687), + [sym_throw_statement] = STATE(687), + [sym_empty_statement] = STATE(687), + [sym_labeled_statement] = STATE(687), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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(431), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18197,9 +18618,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -18220,97 +18641,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(93), }, - [54] = { - [sym_export_statement] = STATE(3843), - [sym__declaration] = STATE(3843), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(3843), - [sym_expression_statement] = STATE(3843), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(3843), - [sym_if_statement] = STATE(3843), - [sym_switch_statement] = STATE(3843), - [sym_for_statement] = STATE(3843), - [sym_for_in_statement] = STATE(3843), - [sym_while_statement] = STATE(3843), - [sym_do_statement] = STATE(3843), - [sym_try_statement] = STATE(3843), - [sym_with_statement] = STATE(3843), - [sym_break_statement] = STATE(3843), - [sym_continue_statement] = STATE(3843), - [sym_debugger_statement] = STATE(3843), - [sym_return_statement] = STATE(3843), - [sym_throw_statement] = STATE(3843), - [sym_empty_statement] = STATE(3843), - [sym_labeled_statement] = STATE(3843), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), + [53] = { + [sym_export_statement] = STATE(670), + [sym__declaration] = STATE(670), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_for_in_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_with_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_debugger_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_empty_statement] = STATE(670), + [sym_labeled_statement] = STATE(670), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -18382,79 +18803,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [55] = { - [sym_export_statement] = STATE(601), - [sym__declaration] = STATE(601), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(601), - [sym_expression_statement] = STATE(601), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(601), - [sym_if_statement] = STATE(601), - [sym_switch_statement] = STATE(601), - [sym_for_statement] = STATE(601), - [sym_for_in_statement] = STATE(601), - [sym_while_statement] = STATE(601), - [sym_do_statement] = STATE(601), - [sym_try_statement] = STATE(601), - [sym_with_statement] = STATE(601), - [sym_break_statement] = STATE(601), - [sym_continue_statement] = STATE(601), - [sym_debugger_statement] = STATE(601), - [sym_return_statement] = STATE(601), - [sym_throw_statement] = STATE(601), - [sym_empty_statement] = STATE(601), - [sym_labeled_statement] = STATE(601), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2709), + [54] = { + [sym_export_statement] = STATE(728), + [sym__declaration] = STATE(728), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_for_in_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_try_statement] = STATE(728), + [sym_with_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_debugger_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_throw_statement] = STATE(728), + [sym_empty_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3126), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -18526,79 +18947,223 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(441), }, + [55] = { + [sym_export_statement] = STATE(719), + [sym__declaration] = STATE(719), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(719), + [sym_expression_statement] = STATE(719), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(719), + [sym_if_statement] = STATE(719), + [sym_switch_statement] = STATE(719), + [sym_for_statement] = STATE(719), + [sym_for_in_statement] = STATE(719), + [sym_while_statement] = STATE(719), + [sym_do_statement] = STATE(719), + [sym_try_statement] = STATE(719), + [sym_with_statement] = STATE(719), + [sym_break_statement] = STATE(719), + [sym_continue_statement] = STATE(719), + [sym_debugger_statement] = STATE(719), + [sym_return_statement] = STATE(719), + [sym_throw_statement] = STATE(719), + [sym_empty_statement] = STATE(719), + [sym_labeled_statement] = STATE(719), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(103), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3088), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), + }, [56] = { - [sym_export_statement] = STATE(601), - [sym__declaration] = STATE(601), - [sym_import] = STATE(1749), - [sym_import_statement] = STATE(601), - [sym_expression_statement] = STATE(601), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_statement_block] = STATE(601), - [sym_if_statement] = STATE(601), - [sym_switch_statement] = STATE(601), - [sym_for_statement] = STATE(601), - [sym_for_in_statement] = STATE(601), - [sym_while_statement] = STATE(601), - [sym_do_statement] = STATE(601), - [sym_try_statement] = STATE(601), - [sym_with_statement] = STATE(601), - [sym_break_statement] = STATE(601), - [sym_continue_statement] = STATE(601), - [sym_debugger_statement] = STATE(601), - [sym_return_statement] = STATE(601), - [sym_throw_statement] = STATE(601), - [sym_empty_statement] = STATE(601), - [sym_labeled_statement] = STATE(601), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_class_declaration] = STATE(623), - [sym_function] = STATE(1749), - [sym_function_declaration] = STATE(623), - [sym_generator_function] = STATE(1749), - [sym_generator_function_declaration] = STATE(623), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_function_signature] = STATE(623), - [sym_as_expression] = STATE(1764), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(1676), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2726), + [sym_export_statement] = STATE(696), + [sym__declaration] = STATE(696), + [sym_import] = STATE(1630), + [sym_import_statement] = STATE(696), + [sym_expression_statement] = STATE(696), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_statement_block] = STATE(696), + [sym_if_statement] = STATE(696), + [sym_switch_statement] = STATE(696), + [sym_for_statement] = STATE(696), + [sym_for_in_statement] = STATE(696), + [sym_while_statement] = STATE(696), + [sym_do_statement] = STATE(696), + [sym_try_statement] = STATE(696), + [sym_with_statement] = STATE(696), + [sym_break_statement] = STATE(696), + [sym_continue_statement] = STATE(696), + [sym_debugger_statement] = STATE(696), + [sym_return_statement] = STATE(696), + [sym_throw_statement] = STATE(696), + [sym_empty_statement] = STATE(696), + [sym_labeled_statement] = STATE(696), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_class_declaration] = STATE(672), + [sym_function] = STATE(1630), + [sym_function_declaration] = STATE(672), + [sym_generator_function] = STATE(1630), + [sym_generator_function_declaration] = STATE(672), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(672), + [sym_as_expression] = STATE(1948), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(2065), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3038), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -18671,79 +19236,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(417), }, [57] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1497), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3307), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3844), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3308), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2282), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4299), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -18807,78 +19372,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [58] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1507), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3375), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3374), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2252), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4299), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -18893,7 +19459,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(527), + [anon_sym_RBRACK] = ACTIONS(473), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), @@ -18942,78 +19508,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [59] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1507), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3375), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3234), - [sym_optional_type] = STATE(3234), - [sym_rest_type] = STATE(3234), - [sym__tuple_type_member] = STATE(3234), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3374), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2326), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3925), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3845), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -19028,7 +19594,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(529), + [anon_sym_RBRACK] = ACTIONS(527), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), @@ -19077,78 +19643,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [60] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1474), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3414), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3410), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2326), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3925), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3845), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -19163,7 +19729,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(531), + [anon_sym_RBRACK] = ACTIONS(529), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), @@ -19212,78 +19778,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [61] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1507), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3375), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3374), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2256), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -19298,7 +19864,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(533), + [anon_sym_RBRACK] = ACTIONS(473), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), @@ -19347,78 +19913,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [62] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1517), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3406), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3402), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2326), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3925), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3845), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -19433,7 +19999,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(535), + [anon_sym_RBRACK] = ACTIONS(531), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), @@ -19482,78 +20048,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [63] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1507), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3375), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3374), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2326), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3925), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3914), + [sym_optional_type] = STATE(3914), + [sym_rest_type] = STATE(3914), + [sym__tuple_type_member] = STATE(3914), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3845), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -19568,7 +20134,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(537), + [anon_sym_RBRACK] = ACTIONS(533), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), @@ -19617,84 +20183,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [64] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1517), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3406), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3402), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2333), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4299), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3914), + [sym_optional_type] = STATE(3914), + [sym_rest_type] = STATE(3914), + [sym__tuple_type_member] = STATE(3914), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), [anon_sym_namespace] = ACTIONS(453), [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(459), [anon_sym_import] = ACTIONS(461), @@ -19703,14 +20267,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(539), + [anon_sym_RBRACK] = ACTIONS(535), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), @@ -19752,84 +20316,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [65] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1493), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3307), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3308), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2333), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4299), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3281), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4048), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [aux_sym_export_statement_repeat1] = STATE(3646), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), [anon_sym_namespace] = ACTIONS(453), [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(459), [anon_sym_import] = ACTIONS(461), @@ -19838,14 +20400,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(539), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), @@ -19887,105 +20449,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [66] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1507), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3375), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3374), - [sym_identifier] = ACTIONS(447), - [anon_sym_export] = ACTIONS(449), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2328), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3784), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1549), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3324), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3546), + [sym_constructor_type] = STATE(3546), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3546), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4063), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3546), + [sym_intersection_type] = STATE(3546), + [sym_function_type] = STATE(3546), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(459), + [anon_sym_type] = ACTIONS(543), + [anon_sym_typeof] = ACTIONS(549), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(551), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(487), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [anon_sym_new] = ACTIONS(557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(497), [anon_sym_delete] = ACTIONS(499), @@ -19995,412 +20555,519 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(509), - [sym_this] = ACTIONS(511), + [sym_number] = ACTIONS(569), + [sym_this] = ACTIONS(571), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(515), - [sym_false] = ACTIONS(515), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(517), - [anon_sym_number] = ACTIONS(517), - [anon_sym_boolean] = ACTIONS(517), - [anon_sym_string] = ACTIONS(517), - [anon_sym_symbol] = ACTIONS(517), - [sym_readonly] = ACTIONS(519), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(577), + [anon_sym_number] = ACTIONS(577), + [anon_sym_boolean] = ACTIONS(577), + [anon_sym_string] = ACTIONS(577), + [anon_sym_symbol] = ACTIONS(577), + [sym_readonly] = ACTIONS(579), [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(523), + [anon_sym_keyof] = ACTIONS(581), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [67] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1507), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3375), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3374), - [sym_identifier] = ACTIONS(447), - [anon_sym_export] = ACTIONS(449), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2181), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1610), + [sym_array] = STATE(1604), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4365), + [sym_string] = STATE(1549), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3324), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3546), + [sym_constructor_type] = STATE(3546), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3546), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4063), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3546), + [sym_intersection_type] = STATE(3546), + [sym_function_type] = STATE(3546), + [aux_sym_export_statement_repeat1] = STATE(2400), + [sym_identifier] = ACTIONS(583), + [anon_sym_export] = ACTIONS(585), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(459), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_type] = ACTIONS(585), + [anon_sym_typeof] = ACTIONS(589), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(591), [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(487), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(607), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(509), - [sym_this] = ACTIONS(511), + [sym_number] = ACTIONS(569), + [sym_this] = ACTIONS(613), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(515), - [sym_false] = ACTIONS(515), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(517), - [anon_sym_number] = ACTIONS(517), - [anon_sym_boolean] = ACTIONS(517), - [anon_sym_string] = ACTIONS(517), - [anon_sym_symbol] = ACTIONS(517), - [sym_readonly] = ACTIONS(519), + [anon_sym_static] = ACTIONS(585), + [anon_sym_get] = ACTIONS(585), + [anon_sym_set] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(585), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(585), + [anon_sym_any] = ACTIONS(617), + [anon_sym_number] = ACTIONS(617), + [anon_sym_boolean] = ACTIONS(617), + [anon_sym_string] = ACTIONS(617), + [anon_sym_symbol] = ACTIONS(617), + [sym_readonly] = ACTIONS(619), [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(523), + [anon_sym_keyof] = ACTIONS(581), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [68] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1668), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3844), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3234), - [sym_optional_type] = STATE(3234), - [sym_rest_type] = STATE(3234), - [sym__tuple_type_member] = STATE(3234), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(447), - [anon_sym_export] = ACTIONS(449), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2181), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1610), + [sym_array] = STATE(1604), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4365), + [sym_string] = STATE(1549), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3324), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3640), + [sym_constructor_type] = STATE(3640), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3640), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4063), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3640), + [sym_intersection_type] = STATE(3640), + [sym_function_type] = STATE(3640), + [aux_sym_export_statement_repeat1] = STATE(2400), + [sym_identifier] = ACTIONS(583), + [anon_sym_export] = ACTIONS(585), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(459), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_type] = ACTIONS(585), + [anon_sym_typeof] = ACTIONS(589), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(591), [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(545), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(607), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(509), - [sym_this] = ACTIONS(511), + [sym_number] = ACTIONS(569), + [sym_this] = ACTIONS(613), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(515), - [sym_false] = ACTIONS(515), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(517), - [anon_sym_number] = ACTIONS(517), - [anon_sym_boolean] = ACTIONS(517), - [anon_sym_string] = ACTIONS(517), - [anon_sym_symbol] = ACTIONS(517), - [sym_readonly] = ACTIONS(519), + [anon_sym_static] = ACTIONS(585), + [anon_sym_get] = ACTIONS(585), + [anon_sym_set] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(585), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(585), + [anon_sym_any] = ACTIONS(617), + [anon_sym_number] = ACTIONS(617), + [anon_sym_boolean] = ACTIONS(617), + [anon_sym_string] = ACTIONS(617), + [anon_sym_symbol] = ACTIONS(617), + [sym_readonly] = ACTIONS(619), [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(523), + [anon_sym_keyof] = ACTIONS(581), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [69] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1668), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3844), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(447), + [sym_template_string] = STATE(121), + [sym_arguments] = STATE(121), + [sym_type_arguments] = STATE(530), + [sym_call_type_arguments] = STATE(3480), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [anon_sym_export] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_default] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_as] = ACTIONS(625), + [anon_sym_namespace] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_typeof] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_var] = ACTIONS(623), + [anon_sym_let] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_else] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [anon_sym_in] = ACTIONS(625), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(623), + [anon_sym_try] = ACTIONS(623), + [anon_sym_with] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_debugger] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_throw] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_case] = ACTIONS(623), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(629), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(623), + [anon_sym_function] = ACTIONS(623), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_QMARK_DOT] = ACTIONS(633), + [anon_sym_new] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_STAR_STAR_EQ] = ACTIONS(635), + [anon_sym_AMP_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(635), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(625), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_STAR_STAR] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_QMARK_QMARK] = ACTIONS(625), + [anon_sym_instanceof] = ACTIONS(625), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_void] = ACTIONS(623), + [anon_sym_delete] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(621), + [sym_this] = ACTIONS(623), + [sym_super] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_static] = ACTIONS(623), + [anon_sym_abstract] = ACTIONS(623), + [anon_sym_get] = ACTIONS(623), + [anon_sym_set] = ACTIONS(623), + [anon_sym_declare] = ACTIONS(623), + [anon_sym_public] = ACTIONS(623), + [anon_sym_private] = ACTIONS(623), + [anon_sym_protected] = ACTIONS(623), + [anon_sym_module] = ACTIONS(623), + [anon_sym_any] = ACTIONS(623), + [anon_sym_number] = ACTIONS(623), + [anon_sym_boolean] = ACTIONS(623), + [anon_sym_string] = ACTIONS(623), + [anon_sym_symbol] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_extends] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [sym_readonly] = ACTIONS(623), + }, + [70] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2356), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4284), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1468), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3295), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2592), + [sym__type] = STATE(2733), + [sym_constructor_type] = STATE(2733), + [sym__primary_type] = STATE(2640), + [sym_infer_type] = STATE(2733), + [sym_conditional_type] = STATE(2640), + [sym_generic_type] = STATE(2640), + [sym_type_query] = STATE(2640), + [sym_index_type_query] = STATE(2640), + [sym_lookup_type] = STATE(2640), + [sym_literal_type] = STATE(2640), + [sym__number] = STATE(2635), + [sym_existential_type] = STATE(2640), + [sym_flow_maybe_type] = STATE(2640), + [sym_parenthesized_type] = STATE(2640), + [sym_predefined_type] = STATE(2640), + [sym_object_type] = STATE(2640), + [sym_type_parameters] = STATE(4164), + [sym_array_type] = STATE(2640), + [sym__tuple_type_body] = STATE(2641), + [sym_tuple_type] = STATE(2640), + [sym_union_type] = STATE(2733), + [sym_intersection_type] = STATE(2733), + [sym_function_type] = STATE(2733), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(639), [anon_sym_export] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(641), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(643), [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(459), + [anon_sym_typeof] = ACTIONS(645), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(647), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(649), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [anon_sym_new] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), + [anon_sym_void] = ACTIONS(661), [anon_sym_delete] = ACTIONS(499), [anon_sym_PLUS_PLUS] = ACTIONS(501), [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(509), - [sym_this] = ACTIONS(511), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(665), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(515), - [sym_false] = ACTIONS(515), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), @@ -20412,114 +21079,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(449), [anon_sym_protected] = ACTIONS(449), [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(517), - [anon_sym_number] = ACTIONS(517), - [anon_sym_boolean] = ACTIONS(517), - [anon_sym_string] = ACTIONS(517), - [anon_sym_symbol] = ACTIONS(517), - [sym_readonly] = ACTIONS(519), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(523), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_any] = ACTIONS(669), + [anon_sym_number] = ACTIONS(669), + [anon_sym_boolean] = ACTIONS(669), + [anon_sym_string] = ACTIONS(669), + [anon_sym_symbol] = ACTIONS(669), + [sym_readonly] = ACTIONS(671), + [anon_sym_infer] = ACTIONS(673), + [anon_sym_keyof] = ACTIONS(675), + [anon_sym_LBRACE_PIPE] = ACTIONS(677), }, - [70] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1709), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3717), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(447), + [71] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2178), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3324), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(2555), + [sym__type] = STATE(3278), + [sym_constructor_type] = STATE(3278), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3278), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4063), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3278), + [sym_intersection_type] = STATE(3278), + [sym_function_type] = STATE(3278), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(679), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(681), [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(459), + [anon_sym_typeof] = ACTIONS(683), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(465), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(685), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [anon_sym_new] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(497), [anon_sym_delete] = ACTIONS(499), @@ -20529,11 +21185,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(509), - [sym_this] = ACTIONS(511), + [sym_number] = ACTIONS(689), + [sym_this] = ACTIONS(691), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(515), - [sym_false] = ACTIONS(515), + [sym_true] = ACTIONS(693), + [sym_false] = ACTIONS(693), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), @@ -20545,116 +21201,470 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(449), [anon_sym_protected] = ACTIONS(449), [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(517), - [anon_sym_number] = ACTIONS(517), - [anon_sym_boolean] = ACTIONS(517), - [anon_sym_string] = ACTIONS(517), - [anon_sym_symbol] = ACTIONS(517), + [anon_sym_any] = ACTIONS(695), + [anon_sym_number] = ACTIONS(695), + [anon_sym_boolean] = ACTIONS(695), + [anon_sym_string] = ACTIONS(695), + [anon_sym_symbol] = ACTIONS(695), [sym_readonly] = ACTIONS(519), [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(523), + [anon_sym_keyof] = ACTIONS(581), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [71] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1610), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3795), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3592), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(447), + [72] = { + [sym_object] = STATE(3273), + [sym_array] = STATE(3275), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(4316), + [sym_nested_type_identifier] = STATE(2555), + [sym__type] = STATE(3734), + [sym_constructor_type] = STATE(3734), + [sym__primary_type] = STATE(3688), + [sym_infer_type] = STATE(3734), + [sym_conditional_type] = STATE(3688), + [sym_generic_type] = STATE(3688), + [sym_type_query] = STATE(3688), + [sym_index_type_query] = STATE(3688), + [sym_lookup_type] = STATE(3688), + [sym_literal_type] = STATE(3688), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(3688), + [sym_flow_maybe_type] = STATE(3688), + [sym_parenthesized_type] = STATE(3688), + [sym_predefined_type] = STATE(3688), + [sym_call_type_arguments] = STATE(3593), + [sym_object_type] = STATE(3688), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(3688), + [sym__tuple_type_body] = STATE(565), + [sym_tuple_type] = STATE(3688), + [sym_union_type] = STATE(3734), + [sym_intersection_type] = STATE(3734), + [sym_function_type] = STATE(3734), + [sym_identifier] = ACTIONS(697), + [anon_sym_export] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(699), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(723), + [anon_sym_async] = ACTIONS(699), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_new] = ACTIONS(729), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(739), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_void] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(751), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_static] = ACTIONS(699), + [anon_sym_get] = ACTIONS(699), + [anon_sym_set] = ACTIONS(699), + [anon_sym_declare] = ACTIONS(699), + [anon_sym_public] = ACTIONS(699), + [anon_sym_private] = ACTIONS(699), + [anon_sym_protected] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [sym_readonly] = ACTIONS(757), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), + }, + [73] = { + [sym_object] = STATE(3273), + [sym_array] = STATE(3275), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(4316), + [sym_nested_type_identifier] = STATE(2555), + [sym__type] = STATE(3734), + [sym_constructor_type] = STATE(3734), + [sym__primary_type] = STATE(3688), + [sym_infer_type] = STATE(3734), + [sym_conditional_type] = STATE(3688), + [sym_generic_type] = STATE(3688), + [sym_type_query] = STATE(3688), + [sym_index_type_query] = STATE(3688), + [sym_lookup_type] = STATE(3688), + [sym_literal_type] = STATE(3688), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(3688), + [sym_flow_maybe_type] = STATE(3688), + [sym_parenthesized_type] = STATE(3688), + [sym_predefined_type] = STATE(3688), + [sym_call_type_arguments] = STATE(3593), + [sym_object_type] = STATE(3688), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(3688), + [sym__tuple_type_body] = STATE(565), + [sym_tuple_type] = STATE(3688), + [sym_union_type] = STATE(3734), + [sym_intersection_type] = STATE(3734), + [sym_function_type] = STATE(3734), + [sym_identifier] = ACTIONS(697), + [anon_sym_export] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(699), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(723), + [anon_sym_async] = ACTIONS(699), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_new] = ACTIONS(729), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(739), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_void] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(751), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_static] = ACTIONS(699), + [anon_sym_get] = ACTIONS(699), + [anon_sym_set] = ACTIONS(699), + [anon_sym_declare] = ACTIONS(699), + [anon_sym_public] = ACTIONS(699), + [anon_sym_private] = ACTIONS(699), + [anon_sym_protected] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [sym_readonly] = ACTIONS(757), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), + }, + [74] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1936), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_await] = ACTIONS(786), + [anon_sym_in] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(796), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), + }, + [75] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2174), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_as] = ACTIONS(772), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(459), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(778), [anon_sym_await] = ACTIONS(467), + [anon_sym_in] = ACTIONS(772), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(772), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(772), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), + [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), [anon_sym_PLUS_PLUS] = ACTIONS(501), [anon_sym_DASH_DASH] = ACTIONS(501), @@ -20662,11 +21672,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(509), - [sym_this] = ACTIONS(511), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(515), - [sym_false] = ACTIONS(515), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), @@ -20678,376 +21688,5729 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(449), [anon_sym_protected] = ACTIONS(449), [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(517), - [anon_sym_number] = ACTIONS(517), - [anon_sym_boolean] = ACTIONS(517), - [anon_sym_string] = ACTIONS(517), - [anon_sym_symbol] = ACTIONS(517), - [sym_readonly] = ACTIONS(519), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(523), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [72] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1425), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1877), - [sym_array] = STATE(1880), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3848), - [sym_string] = STATE(1802), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2769), - [sym_rest_parameter] = STATE(3412), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3162), - [sym_constructor_type] = STATE(3162), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3162), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3425), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3162), - [sym_intersection_type] = STATE(3162), - [sym_function_type] = STATE(3162), - [aux_sym_export_statement_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_type] = ACTIONS(553), - [anon_sym_typeof] = ACTIONS(559), + [76] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1808), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_in] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + [sym__automatic_semicolon] = ACTIONS(778), + }, + [77] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2229), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_in] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(75), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(778), + }, + [78] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2279), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(876), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_await] = ACTIONS(595), + [anon_sym_in] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(772), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(772), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(565), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(884), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(581), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(585), - [anon_sym_private] = ACTIONS(585), - [anon_sym_protected] = ACTIONS(585), - [anon_sym_module] = ACTIONS(553), - [anon_sym_any] = ACTIONS(587), - [anon_sym_number] = ACTIONS(587), - [anon_sym_boolean] = ACTIONS(587), - [anon_sym_string] = ACTIONS(587), - [anon_sym_symbol] = ACTIONS(587), - [sym_readonly] = ACTIONS(589), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [73] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1396), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1877), - [sym_array] = STATE(1880), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3829), - [sym_string] = STATE(1802), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2769), - [sym_rest_parameter] = STATE(3412), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3162), - [sym_constructor_type] = STATE(3162), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3162), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3425), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3162), - [sym_intersection_type] = STATE(3162), - [sym_function_type] = STATE(3162), - [aux_sym_export_statement_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_type] = ACTIONS(553), - [anon_sym_typeof] = ACTIONS(559), + [79] = { + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_default] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(892), + [anon_sym_as] = ACTIONS(892), + [anon_sym_namespace] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_var] = ACTIONS(890), + [anon_sym_let] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_else] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_await] = ACTIONS(890), + [anon_sym_in] = ACTIONS(892), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_with] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_debugger] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_case] = ACTIONS(890), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(890), + [anon_sym_function] = ACTIONS(890), + [anon_sym_QMARK_DOT] = ACTIONS(904), + [anon_sym_new] = ACTIONS(890), + [anon_sym_PLUS_EQ] = ACTIONS(904), + [anon_sym_DASH_EQ] = ACTIONS(904), + [anon_sym_STAR_EQ] = ACTIONS(904), + [anon_sym_SLASH_EQ] = ACTIONS(904), + [anon_sym_PERCENT_EQ] = ACTIONS(904), + [anon_sym_CARET_EQ] = ACTIONS(904), + [anon_sym_AMP_EQ] = ACTIONS(904), + [anon_sym_PIPE_EQ] = ACTIONS(904), + [anon_sym_GT_GT_EQ] = ACTIONS(904), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(904), + [anon_sym_LT_LT_EQ] = ACTIONS(904), + [anon_sym_STAR_STAR_EQ] = ACTIONS(904), + [anon_sym_AMP_AMP_EQ] = ACTIONS(904), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(904), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(892), + [anon_sym_AMP_AMP] = ACTIONS(892), + [anon_sym_PIPE_PIPE] = ACTIONS(892), + [anon_sym_GT_GT] = ACTIONS(892), + [anon_sym_GT_GT_GT] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PERCENT] = ACTIONS(892), + [anon_sym_STAR_STAR] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_QMARK_QMARK] = ACTIONS(892), + [anon_sym_instanceof] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_void] = ACTIONS(890), + [anon_sym_delete] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(888), + [anon_sym_SQUOTE] = ACTIONS(888), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(897), + [sym_number] = ACTIONS(888), + [sym_this] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_undefined] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_static] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_extends] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [80] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2057), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_await] = ACTIONS(918), + [anon_sym_in] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(772), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(772), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(565), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(924), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), + }, + [81] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2324), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_in] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(581), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(585), - [anon_sym_private] = ACTIONS(585), - [anon_sym_protected] = ACTIONS(585), - [anon_sym_module] = ACTIONS(553), - [anon_sym_any] = ACTIONS(587), - [anon_sym_number] = ACTIONS(587), - [anon_sym_boolean] = ACTIONS(587), - [anon_sym_string] = ACTIONS(587), - [anon_sym_symbol] = ACTIONS(587), - [sym_readonly] = ACTIONS(589), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [anon_sym_implements] = ACTIONS(772), + [sym_readonly] = ACTIONS(934), + }, + [82] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2085), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_in] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(796), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [anon_sym_implements] = ACTIONS(772), + [sym_readonly] = ACTIONS(960), + }, + [83] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2247), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_in] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + [anon_sym_LBRACE_PIPE] = ACTIONS(778), + }, + [84] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2053), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(772), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_in] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + [anon_sym_LBRACE_PIPE] = ACTIONS(778), + }, + [85] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(4316), + [sym_nested_type_identifier] = STATE(2555), + [sym__type] = STATE(3734), + [sym_constructor_type] = STATE(3734), + [sym__primary_type] = STATE(3470), + [sym_infer_type] = STATE(3734), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_call_type_arguments] = STATE(3593), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(3470), + [sym__tuple_type_body] = STATE(2650), + [sym_tuple_type] = STATE(3470), + [sym_union_type] = STATE(3734), + [sym_intersection_type] = STATE(3734), + [sym_function_type] = STATE(3734), + [sym_identifier] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(723), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_new] = ACTIONS(729), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(739), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_void] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1072), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), + [anon_sym_keyof] = ACTIONS(581), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [74] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1397), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1877), - [sym_array] = STATE(1880), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3849), - [sym_string] = STATE(1802), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2769), - [sym_rest_parameter] = STATE(3412), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3162), - [sym_constructor_type] = STATE(3162), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3162), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3425), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3162), - [sym_intersection_type] = STATE(3162), - [sym_function_type] = STATE(3162), - [aux_sym_export_statement_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_type] = ACTIONS(553), - [anon_sym_typeof] = ACTIONS(559), + [86] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(4316), + [sym_nested_type_identifier] = STATE(2555), + [sym__type] = STATE(3734), + [sym_constructor_type] = STATE(3734), + [sym__primary_type] = STATE(3688), + [sym_infer_type] = STATE(3734), + [sym_conditional_type] = STATE(3688), + [sym_generic_type] = STATE(3688), + [sym_type_query] = STATE(3688), + [sym_index_type_query] = STATE(3688), + [sym_lookup_type] = STATE(3688), + [sym_literal_type] = STATE(3688), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(3688), + [sym_flow_maybe_type] = STATE(3688), + [sym_parenthesized_type] = STATE(3688), + [sym_predefined_type] = STATE(3688), + [sym_call_type_arguments] = STATE(3593), + [sym_object_type] = STATE(3688), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(3688), + [sym__tuple_type_body] = STATE(565), + [sym_tuple_type] = STATE(3688), + [sym_union_type] = STATE(3734), + [sym_intersection_type] = STATE(3734), + [sym_function_type] = STATE(3734), + [sym_identifier] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(723), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_new] = ACTIONS(729), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(739), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_void] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1078), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), + }, + [87] = { + [sym_template_string] = STATE(121), + [sym_arguments] = STATE(121), + [sym_call_type_arguments] = STATE(3480), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [anon_sym_export] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_default] = ACTIONS(623), + [anon_sym_as] = ACTIONS(625), + [anon_sym_namespace] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_typeof] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_var] = ACTIONS(623), + [anon_sym_let] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_else] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [anon_sym_in] = ACTIONS(625), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(623), + [anon_sym_try] = ACTIONS(623), + [anon_sym_with] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_debugger] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_throw] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_case] = ACTIONS(623), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(623), + [anon_sym_function] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(633), + [anon_sym_new] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(625), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(625), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_void] = ACTIONS(623), + [anon_sym_delete] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(621), + [sym_this] = ACTIONS(623), + [sym_super] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_static] = ACTIONS(623), + [anon_sym_abstract] = ACTIONS(623), + [anon_sym_get] = ACTIONS(623), + [anon_sym_set] = ACTIONS(623), + [anon_sym_declare] = ACTIONS(623), + [anon_sym_public] = ACTIONS(623), + [anon_sym_private] = ACTIONS(623), + [anon_sym_protected] = ACTIONS(623), + [anon_sym_module] = ACTIONS(623), + [anon_sym_any] = ACTIONS(623), + [anon_sym_number] = ACTIONS(623), + [anon_sym_boolean] = ACTIONS(623), + [anon_sym_string] = ACTIONS(623), + [anon_sym_symbol] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_extends] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [sym_readonly] = ACTIONS(623), + }, + [88] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_namespace] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_type] = ACTIONS(1084), + [anon_sym_typeof] = ACTIONS(1084), + [anon_sym_import] = ACTIONS(1084), + [anon_sym_var] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_else] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_with] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_debugger] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_throw] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_class] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(1084), + [anon_sym_QMARK_DOT] = ACTIONS(1088), + [anon_sym_new] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_GT_GT_GT] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PERCENT] = ACTIONS(1088), + [anon_sym_STAR_STAR] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_QMARK_QMARK] = ACTIONS(1088), + [anon_sym_instanceof] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1084), + [anon_sym_delete] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [sym_this] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_undefined] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_abstract] = ACTIONS(1084), + [anon_sym_get] = ACTIONS(1084), + [anon_sym_set] = ACTIONS(1084), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1084), + [anon_sym_private] = ACTIONS(1084), + [anon_sym_protected] = ACTIONS(1084), + [anon_sym_module] = ACTIONS(1084), + [anon_sym_any] = ACTIONS(1084), + [anon_sym_number] = ACTIONS(1084), + [anon_sym_boolean] = ACTIONS(1084), + [anon_sym_string] = ACTIONS(1084), + [anon_sym_symbol] = ACTIONS(1084), + [anon_sym_interface] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [sym_readonly] = ACTIONS(1084), + [sym__automatic_semicolon] = ACTIONS(1090), + }, + [89] = { + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_as] = ACTIONS(1094), + [anon_sym_namespace] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_type] = ACTIONS(1094), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(1094), + [anon_sym_var] = ACTIONS(1094), + [anon_sym_let] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_else] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_await] = ACTIONS(1094), + [anon_sym_in] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_try] = ACTIONS(1094), + [anon_sym_with] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_debugger] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_throw] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_COLON] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_yield] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1094), + [anon_sym_DOT] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(1094), + [anon_sym_async] = ACTIONS(1094), + [anon_sym_function] = ACTIONS(1094), + [anon_sym_EQ_GT] = ACTIONS(1096), + [anon_sym_QMARK_DOT] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_GT_GT] = ACTIONS(1094), + [anon_sym_GT_GT_GT] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1092), + [anon_sym_STAR_STAR] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1092), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_QMARK_QMARK] = ACTIONS(1092), + [anon_sym_instanceof] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_number] = ACTIONS(1092), + [sym_this] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_undefined] = ACTIONS(1094), + [anon_sym_AT] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_abstract] = ACTIONS(1094), + [anon_sym_get] = ACTIONS(1094), + [anon_sym_set] = ACTIONS(1094), + [anon_sym_declare] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1094), + [anon_sym_private] = ACTIONS(1094), + [anon_sym_protected] = ACTIONS(1094), + [anon_sym_module] = ACTIONS(1094), + [anon_sym_any] = ACTIONS(1094), + [anon_sym_number] = ACTIONS(1094), + [anon_sym_boolean] = ACTIONS(1094), + [anon_sym_string] = ACTIONS(1094), + [anon_sym_symbol] = ACTIONS(1094), + [anon_sym_interface] = ACTIONS(1094), + [anon_sym_extends] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [sym_readonly] = ACTIONS(1094), + }, + [90] = { + [sym_statement_block] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_as] = ACTIONS(1100), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [anon_sym_let] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(1100), + [anon_sym_in] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_with] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_debugger] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_QMARK_DOT] = ACTIONS(1098), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_GT_GT_GT] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_STAR_STAR] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_QMARK_QMARK] = ACTIONS(1098), + [anon_sym_instanceof] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1098), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(1100), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_undefined] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_get] = ACTIONS(1100), + [anon_sym_set] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_protected] = ACTIONS(1100), + [anon_sym_module] = ACTIONS(1100), + [anon_sym_any] = ACTIONS(1100), + [anon_sym_number] = ACTIONS(1100), + [anon_sym_boolean] = ACTIONS(1100), + [anon_sym_string] = ACTIONS(1100), + [anon_sym_symbol] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [sym_readonly] = ACTIONS(1100), + [sym__automatic_semicolon] = ACTIONS(1098), + }, + [91] = { + [sym_statement_block] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_as] = ACTIONS(1100), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [anon_sym_let] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(1100), + [anon_sym_in] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_with] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_debugger] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_QMARK_DOT] = ACTIONS(1098), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_GT_GT_GT] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_STAR_STAR] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_QMARK_QMARK] = ACTIONS(1098), + [anon_sym_instanceof] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1098), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(1100), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_undefined] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_get] = ACTIONS(1100), + [anon_sym_set] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_protected] = ACTIONS(1100), + [anon_sym_module] = ACTIONS(1100), + [anon_sym_any] = ACTIONS(1100), + [anon_sym_number] = ACTIONS(1100), + [anon_sym_boolean] = ACTIONS(1100), + [anon_sym_string] = ACTIONS(1100), + [anon_sym_symbol] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [sym_readonly] = ACTIONS(1100), + [sym__automatic_semicolon] = ACTIONS(1098), + }, + [92] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_export] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_as] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_await] = ACTIONS(1108), + [anon_sym_in] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_debugger] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1110), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_function] = ACTIONS(1108), + [anon_sym_QMARK_DOT] = ACTIONS(1112), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_GT_GT_GT] = ACTIONS(1112), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_QMARK_QMARK] = ACTIONS(1112), + [anon_sym_instanceof] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_void] = ACTIONS(1108), + [anon_sym_delete] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1106), + [sym_number] = ACTIONS(1106), + [sym_this] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_get] = ACTIONS(1108), + [anon_sym_set] = ACTIONS(1108), + [anon_sym_declare] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_protected] = ACTIONS(1108), + [anon_sym_module] = ACTIONS(1108), + [anon_sym_any] = ACTIONS(1108), + [anon_sym_number] = ACTIONS(1108), + [anon_sym_boolean] = ACTIONS(1108), + [anon_sym_string] = ACTIONS(1108), + [anon_sym_symbol] = ACTIONS(1108), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [sym_readonly] = ACTIONS(1108), + [sym__automatic_semicolon] = ACTIONS(1114), + }, + [93] = { + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1118), + [anon_sym_export] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_as] = ACTIONS(1120), + [anon_sym_namespace] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_COMMA] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1118), + [anon_sym_typeof] = ACTIONS(1118), + [anon_sym_import] = ACTIONS(1118), + [anon_sym_var] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_in] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_try] = ACTIONS(1118), + [anon_sym_with] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_debugger] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_throw] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_SLASH] = ACTIONS(1118), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_class] = ACTIONS(1118), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(1118), + [anon_sym_QMARK_DOT] = ACTIONS(1122), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_GT_GT_GT] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_CARET] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PERCENT] = ACTIONS(1122), + [anon_sym_STAR_STAR] = ACTIONS(1122), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_EQ_EQ] = ACTIONS(1120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1122), + [anon_sym_BANG_EQ] = ACTIONS(1120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_QMARK_QMARK] = ACTIONS(1122), + [anon_sym_instanceof] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1118), + [anon_sym_delete] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_number] = ACTIONS(1116), + [sym_this] = ACTIONS(1118), + [sym_super] = ACTIONS(1118), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [sym_undefined] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_abstract] = ACTIONS(1118), + [anon_sym_get] = ACTIONS(1118), + [anon_sym_set] = ACTIONS(1118), + [anon_sym_declare] = ACTIONS(1118), + [anon_sym_public] = ACTIONS(1118), + [anon_sym_private] = ACTIONS(1118), + [anon_sym_protected] = ACTIONS(1118), + [anon_sym_module] = ACTIONS(1118), + [anon_sym_any] = ACTIONS(1118), + [anon_sym_number] = ACTIONS(1118), + [anon_sym_boolean] = ACTIONS(1118), + [anon_sym_string] = ACTIONS(1118), + [anon_sym_symbol] = ACTIONS(1118), + [anon_sym_interface] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [sym_readonly] = ACTIONS(1118), + [sym__automatic_semicolon] = ACTIONS(1124), + }, + [94] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_as] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1128), + [anon_sym_import] = ACTIONS(1128), + [anon_sym_var] = ACTIONS(1128), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_else] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_await] = ACTIONS(1128), + [anon_sym_in] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1128), + [anon_sym_with] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_debugger] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_throw] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_yield] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_class] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(1128), + [anon_sym_QMARK_DOT] = ACTIONS(1132), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_GT_GT_GT] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_STAR_STAR] = ACTIONS(1132), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_QMARK_QMARK] = ACTIONS(1132), + [anon_sym_instanceof] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_void] = ACTIONS(1128), + [anon_sym_delete] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), + [sym_this] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [sym_undefined] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_abstract] = ACTIONS(1128), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [anon_sym_declare] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1128), + [anon_sym_private] = ACTIONS(1128), + [anon_sym_protected] = ACTIONS(1128), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1128), + [anon_sym_number] = ACTIONS(1128), + [anon_sym_boolean] = ACTIONS(1128), + [anon_sym_string] = ACTIONS(1128), + [anon_sym_symbol] = ACTIONS(1128), + [anon_sym_interface] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [sym_readonly] = ACTIONS(1128), + [sym__automatic_semicolon] = ACTIONS(1134), + }, + [95] = { + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_as] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_type] = ACTIONS(1138), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(1138), + [anon_sym_var] = ACTIONS(1138), + [anon_sym_let] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_await] = ACTIONS(1138), + [anon_sym_in] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_try] = ACTIONS(1138), + [anon_sym_with] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_debugger] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_throw] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1138), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_SLASH] = ACTIONS(1138), + [anon_sym_DOT] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(1138), + [anon_sym_QMARK_DOT] = ACTIONS(1142), + [anon_sym_new] = ACTIONS(1138), + [anon_sym_QMARK] = ACTIONS(1140), + [anon_sym_AMP_AMP] = ACTIONS(1142), + [anon_sym_PIPE_PIPE] = ACTIONS(1142), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_GT_GT_GT] = ACTIONS(1142), + [anon_sym_LT_LT] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_CARET] = ACTIONS(1142), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_STAR_STAR] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1142), + [anon_sym_EQ_EQ] = ACTIONS(1140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1142), + [anon_sym_BANG_EQ] = ACTIONS(1140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1142), + [anon_sym_GT_EQ] = ACTIONS(1142), + [anon_sym_QMARK_QMARK] = ACTIONS(1142), + [anon_sym_instanceof] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1136), + [sym_number] = ACTIONS(1136), + [sym_this] = ACTIONS(1138), + [sym_super] = ACTIONS(1138), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_undefined] = ACTIONS(1138), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_abstract] = ACTIONS(1138), + [anon_sym_get] = ACTIONS(1138), + [anon_sym_set] = ACTIONS(1138), + [anon_sym_declare] = ACTIONS(1138), + [anon_sym_public] = ACTIONS(1138), + [anon_sym_private] = ACTIONS(1138), + [anon_sym_protected] = ACTIONS(1138), + [anon_sym_module] = ACTIONS(1138), + [anon_sym_any] = ACTIONS(1138), + [anon_sym_number] = ACTIONS(1138), + [anon_sym_boolean] = ACTIONS(1138), + [anon_sym_string] = ACTIONS(1138), + [anon_sym_symbol] = ACTIONS(1138), + [anon_sym_interface] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [sym_readonly] = ACTIONS(1138), + [sym__automatic_semicolon] = ACTIONS(1144), + }, + [96] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_export] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_as] = ACTIONS(1148), + [anon_sym_namespace] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1148), + [anon_sym_typeof] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_var] = ACTIONS(1148), + [anon_sym_let] = ACTIONS(1148), + [anon_sym_const] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1148), + [anon_sym_in] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_with] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_debugger] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_function] = ACTIONS(1148), + [anon_sym_QMARK_DOT] = ACTIONS(1146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_QMARK] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_GT_GT_GT] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1146), + [anon_sym_STAR_STAR] = ACTIONS(1146), + [anon_sym_LT_EQ] = ACTIONS(1146), + [anon_sym_EQ_EQ] = ACTIONS(1148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1146), + [anon_sym_BANG_EQ] = ACTIONS(1148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1146), + [anon_sym_GT_EQ] = ACTIONS(1146), + [anon_sym_QMARK_QMARK] = ACTIONS(1146), + [anon_sym_instanceof] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_void] = ACTIONS(1148), + [anon_sym_delete] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_number] = ACTIONS(1146), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(1148), + [sym_true] = ACTIONS(1148), + [sym_false] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [sym_undefined] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_get] = ACTIONS(1148), + [anon_sym_set] = ACTIONS(1148), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_protected] = ACTIONS(1148), + [anon_sym_module] = ACTIONS(1148), + [anon_sym_any] = ACTIONS(1148), + [anon_sym_number] = ACTIONS(1148), + [anon_sym_boolean] = ACTIONS(1148), + [anon_sym_string] = ACTIONS(1148), + [anon_sym_symbol] = ACTIONS(1148), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [sym_readonly] = ACTIONS(1148), + [sym__automatic_semicolon] = ACTIONS(1146), + }, + [97] = { + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_as] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_typeof] = ACTIONS(1152), + [anon_sym_import] = ACTIONS(1152), + [anon_sym_var] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_else] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1152), + [anon_sym_in] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1152), + [anon_sym_with] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_debugger] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_throw] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1152), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1152), + [anon_sym_DOT] = ACTIONS(1152), + [anon_sym_class] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(1152), + [anon_sym_function] = ACTIONS(1152), + [anon_sym_QMARK_DOT] = ACTIONS(1150), + [anon_sym_new] = ACTIONS(1152), + [anon_sym_QMARK] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_GT_GT_GT] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_CARET] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_PERCENT] = ACTIONS(1150), + [anon_sym_STAR_STAR] = ACTIONS(1150), + [anon_sym_LT_EQ] = ACTIONS(1150), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1150), + [anon_sym_BANG_EQ] = ACTIONS(1152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1150), + [anon_sym_GT_EQ] = ACTIONS(1150), + [anon_sym_QMARK_QMARK] = ACTIONS(1150), + [anon_sym_instanceof] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_void] = ACTIONS(1152), + [anon_sym_delete] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1150), + [sym_number] = ACTIONS(1150), + [sym_this] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_true] = ACTIONS(1152), + [sym_false] = ACTIONS(1152), + [sym_null] = ACTIONS(1152), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [sym_readonly] = ACTIONS(1152), + [sym__automatic_semicolon] = ACTIONS(1150), + }, + [98] = { + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_as] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1156), + [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_import] = ACTIONS(1156), + [anon_sym_var] = ACTIONS(1156), + [anon_sym_let] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_else] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_await] = ACTIONS(1156), + [anon_sym_in] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_do] = ACTIONS(1156), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_with] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_debugger] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_throw] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_GT] = ACTIONS(1158), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(1158), + [anon_sym_class] = ACTIONS(1156), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(1156), + [anon_sym_QMARK_DOT] = ACTIONS(1160), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_QMARK] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_GT_GT] = ACTIONS(1158), + [anon_sym_GT_GT_GT] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_CARET] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_PERCENT] = ACTIONS(1160), + [anon_sym_STAR_STAR] = ACTIONS(1160), + [anon_sym_LT_EQ] = ACTIONS(1160), + [anon_sym_EQ_EQ] = ACTIONS(1158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1160), + [anon_sym_GT_EQ] = ACTIONS(1160), + [anon_sym_QMARK_QMARK] = ACTIONS(1160), + [anon_sym_instanceof] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_void] = ACTIONS(1156), + [anon_sym_delete] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1154), + [sym_number] = ACTIONS(1154), + [sym_this] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_true] = ACTIONS(1156), + [sym_false] = ACTIONS(1156), + [sym_null] = ACTIONS(1156), + [sym_undefined] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_abstract] = ACTIONS(1156), + [anon_sym_get] = ACTIONS(1156), + [anon_sym_set] = ACTIONS(1156), + [anon_sym_declare] = ACTIONS(1156), + [anon_sym_public] = ACTIONS(1156), + [anon_sym_private] = ACTIONS(1156), + [anon_sym_protected] = ACTIONS(1156), + [anon_sym_module] = ACTIONS(1156), + [anon_sym_any] = ACTIONS(1156), + [anon_sym_number] = ACTIONS(1156), + [anon_sym_boolean] = ACTIONS(1156), + [anon_sym_string] = ACTIONS(1156), + [anon_sym_symbol] = ACTIONS(1156), + [anon_sym_interface] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [sym_readonly] = ACTIONS(1156), + [sym__automatic_semicolon] = ACTIONS(1162), + }, + [99] = { + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), + [anon_sym_export] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_as] = ACTIONS(1168), + [anon_sym_namespace] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1166), + [anon_sym_import] = ACTIONS(1166), + [anon_sym_var] = ACTIONS(1166), + [anon_sym_let] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_await] = ACTIONS(1166), + [anon_sym_in] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_try] = ACTIONS(1166), + [anon_sym_with] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_debugger] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_throw] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_DOT] = ACTIONS(1168), + [anon_sym_class] = ACTIONS(1166), + [anon_sym_async] = ACTIONS(1166), + [anon_sym_function] = ACTIONS(1166), + [anon_sym_QMARK_DOT] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_QMARK] = ACTIONS(1168), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), + [anon_sym_GT_GT] = ACTIONS(1168), + [anon_sym_GT_GT_GT] = ACTIONS(1170), + [anon_sym_LT_LT] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_CARET] = ACTIONS(1170), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1170), + [anon_sym_STAR_STAR] = ACTIONS(1170), + [anon_sym_LT_EQ] = ACTIONS(1170), + [anon_sym_EQ_EQ] = ACTIONS(1168), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1170), + [anon_sym_BANG_EQ] = ACTIONS(1168), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1170), + [anon_sym_GT_EQ] = ACTIONS(1170), + [anon_sym_QMARK_QMARK] = ACTIONS(1170), + [anon_sym_instanceof] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1166), + [anon_sym_delete] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1164), + [sym_number] = ACTIONS(1164), + [sym_this] = ACTIONS(1166), + [sym_super] = ACTIONS(1166), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_undefined] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_abstract] = ACTIONS(1166), + [anon_sym_get] = ACTIONS(1166), + [anon_sym_set] = ACTIONS(1166), + [anon_sym_declare] = ACTIONS(1166), + [anon_sym_public] = ACTIONS(1166), + [anon_sym_private] = ACTIONS(1166), + [anon_sym_protected] = ACTIONS(1166), + [anon_sym_module] = ACTIONS(1166), + [anon_sym_any] = ACTIONS(1166), + [anon_sym_number] = ACTIONS(1166), + [anon_sym_boolean] = ACTIONS(1166), + [anon_sym_string] = ACTIONS(1166), + [anon_sym_symbol] = ACTIONS(1166), + [anon_sym_interface] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [sym_readonly] = ACTIONS(1166), + [sym__automatic_semicolon] = ACTIONS(1172), + }, + [100] = { + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_export] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_as] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_COMMA] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_typeof] = ACTIONS(1176), + [anon_sym_import] = ACTIONS(1176), + [anon_sym_var] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_else] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_switch] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_await] = ACTIONS(1176), + [anon_sym_in] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1176), + [anon_sym_with] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_debugger] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_throw] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_DOT] = ACTIONS(1178), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_function] = ACTIONS(1176), + [anon_sym_QMARK_DOT] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_AMP_AMP] = ACTIONS(1180), + [anon_sym_PIPE_PIPE] = ACTIONS(1180), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_GT_GT_GT] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_CARET] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PERCENT] = ACTIONS(1180), + [anon_sym_STAR_STAR] = ACTIONS(1180), + [anon_sym_LT_EQ] = ACTIONS(1180), + [anon_sym_EQ_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1180), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1180), + [anon_sym_GT_EQ] = ACTIONS(1180), + [anon_sym_QMARK_QMARK] = ACTIONS(1180), + [anon_sym_instanceof] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_void] = ACTIONS(1176), + [anon_sym_delete] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1174), + [sym_number] = ACTIONS(1174), + [sym_this] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_true] = ACTIONS(1176), + [sym_false] = ACTIONS(1176), + [sym_null] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(1176), + [anon_sym_get] = ACTIONS(1176), + [anon_sym_set] = ACTIONS(1176), + [anon_sym_declare] = ACTIONS(1176), + [anon_sym_public] = ACTIONS(1176), + [anon_sym_private] = ACTIONS(1176), + [anon_sym_protected] = ACTIONS(1176), + [anon_sym_module] = ACTIONS(1176), + [anon_sym_any] = ACTIONS(1176), + [anon_sym_number] = ACTIONS(1176), + [anon_sym_boolean] = ACTIONS(1176), + [anon_sym_string] = ACTIONS(1176), + [anon_sym_symbol] = ACTIONS(1176), + [anon_sym_interface] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [sym_readonly] = ACTIONS(1176), + [sym__automatic_semicolon] = ACTIONS(1182), + }, + [101] = { + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_typeof] = ACTIONS(1186), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_var] = ACTIONS(1186), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_await] = ACTIONS(1186), + [anon_sym_in] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_try] = ACTIONS(1186), + [anon_sym_with] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_debugger] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_throw] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_SLASH] = ACTIONS(1186), + [anon_sym_DOT] = ACTIONS(1186), + [anon_sym_class] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1186), + [anon_sym_function] = ACTIONS(1186), + [anon_sym_QMARK_DOT] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1186), + [anon_sym_QMARK] = ACTIONS(1186), + [anon_sym_AMP_AMP] = ACTIONS(1184), + [anon_sym_PIPE_PIPE] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1186), + [anon_sym_GT_GT_GT] = ACTIONS(1184), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_CARET] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PERCENT] = ACTIONS(1184), + [anon_sym_STAR_STAR] = ACTIONS(1184), + [anon_sym_LT_EQ] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(1186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1184), + [anon_sym_GT_EQ] = ACTIONS(1184), + [anon_sym_QMARK_QMARK] = ACTIONS(1184), + [anon_sym_instanceof] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_void] = ACTIONS(1186), + [anon_sym_delete] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_number] = ACTIONS(1184), + [sym_this] = ACTIONS(1186), + [sym_super] = ACTIONS(1186), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [sym_undefined] = ACTIONS(1186), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_abstract] = ACTIONS(1186), + [anon_sym_get] = ACTIONS(1186), + [anon_sym_set] = ACTIONS(1186), + [anon_sym_declare] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(1186), + [anon_sym_private] = ACTIONS(1186), + [anon_sym_protected] = ACTIONS(1186), + [anon_sym_module] = ACTIONS(1186), + [anon_sym_any] = ACTIONS(1186), + [anon_sym_number] = ACTIONS(1186), + [anon_sym_boolean] = ACTIONS(1186), + [anon_sym_string] = ACTIONS(1186), + [anon_sym_symbol] = ACTIONS(1186), + [anon_sym_interface] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [sym_readonly] = ACTIONS(1186), + [sym__automatic_semicolon] = ACTIONS(1184), + }, + [102] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_export] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1192), + [anon_sym_namespace] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_var] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_in] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_with] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_debugger] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_throw] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DOT] = ACTIONS(1192), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(1190), + [anon_sym_QMARK_DOT] = ACTIONS(1194), + [anon_sym_new] = ACTIONS(1190), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1194), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_GT_GT_GT] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_CARET] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PERCENT] = ACTIONS(1194), + [anon_sym_STAR_STAR] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1194), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1194), + [anon_sym_QMARK_QMARK] = ACTIONS(1194), + [anon_sym_instanceof] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_void] = ACTIONS(1190), + [anon_sym_delete] = ACTIONS(1190), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [sym_this] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_undefined] = ACTIONS(1190), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_abstract] = ACTIONS(1190), + [anon_sym_get] = ACTIONS(1190), + [anon_sym_set] = ACTIONS(1190), + [anon_sym_declare] = ACTIONS(1190), + [anon_sym_public] = ACTIONS(1190), + [anon_sym_private] = ACTIONS(1190), + [anon_sym_protected] = ACTIONS(1190), + [anon_sym_module] = ACTIONS(1190), + [anon_sym_any] = ACTIONS(1190), + [anon_sym_number] = ACTIONS(1190), + [anon_sym_boolean] = ACTIONS(1190), + [anon_sym_string] = ACTIONS(1190), + [anon_sym_symbol] = ACTIONS(1190), + [anon_sym_interface] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [sym_readonly] = ACTIONS(1190), + [sym__automatic_semicolon] = ACTIONS(1196), + }, + [103] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_export] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_as] = ACTIONS(625), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_typeof] = ACTIONS(1200), + [anon_sym_import] = ACTIONS(1200), + [anon_sym_var] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_await] = ACTIONS(1200), + [anon_sym_in] = ACTIONS(625), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_try] = ACTIONS(1200), + [anon_sym_with] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_debugger] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_throw] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(1200), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_class] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_function] = ACTIONS(1200), + [anon_sym_QMARK_DOT] = ACTIONS(637), + [anon_sym_new] = ACTIONS(1200), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(625), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(625), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1200), + [anon_sym_delete] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_number] = ACTIONS(1198), + [sym_this] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [sym_null] = ACTIONS(1200), + [sym_undefined] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_abstract] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(1200), + [anon_sym_set] = ACTIONS(1200), + [anon_sym_declare] = ACTIONS(1200), + [anon_sym_public] = ACTIONS(1200), + [anon_sym_private] = ACTIONS(1200), + [anon_sym_protected] = ACTIONS(1200), + [anon_sym_module] = ACTIONS(1200), + [anon_sym_any] = ACTIONS(1200), + [anon_sym_number] = ACTIONS(1200), + [anon_sym_boolean] = ACTIONS(1200), + [anon_sym_string] = ACTIONS(1200), + [anon_sym_symbol] = ACTIONS(1200), + [anon_sym_interface] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [sym_readonly] = ACTIONS(1200), + [sym__automatic_semicolon] = ACTIONS(637), + }, + [104] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_as] = ACTIONS(1204), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_await] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_try] = ACTIONS(1204), + [anon_sym_with] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_debugger] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_throw] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_DOT] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_function] = ACTIONS(1204), + [anon_sym_QMARK_DOT] = ACTIONS(1202), + [anon_sym_new] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(1204), + [anon_sym_AMP_AMP] = ACTIONS(1202), + [anon_sym_PIPE_PIPE] = ACTIONS(1202), + [anon_sym_GT_GT] = ACTIONS(1204), + [anon_sym_GT_GT_GT] = ACTIONS(1202), + [anon_sym_LT_LT] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PERCENT] = ACTIONS(1202), + [anon_sym_STAR_STAR] = ACTIONS(1202), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_EQ_EQ] = ACTIONS(1204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1202), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_QMARK_QMARK] = ACTIONS(1202), + [anon_sym_instanceof] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_void] = ACTIONS(1204), + [anon_sym_delete] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1202), + [sym_number] = ACTIONS(1202), + [sym_this] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), + [sym_undefined] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_get] = ACTIONS(1204), + [anon_sym_set] = ACTIONS(1204), + [anon_sym_declare] = ACTIONS(1204), + [anon_sym_public] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_protected] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(1204), + [anon_sym_any] = ACTIONS(1204), + [anon_sym_number] = ACTIONS(1204), + [anon_sym_boolean] = ACTIONS(1204), + [anon_sym_string] = ACTIONS(1204), + [anon_sym_symbol] = ACTIONS(1204), + [anon_sym_interface] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [sym_readonly] = ACTIONS(1204), + [sym__automatic_semicolon] = ACTIONS(1202), + }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_as] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_DOT] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_QMARK_DOT] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1208), + [anon_sym_AMP_AMP] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_GT_GT_GT] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PERCENT] = ACTIONS(1206), + [anon_sym_STAR_STAR] = ACTIONS(1206), + [anon_sym_LT_EQ] = ACTIONS(1206), + [anon_sym_EQ_EQ] = ACTIONS(1208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1206), + [anon_sym_BANG_EQ] = ACTIONS(1208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1206), + [anon_sym_GT_EQ] = ACTIONS(1206), + [anon_sym_QMARK_QMARK] = ACTIONS(1206), + [anon_sym_instanceof] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), + [sym__automatic_semicolon] = ACTIONS(1210), + }, + [106] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_as] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_DOT] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_QMARK_DOT] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1208), + [anon_sym_AMP_AMP] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_GT_GT_GT] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PERCENT] = ACTIONS(1206), + [anon_sym_STAR_STAR] = ACTIONS(1206), + [anon_sym_LT_EQ] = ACTIONS(1206), + [anon_sym_EQ_EQ] = ACTIONS(1208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1206), + [anon_sym_BANG_EQ] = ACTIONS(1208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1206), + [anon_sym_GT_EQ] = ACTIONS(1206), + [anon_sym_QMARK_QMARK] = ACTIONS(1206), + [anon_sym_instanceof] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), + [sym__automatic_semicolon] = ACTIONS(1206), + }, + [107] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(1216), + [anon_sym_namespace] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_typeof] = ACTIONS(1214), + [anon_sym_import] = ACTIONS(1214), + [anon_sym_var] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_await] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_try] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_debugger] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_throw] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_SLASH] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1216), + [anon_sym_class] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(1214), + [anon_sym_function] = ACTIONS(1214), + [anon_sym_QMARK_DOT] = ACTIONS(1218), + [anon_sym_new] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_GT_GT_GT] = ACTIONS(1218), + [anon_sym_LT_LT] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_CARET] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PERCENT] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_LT_EQ] = ACTIONS(1218), + [anon_sym_EQ_EQ] = ACTIONS(1216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1218), + [anon_sym_BANG_EQ] = ACTIONS(1216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1218), + [anon_sym_GT_EQ] = ACTIONS(1218), + [anon_sym_QMARK_QMARK] = ACTIONS(1218), + [anon_sym_instanceof] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_void] = ACTIONS(1214), + [anon_sym_delete] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1212), + [sym_number] = ACTIONS(1212), + [sym_this] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [sym_null] = ACTIONS(1214), + [sym_undefined] = ACTIONS(1214), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_abstract] = ACTIONS(1214), + [anon_sym_get] = ACTIONS(1214), + [anon_sym_set] = ACTIONS(1214), + [anon_sym_declare] = ACTIONS(1214), + [anon_sym_public] = ACTIONS(1214), + [anon_sym_private] = ACTIONS(1214), + [anon_sym_protected] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_any] = ACTIONS(1214), + [anon_sym_number] = ACTIONS(1214), + [anon_sym_boolean] = ACTIONS(1214), + [anon_sym_string] = ACTIONS(1214), + [anon_sym_symbol] = ACTIONS(1214), + [anon_sym_interface] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [sym_readonly] = ACTIONS(1214), + [sym__automatic_semicolon] = ACTIONS(1220), + }, + [108] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_as] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1224), + [anon_sym_var] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_in] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_try] = ACTIONS(1224), + [anon_sym_with] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_debugger] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_throw] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_SLASH] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(1224), + [anon_sym_QMARK_DOT] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_QMARK] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ] = ACTIONS(1224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1224), + [anon_sym_delete] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_number] = ACTIONS(1222), + [sym_this] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [sym_null] = ACTIONS(1224), + [sym_undefined] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_abstract] = ACTIONS(1224), + [anon_sym_get] = ACTIONS(1224), + [anon_sym_set] = ACTIONS(1224), + [anon_sym_declare] = ACTIONS(1224), + [anon_sym_public] = ACTIONS(1224), + [anon_sym_private] = ACTIONS(1224), + [anon_sym_protected] = ACTIONS(1224), + [anon_sym_module] = ACTIONS(1224), + [anon_sym_any] = ACTIONS(1224), + [anon_sym_number] = ACTIONS(1224), + [anon_sym_boolean] = ACTIONS(1224), + [anon_sym_string] = ACTIONS(1224), + [anon_sym_symbol] = ACTIONS(1224), + [anon_sym_interface] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [sym_readonly] = ACTIONS(1224), + [sym__automatic_semicolon] = ACTIONS(1222), + }, + [109] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_as] = ACTIONS(1084), + [anon_sym_namespace] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_COMMA] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_type] = ACTIONS(1084), + [anon_sym_typeof] = ACTIONS(1084), + [anon_sym_import] = ACTIONS(1084), + [anon_sym_var] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_else] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_in] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_with] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_debugger] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_throw] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(1084), + [anon_sym_QMARK_DOT] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1084), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_GT_GT_GT] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_QMARK_QMARK] = ACTIONS(1082), + [anon_sym_instanceof] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1084), + [anon_sym_delete] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [sym_this] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_undefined] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_abstract] = ACTIONS(1084), + [anon_sym_get] = ACTIONS(1084), + [anon_sym_set] = ACTIONS(1084), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1084), + [anon_sym_private] = ACTIONS(1084), + [anon_sym_protected] = ACTIONS(1084), + [anon_sym_module] = ACTIONS(1084), + [anon_sym_any] = ACTIONS(1084), + [anon_sym_number] = ACTIONS(1084), + [anon_sym_boolean] = ACTIONS(1084), + [anon_sym_string] = ACTIONS(1084), + [anon_sym_symbol] = ACTIONS(1084), + [anon_sym_interface] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [sym_readonly] = ACTIONS(1084), + [sym__automatic_semicolon] = ACTIONS(1226), + }, + [110] = { + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1230), + [anon_sym_export] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_as] = ACTIONS(1230), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_typeof] = ACTIONS(1230), + [anon_sym_import] = ACTIONS(1230), + [anon_sym_var] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_await] = ACTIONS(1230), + [anon_sym_in] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_try] = ACTIONS(1230), + [anon_sym_with] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_debugger] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_throw] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_DOT] = ACTIONS(1230), + [anon_sym_class] = ACTIONS(1230), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1230), + [anon_sym_QMARK_DOT] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_QMARK] = ACTIONS(1230), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_GT_GT] = ACTIONS(1230), + [anon_sym_GT_GT_GT] = ACTIONS(1228), + [anon_sym_LT_LT] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PERCENT] = ACTIONS(1228), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1228), + [anon_sym_GT_EQ] = ACTIONS(1228), + [anon_sym_QMARK_QMARK] = ACTIONS(1228), + [anon_sym_instanceof] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_void] = ACTIONS(1230), + [anon_sym_delete] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1228), + [sym_number] = ACTIONS(1228), + [sym_this] = ACTIONS(1230), + [sym_super] = ACTIONS(1230), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [sym_null] = ACTIONS(1230), + [sym_undefined] = ACTIONS(1230), + [anon_sym_AT] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_abstract] = ACTIONS(1230), + [anon_sym_get] = ACTIONS(1230), + [anon_sym_set] = ACTIONS(1230), + [anon_sym_declare] = ACTIONS(1230), + [anon_sym_public] = ACTIONS(1230), + [anon_sym_private] = ACTIONS(1230), + [anon_sym_protected] = ACTIONS(1230), + [anon_sym_module] = ACTIONS(1230), + [anon_sym_any] = ACTIONS(1230), + [anon_sym_number] = ACTIONS(1230), + [anon_sym_boolean] = ACTIONS(1230), + [anon_sym_string] = ACTIONS(1230), + [anon_sym_symbol] = ACTIONS(1230), + [anon_sym_interface] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [sym_readonly] = ACTIONS(1230), + [sym__automatic_semicolon] = ACTIONS(1228), + }, + [111] = { + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_as] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_typeof] = ACTIONS(1234), + [anon_sym_import] = ACTIONS(1234), + [anon_sym_var] = ACTIONS(1234), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_await] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_try] = ACTIONS(1234), + [anon_sym_with] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_debugger] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_throw] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_class] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1234), + [anon_sym_function] = ACTIONS(1234), + [anon_sym_QMARK_DOT] = ACTIONS(1232), + [anon_sym_new] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1234), + [anon_sym_AMP_AMP] = ACTIONS(1232), + [anon_sym_PIPE_PIPE] = ACTIONS(1232), + [anon_sym_GT_GT] = ACTIONS(1234), + [anon_sym_GT_GT_GT] = ACTIONS(1232), + [anon_sym_LT_LT] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PERCENT] = ACTIONS(1232), + [anon_sym_STAR_STAR] = ACTIONS(1232), + [anon_sym_LT_EQ] = ACTIONS(1232), + [anon_sym_EQ_EQ] = ACTIONS(1234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1232), + [anon_sym_BANG_EQ] = ACTIONS(1234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1232), + [anon_sym_GT_EQ] = ACTIONS(1232), + [anon_sym_QMARK_QMARK] = ACTIONS(1232), + [anon_sym_instanceof] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_void] = ACTIONS(1234), + [anon_sym_delete] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1232), + [sym_number] = ACTIONS(1232), + [sym_this] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [sym_undefined] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_abstract] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_interface] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [sym_readonly] = ACTIONS(1234), + [sym__automatic_semicolon] = ACTIONS(1232), + }, + [112] = { + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_as] = ACTIONS(1240), + [anon_sym_namespace] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_COMMA] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(1238), + [anon_sym_var] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_in] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [anon_sym_with] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_debugger] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_throw] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_class] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_function] = ACTIONS(1238), + [anon_sym_QMARK_DOT] = ACTIONS(1242), + [anon_sym_new] = ACTIONS(1238), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1240), + [anon_sym_GT_GT_GT] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1242), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1242), + [anon_sym_QMARK_QMARK] = ACTIONS(1242), + [anon_sym_instanceof] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1236), + [sym_number] = ACTIONS(1236), + [sym_this] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [sym_undefined] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_abstract] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_interface] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [sym_readonly] = ACTIONS(1238), + [sym__automatic_semicolon] = ACTIONS(1244), + }, + [113] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_as] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_typeof] = ACTIONS(1248), + [anon_sym_import] = ACTIONS(1248), + [anon_sym_var] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_await] = ACTIONS(1248), + [anon_sym_in] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_try] = ACTIONS(1248), + [anon_sym_with] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_debugger] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_throw] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_DOT] = ACTIONS(1250), + [anon_sym_class] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1248), + [anon_sym_QMARK_DOT] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1250), + [anon_sym_GT_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1252), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_QMARK_QMARK] = ACTIONS(1252), + [anon_sym_instanceof] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_void] = ACTIONS(1248), + [anon_sym_delete] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1246), + [sym_number] = ACTIONS(1246), + [sym_this] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_abstract] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_interface] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [sym_readonly] = ACTIONS(1248), + [sym__automatic_semicolon] = ACTIONS(1254), + }, + [114] = { + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_as] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_var] = ACTIONS(890), + [anon_sym_let] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_await] = ACTIONS(890), + [anon_sym_in] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_with] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_debugger] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_case] = ACTIONS(890), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(890), + [anon_sym_function] = ACTIONS(890), + [anon_sym_QMARK_DOT] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_QMARK] = ACTIONS(890), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_GT_GT] = ACTIONS(890), + [anon_sym_GT_GT_GT] = ACTIONS(888), + [anon_sym_LT_LT] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(890), + [anon_sym_CARET] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PERCENT] = ACTIONS(888), + [anon_sym_STAR_STAR] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(890), + [anon_sym_EQ_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(890), + [anon_sym_BANG_EQ_EQ] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK] = ACTIONS(888), + [anon_sym_instanceof] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_void] = ACTIONS(890), + [anon_sym_delete] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [anon_sym_SQUOTE] = ACTIONS(888), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(888), + [sym_number] = ACTIONS(888), + [sym_this] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_undefined] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_static] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + [sym__automatic_semicolon] = ACTIONS(888), + }, + [115] = { + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_export] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(1260), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_typeof] = ACTIONS(1258), + [anon_sym_import] = ACTIONS(1258), + [anon_sym_var] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_in] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1258), + [anon_sym_with] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_debugger] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_throw] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_DOT] = ACTIONS(1260), + [anon_sym_class] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_function] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(1262), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1260), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1260), + [anon_sym_GT_GT_GT] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1262), + [anon_sym_STAR_STAR] = ACTIONS(1262), + [anon_sym_LT_EQ] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1262), + [anon_sym_BANG_EQ] = ACTIONS(1260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1262), + [anon_sym_GT_EQ] = ACTIONS(1262), + [anon_sym_QMARK_QMARK] = ACTIONS(1262), + [anon_sym_instanceof] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1258), + [anon_sym_delete] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [sym_this] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [sym_null] = ACTIONS(1258), + [sym_undefined] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_abstract] = ACTIONS(1258), + [anon_sym_get] = ACTIONS(1258), + [anon_sym_set] = ACTIONS(1258), + [anon_sym_declare] = ACTIONS(1258), + [anon_sym_public] = ACTIONS(1258), + [anon_sym_private] = ACTIONS(1258), + [anon_sym_protected] = ACTIONS(1258), + [anon_sym_module] = ACTIONS(1258), + [anon_sym_any] = ACTIONS(1258), + [anon_sym_number] = ACTIONS(1258), + [anon_sym_boolean] = ACTIONS(1258), + [anon_sym_string] = ACTIONS(1258), + [anon_sym_symbol] = ACTIONS(1258), + [anon_sym_interface] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [sym_readonly] = ACTIONS(1258), + [sym__automatic_semicolon] = ACTIONS(1264), + }, + [116] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_as] = ACTIONS(1268), + [anon_sym_namespace] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_typeof] = ACTIONS(1268), + [anon_sym_import] = ACTIONS(1268), + [anon_sym_var] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1268), + [anon_sym_in] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(1268), + [anon_sym_with] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_debugger] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_throw] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_yield] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_function] = ACTIONS(1268), + [anon_sym_QMARK_DOT] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1268), + [anon_sym_GT_GT_GT] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_QMARK_QMARK] = ACTIONS(1266), + [anon_sym_instanceof] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_void] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1266), + [sym_number] = ACTIONS(1266), + [sym_this] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [sym_null] = ACTIONS(1268), + [sym_undefined] = ACTIONS(1268), + [anon_sym_AT] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_abstract] = ACTIONS(1268), + [anon_sym_get] = ACTIONS(1268), + [anon_sym_set] = ACTIONS(1268), + [anon_sym_declare] = ACTIONS(1268), + [anon_sym_public] = ACTIONS(1268), + [anon_sym_private] = ACTIONS(1268), + [anon_sym_protected] = ACTIONS(1268), + [anon_sym_module] = ACTIONS(1268), + [anon_sym_any] = ACTIONS(1268), + [anon_sym_number] = ACTIONS(1268), + [anon_sym_boolean] = ACTIONS(1268), + [anon_sym_string] = ACTIONS(1268), + [anon_sym_symbol] = ACTIONS(1268), + [anon_sym_interface] = ACTIONS(1268), + [anon_sym_extends] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [sym_readonly] = ACTIONS(1268), + }, + [117] = { + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_as] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_import] = ACTIONS(1272), + [anon_sym_var] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1272), + [anon_sym_in] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_try] = ACTIONS(1272), + [anon_sym_with] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_debugger] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_throw] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_yield] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_DOT] = ACTIONS(1272), + [anon_sym_class] = ACTIONS(1272), + [anon_sym_async] = ACTIONS(1272), + [anon_sym_function] = ACTIONS(1272), + [anon_sym_QMARK_DOT] = ACTIONS(1270), + [anon_sym_new] = ACTIONS(1272), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_AMP_AMP] = ACTIONS(1270), + [anon_sym_PIPE_PIPE] = ACTIONS(1270), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_GT_GT_GT] = ACTIONS(1270), + [anon_sym_LT_LT] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_QMARK_QMARK] = ACTIONS(1270), + [anon_sym_instanceof] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1270), + [sym_this] = ACTIONS(1272), + [sym_super] = ACTIONS(1272), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [sym_null] = ACTIONS(1272), + [sym_undefined] = ACTIONS(1272), + [anon_sym_AT] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_abstract] = ACTIONS(1272), + [anon_sym_get] = ACTIONS(1272), + [anon_sym_set] = ACTIONS(1272), + [anon_sym_declare] = ACTIONS(1272), + [anon_sym_public] = ACTIONS(1272), + [anon_sym_private] = ACTIONS(1272), + [anon_sym_protected] = ACTIONS(1272), + [anon_sym_module] = ACTIONS(1272), + [anon_sym_any] = ACTIONS(1272), + [anon_sym_number] = ACTIONS(1272), + [anon_sym_boolean] = ACTIONS(1272), + [anon_sym_string] = ACTIONS(1272), + [anon_sym_symbol] = ACTIONS(1272), + [anon_sym_interface] = ACTIONS(1272), + [anon_sym_extends] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [sym_readonly] = ACTIONS(1272), + }, + [118] = { + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1276), + [anon_sym_export] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(1276), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1276), + [anon_sym_typeof] = ACTIONS(1276), + [anon_sym_import] = ACTIONS(1276), + [anon_sym_var] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_await] = ACTIONS(1276), + [anon_sym_in] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_try] = ACTIONS(1276), + [anon_sym_with] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_debugger] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_throw] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1276), + [anon_sym_class] = ACTIONS(1276), + [anon_sym_async] = ACTIONS(1276), + [anon_sym_function] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1276), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_AMP_AMP] = ACTIONS(1274), + [anon_sym_PIPE_PIPE] = ACTIONS(1274), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_GT_GT_GT] = ACTIONS(1274), + [anon_sym_LT_LT] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1274), + [anon_sym_STAR_STAR] = ACTIONS(1274), + [anon_sym_LT_EQ] = ACTIONS(1274), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1274), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1274), + [anon_sym_GT_EQ] = ACTIONS(1274), + [anon_sym_QMARK_QMARK] = ACTIONS(1274), + [anon_sym_instanceof] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_void] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1274), + [sym_number] = ACTIONS(1274), + [sym_this] = ACTIONS(1276), + [sym_super] = ACTIONS(1276), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_AT] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_abstract] = ACTIONS(1276), + [anon_sym_get] = ACTIONS(1276), + [anon_sym_set] = ACTIONS(1276), + [anon_sym_declare] = ACTIONS(1276), + [anon_sym_public] = ACTIONS(1276), + [anon_sym_private] = ACTIONS(1276), + [anon_sym_protected] = ACTIONS(1276), + [anon_sym_module] = ACTIONS(1276), + [anon_sym_any] = ACTIONS(1276), + [anon_sym_number] = ACTIONS(1276), + [anon_sym_boolean] = ACTIONS(1276), + [anon_sym_string] = ACTIONS(1276), + [anon_sym_symbol] = ACTIONS(1276), + [anon_sym_interface] = ACTIONS(1276), + [anon_sym_extends] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [sym_readonly] = ACTIONS(1276), + }, + [119] = { + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_as] = ACTIONS(1094), + [anon_sym_namespace] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_type] = ACTIONS(1094), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(1094), + [anon_sym_var] = ACTIONS(1094), + [anon_sym_let] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_else] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_await] = ACTIONS(1094), + [anon_sym_in] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_try] = ACTIONS(1094), + [anon_sym_with] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_debugger] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_throw] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_yield] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1094), + [anon_sym_DOT] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(1094), + [anon_sym_async] = ACTIONS(1094), + [anon_sym_function] = ACTIONS(1094), + [anon_sym_QMARK_DOT] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_GT_GT] = ACTIONS(1094), + [anon_sym_GT_GT_GT] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1092), + [anon_sym_STAR_STAR] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1092), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_QMARK_QMARK] = ACTIONS(1092), + [anon_sym_instanceof] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_number] = ACTIONS(1092), + [sym_this] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_undefined] = ACTIONS(1094), + [anon_sym_AT] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_abstract] = ACTIONS(1094), + [anon_sym_get] = ACTIONS(1094), + [anon_sym_set] = ACTIONS(1094), + [anon_sym_declare] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1094), + [anon_sym_private] = ACTIONS(1094), + [anon_sym_protected] = ACTIONS(1094), + [anon_sym_module] = ACTIONS(1094), + [anon_sym_any] = ACTIONS(1094), + [anon_sym_number] = ACTIONS(1094), + [anon_sym_boolean] = ACTIONS(1094), + [anon_sym_string] = ACTIONS(1094), + [anon_sym_symbol] = ACTIONS(1094), + [anon_sym_interface] = ACTIONS(1094), + [anon_sym_extends] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [sym_readonly] = ACTIONS(1094), + }, + [120] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1280), + [anon_sym_export] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_as] = ACTIONS(1280), + [anon_sym_namespace] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1280), + [anon_sym_typeof] = ACTIONS(1280), + [anon_sym_import] = ACTIONS(1280), + [anon_sym_var] = ACTIONS(1280), + [anon_sym_let] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_await] = ACTIONS(1280), + [anon_sym_in] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_try] = ACTIONS(1280), + [anon_sym_with] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_debugger] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_throw] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_DOT] = ACTIONS(1280), + [anon_sym_class] = ACTIONS(1280), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1280), + [anon_sym_QMARK_DOT] = ACTIONS(1278), + [anon_sym_new] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_AMP_AMP] = ACTIONS(1278), + [anon_sym_PIPE_PIPE] = ACTIONS(1278), + [anon_sym_GT_GT] = ACTIONS(1280), + [anon_sym_GT_GT_GT] = ACTIONS(1278), + [anon_sym_LT_LT] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1278), + [anon_sym_STAR_STAR] = ACTIONS(1278), + [anon_sym_LT_EQ] = ACTIONS(1278), + [anon_sym_EQ_EQ] = ACTIONS(1280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1278), + [anon_sym_BANG_EQ] = ACTIONS(1280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1278), + [anon_sym_GT_EQ] = ACTIONS(1278), + [anon_sym_QMARK_QMARK] = ACTIONS(1278), + [anon_sym_instanceof] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1280), + [anon_sym_delete] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1278), + [sym_number] = ACTIONS(1278), + [sym_this] = ACTIONS(1280), + [sym_super] = ACTIONS(1280), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [sym_null] = ACTIONS(1280), + [sym_undefined] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_abstract] = ACTIONS(1280), + [anon_sym_get] = ACTIONS(1280), + [anon_sym_set] = ACTIONS(1280), + [anon_sym_declare] = ACTIONS(1280), + [anon_sym_public] = ACTIONS(1280), + [anon_sym_private] = ACTIONS(1280), + [anon_sym_protected] = ACTIONS(1280), + [anon_sym_module] = ACTIONS(1280), + [anon_sym_any] = ACTIONS(1280), + [anon_sym_number] = ACTIONS(1280), + [anon_sym_boolean] = ACTIONS(1280), + [anon_sym_string] = ACTIONS(1280), + [anon_sym_symbol] = ACTIONS(1280), + [anon_sym_interface] = ACTIONS(1280), + [anon_sym_extends] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [sym_readonly] = ACTIONS(1280), + }, + [121] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_as] = ACTIONS(1284), + [anon_sym_namespace] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_import] = ACTIONS(1284), + [anon_sym_var] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_await] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_try] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_debugger] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_throw] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_class] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_function] = ACTIONS(1284), + [anon_sym_QMARK_DOT] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_AMP_AMP] = ACTIONS(1282), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_GT_GT_GT] = ACTIONS(1282), + [anon_sym_LT_LT] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_QMARK_QMARK] = ACTIONS(1282), + [anon_sym_instanceof] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_void] = ACTIONS(1284), + [anon_sym_delete] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1282), + [sym_number] = ACTIONS(1282), + [sym_this] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [sym_null] = ACTIONS(1284), + [sym_undefined] = ACTIONS(1284), + [anon_sym_AT] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_abstract] = ACTIONS(1284), + [anon_sym_get] = ACTIONS(1284), + [anon_sym_set] = ACTIONS(1284), + [anon_sym_declare] = ACTIONS(1284), + [anon_sym_public] = ACTIONS(1284), + [anon_sym_private] = ACTIONS(1284), + [anon_sym_protected] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_any] = ACTIONS(1284), + [anon_sym_number] = ACTIONS(1284), + [anon_sym_boolean] = ACTIONS(1284), + [anon_sym_string] = ACTIONS(1284), + [anon_sym_symbol] = ACTIONS(1284), + [anon_sym_interface] = ACTIONS(1284), + [anon_sym_extends] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [sym_readonly] = ACTIONS(1284), + }, + [122] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_as] = ACTIONS(1288), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1288), + [anon_sym_import] = ACTIONS(1288), + [anon_sym_var] = ACTIONS(1288), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_await] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_try] = ACTIONS(1288), + [anon_sym_with] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_debugger] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_throw] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_yield] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_DOT] = ACTIONS(1288), + [anon_sym_class] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(1288), + [anon_sym_QMARK_DOT] = ACTIONS(1286), + [anon_sym_new] = ACTIONS(1288), + [anon_sym_QMARK] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_GT_GT_GT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1286), + [anon_sym_STAR_STAR] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_QMARK_QMARK] = ACTIONS(1286), + [anon_sym_instanceof] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_void] = ACTIONS(1288), + [anon_sym_delete] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1286), + [sym_number] = ACTIONS(1286), + [sym_this] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [sym_null] = ACTIONS(1288), + [sym_undefined] = ACTIONS(1288), + [anon_sym_AT] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_abstract] = ACTIONS(1288), + [anon_sym_get] = ACTIONS(1288), + [anon_sym_set] = ACTIONS(1288), + [anon_sym_declare] = ACTIONS(1288), + [anon_sym_public] = ACTIONS(1288), + [anon_sym_private] = ACTIONS(1288), + [anon_sym_protected] = ACTIONS(1288), + [anon_sym_module] = ACTIONS(1288), + [anon_sym_any] = ACTIONS(1288), + [anon_sym_number] = ACTIONS(1288), + [anon_sym_boolean] = ACTIONS(1288), + [anon_sym_string] = ACTIONS(1288), + [anon_sym_symbol] = ACTIONS(1288), + [anon_sym_interface] = ACTIONS(1288), + [anon_sym_extends] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [sym_readonly] = ACTIONS(1288), + }, + [123] = { + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_as] = ACTIONS(1292), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_var] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_await] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_debugger] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_throw] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_class] = ACTIONS(1292), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_function] = ACTIONS(1292), + [anon_sym_QMARK_DOT] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_GT_GT_GT] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1290), + [anon_sym_STAR_STAR] = ACTIONS(1290), + [anon_sym_LT_EQ] = ACTIONS(1290), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1290), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1290), + [anon_sym_GT_EQ] = ACTIONS(1290), + [anon_sym_QMARK_QMARK] = ACTIONS(1290), + [anon_sym_instanceof] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [sym_this] = ACTIONS(1292), + [sym_super] = ACTIONS(1292), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [sym_null] = ACTIONS(1292), + [sym_undefined] = ACTIONS(1292), + [anon_sym_AT] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_abstract] = ACTIONS(1292), + [anon_sym_get] = ACTIONS(1292), + [anon_sym_set] = ACTIONS(1292), + [anon_sym_declare] = ACTIONS(1292), + [anon_sym_public] = ACTIONS(1292), + [anon_sym_private] = ACTIONS(1292), + [anon_sym_protected] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_any] = ACTIONS(1292), + [anon_sym_number] = ACTIONS(1292), + [anon_sym_boolean] = ACTIONS(1292), + [anon_sym_string] = ACTIONS(1292), + [anon_sym_symbol] = ACTIONS(1292), + [anon_sym_interface] = ACTIONS(1292), + [anon_sym_extends] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [sym_readonly] = ACTIONS(1292), + }, + [124] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [anon_sym_export] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_as] = ACTIONS(1296), + [anon_sym_namespace] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1296), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(1296), + [anon_sym_var] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_await] = ACTIONS(1296), + [anon_sym_in] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_try] = ACTIONS(1296), + [anon_sym_with] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_debugger] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_throw] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_DOT] = ACTIONS(1296), + [anon_sym_class] = ACTIONS(1296), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_function] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(1294), + [anon_sym_new] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_GT_GT_GT] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_STAR_STAR] = ACTIONS(1294), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1294), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_QMARK_QMARK] = ACTIONS(1294), + [anon_sym_instanceof] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [sym_this] = ACTIONS(1296), + [sym_super] = ACTIONS(1296), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [sym_null] = ACTIONS(1296), + [sym_undefined] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_abstract] = ACTIONS(1296), + [anon_sym_get] = ACTIONS(1296), + [anon_sym_set] = ACTIONS(1296), + [anon_sym_declare] = ACTIONS(1296), + [anon_sym_public] = ACTIONS(1296), + [anon_sym_private] = ACTIONS(1296), + [anon_sym_protected] = ACTIONS(1296), + [anon_sym_module] = ACTIONS(1296), + [anon_sym_any] = ACTIONS(1296), + [anon_sym_number] = ACTIONS(1296), + [anon_sym_boolean] = ACTIONS(1296), + [anon_sym_string] = ACTIONS(1296), + [anon_sym_symbol] = ACTIONS(1296), + [anon_sym_interface] = ACTIONS(1296), + [anon_sym_extends] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [sym_readonly] = ACTIONS(1296), + }, + [125] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1300), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_as] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_typeof] = ACTIONS(1300), + [anon_sym_import] = ACTIONS(1300), + [anon_sym_var] = ACTIONS(1300), + [anon_sym_let] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_in] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_try] = ACTIONS(1300), + [anon_sym_with] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_debugger] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_throw] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_class] = ACTIONS(1300), + [anon_sym_async] = ACTIONS(1300), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_QMARK_DOT] = ACTIONS(1298), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1298), + [anon_sym_STAR_STAR] = ACTIONS(1298), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1298), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_QMARK_QMARK] = ACTIONS(1298), + [anon_sym_instanceof] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1300), + [anon_sym_delete] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1298), + [sym_number] = ACTIONS(1298), + [sym_this] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [sym_null] = ACTIONS(1300), + [sym_undefined] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_abstract] = ACTIONS(1300), + [anon_sym_get] = ACTIONS(1300), + [anon_sym_set] = ACTIONS(1300), + [anon_sym_declare] = ACTIONS(1300), + [anon_sym_public] = ACTIONS(1300), + [anon_sym_private] = ACTIONS(1300), + [anon_sym_protected] = ACTIONS(1300), + [anon_sym_module] = ACTIONS(1300), + [anon_sym_any] = ACTIONS(1300), + [anon_sym_number] = ACTIONS(1300), + [anon_sym_boolean] = ACTIONS(1300), + [anon_sym_string] = ACTIONS(1300), + [anon_sym_symbol] = ACTIONS(1300), + [anon_sym_interface] = ACTIONS(1300), + [anon_sym_extends] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [sym_readonly] = ACTIONS(1300), + }, + [126] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [anon_sym_export] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_as] = ACTIONS(1304), + [anon_sym_namespace] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1304), + [anon_sym_typeof] = ACTIONS(1304), + [anon_sym_import] = ACTIONS(1304), + [anon_sym_var] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_await] = ACTIONS(1304), + [anon_sym_in] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(1304), + [anon_sym_with] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_debugger] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_throw] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_DOT] = ACTIONS(1304), + [anon_sym_class] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_function] = ACTIONS(1304), + [anon_sym_QMARK_DOT] = ACTIONS(1302), + [anon_sym_new] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_STAR_STAR] = ACTIONS(1302), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1302), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_instanceof] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_void] = ACTIONS(1304), + [anon_sym_delete] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1302), + [sym_this] = ACTIONS(1304), + [sym_super] = ACTIONS(1304), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [sym_null] = ACTIONS(1304), + [sym_undefined] = ACTIONS(1304), + [anon_sym_AT] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_abstract] = ACTIONS(1304), + [anon_sym_get] = ACTIONS(1304), + [anon_sym_set] = ACTIONS(1304), + [anon_sym_declare] = ACTIONS(1304), + [anon_sym_public] = ACTIONS(1304), + [anon_sym_private] = ACTIONS(1304), + [anon_sym_protected] = ACTIONS(1304), + [anon_sym_module] = ACTIONS(1304), + [anon_sym_any] = ACTIONS(1304), + [anon_sym_number] = ACTIONS(1304), + [anon_sym_boolean] = ACTIONS(1304), + [anon_sym_string] = ACTIONS(1304), + [anon_sym_symbol] = ACTIONS(1304), + [anon_sym_interface] = ACTIONS(1304), + [anon_sym_extends] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [sym_readonly] = ACTIONS(1304), + }, + [127] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1308), + [anon_sym_export] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_as] = ACTIONS(1308), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_import] = ACTIONS(1308), + [anon_sym_var] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_await] = ACTIONS(1308), + [anon_sym_in] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_try] = ACTIONS(1308), + [anon_sym_with] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_debugger] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_throw] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_yield] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_class] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1308), + [anon_sym_function] = ACTIONS(1308), + [anon_sym_QMARK_DOT] = ACTIONS(1306), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_GT_GT_GT] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1306), + [anon_sym_STAR_STAR] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_QMARK_QMARK] = ACTIONS(1306), + [anon_sym_instanceof] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1306), + [sym_number] = ACTIONS(1306), + [sym_this] = ACTIONS(1308), + [sym_super] = ACTIONS(1308), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_abstract] = ACTIONS(1308), + [anon_sym_get] = ACTIONS(1308), + [anon_sym_set] = ACTIONS(1308), + [anon_sym_declare] = ACTIONS(1308), + [anon_sym_public] = ACTIONS(1308), + [anon_sym_private] = ACTIONS(1308), + [anon_sym_protected] = ACTIONS(1308), + [anon_sym_module] = ACTIONS(1308), + [anon_sym_any] = ACTIONS(1308), + [anon_sym_number] = ACTIONS(1308), + [anon_sym_boolean] = ACTIONS(1308), + [anon_sym_string] = ACTIONS(1308), + [anon_sym_symbol] = ACTIONS(1308), + [anon_sym_interface] = ACTIONS(1308), + [anon_sym_extends] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [sym_readonly] = ACTIONS(1308), + }, + [128] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1312), + [anon_sym_export] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_as] = ACTIONS(1312), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1312), + [anon_sym_typeof] = ACTIONS(1312), + [anon_sym_import] = ACTIONS(1312), + [anon_sym_var] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1312), + [anon_sym_in] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(1312), + [anon_sym_with] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_debugger] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_throw] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_class] = ACTIONS(1312), + [anon_sym_async] = ACTIONS(1312), + [anon_sym_function] = ACTIONS(1312), + [anon_sym_QMARK_DOT] = ACTIONS(1310), + [anon_sym_new] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_GT_GT_GT] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1310), + [anon_sym_STAR_STAR] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1310), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_QMARK_QMARK] = ACTIONS(1310), + [anon_sym_instanceof] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_void] = ACTIONS(1312), + [anon_sym_delete] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1310), + [sym_number] = ACTIONS(1310), + [sym_this] = ACTIONS(1312), + [sym_super] = ACTIONS(1312), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [sym_null] = ACTIONS(1312), + [sym_undefined] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_abstract] = ACTIONS(1312), + [anon_sym_get] = ACTIONS(1312), + [anon_sym_set] = ACTIONS(1312), + [anon_sym_declare] = ACTIONS(1312), + [anon_sym_public] = ACTIONS(1312), + [anon_sym_private] = ACTIONS(1312), + [anon_sym_protected] = ACTIONS(1312), + [anon_sym_module] = ACTIONS(1312), + [anon_sym_any] = ACTIONS(1312), + [anon_sym_number] = ACTIONS(1312), + [anon_sym_boolean] = ACTIONS(1312), + [anon_sym_string] = ACTIONS(1312), + [anon_sym_symbol] = ACTIONS(1312), + [anon_sym_interface] = ACTIONS(1312), + [anon_sym_extends] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [sym_readonly] = ACTIONS(1312), + }, + [129] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2328), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3784), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1316), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(565), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), + [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), [anon_sym_PLUS_PLUS] = ACTIONS(501), [anon_sym_DASH_DASH] = ACTIONS(501), @@ -21055,130 +27418,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(581), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(585), - [anon_sym_private] = ACTIONS(585), - [anon_sym_protected] = ACTIONS(585), - [anon_sym_module] = ACTIONS(553), - [anon_sym_any] = ACTIONS(587), - [anon_sym_number] = ACTIONS(587), - [anon_sym_boolean] = ACTIONS(587), - [anon_sym_string] = ACTIONS(587), - [anon_sym_symbol] = ACTIONS(587), - [sym_readonly] = ACTIONS(589), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, - [75] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1396), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1877), - [sym_array] = STATE(1880), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3829), - [sym_string] = STATE(1802), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2769), - [sym_rest_parameter] = STATE(3412), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3087), - [sym_constructor_type] = STATE(3087), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3087), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3425), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3087), - [sym_intersection_type] = STATE(3087), - [sym_function_type] = STATE(3087), - [aux_sym_export_statement_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_type] = ACTIONS(553), - [anon_sym_typeof] = ACTIONS(559), + [130] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2307), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3774), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3772), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1322), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(565), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), + [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), [anon_sym_PLUS_PLUS] = ACTIONS(501), [anon_sym_DASH_DASH] = ACTIONS(501), @@ -21186,609 +27520,305 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(581), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(585), - [anon_sym_private] = ACTIONS(585), - [anon_sym_protected] = ACTIONS(585), - [anon_sym_module] = ACTIONS(553), - [anon_sym_any] = ACTIONS(587), - [anon_sym_number] = ACTIONS(587), - [anon_sym_boolean] = ACTIONS(587), - [anon_sym_string] = ACTIONS(587), - [anon_sym_symbol] = ACTIONS(587), - [sym_readonly] = ACTIONS(589), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, - [76] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1466), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1640), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2795), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(2671), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3599), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2624), - [sym_intersection_type] = STATE(2624), - [sym_function_type] = STATE(2624), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(593), - [anon_sym_export] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(601), + [131] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2325), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3831), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3841), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1324), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(623), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(629), - [sym_this] = ACTIONS(631), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(633), - [sym_false] = ACTIONS(633), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(635), - [anon_sym_number] = ACTIONS(635), - [anon_sym_boolean] = ACTIONS(635), - [anon_sym_string] = ACTIONS(635), - [anon_sym_symbol] = ACTIONS(635), - [sym_readonly] = ACTIONS(637), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(639), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [77] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1867), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2795), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(2671), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3599), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2624), - [sym_intersection_type] = STATE(2624), - [sym_function_type] = STATE(2624), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(647), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(649), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(673), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(679), - [sym_this] = ACTIONS(681), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(685), - [anon_sym_number] = ACTIONS(685), - [anon_sym_boolean] = ACTIONS(685), - [anon_sym_string] = ACTIONS(685), - [anon_sym_symbol] = ACTIONS(685), - [sym_readonly] = ACTIONS(687), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(639), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, - [78] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1643), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3745), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1467), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(3027), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2261), - [sym__type] = STATE(2432), - [sym_constructor_type] = STATE(2432), - [sym__primary_type] = STATE(2332), - [sym_infer_type] = STATE(2432), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2317), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(3642), - [sym_array_type] = STATE(2332), - [sym__tuple_type_body] = STATE(2335), - [sym_tuple_type] = STATE(2332), - [sym_union_type] = STATE(2432), - [sym_intersection_type] = STATE(2432), - [sym_function_type] = STATE(2432), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(695), + [132] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2239), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3846), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3848), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(697), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1326), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(701), - [anon_sym_QMARK] = ACTIONS(703), - [anon_sym_AMP] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(711), + [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), [anon_sym_PLUS_PLUS] = ACTIONS(501), [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(713), - [sym_this] = ACTIONS(715), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(719), - [anon_sym_number] = ACTIONS(719), - [anon_sym_boolean] = ACTIONS(719), - [anon_sym_string] = ACTIONS(719), - [anon_sym_symbol] = ACTIONS(719), - [sym_readonly] = ACTIONS(721), - [anon_sym_infer] = ACTIONS(723), - [anon_sym_keyof] = ACTIONS(725), - [anon_sym_LBRACE_PIPE] = ACTIONS(727), - }, - [79] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1546), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1271), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2795), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(2671), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3599), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2624), - [sym_intersection_type] = STATE(2624), - [sym_function_type] = STATE(2624), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(735), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(753), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(759), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(763), - [sym_false] = ACTIONS(763), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(765), - [anon_sym_number] = ACTIONS(765), - [anon_sym_boolean] = ACTIONS(765), - [anon_sym_string] = ACTIONS(765), - [anon_sym_symbol] = ACTIONS(765), - [sym_readonly] = ACTIONS(767), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(639), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, - [80] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1403), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1951), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2769), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3002), - [sym_constructor_type] = STATE(3002), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3002), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3425), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3002), - [sym_intersection_type] = STATE(3002), - [sym_function_type] = STATE(3002), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(769), - [anon_sym_export] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(773), + [133] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2269), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3766), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3767), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1328), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), + [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), [anon_sym_PLUS_PLUS] = ACTIONS(501), [anon_sym_DASH_DASH] = ACTIONS(501), @@ -21796,487 +27826,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(779), - [sym_this] = ACTIONS(781), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(785), - [anon_sym_number] = ACTIONS(785), - [anon_sym_boolean] = ACTIONS(785), - [anon_sym_string] = ACTIONS(785), - [anon_sym_symbol] = ACTIONS(785), - [sym_readonly] = ACTIONS(519), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [81] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1531), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1760), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2795), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(2671), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3599), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2624), - [sym_intersection_type] = STATE(2624), - [sym_function_type] = STATE(2624), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(787), - [anon_sym_export] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(795), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(823), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(835), - [sym_this] = ACTIONS(837), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(843), - [anon_sym_number] = ACTIONS(843), - [anon_sym_boolean] = ACTIONS(843), - [anon_sym_string] = ACTIONS(843), - [anon_sym_symbol] = ACTIONS(843), - [sym_readonly] = ACTIONS(845), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(639), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [82] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1439), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1677), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2795), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(2671), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3599), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2624), - [sym_intersection_type] = STATE(2624), - [sym_function_type] = STATE(2624), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(847), - [anon_sym_export] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(647), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(853), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(865), - [sym_this] = ACTIONS(867), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(869), - [sym_false] = ACTIONS(869), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [sym_readonly] = ACTIONS(873), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(639), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, - [83] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1257), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1271), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2795), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(2671), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3599), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2624), - [sym_intersection_type] = STATE(2624), - [sym_function_type] = STATE(2624), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(875), - [anon_sym_export] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(877), + [134] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2328), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3784), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1330), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(759), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(763), - [sym_false] = ACTIONS(763), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(883), - [anon_sym_number] = ACTIONS(883), - [anon_sym_boolean] = ACTIONS(883), - [anon_sym_string] = ACTIONS(883), - [anon_sym_symbol] = ACTIONS(883), - [sym_readonly] = ACTIONS(519), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(639), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [84] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1325), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_as] = ACTIONS(889), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(893), - [anon_sym_await] = ACTIONS(467), - [anon_sym_in] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(893), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_QMARK_DOT] = ACTIONS(893), - [anon_sym_new] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(889), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -22286,5829 +27928,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), - }, - [85] = { - [sym_type_arguments] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [anon_sym_export] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_default] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_as] = ACTIONS(913), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_type] = ACTIONS(911), - [anon_sym_typeof] = ACTIONS(911), - [anon_sym_import] = ACTIONS(911), - [anon_sym_var] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_else] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_switch] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_await] = ACTIONS(911), - [anon_sym_in] = ACTIONS(913), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(911), - [anon_sym_try] = ACTIONS(911), - [anon_sym_with] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_debugger] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_throw] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_case] = ACTIONS(911), - [anon_sym_yield] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_class] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_QMARK_DOT] = ACTIONS(923), - [anon_sym_new] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_STAR_STAR_EQ] = ACTIONS(925), - [anon_sym_AMP_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(925), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_GT_GT] = ACTIONS(913), - [anon_sym_GT_GT_GT] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_STAR_STAR] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_QMARK_QMARK] = ACTIONS(913), - [anon_sym_instanceof] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_void] = ACTIONS(911), - [anon_sym_delete] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(909), - [sym_number] = ACTIONS(909), - [sym_this] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_true] = ACTIONS(911), - [sym_false] = ACTIONS(911), - [sym_null] = ACTIONS(911), - [sym_undefined] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(909), - [anon_sym_static] = ACTIONS(911), - [anon_sym_abstract] = ACTIONS(911), - [anon_sym_get] = ACTIONS(911), - [anon_sym_set] = ACTIONS(911), - [anon_sym_declare] = ACTIONS(911), - [anon_sym_public] = ACTIONS(911), - [anon_sym_private] = ACTIONS(911), - [anon_sym_protected] = ACTIONS(911), - [anon_sym_module] = ACTIONS(911), - [anon_sym_any] = ACTIONS(911), - [anon_sym_number] = ACTIONS(911), - [anon_sym_boolean] = ACTIONS(911), - [anon_sym_string] = ACTIONS(911), - [anon_sym_symbol] = ACTIONS(911), - [anon_sym_interface] = ACTIONS(911), - [anon_sym_extends] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [sym_readonly] = ACTIONS(911), - }, - [86] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1375), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_as] = ACTIONS(889), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_in] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_QMARK_DOT] = ACTIONS(893), - [anon_sym_new] = ACTIONS(75), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(889), - [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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - [sym__automatic_semicolon] = ACTIONS(893), - }, - [87] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1485), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_as] = ACTIONS(889), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_in] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(893), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_QMARK_DOT] = ACTIONS(893), - [anon_sym_new] = ACTIONS(945), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [88] = { - [ts_builtin_sym_end] = ACTIONS(949), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_default] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_type] = ACTIONS(951), - [anon_sym_typeof] = ACTIONS(951), - [anon_sym_import] = ACTIONS(951), - [anon_sym_var] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_else] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_switch] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_await] = ACTIONS(951), - [anon_sym_in] = ACTIONS(953), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_try] = ACTIONS(951), - [anon_sym_with] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_debugger] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_throw] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_case] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_class] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_function] = ACTIONS(951), - [anon_sym_QMARK_DOT] = ACTIONS(965), - [anon_sym_new] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_PERCENT_EQ] = ACTIONS(965), - [anon_sym_CARET_EQ] = ACTIONS(965), - [anon_sym_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_EQ] = ACTIONS(965), - [anon_sym_GT_GT_EQ] = ACTIONS(965), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(965), - [anon_sym_LT_LT_EQ] = ACTIONS(965), - [anon_sym_STAR_STAR_EQ] = ACTIONS(965), - [anon_sym_AMP_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(965), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_GT_GT_GT] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(953), - [anon_sym_STAR_STAR] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(965), - [anon_sym_QMARK_QMARK] = ACTIONS(953), - [anon_sym_instanceof] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(949), - [anon_sym_void] = ACTIONS(951), - [anon_sym_delete] = ACTIONS(951), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(958), - [sym_number] = ACTIONS(949), - [sym_this] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_true] = ACTIONS(951), - [sym_false] = ACTIONS(951), - [sym_null] = ACTIONS(951), - [sym_undefined] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(949), - [anon_sym_static] = ACTIONS(951), - [anon_sym_abstract] = ACTIONS(951), - [anon_sym_get] = ACTIONS(951), - [anon_sym_set] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(951), - [anon_sym_public] = ACTIONS(951), - [anon_sym_private] = ACTIONS(951), - [anon_sym_protected] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_any] = ACTIONS(951), - [anon_sym_number] = ACTIONS(951), - [anon_sym_boolean] = ACTIONS(951), - [anon_sym_string] = ACTIONS(951), - [anon_sym_symbol] = ACTIONS(951), - [anon_sym_interface] = ACTIONS(951), - [anon_sym_extends] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [sym_readonly] = ACTIONS(951), - }, - [89] = { - [sym_object] = STATE(3040), - [sym_array] = STATE(3043), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(967), - [anon_sym_export] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_type] = ACTIONS(969), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_async] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1019), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(969), - [anon_sym_get] = ACTIONS(969), - [anon_sym_set] = ACTIONS(969), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_public] = ACTIONS(969), - [anon_sym_private] = ACTIONS(969), - [anon_sym_protected] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_any] = ACTIONS(1023), - [anon_sym_number] = ACTIONS(1023), - [anon_sym_boolean] = ACTIONS(1023), - [anon_sym_string] = ACTIONS(1023), - [anon_sym_symbol] = ACTIONS(1023), - [sym_readonly] = ACTIONS(1025), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [90] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1588), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_as] = ACTIONS(889), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_in] = ACTIONS(889), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), - [anon_sym_function] = ACTIONS(483), - [anon_sym_QMARK_DOT] = ACTIONS(893), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [anon_sym_implements] = ACTIONS(889), - [sym_readonly] = ACTIONS(731), - }, - [91] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1689), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(1039), - [anon_sym_as] = ACTIONS(889), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_in] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_QMARK_DOT] = ACTIONS(893), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - [sym__automatic_semicolon] = ACTIONS(893), - }, - [92] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1575), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(889), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_in] = ACTIONS(889), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_QMARK_DOT] = ACTIONS(893), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - [anon_sym_LBRACE_PIPE] = ACTIONS(893), - }, - [93] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_as] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1075), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [94] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1075), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [95] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1075), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [96] = { - [sym_statement_block] = STATE(125), - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_as] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(1099), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_QMARK_DOT] = ACTIONS(1093), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_GT_GT_GT] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1093), - [anon_sym_STAR_STAR] = ACTIONS(1093), - [anon_sym_LT_EQ] = ACTIONS(1093), - [anon_sym_EQ_EQ] = ACTIONS(1095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1093), - [anon_sym_BANG_EQ] = ACTIONS(1095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1093), - [anon_sym_GT_EQ] = ACTIONS(1093), - [anon_sym_QMARK_QMARK] = ACTIONS(1093), - [anon_sym_instanceof] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), - [sym__automatic_semicolon] = ACTIONS(1093), - }, - [97] = { - [sym_statement_block] = STATE(125), - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_as] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_QMARK_DOT] = ACTIONS(1093), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_GT_GT_GT] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1093), - [anon_sym_STAR_STAR] = ACTIONS(1093), - [anon_sym_LT_EQ] = ACTIONS(1093), - [anon_sym_EQ_EQ] = ACTIONS(1095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1093), - [anon_sym_BANG_EQ] = ACTIONS(1095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1093), - [anon_sym_GT_EQ] = ACTIONS(1093), - [anon_sym_QMARK_QMARK] = ACTIONS(1093), - [anon_sym_instanceof] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), - [sym__automatic_semicolon] = ACTIONS(1093), - }, - [98] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_EQ] = ACTIONS(1105), - [anon_sym_as] = ACTIONS(1105), - [anon_sym_namespace] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1103), - [anon_sym_import] = ACTIONS(1103), - [anon_sym_var] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_switch] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1103), - [anon_sym_with] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_debugger] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_throw] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_async] = ACTIONS(1103), - [anon_sym_function] = ACTIONS(1103), - [anon_sym_QMARK_DOT] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1103), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_GT_GT_GT] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_PERCENT] = ACTIONS(1107), - [anon_sym_STAR_STAR] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1107), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1107), - [anon_sym_QMARK_QMARK] = ACTIONS(1107), - [anon_sym_instanceof] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_void] = ACTIONS(1103), - [anon_sym_delete] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_number] = ACTIONS(1101), - [sym_this] = ACTIONS(1103), - [sym_super] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_null] = ACTIONS(1103), - [sym_undefined] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1103), - [anon_sym_abstract] = ACTIONS(1103), - [anon_sym_get] = ACTIONS(1103), - [anon_sym_set] = ACTIONS(1103), - [anon_sym_declare] = ACTIONS(1103), - [anon_sym_public] = ACTIONS(1103), - [anon_sym_private] = ACTIONS(1103), - [anon_sym_protected] = ACTIONS(1103), - [anon_sym_module] = ACTIONS(1103), - [anon_sym_any] = ACTIONS(1103), - [anon_sym_number] = ACTIONS(1103), - [anon_sym_boolean] = ACTIONS(1103), - [anon_sym_string] = ACTIONS(1103), - [anon_sym_symbol] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [sym_readonly] = ACTIONS(1103), - [sym__automatic_semicolon] = ACTIONS(1109), - }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1115), - [anon_sym_default] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_var] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_switch] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_debugger] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_throw] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_case] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1115), - [anon_sym_class] = ACTIONS(1113), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(1113), - [anon_sym_QMARK_DOT] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_QMARK] = ACTIONS(1115), - [anon_sym_AMP_AMP] = ACTIONS(1117), - [anon_sym_PIPE_PIPE] = ACTIONS(1117), - [anon_sym_GT_GT] = ACTIONS(1115), - [anon_sym_GT_GT_GT] = ACTIONS(1117), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1115), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_PERCENT] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_QMARK_QMARK] = ACTIONS(1117), - [anon_sym_instanceof] = ACTIONS(1115), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_delete] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1111), - [sym_this] = ACTIONS(1113), - [sym_super] = ACTIONS(1113), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_null] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1111), - [anon_sym_static] = ACTIONS(1113), - [anon_sym_abstract] = ACTIONS(1113), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1113), - [anon_sym_declare] = ACTIONS(1113), - [anon_sym_public] = ACTIONS(1113), - [anon_sym_private] = ACTIONS(1113), - [anon_sym_protected] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_any] = ACTIONS(1113), - [anon_sym_number] = ACTIONS(1113), - [anon_sym_boolean] = ACTIONS(1113), - [anon_sym_string] = ACTIONS(1113), - [anon_sym_symbol] = ACTIONS(1113), - [anon_sym_interface] = ACTIONS(1113), - [anon_sym_enum] = ACTIONS(1113), - [sym_readonly] = ACTIONS(1113), - [sym__automatic_semicolon] = ACTIONS(1119), - }, - [100] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(1123), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1075), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [anon_sym_implements] = ACTIONS(976), - [sym_readonly] = ACTIONS(1077), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [101] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [anon_sym_export] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_as] = ACTIONS(1127), - [anon_sym_namespace] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_in] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_try] = ACTIONS(1127), - [anon_sym_with] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_debugger] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_throw] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_yield] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1127), - [anon_sym_QMARK_DOT] = ACTIONS(1125), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_QMARK] = ACTIONS(1127), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1127), - [anon_sym_GT_GT_GT] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PERCENT] = ACTIONS(1125), - [anon_sym_STAR_STAR] = ACTIONS(1125), - [anon_sym_LT_EQ] = ACTIONS(1125), - [anon_sym_EQ_EQ] = ACTIONS(1127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1125), - [anon_sym_BANG_EQ] = ACTIONS(1127), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1125), - [anon_sym_GT_EQ] = ACTIONS(1125), - [anon_sym_QMARK_QMARK] = ACTIONS(1125), - [anon_sym_instanceof] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_void] = ACTIONS(1127), - [anon_sym_delete] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1125), - [sym_number] = ACTIONS(1125), - [sym_this] = ACTIONS(1127), - [sym_super] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), - [sym_undefined] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_abstract] = ACTIONS(1127), - [anon_sym_get] = ACTIONS(1127), - [anon_sym_set] = ACTIONS(1127), - [anon_sym_declare] = ACTIONS(1127), - [anon_sym_public] = ACTIONS(1127), - [anon_sym_private] = ACTIONS(1127), - [anon_sym_protected] = ACTIONS(1127), - [anon_sym_module] = ACTIONS(1127), - [anon_sym_any] = ACTIONS(1127), - [anon_sym_number] = ACTIONS(1127), - [anon_sym_boolean] = ACTIONS(1127), - [anon_sym_string] = ACTIONS(1127), - [anon_sym_symbol] = ACTIONS(1127), - [anon_sym_interface] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [sym_readonly] = ACTIONS(1127), - [sym__automatic_semicolon] = ACTIONS(1125), - }, - [102] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_typeof] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(1131), - [anon_sym_let] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_in] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_try] = ACTIONS(1131), - [anon_sym_with] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_debugger] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_throw] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_yield] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1133), - [anon_sym_class] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(1131), - [anon_sym_QMARK_DOT] = ACTIONS(1135), - [anon_sym_new] = ACTIONS(1131), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_GT_GT_GT] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_STAR_STAR] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1135), - [anon_sym_GT_EQ] = ACTIONS(1135), - [anon_sym_QMARK_QMARK] = ACTIONS(1135), - [anon_sym_instanceof] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1131), - [anon_sym_delete] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1129), - [sym_number] = ACTIONS(1129), - [sym_this] = ACTIONS(1131), - [sym_super] = ACTIONS(1131), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [sym_null] = ACTIONS(1131), - [sym_undefined] = ACTIONS(1131), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_abstract] = ACTIONS(1131), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1131), - [anon_sym_declare] = ACTIONS(1131), - [anon_sym_public] = ACTIONS(1131), - [anon_sym_private] = ACTIONS(1131), - [anon_sym_protected] = ACTIONS(1131), - [anon_sym_module] = ACTIONS(1131), - [anon_sym_any] = ACTIONS(1131), - [anon_sym_number] = ACTIONS(1131), - [anon_sym_boolean] = ACTIONS(1131), - [anon_sym_string] = ACTIONS(1131), - [anon_sym_symbol] = ACTIONS(1131), - [anon_sym_interface] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [sym_readonly] = ACTIONS(1131), - [sym__automatic_semicolon] = ACTIONS(1137), - }, - [103] = { - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1141), - [anon_sym_export] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_as] = ACTIONS(1141), - [anon_sym_namespace] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_type] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_var] = ACTIONS(1141), - [anon_sym_let] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_in] = ACTIONS(1141), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_with] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_debugger] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_function] = ACTIONS(1141), - [anon_sym_QMARK_DOT] = ACTIONS(1139), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_STAR_STAR] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_instanceof] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_void] = ACTIONS(1141), - [anon_sym_delete] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1139), - [sym_this] = ACTIONS(1141), - [sym_super] = ACTIONS(1141), - [sym_true] = ACTIONS(1141), - [sym_false] = ACTIONS(1141), - [sym_null] = ACTIONS(1141), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1141), - [anon_sym_declare] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_protected] = ACTIONS(1141), - [anon_sym_module] = ACTIONS(1141), - [anon_sym_any] = ACTIONS(1141), - [anon_sym_number] = ACTIONS(1141), - [anon_sym_boolean] = ACTIONS(1141), - [anon_sym_string] = ACTIONS(1141), - [anon_sym_symbol] = ACTIONS(1141), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [sym_readonly] = ACTIONS(1141), - [sym__automatic_semicolon] = ACTIONS(1139), - }, - [104] = { - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1145), - [anon_sym_export] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_as] = ACTIONS(1145), - [anon_sym_namespace] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_COMMA] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_typeof] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1145), - [anon_sym_var] = ACTIONS(1145), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_const] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_debugger] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_throw] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_yield] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1145), - [anon_sym_GT] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_async] = ACTIONS(1145), - [anon_sym_function] = ACTIONS(1145), - [anon_sym_QMARK_DOT] = ACTIONS(1143), - [anon_sym_new] = ACTIONS(1145), - [anon_sym_QMARK] = ACTIONS(1145), - [anon_sym_AMP_AMP] = ACTIONS(1143), - [anon_sym_PIPE_PIPE] = ACTIONS(1143), - [anon_sym_GT_GT] = ACTIONS(1145), - [anon_sym_GT_GT_GT] = ACTIONS(1143), - [anon_sym_LT_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PERCENT] = ACTIONS(1143), - [anon_sym_STAR_STAR] = ACTIONS(1143), - [anon_sym_LT_EQ] = ACTIONS(1143), - [anon_sym_EQ_EQ] = ACTIONS(1145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1143), - [anon_sym_BANG_EQ] = ACTIONS(1145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1143), - [anon_sym_GT_EQ] = ACTIONS(1143), - [anon_sym_QMARK_QMARK] = ACTIONS(1143), - [anon_sym_instanceof] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_void] = ACTIONS(1145), - [anon_sym_delete] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1143), - [sym_number] = ACTIONS(1143), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(1145), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [sym_null] = ACTIONS(1145), - [sym_undefined] = ACTIONS(1145), - [anon_sym_AT] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_abstract] = ACTIONS(1145), - [anon_sym_get] = ACTIONS(1145), - [anon_sym_set] = ACTIONS(1145), - [anon_sym_declare] = ACTIONS(1145), - [anon_sym_public] = ACTIONS(1145), - [anon_sym_private] = ACTIONS(1145), - [anon_sym_protected] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_any] = ACTIONS(1145), - [anon_sym_number] = ACTIONS(1145), - [anon_sym_boolean] = ACTIONS(1145), - [anon_sym_string] = ACTIONS(1145), - [anon_sym_symbol] = ACTIONS(1145), - [anon_sym_interface] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [sym_readonly] = ACTIONS(1145), - [sym__automatic_semicolon] = ACTIONS(1143), - }, - [105] = { - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_identifier] = ACTIONS(1149), - [anon_sym_export] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_as] = ACTIONS(913), - [anon_sym_namespace] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_type] = ACTIONS(1149), - [anon_sym_typeof] = ACTIONS(1149), - [anon_sym_import] = ACTIONS(1149), - [anon_sym_var] = ACTIONS(1149), - [anon_sym_let] = ACTIONS(1149), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1147), - [anon_sym_await] = ACTIONS(1149), - [anon_sym_in] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(1149), - [anon_sym_with] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_debugger] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_throw] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(1149), - [anon_sym_DOT] = ACTIONS(913), - [anon_sym_class] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1149), - [anon_sym_function] = ACTIONS(1149), - [anon_sym_QMARK_DOT] = ACTIONS(927), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(913), - [anon_sym_GT_GT_GT] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_QMARK_QMARK] = ACTIONS(927), - [anon_sym_instanceof] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_void] = ACTIONS(1149), - [anon_sym_delete] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1147), - [sym_number] = ACTIONS(1147), - [sym_this] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_abstract] = ACTIONS(1149), - [anon_sym_get] = ACTIONS(1149), - [anon_sym_set] = ACTIONS(1149), - [anon_sym_declare] = ACTIONS(1149), - [anon_sym_public] = ACTIONS(1149), - [anon_sym_private] = ACTIONS(1149), - [anon_sym_protected] = ACTIONS(1149), - [anon_sym_module] = ACTIONS(1149), - [anon_sym_any] = ACTIONS(1149), - [anon_sym_number] = ACTIONS(1149), - [anon_sym_boolean] = ACTIONS(1149), - [anon_sym_string] = ACTIONS(1149), - [anon_sym_symbol] = ACTIONS(1149), - [anon_sym_interface] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [sym_readonly] = ACTIONS(1149), - [sym__automatic_semicolon] = ACTIONS(927), - }, - [106] = { - [ts_builtin_sym_end] = ACTIONS(1151), - [sym_identifier] = ACTIONS(1153), - [anon_sym_export] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_as] = ACTIONS(1155), - [anon_sym_namespace] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_type] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1153), - [anon_sym_import] = ACTIONS(1153), - [anon_sym_var] = ACTIONS(1153), - [anon_sym_let] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_await] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_debugger] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_yield] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1155), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1155), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1153), - [anon_sym_function] = ACTIONS(1153), - [anon_sym_QMARK_DOT] = ACTIONS(1157), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_AMP_AMP] = ACTIONS(1157), - [anon_sym_PIPE_PIPE] = ACTIONS(1157), - [anon_sym_GT_GT] = ACTIONS(1155), - [anon_sym_GT_GT_GT] = ACTIONS(1157), - [anon_sym_LT_LT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_CARET] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_STAR_STAR] = ACTIONS(1157), - [anon_sym_LT_EQ] = ACTIONS(1157), - [anon_sym_EQ_EQ] = ACTIONS(1155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1157), - [anon_sym_BANG_EQ] = ACTIONS(1155), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1157), - [anon_sym_GT_EQ] = ACTIONS(1157), - [anon_sym_QMARK_QMARK] = ACTIONS(1157), - [anon_sym_instanceof] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_void] = ACTIONS(1153), - [anon_sym_delete] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1151), - [sym_number] = ACTIONS(1151), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(1153), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_null] = ACTIONS(1153), - [sym_undefined] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_abstract] = ACTIONS(1153), - [anon_sym_get] = ACTIONS(1153), - [anon_sym_set] = ACTIONS(1153), - [anon_sym_declare] = ACTIONS(1153), - [anon_sym_public] = ACTIONS(1153), - [anon_sym_private] = ACTIONS(1153), - [anon_sym_protected] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), - [anon_sym_any] = ACTIONS(1153), - [anon_sym_number] = ACTIONS(1153), - [anon_sym_boolean] = ACTIONS(1153), - [anon_sym_string] = ACTIONS(1153), - [anon_sym_symbol] = ACTIONS(1153), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [sym_readonly] = ACTIONS(1153), - [sym__automatic_semicolon] = ACTIONS(1159), - }, - [107] = { - [ts_builtin_sym_end] = ACTIONS(949), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_namespace] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_type] = ACTIONS(951), - [anon_sym_typeof] = ACTIONS(951), - [anon_sym_import] = ACTIONS(951), - [anon_sym_var] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_switch] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_await] = ACTIONS(951), - [anon_sym_in] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_try] = ACTIONS(951), - [anon_sym_with] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_debugger] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_throw] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_case] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_class] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_function] = ACTIONS(951), - [anon_sym_QMARK_DOT] = ACTIONS(949), - [anon_sym_new] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_GT_GT_GT] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(949), - [anon_sym_STAR_STAR] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(949), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(949), - [anon_sym_QMARK_QMARK] = ACTIONS(949), - [anon_sym_instanceof] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(949), - [anon_sym_void] = ACTIONS(951), - [anon_sym_delete] = ACTIONS(951), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(949), - [sym_number] = ACTIONS(949), - [sym_this] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_true] = ACTIONS(951), - [sym_false] = ACTIONS(951), - [sym_null] = ACTIONS(951), - [sym_undefined] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(949), - [anon_sym_static] = ACTIONS(951), - [anon_sym_abstract] = ACTIONS(951), - [anon_sym_get] = ACTIONS(951), - [anon_sym_set] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(951), - [anon_sym_public] = ACTIONS(951), - [anon_sym_private] = ACTIONS(951), - [anon_sym_protected] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_any] = ACTIONS(951), - [anon_sym_number] = ACTIONS(951), - [anon_sym_boolean] = ACTIONS(951), - [anon_sym_string] = ACTIONS(951), - [anon_sym_symbol] = ACTIONS(951), - [anon_sym_interface] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [sym_readonly] = ACTIONS(951), - [sym__automatic_semicolon] = ACTIONS(949), - }, - [108] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_as] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_in] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_QMARK_DOT] = ACTIONS(1161), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1161), - [anon_sym_PIPE_PIPE] = ACTIONS(1161), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_GT_GT_GT] = ACTIONS(1161), - [anon_sym_LT_LT] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1161), - [anon_sym_BANG_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_QMARK_QMARK] = ACTIONS(1161), - [anon_sym_instanceof] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), - [sym__automatic_semicolon] = ACTIONS(1161), - }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_export] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(1167), - [anon_sym_namespace] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_typeof] = ACTIONS(1167), - [anon_sym_import] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(1167), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_await] = ACTIONS(1167), - [anon_sym_in] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_try] = ACTIONS(1167), - [anon_sym_with] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_debugger] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_GT] = ACTIONS(1167), - [anon_sym_SLASH] = ACTIONS(1167), - [anon_sym_DOT] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_async] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1167), - [anon_sym_QMARK_DOT] = ACTIONS(1165), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_QMARK] = ACTIONS(1167), - [anon_sym_AMP_AMP] = ACTIONS(1165), - [anon_sym_PIPE_PIPE] = ACTIONS(1165), - [anon_sym_GT_GT] = ACTIONS(1167), - [anon_sym_GT_GT_GT] = ACTIONS(1165), - [anon_sym_LT_LT] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_CARET] = ACTIONS(1165), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_PERCENT] = ACTIONS(1165), - [anon_sym_STAR_STAR] = ACTIONS(1165), - [anon_sym_LT_EQ] = ACTIONS(1165), - [anon_sym_EQ_EQ] = ACTIONS(1167), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1165), - [anon_sym_BANG_EQ] = ACTIONS(1167), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1165), - [anon_sym_GT_EQ] = ACTIONS(1165), - [anon_sym_QMARK_QMARK] = ACTIONS(1165), - [anon_sym_instanceof] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_void] = ACTIONS(1167), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1165), - [sym_number] = ACTIONS(1165), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(1167), - [sym_true] = ACTIONS(1167), - [sym_false] = ACTIONS(1167), - [sym_null] = ACTIONS(1167), - [sym_undefined] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_abstract] = ACTIONS(1167), - [anon_sym_get] = ACTIONS(1167), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_declare] = ACTIONS(1167), - [anon_sym_public] = ACTIONS(1167), - [anon_sym_private] = ACTIONS(1167), - [anon_sym_protected] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_any] = ACTIONS(1167), - [anon_sym_number] = ACTIONS(1167), - [anon_sym_boolean] = ACTIONS(1167), - [anon_sym_string] = ACTIONS(1167), - [anon_sym_symbol] = ACTIONS(1167), - [anon_sym_interface] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [sym_readonly] = ACTIONS(1167), - [sym__automatic_semicolon] = ACTIONS(1165), - }, - [110] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_as] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_in] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_QMARK_DOT] = ACTIONS(1161), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1161), - [anon_sym_PIPE_PIPE] = ACTIONS(1161), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_GT_GT_GT] = ACTIONS(1161), - [anon_sym_LT_LT] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1161), - [anon_sym_BANG_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_QMARK_QMARK] = ACTIONS(1161), - [anon_sym_instanceof] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), - [sym__automatic_semicolon] = ACTIONS(1169), - }, - [111] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1173), - [anon_sym_export] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_as] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_typeof] = ACTIONS(1173), - [anon_sym_import] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1171), - [anon_sym_await] = ACTIONS(1173), - [anon_sym_in] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_debugger] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_yield] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1173), - [anon_sym_async] = ACTIONS(1173), - [anon_sym_function] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(1177), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_QMARK] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1175), - [anon_sym_GT_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1177), - [anon_sym_STAR_STAR] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1177), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_QMARK_QMARK] = ACTIONS(1177), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_void] = ACTIONS(1173), - [anon_sym_delete] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1171), - [sym_this] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [sym_null] = ACTIONS(1173), - [sym_undefined] = ACTIONS(1173), - [anon_sym_AT] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_abstract] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1173), - [anon_sym_number] = ACTIONS(1173), - [anon_sym_boolean] = ACTIONS(1173), - [anon_sym_string] = ACTIONS(1173), - [anon_sym_symbol] = ACTIONS(1173), - [anon_sym_interface] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [sym_readonly] = ACTIONS(1173), - [sym__automatic_semicolon] = ACTIONS(1179), - }, - [112] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_export] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(1185), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_debugger] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(1183), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1183), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_async] = ACTIONS(1183), - [anon_sym_function] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(1187), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_GT_GT_GT] = ACTIONS(1187), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_STAR_STAR] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1187), - [anon_sym_QMARK_QMARK] = ACTIONS(1187), - [anon_sym_instanceof] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1183), - [anon_sym_delete] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1181), - [sym_number] = ACTIONS(1181), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_null] = ACTIONS(1183), - [sym_undefined] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_get] = ACTIONS(1183), - [anon_sym_set] = ACTIONS(1183), - [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_any] = ACTIONS(1183), - [anon_sym_number] = ACTIONS(1183), - [anon_sym_boolean] = ACTIONS(1183), - [anon_sym_string] = ACTIONS(1183), - [anon_sym_symbol] = ACTIONS(1183), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [sym_readonly] = ACTIONS(1183), - [sym__automatic_semicolon] = ACTIONS(1189), - }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_identifier] = ACTIONS(1193), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_COMMA] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_type] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1193), - [anon_sym_import] = ACTIONS(1193), - [anon_sym_var] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_with] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_debugger] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_throw] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_yield] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1195), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1195), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_async] = ACTIONS(1193), - [anon_sym_function] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(1197), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1197), - [anon_sym_PIPE_PIPE] = ACTIONS(1197), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_GT_GT_GT] = ACTIONS(1197), - [anon_sym_LT_LT] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PERCENT] = ACTIONS(1197), - [anon_sym_STAR_STAR] = ACTIONS(1197), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_EQ_EQ] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1197), - [anon_sym_QMARK_QMARK] = ACTIONS(1197), - [anon_sym_instanceof] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1193), - [anon_sym_delete] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1191), - [sym_number] = ACTIONS(1191), - [sym_this] = ACTIONS(1193), - [sym_super] = ACTIONS(1193), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [sym_null] = ACTIONS(1193), - [sym_undefined] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_abstract] = ACTIONS(1193), - [anon_sym_get] = ACTIONS(1193), - [anon_sym_set] = ACTIONS(1193), - [anon_sym_declare] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(1193), - [anon_sym_private] = ACTIONS(1193), - [anon_sym_protected] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_any] = ACTIONS(1193), - [anon_sym_number] = ACTIONS(1193), - [anon_sym_boolean] = ACTIONS(1193), - [anon_sym_string] = ACTIONS(1193), - [anon_sym_symbol] = ACTIONS(1193), - [anon_sym_interface] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [sym_readonly] = ACTIONS(1193), - [sym__automatic_semicolon] = ACTIONS(1199), - }, - [114] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_as] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1075), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [115] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_export] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_type] = ACTIONS(1207), - [anon_sym_typeof] = ACTIONS(1207), - [anon_sym_import] = ACTIONS(1207), - [anon_sym_var] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_await] = ACTIONS(1207), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_try] = ACTIONS(1207), - [anon_sym_with] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_debugger] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_throw] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_GT] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_DOT] = ACTIONS(1209), - [anon_sym_class] = ACTIONS(1207), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(1207), - [anon_sym_QMARK_DOT] = ACTIONS(1211), - [anon_sym_new] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1211), - [anon_sym_PIPE_PIPE] = ACTIONS(1211), - [anon_sym_GT_GT] = ACTIONS(1209), - [anon_sym_GT_GT_GT] = ACTIONS(1211), - [anon_sym_LT_LT] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1211), - [anon_sym_PIPE] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1211), - [anon_sym_STAR_STAR] = ACTIONS(1211), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_QMARK_QMARK] = ACTIONS(1211), - [anon_sym_instanceof] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_void] = ACTIONS(1207), - [anon_sym_delete] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1205), - [sym_number] = ACTIONS(1205), - [sym_this] = ACTIONS(1207), - [sym_super] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_null] = ACTIONS(1207), - [sym_undefined] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_abstract] = ACTIONS(1207), - [anon_sym_get] = ACTIONS(1207), - [anon_sym_set] = ACTIONS(1207), - [anon_sym_declare] = ACTIONS(1207), - [anon_sym_public] = ACTIONS(1207), - [anon_sym_private] = ACTIONS(1207), - [anon_sym_protected] = ACTIONS(1207), - [anon_sym_module] = ACTIONS(1207), - [anon_sym_any] = ACTIONS(1207), - [anon_sym_number] = ACTIONS(1207), - [anon_sym_boolean] = ACTIONS(1207), - [anon_sym_string] = ACTIONS(1207), - [anon_sym_symbol] = ACTIONS(1207), - [anon_sym_interface] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [sym_readonly] = ACTIONS(1207), - [sym__automatic_semicolon] = ACTIONS(1213), - }, - [116] = { - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_identifier] = ACTIONS(1217), - [anon_sym_export] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_as] = ACTIONS(1219), - [anon_sym_namespace] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1215), - [anon_sym_type] = ACTIONS(1217), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(1217), - [anon_sym_var] = ACTIONS(1217), - [anon_sym_let] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_await] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_try] = ACTIONS(1217), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_debugger] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_throw] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1217), - [anon_sym_GT] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1217), - [anon_sym_DOT] = ACTIONS(1219), - [anon_sym_class] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_function] = ACTIONS(1217), - [anon_sym_QMARK_DOT] = ACTIONS(1221), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_QMARK] = ACTIONS(1219), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1219), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_STAR_STAR] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_instanceof] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1215), - [sym_number] = ACTIONS(1215), - [sym_this] = ACTIONS(1217), - [sym_super] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_null] = ACTIONS(1217), - [sym_undefined] = ACTIONS(1217), - [anon_sym_AT] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_abstract] = ACTIONS(1217), - [anon_sym_get] = ACTIONS(1217), - [anon_sym_set] = ACTIONS(1217), - [anon_sym_declare] = ACTIONS(1217), - [anon_sym_public] = ACTIONS(1217), - [anon_sym_private] = ACTIONS(1217), - [anon_sym_protected] = ACTIONS(1217), - [anon_sym_module] = ACTIONS(1217), - [anon_sym_any] = ACTIONS(1217), - [anon_sym_number] = ACTIONS(1217), - [anon_sym_boolean] = ACTIONS(1217), - [anon_sym_string] = ACTIONS(1217), - [anon_sym_symbol] = ACTIONS(1217), - [anon_sym_interface] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [sym_readonly] = ACTIONS(1217), - [sym__automatic_semicolon] = ACTIONS(1223), - }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_as] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_import] = ACTIONS(1227), - [anon_sym_var] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_await] = ACTIONS(1227), - [anon_sym_in] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_with] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_debugger] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_throw] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_yield] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_DOT] = ACTIONS(1227), - [anon_sym_class] = ACTIONS(1227), - [anon_sym_async] = ACTIONS(1227), - [anon_sym_function] = ACTIONS(1227), - [anon_sym_QMARK_DOT] = ACTIONS(1225), - [anon_sym_new] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1225), - [anon_sym_PIPE_PIPE] = ACTIONS(1225), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_GT_GT_GT] = ACTIONS(1225), - [anon_sym_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1225), - [anon_sym_STAR_STAR] = ACTIONS(1225), - [anon_sym_LT_EQ] = ACTIONS(1225), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1225), - [anon_sym_GT_EQ] = ACTIONS(1225), - [anon_sym_QMARK_QMARK] = ACTIONS(1225), - [anon_sym_instanceof] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1227), - [anon_sym_delete] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1225), - [sym_number] = ACTIONS(1225), - [sym_this] = ACTIONS(1227), - [sym_super] = ACTIONS(1227), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_undefined] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_abstract] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_interface] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [sym_readonly] = ACTIONS(1227), - [sym__automatic_semicolon] = ACTIONS(1225), - }, - [118] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3077), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3077), - [sym_generic_type] = STATE(3077), - [sym_type_query] = STATE(3077), - [sym_index_type_query] = STATE(3077), - [sym_lookup_type] = STATE(3077), - [sym_literal_type] = STATE(3077), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3077), - [sym_flow_maybe_type] = STATE(3077), - [sym_parenthesized_type] = STATE(3077), - [sym_predefined_type] = STATE(3077), - [sym_object_type] = STATE(3077), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3077), - [sym__tuple_type_body] = STATE(2306), - [sym_tuple_type] = STATE(3077), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_as] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1231), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [119] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1235), - [anon_sym_export] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_as] = ACTIONS(1237), - [anon_sym_namespace] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_COMMA] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_type] = ACTIONS(1235), - [anon_sym_typeof] = ACTIONS(1235), - [anon_sym_import] = ACTIONS(1235), - [anon_sym_var] = ACTIONS(1235), - [anon_sym_let] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_in] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_try] = ACTIONS(1235), - [anon_sym_with] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_debugger] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_throw] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1235), - [anon_sym_yield] = ACTIONS(1235), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_class] = ACTIONS(1235), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1235), - [anon_sym_QMARK_DOT] = ACTIONS(1239), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_GT_GT_GT] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PERCENT] = ACTIONS(1239), - [anon_sym_STAR_STAR] = ACTIONS(1239), - [anon_sym_LT_EQ] = ACTIONS(1239), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1239), - [anon_sym_QMARK_QMARK] = ACTIONS(1239), - [anon_sym_instanceof] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_void] = ACTIONS(1235), - [anon_sym_delete] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1233), - [sym_number] = ACTIONS(1233), - [sym_this] = ACTIONS(1235), - [sym_super] = ACTIONS(1235), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [sym_null] = ACTIONS(1235), - [sym_undefined] = ACTIONS(1235), - [anon_sym_AT] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_abstract] = ACTIONS(1235), - [anon_sym_get] = ACTIONS(1235), - [anon_sym_set] = ACTIONS(1235), - [anon_sym_declare] = ACTIONS(1235), - [anon_sym_public] = ACTIONS(1235), - [anon_sym_private] = ACTIONS(1235), - [anon_sym_protected] = ACTIONS(1235), - [anon_sym_module] = ACTIONS(1235), - [anon_sym_any] = ACTIONS(1235), - [anon_sym_number] = ACTIONS(1235), - [anon_sym_boolean] = ACTIONS(1235), - [anon_sym_string] = ACTIONS(1235), - [anon_sym_symbol] = ACTIONS(1235), - [anon_sym_interface] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [sym_readonly] = ACTIONS(1235), - [sym__automatic_semicolon] = ACTIONS(1241), - }, - [120] = { - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_namespace] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_type] = ACTIONS(1245), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(1245), - [anon_sym_var] = ACTIONS(1245), - [anon_sym_let] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_await] = ACTIONS(1245), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_debugger] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_throw] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_yield] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_class] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1245), - [anon_sym_function] = ACTIONS(1245), - [anon_sym_QMARK_DOT] = ACTIONS(1249), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_GT_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_QMARK_QMARK] = ACTIONS(1249), - [anon_sym_instanceof] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1243), - [sym_this] = ACTIONS(1245), - [sym_super] = ACTIONS(1245), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [sym_null] = ACTIONS(1245), - [sym_undefined] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_abstract] = ACTIONS(1245), - [anon_sym_get] = ACTIONS(1245), - [anon_sym_set] = ACTIONS(1245), - [anon_sym_declare] = ACTIONS(1245), - [anon_sym_public] = ACTIONS(1245), - [anon_sym_private] = ACTIONS(1245), - [anon_sym_protected] = ACTIONS(1245), - [anon_sym_module] = ACTIONS(1245), - [anon_sym_any] = ACTIONS(1245), - [anon_sym_number] = ACTIONS(1245), - [anon_sym_boolean] = ACTIONS(1245), - [anon_sym_string] = ACTIONS(1245), - [anon_sym_symbol] = ACTIONS(1245), - [anon_sym_interface] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [sym_readonly] = ACTIONS(1245), - [sym__automatic_semicolon] = ACTIONS(1251), - }, - [121] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), - [anon_sym_export] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_as] = ACTIONS(1257), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_type] = ACTIONS(1255), - [anon_sym_typeof] = ACTIONS(1255), - [anon_sym_import] = ACTIONS(1255), - [anon_sym_var] = ACTIONS(1255), - [anon_sym_let] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_await] = ACTIONS(1255), - [anon_sym_in] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_with] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_debugger] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_throw] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1257), - [anon_sym_class] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_function] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_GT_GT_GT] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_QMARK_QMARK] = ACTIONS(1259), - [anon_sym_instanceof] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_void] = ACTIONS(1255), - [anon_sym_delete] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1253), - [sym_number] = ACTIONS(1253), - [sym_this] = ACTIONS(1255), - [sym_super] = ACTIONS(1255), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [sym_null] = ACTIONS(1255), - [sym_undefined] = ACTIONS(1255), - [anon_sym_AT] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_abstract] = ACTIONS(1255), - [anon_sym_get] = ACTIONS(1255), - [anon_sym_set] = ACTIONS(1255), - [anon_sym_declare] = ACTIONS(1255), - [anon_sym_public] = ACTIONS(1255), - [anon_sym_private] = ACTIONS(1255), - [anon_sym_protected] = ACTIONS(1255), - [anon_sym_module] = ACTIONS(1255), - [anon_sym_any] = ACTIONS(1255), - [anon_sym_number] = ACTIONS(1255), - [anon_sym_boolean] = ACTIONS(1255), - [anon_sym_string] = ACTIONS(1255), - [anon_sym_symbol] = ACTIONS(1255), - [anon_sym_interface] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [sym_readonly] = ACTIONS(1255), - [sym__automatic_semicolon] = ACTIONS(1261), - }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_as] = ACTIONS(1267), - [anon_sym_namespace] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_COMMA] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1265), - [anon_sym_typeof] = ACTIONS(1265), - [anon_sym_import] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(1265), - [anon_sym_let] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1265), - [anon_sym_with] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_debugger] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_yield] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1267), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1267), - [anon_sym_class] = ACTIONS(1265), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_function] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(1269), - [anon_sym_new] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_PIPE_PIPE] = ACTIONS(1269), - [anon_sym_GT_GT] = ACTIONS(1267), - [anon_sym_GT_GT_GT] = ACTIONS(1269), - [anon_sym_LT_LT] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_CARET] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PERCENT] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1269), - [anon_sym_EQ_EQ] = ACTIONS(1267), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ] = ACTIONS(1267), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1269), - [anon_sym_GT_EQ] = ACTIONS(1269), - [anon_sym_QMARK_QMARK] = ACTIONS(1269), - [anon_sym_instanceof] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_void] = ACTIONS(1265), - [anon_sym_delete] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1263), - [sym_number] = ACTIONS(1263), - [sym_this] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [sym_null] = ACTIONS(1265), - [sym_undefined] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_abstract] = ACTIONS(1265), - [anon_sym_get] = ACTIONS(1265), - [anon_sym_set] = ACTIONS(1265), - [anon_sym_declare] = ACTIONS(1265), - [anon_sym_public] = ACTIONS(1265), - [anon_sym_private] = ACTIONS(1265), - [anon_sym_protected] = ACTIONS(1265), - [anon_sym_module] = ACTIONS(1265), - [anon_sym_any] = ACTIONS(1265), - [anon_sym_number] = ACTIONS(1265), - [anon_sym_boolean] = ACTIONS(1265), - [anon_sym_string] = ACTIONS(1265), - [anon_sym_symbol] = ACTIONS(1265), - [anon_sym_interface] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [sym_readonly] = ACTIONS(1265), - [sym__automatic_semicolon] = ACTIONS(1271), - }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1103), - [anon_sym_import] = ACTIONS(1103), - [anon_sym_var] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_switch] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1103), - [anon_sym_with] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_debugger] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_throw] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_async] = ACTIONS(1103), - [anon_sym_function] = ACTIONS(1103), - [anon_sym_QMARK_DOT] = ACTIONS(1101), - [anon_sym_new] = ACTIONS(1103), - [anon_sym_QMARK] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_GT_GT_GT] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_PERCENT] = ACTIONS(1101), - [anon_sym_STAR_STAR] = ACTIONS(1101), - [anon_sym_LT_EQ] = ACTIONS(1101), - [anon_sym_EQ_EQ] = ACTIONS(1103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1101), - [anon_sym_BANG_EQ] = ACTIONS(1103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1101), - [anon_sym_GT_EQ] = ACTIONS(1101), - [anon_sym_QMARK_QMARK] = ACTIONS(1101), - [anon_sym_instanceof] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_void] = ACTIONS(1103), - [anon_sym_delete] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_number] = ACTIONS(1101), - [sym_this] = ACTIONS(1103), - [sym_super] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_null] = ACTIONS(1103), - [sym_undefined] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1103), - [anon_sym_abstract] = ACTIONS(1103), - [anon_sym_get] = ACTIONS(1103), - [anon_sym_set] = ACTIONS(1103), - [anon_sym_declare] = ACTIONS(1103), - [anon_sym_public] = ACTIONS(1103), - [anon_sym_private] = ACTIONS(1103), - [anon_sym_protected] = ACTIONS(1103), - [anon_sym_module] = ACTIONS(1103), - [anon_sym_any] = ACTIONS(1103), - [anon_sym_number] = ACTIONS(1103), - [anon_sym_boolean] = ACTIONS(1103), - [anon_sym_string] = ACTIONS(1103), - [anon_sym_symbol] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [sym_readonly] = ACTIONS(1103), - [sym__automatic_semicolon] = ACTIONS(1273), - }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1277), - [anon_sym_export] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_as] = ACTIONS(1277), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym_import] = ACTIONS(1277), - [anon_sym_var] = ACTIONS(1277), - [anon_sym_let] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_try] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_debugger] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_throw] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_yield] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_GT] = ACTIONS(1277), - [anon_sym_SLASH] = ACTIONS(1277), - [anon_sym_DOT] = ACTIONS(1277), - [anon_sym_class] = ACTIONS(1277), - [anon_sym_async] = ACTIONS(1277), - [anon_sym_function] = ACTIONS(1277), - [anon_sym_QMARK_DOT] = ACTIONS(1275), - [anon_sym_new] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_AMP_AMP] = ACTIONS(1275), - [anon_sym_PIPE_PIPE] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1277), - [anon_sym_GT_GT_GT] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1275), - [anon_sym_QMARK_QMARK] = ACTIONS(1275), - [anon_sym_instanceof] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_void] = ACTIONS(1277), - [anon_sym_delete] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1275), - [sym_number] = ACTIONS(1275), - [sym_this] = ACTIONS(1277), - [sym_super] = ACTIONS(1277), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [sym_null] = ACTIONS(1277), - [sym_undefined] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_abstract] = ACTIONS(1277), - [anon_sym_get] = ACTIONS(1277), - [anon_sym_set] = ACTIONS(1277), - [anon_sym_declare] = ACTIONS(1277), - [anon_sym_public] = ACTIONS(1277), - [anon_sym_private] = ACTIONS(1277), - [anon_sym_protected] = ACTIONS(1277), - [anon_sym_module] = ACTIONS(1277), - [anon_sym_any] = ACTIONS(1277), - [anon_sym_number] = ACTIONS(1277), - [anon_sym_boolean] = ACTIONS(1277), - [anon_sym_string] = ACTIONS(1277), - [anon_sym_symbol] = ACTIONS(1277), - [anon_sym_interface] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [sym_readonly] = ACTIONS(1277), - [sym__automatic_semicolon] = ACTIONS(1275), - }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1281), - [anon_sym_export] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(1281), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1281), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_import] = ACTIONS(1281), - [anon_sym_var] = ACTIONS(1281), - [anon_sym_let] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_in] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_try] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_debugger] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_throw] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_class] = ACTIONS(1281), - [anon_sym_async] = ACTIONS(1281), - [anon_sym_function] = ACTIONS(1281), - [anon_sym_QMARK_DOT] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_GT_GT_GT] = ACTIONS(1279), - [anon_sym_LT_LT] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PERCENT] = ACTIONS(1279), - [anon_sym_STAR_STAR] = ACTIONS(1279), - [anon_sym_LT_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ] = ACTIONS(1281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1279), - [anon_sym_BANG_EQ] = ACTIONS(1281), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1279), - [anon_sym_GT_EQ] = ACTIONS(1279), - [anon_sym_QMARK_QMARK] = ACTIONS(1279), - [anon_sym_instanceof] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_void] = ACTIONS(1281), - [anon_sym_delete] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1279), - [sym_number] = ACTIONS(1279), - [sym_this] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [sym_null] = ACTIONS(1281), - [sym_undefined] = ACTIONS(1281), - [anon_sym_AT] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_abstract] = ACTIONS(1281), - [anon_sym_get] = ACTIONS(1281), - [anon_sym_set] = ACTIONS(1281), - [anon_sym_declare] = ACTIONS(1281), - [anon_sym_public] = ACTIONS(1281), - [anon_sym_private] = ACTIONS(1281), - [anon_sym_protected] = ACTIONS(1281), - [anon_sym_module] = ACTIONS(1281), - [anon_sym_any] = ACTIONS(1281), - [anon_sym_number] = ACTIONS(1281), - [anon_sym_boolean] = ACTIONS(1281), - [anon_sym_string] = ACTIONS(1281), - [anon_sym_symbol] = ACTIONS(1281), - [anon_sym_interface] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [sym_readonly] = ACTIONS(1281), - [sym__automatic_semicolon] = ACTIONS(1279), - }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1285), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_as] = ACTIONS(1285), - [anon_sym_namespace] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_type] = ACTIONS(1285), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym_import] = ACTIONS(1285), - [anon_sym_var] = ACTIONS(1285), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_await] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_try] = ACTIONS(1285), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_debugger] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_throw] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_class] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(1285), - [anon_sym_QMARK_DOT] = ACTIONS(1283), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1285), - [anon_sym_GT_GT_GT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1283), - [anon_sym_STAR_STAR] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1285), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1285), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1283), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_QMARK_QMARK] = ACTIONS(1283), - [anon_sym_instanceof] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_void] = ACTIONS(1285), - [anon_sym_delete] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1283), - [sym_number] = ACTIONS(1283), - [sym_this] = ACTIONS(1285), - [sym_super] = ACTIONS(1285), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [sym_null] = ACTIONS(1285), - [sym_undefined] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_abstract] = ACTIONS(1285), - [anon_sym_get] = ACTIONS(1285), - [anon_sym_set] = ACTIONS(1285), - [anon_sym_declare] = ACTIONS(1285), - [anon_sym_public] = ACTIONS(1285), - [anon_sym_private] = ACTIONS(1285), - [anon_sym_protected] = ACTIONS(1285), - [anon_sym_module] = ACTIONS(1285), - [anon_sym_any] = ACTIONS(1285), - [anon_sym_number] = ACTIONS(1285), - [anon_sym_boolean] = ACTIONS(1285), - [anon_sym_string] = ACTIONS(1285), - [anon_sym_symbol] = ACTIONS(1285), - [anon_sym_interface] = ACTIONS(1285), - [anon_sym_extends] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [sym_readonly] = ACTIONS(1285), - }, - [127] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1289), - [anon_sym_export] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(1289), - [anon_sym_namespace] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_type] = ACTIONS(1289), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_import] = ACTIONS(1289), - [anon_sym_var] = ACTIONS(1289), - [anon_sym_let] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_else] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_await] = ACTIONS(1289), - [anon_sym_in] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_try] = ACTIONS(1289), - [anon_sym_with] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_debugger] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_throw] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_yield] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_class] = ACTIONS(1289), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(1289), - [anon_sym_QMARK_DOT] = ACTIONS(1287), - [anon_sym_new] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_GT_GT] = ACTIONS(1289), - [anon_sym_GT_GT_GT] = ACTIONS(1287), - [anon_sym_LT_LT] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1287), - [anon_sym_STAR_STAR] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_EQ_EQ] = ACTIONS(1289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1287), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1287), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_QMARK_QMARK] = ACTIONS(1287), - [anon_sym_instanceof] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_void] = ACTIONS(1289), - [anon_sym_delete] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1287), - [sym_number] = ACTIONS(1287), - [sym_this] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [sym_null] = ACTIONS(1289), - [sym_undefined] = ACTIONS(1289), - [anon_sym_AT] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_abstract] = ACTIONS(1289), - [anon_sym_get] = ACTIONS(1289), - [anon_sym_set] = ACTIONS(1289), - [anon_sym_declare] = ACTIONS(1289), - [anon_sym_public] = ACTIONS(1289), - [anon_sym_private] = ACTIONS(1289), - [anon_sym_protected] = ACTIONS(1289), - [anon_sym_module] = ACTIONS(1289), - [anon_sym_any] = ACTIONS(1289), - [anon_sym_number] = ACTIONS(1289), - [anon_sym_boolean] = ACTIONS(1289), - [anon_sym_string] = ACTIONS(1289), - [anon_sym_symbol] = ACTIONS(1289), - [anon_sym_interface] = ACTIONS(1289), - [anon_sym_extends] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [sym_readonly] = ACTIONS(1289), - }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [anon_sym_export] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_default] = ACTIONS(911), - [anon_sym_as] = ACTIONS(913), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_type] = ACTIONS(911), - [anon_sym_typeof] = ACTIONS(911), - [anon_sym_import] = ACTIONS(911), - [anon_sym_var] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_else] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_switch] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_await] = ACTIONS(911), - [anon_sym_in] = ACTIONS(913), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(911), - [anon_sym_try] = ACTIONS(911), - [anon_sym_with] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_debugger] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_throw] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_case] = ACTIONS(911), - [anon_sym_yield] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(1291), - [anon_sym_class] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(911), - [anon_sym_QMARK_DOT] = ACTIONS(923), - [anon_sym_new] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(913), - [anon_sym_GT_GT_GT] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_QMARK_QMARK] = ACTIONS(927), - [anon_sym_instanceof] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_void] = ACTIONS(911), - [anon_sym_delete] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(909), - [sym_number] = ACTIONS(909), - [sym_this] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_true] = ACTIONS(911), - [sym_false] = ACTIONS(911), - [sym_null] = ACTIONS(911), - [sym_undefined] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(909), - [anon_sym_static] = ACTIONS(911), - [anon_sym_abstract] = ACTIONS(911), - [anon_sym_get] = ACTIONS(911), - [anon_sym_set] = ACTIONS(911), - [anon_sym_declare] = ACTIONS(911), - [anon_sym_public] = ACTIONS(911), - [anon_sym_private] = ACTIONS(911), - [anon_sym_protected] = ACTIONS(911), - [anon_sym_module] = ACTIONS(911), - [anon_sym_any] = ACTIONS(911), - [anon_sym_number] = ACTIONS(911), - [anon_sym_boolean] = ACTIONS(911), - [anon_sym_string] = ACTIONS(911), - [anon_sym_symbol] = ACTIONS(911), - [anon_sym_interface] = ACTIONS(911), - [anon_sym_extends] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [sym_readonly] = ACTIONS(911), - }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_identifier] = ACTIONS(1295), - [anon_sym_export] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_as] = ACTIONS(1295), - [anon_sym_namespace] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_type] = ACTIONS(1295), - [anon_sym_typeof] = ACTIONS(1295), - [anon_sym_import] = ACTIONS(1295), - [anon_sym_var] = ACTIONS(1295), - [anon_sym_let] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_else] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_in] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_try] = ACTIONS(1295), - [anon_sym_with] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_debugger] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_throw] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1293), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_yield] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1293), - [anon_sym_LT] = ACTIONS(1295), - [anon_sym_GT] = ACTIONS(1295), - [anon_sym_SLASH] = ACTIONS(1295), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_class] = ACTIONS(1295), - [anon_sym_async] = ACTIONS(1295), - [anon_sym_function] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(1293), - [anon_sym_new] = ACTIONS(1295), - [anon_sym_QMARK] = ACTIONS(1295), - [anon_sym_AMP_AMP] = ACTIONS(1293), - [anon_sym_PIPE_PIPE] = ACTIONS(1293), - [anon_sym_GT_GT] = ACTIONS(1295), - [anon_sym_GT_GT_GT] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_STAR_STAR] = ACTIONS(1293), - [anon_sym_LT_EQ] = ACTIONS(1293), - [anon_sym_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1293), - [anon_sym_GT_EQ] = ACTIONS(1293), - [anon_sym_QMARK_QMARK] = ACTIONS(1293), - [anon_sym_instanceof] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(1295), - [anon_sym_delete] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1293), - [sym_number] = ACTIONS(1293), - [sym_this] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [sym_null] = ACTIONS(1295), - [sym_undefined] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_abstract] = ACTIONS(1295), - [anon_sym_get] = ACTIONS(1295), - [anon_sym_set] = ACTIONS(1295), - [anon_sym_declare] = ACTIONS(1295), - [anon_sym_public] = ACTIONS(1295), - [anon_sym_private] = ACTIONS(1295), - [anon_sym_protected] = ACTIONS(1295), - [anon_sym_module] = ACTIONS(1295), - [anon_sym_any] = ACTIONS(1295), - [anon_sym_number] = ACTIONS(1295), - [anon_sym_boolean] = ACTIONS(1295), - [anon_sym_string] = ACTIONS(1295), - [anon_sym_symbol] = ACTIONS(1295), - [anon_sym_interface] = ACTIONS(1295), - [anon_sym_extends] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [sym_readonly] = ACTIONS(1295), - }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_as] = ACTIONS(1299), - [anon_sym_namespace] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_type] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1299), - [anon_sym_import] = ACTIONS(1299), - [anon_sym_var] = ACTIONS(1299), - [anon_sym_let] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_else] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1297), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_in] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1299), - [anon_sym_with] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_debugger] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_throw] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_yield] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(1299), - [anon_sym_GT] = ACTIONS(1299), - [anon_sym_SLASH] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(1299), - [anon_sym_class] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(1299), - [anon_sym_function] = ACTIONS(1299), - [anon_sym_QMARK_DOT] = ACTIONS(1297), - [anon_sym_new] = ACTIONS(1299), - [anon_sym_QMARK] = ACTIONS(1299), - [anon_sym_AMP_AMP] = ACTIONS(1297), - [anon_sym_PIPE_PIPE] = ACTIONS(1297), - [anon_sym_GT_GT] = ACTIONS(1299), - [anon_sym_GT_GT_GT] = ACTIONS(1297), - [anon_sym_LT_LT] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PERCENT] = ACTIONS(1297), - [anon_sym_STAR_STAR] = ACTIONS(1297), - [anon_sym_LT_EQ] = ACTIONS(1297), - [anon_sym_EQ_EQ] = ACTIONS(1299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1297), - [anon_sym_BANG_EQ] = ACTIONS(1299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1297), - [anon_sym_GT_EQ] = ACTIONS(1297), - [anon_sym_QMARK_QMARK] = ACTIONS(1297), - [anon_sym_instanceof] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_void] = ACTIONS(1299), - [anon_sym_delete] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1297), - [sym_this] = ACTIONS(1299), - [sym_super] = ACTIONS(1299), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [sym_null] = ACTIONS(1299), - [sym_undefined] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_abstract] = ACTIONS(1299), - [anon_sym_get] = ACTIONS(1299), - [anon_sym_set] = ACTIONS(1299), - [anon_sym_declare] = ACTIONS(1299), - [anon_sym_public] = ACTIONS(1299), - [anon_sym_private] = ACTIONS(1299), - [anon_sym_protected] = ACTIONS(1299), - [anon_sym_module] = ACTIONS(1299), - [anon_sym_any] = ACTIONS(1299), - [anon_sym_number] = ACTIONS(1299), - [anon_sym_boolean] = ACTIONS(1299), - [anon_sym_string] = ACTIONS(1299), - [anon_sym_symbol] = ACTIONS(1299), - [anon_sym_interface] = ACTIONS(1299), - [anon_sym_extends] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [sym_readonly] = ACTIONS(1299), - }, - [131] = { - [ts_builtin_sym_end] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1303), - [anon_sym_export] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_as] = ACTIONS(1303), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1303), - [anon_sym_typeof] = ACTIONS(1303), - [anon_sym_import] = ACTIONS(1303), - [anon_sym_var] = ACTIONS(1303), - [anon_sym_let] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_else] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_in] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_try] = ACTIONS(1303), - [anon_sym_with] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_debugger] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_throw] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_yield] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_GT] = ACTIONS(1303), - [anon_sym_SLASH] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(1303), - [anon_sym_class] = ACTIONS(1303), - [anon_sym_async] = ACTIONS(1303), - [anon_sym_function] = ACTIONS(1303), - [anon_sym_QMARK_DOT] = ACTIONS(1301), - [anon_sym_new] = ACTIONS(1303), - [anon_sym_QMARK] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1303), - [anon_sym_GT_GT_GT] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PERCENT] = ACTIONS(1301), - [anon_sym_STAR_STAR] = ACTIONS(1301), - [anon_sym_LT_EQ] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1301), - [anon_sym_BANG_EQ] = ACTIONS(1303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1301), - [anon_sym_GT_EQ] = ACTIONS(1301), - [anon_sym_QMARK_QMARK] = ACTIONS(1301), - [anon_sym_instanceof] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_void] = ACTIONS(1303), - [anon_sym_delete] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1301), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_super] = ACTIONS(1303), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_AT] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_abstract] = ACTIONS(1303), - [anon_sym_get] = ACTIONS(1303), - [anon_sym_set] = ACTIONS(1303), - [anon_sym_declare] = ACTIONS(1303), - [anon_sym_public] = ACTIONS(1303), - [anon_sym_private] = ACTIONS(1303), - [anon_sym_protected] = ACTIONS(1303), - [anon_sym_module] = ACTIONS(1303), - [anon_sym_any] = ACTIONS(1303), - [anon_sym_number] = ACTIONS(1303), - [anon_sym_boolean] = ACTIONS(1303), - [anon_sym_string] = ACTIONS(1303), - [anon_sym_symbol] = ACTIONS(1303), - [anon_sym_interface] = ACTIONS(1303), - [anon_sym_extends] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [sym_readonly] = ACTIONS(1303), - }, - [132] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_identifier] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(1307), - [anon_sym_namespace] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_type] = ACTIONS(1307), - [anon_sym_typeof] = ACTIONS(1307), - [anon_sym_import] = ACTIONS(1307), - [anon_sym_var] = ACTIONS(1307), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1307), - [anon_sym_in] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_try] = ACTIONS(1307), - [anon_sym_with] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_debugger] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_throw] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_yield] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_GT] = ACTIONS(1307), - [anon_sym_SLASH] = ACTIONS(1307), - [anon_sym_DOT] = ACTIONS(1307), - [anon_sym_class] = ACTIONS(1307), - [anon_sym_async] = ACTIONS(1307), - [anon_sym_function] = ACTIONS(1307), - [anon_sym_QMARK_DOT] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [anon_sym_GT_GT] = ACTIONS(1307), - [anon_sym_GT_GT_GT] = ACTIONS(1305), - [anon_sym_LT_LT] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_CARET] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PERCENT] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1307), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_QMARK_QMARK] = ACTIONS(1305), - [anon_sym_instanceof] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_void] = ACTIONS(1307), - [anon_sym_delete] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1305), - [sym_number] = ACTIONS(1305), - [sym_this] = ACTIONS(1307), - [sym_super] = ACTIONS(1307), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [sym_null] = ACTIONS(1307), - [sym_undefined] = ACTIONS(1307), - [anon_sym_AT] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1307), - [anon_sym_get] = ACTIONS(1307), - [anon_sym_set] = ACTIONS(1307), - [anon_sym_declare] = ACTIONS(1307), - [anon_sym_public] = ACTIONS(1307), - [anon_sym_private] = ACTIONS(1307), - [anon_sym_protected] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_any] = ACTIONS(1307), - [anon_sym_number] = ACTIONS(1307), - [anon_sym_boolean] = ACTIONS(1307), - [anon_sym_string] = ACTIONS(1307), - [anon_sym_symbol] = ACTIONS(1307), - [anon_sym_interface] = ACTIONS(1307), - [anon_sym_extends] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [sym_readonly] = ACTIONS(1307), - }, - [133] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1311), - [anon_sym_export] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_namespace] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_type] = ACTIONS(1311), - [anon_sym_typeof] = ACTIONS(1311), - [anon_sym_import] = ACTIONS(1311), - [anon_sym_var] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_in] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_with] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_debugger] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_throw] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LT] = ACTIONS(1311), - [anon_sym_GT] = ACTIONS(1311), - [anon_sym_SLASH] = ACTIONS(1311), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(1311), - [anon_sym_QMARK_DOT] = ACTIONS(1309), - [anon_sym_new] = ACTIONS(1311), - [anon_sym_QMARK] = ACTIONS(1311), - [anon_sym_AMP_AMP] = ACTIONS(1309), - [anon_sym_PIPE_PIPE] = ACTIONS(1309), - [anon_sym_GT_GT] = ACTIONS(1311), - [anon_sym_GT_GT_GT] = ACTIONS(1309), - [anon_sym_LT_LT] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PERCENT] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1311), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1311), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_QMARK_QMARK] = ACTIONS(1309), - [anon_sym_instanceof] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1311), - [anon_sym_delete] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1309), - [sym_number] = ACTIONS(1309), - [sym_this] = ACTIONS(1311), - [sym_super] = ACTIONS(1311), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [sym_null] = ACTIONS(1311), - [sym_undefined] = ACTIONS(1311), - [anon_sym_AT] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_abstract] = ACTIONS(1311), - [anon_sym_get] = ACTIONS(1311), - [anon_sym_set] = ACTIONS(1311), - [anon_sym_declare] = ACTIONS(1311), - [anon_sym_public] = ACTIONS(1311), - [anon_sym_private] = ACTIONS(1311), - [anon_sym_protected] = ACTIONS(1311), - [anon_sym_module] = ACTIONS(1311), - [anon_sym_any] = ACTIONS(1311), - [anon_sym_number] = ACTIONS(1311), - [anon_sym_boolean] = ACTIONS(1311), - [anon_sym_string] = ACTIONS(1311), - [anon_sym_symbol] = ACTIONS(1311), - [anon_sym_interface] = ACTIONS(1311), - [anon_sym_extends] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [sym_readonly] = ACTIONS(1311), - }, - [134] = { - [ts_builtin_sym_end] = ACTIONS(1313), - [sym_identifier] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_as] = ACTIONS(1315), - [anon_sym_namespace] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_typeof] = ACTIONS(1315), - [anon_sym_import] = ACTIONS(1315), - [anon_sym_var] = ACTIONS(1315), - [anon_sym_let] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_await] = ACTIONS(1315), - [anon_sym_in] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_try] = ACTIONS(1315), - [anon_sym_with] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_debugger] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_throw] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1315), - [anon_sym_GT] = ACTIONS(1315), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_DOT] = ACTIONS(1315), - [anon_sym_class] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1315), - [anon_sym_function] = ACTIONS(1315), - [anon_sym_QMARK_DOT] = ACTIONS(1313), - [anon_sym_new] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(1315), - [anon_sym_AMP_AMP] = ACTIONS(1313), - [anon_sym_PIPE_PIPE] = ACTIONS(1313), - [anon_sym_GT_GT] = ACTIONS(1315), - [anon_sym_GT_GT_GT] = ACTIONS(1313), - [anon_sym_LT_LT] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_CARET] = ACTIONS(1313), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_QMARK_QMARK] = ACTIONS(1313), - [anon_sym_instanceof] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_void] = ACTIONS(1315), - [anon_sym_delete] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1313), - [sym_number] = ACTIONS(1313), - [sym_this] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [sym_null] = ACTIONS(1315), - [sym_undefined] = ACTIONS(1315), - [anon_sym_AT] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_abstract] = ACTIONS(1315), - [anon_sym_get] = ACTIONS(1315), - [anon_sym_set] = ACTIONS(1315), - [anon_sym_declare] = ACTIONS(1315), - [anon_sym_public] = ACTIONS(1315), - [anon_sym_private] = ACTIONS(1315), - [anon_sym_protected] = ACTIONS(1315), - [anon_sym_module] = ACTIONS(1315), - [anon_sym_any] = ACTIONS(1315), - [anon_sym_number] = ACTIONS(1315), - [anon_sym_boolean] = ACTIONS(1315), - [anon_sym_string] = ACTIONS(1315), - [anon_sym_symbol] = ACTIONS(1315), - [anon_sym_interface] = ACTIONS(1315), - [anon_sym_extends] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [sym_readonly] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_as] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_typeof] = ACTIONS(1319), - [anon_sym_import] = ACTIONS(1319), - [anon_sym_var] = ACTIONS(1319), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_else] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_await] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1319), - [anon_sym_with] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_debugger] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_throw] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_class] = ACTIONS(1319), - [anon_sym_async] = ACTIONS(1319), - [anon_sym_function] = ACTIONS(1319), - [anon_sym_QMARK_DOT] = ACTIONS(1317), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_GT_GT_GT] = ACTIONS(1317), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_QMARK_QMARK] = ACTIONS(1317), - [anon_sym_instanceof] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_void] = ACTIONS(1319), - [anon_sym_delete] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1317), - [sym_number] = ACTIONS(1317), - [sym_this] = ACTIONS(1319), - [sym_super] = ACTIONS(1319), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [sym_null] = ACTIONS(1319), - [sym_undefined] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_abstract] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_interface] = ACTIONS(1319), - [anon_sym_extends] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [sym_readonly] = ACTIONS(1319), - }, - [136] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1323), - [anon_sym_export] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_as] = ACTIONS(1323), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_type] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1323), - [anon_sym_import] = ACTIONS(1323), - [anon_sym_var] = ACTIONS(1323), - [anon_sym_let] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_else] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_await] = ACTIONS(1323), - [anon_sym_in] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_debugger] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_throw] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_GT] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1323), - [anon_sym_class] = ACTIONS(1323), - [anon_sym_async] = ACTIONS(1323), - [anon_sym_function] = ACTIONS(1323), - [anon_sym_QMARK_DOT] = ACTIONS(1321), - [anon_sym_new] = ACTIONS(1323), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1321), - [anon_sym_GT_GT] = ACTIONS(1323), - [anon_sym_GT_GT_GT] = ACTIONS(1321), - [anon_sym_LT_LT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1323), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1323), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_QMARK_QMARK] = ACTIONS(1321), - [anon_sym_instanceof] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_void] = ACTIONS(1323), - [anon_sym_delete] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1321), - [sym_number] = ACTIONS(1321), - [sym_this] = ACTIONS(1323), - [sym_super] = ACTIONS(1323), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [sym_null] = ACTIONS(1323), - [sym_undefined] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_abstract] = ACTIONS(1323), - [anon_sym_get] = ACTIONS(1323), - [anon_sym_set] = ACTIONS(1323), - [anon_sym_declare] = ACTIONS(1323), - [anon_sym_public] = ACTIONS(1323), - [anon_sym_private] = ACTIONS(1323), - [anon_sym_protected] = ACTIONS(1323), - [anon_sym_module] = ACTIONS(1323), - [anon_sym_any] = ACTIONS(1323), - [anon_sym_number] = ACTIONS(1323), - [anon_sym_boolean] = ACTIONS(1323), - [anon_sym_string] = ACTIONS(1323), - [anon_sym_symbol] = ACTIONS(1323), - [anon_sym_interface] = ACTIONS(1323), - [anon_sym_extends] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [sym_readonly] = ACTIONS(1323), - }, - [137] = { - [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_as] = ACTIONS(1327), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1327), - [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_LT] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1327), - [anon_sym_SLASH] = 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_QMARK] = 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_PERCENT] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [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(1325), - [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_abstract] = 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_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_interface] = ACTIONS(1327), - [anon_sym_extends] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [sym_readonly] = ACTIONS(1327), - }, - [138] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_as] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_EQ_GT] = ACTIONS(1335), - [anon_sym_QMARK_DOT] = ACTIONS(1337), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1075), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [139] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1397), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1877), - [sym_array] = STATE(1880), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3849), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_rest_parameter] = STATE(3412), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(1339), - [anon_sym_export] = ACTIONS(553), - [anon_sym_namespace] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(553), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2297), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3749), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3750), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1332), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(565), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -28118,97 +28030,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(1341), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(585), - [anon_sym_private] = ACTIONS(585), - [anon_sym_protected] = ACTIONS(585), - [anon_sym_module] = ACTIONS(553), - [anon_sym_any] = ACTIONS(553), - [anon_sym_number] = ACTIONS(553), - [anon_sym_boolean] = ACTIONS(553), - [anon_sym_string] = ACTIONS(553), - [anon_sym_symbol] = ACTIONS(553), - [sym_readonly] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, - [140] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1425), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1877), - [sym_array] = STATE(1880), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3848), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_rest_parameter] = STATE(3412), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(1339), - [anon_sym_export] = ACTIONS(553), - [anon_sym_namespace] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(553), + [136] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2328), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1560), + [sym_array] = STATE(1559), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3784), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [aux_sym_array_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(551), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(565), + [anon_sym_async] = ACTIONS(555), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -28218,83 +28132,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(1341), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1318), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(585), - [anon_sym_private] = ACTIONS(585), - [anon_sym_protected] = ACTIONS(585), - [anon_sym_module] = ACTIONS(553), - [anon_sym_any] = ACTIONS(553), - [anon_sym_number] = ACTIONS(553), - [anon_sym_boolean] = ACTIONS(553), - [anon_sym_string] = ACTIONS(553), - [anon_sym_symbol] = ACTIONS(553), - [sym_readonly] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [anon_sym_declare] = ACTIONS(543), + [anon_sym_public] = ACTIONS(575), + [anon_sym_private] = ACTIONS(575), + [anon_sym_protected] = ACTIONS(575), + [anon_sym_module] = ACTIONS(543), + [anon_sym_any] = ACTIONS(543), + [anon_sym_number] = ACTIONS(543), + [anon_sym_boolean] = ACTIONS(543), + [anon_sym_string] = ACTIONS(543), + [anon_sym_symbol] = ACTIONS(543), + [sym_readonly] = ACTIONS(1320), }, - [141] = { - [sym_import] = STATE(1749), - [sym_expression_statement] = STATE(173), - [sym_variable_declaration] = STATE(173), - [sym_lexical_declaration] = STATE(173), - [sym_empty_statement] = STATE(173), - [sym_parenthesized_expression] = STATE(1109), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1742), - [sym_array] = STATE(1743), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1112), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1345), - [anon_sym_export] = ACTIONS(1347), - [anon_sym_namespace] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1347), + [137] = { + [sym_import] = STATE(1630), + [sym_expression_statement] = STATE(180), + [sym_variable_declaration] = STATE(180), + [sym_lexical_declaration] = STATE(180), + [sym_empty_statement] = STATE(180), + [sym_parenthesized_expression] = STATE(905), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1545), + [sym_array] = STATE(1543), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1386), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(1334), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(1336), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [anon_sym_var] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(832), + [anon_sym_var] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -28303,9 +28217,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1355), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -28326,75 +28240,175 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(1347), - [anon_sym_set] = ACTIONS(1347), - [anon_sym_declare] = ACTIONS(1347), - [anon_sym_public] = ACTIONS(1347), - [anon_sym_private] = ACTIONS(1347), - [anon_sym_protected] = ACTIONS(1347), - [anon_sym_module] = ACTIONS(1347), - [anon_sym_any] = ACTIONS(1347), - [anon_sym_number] = ACTIONS(1347), - [anon_sym_boolean] = ACTIONS(1347), - [anon_sym_string] = ACTIONS(1347), - [anon_sym_symbol] = ACTIONS(1347), - [sym_readonly] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), }, - [142] = { - [sym_import] = STATE(1749), - [sym_expression_statement] = STATE(175), - [sym_variable_declaration] = STATE(175), - [sym_lexical_declaration] = STATE(175), - [sym_empty_statement] = STATE(175), - [sym_parenthesized_expression] = STATE(1109), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1742), - [sym_array] = STATE(1743), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1112), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1345), - [anon_sym_export] = ACTIONS(1347), - [anon_sym_namespace] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1347), + [138] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2197), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1610), + [sym_array] = STATE(1604), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4228), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(585), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(585), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1348), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(585), + [anon_sym_get] = ACTIONS(585), + [anon_sym_set] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(585), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(585), + [anon_sym_any] = ACTIONS(585), + [anon_sym_number] = ACTIONS(585), + [anon_sym_boolean] = ACTIONS(585), + [anon_sym_string] = ACTIONS(585), + [anon_sym_symbol] = ACTIONS(585), + [sym_readonly] = ACTIONS(1350), + }, + [139] = { + [sym_import] = STATE(1630), + [sym_expression_statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_lexical_declaration] = STATE(178), + [sym_empty_statement] = STATE(178), + [sym_parenthesized_expression] = STATE(905), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1545), + [sym_array] = STATE(1543), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1386), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(1334), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(1336), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [anon_sym_var] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(832), + [anon_sym_var] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -28403,9 +28417,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1355), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -28426,75 +28440,175 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(1347), - [anon_sym_set] = ACTIONS(1347), - [anon_sym_declare] = ACTIONS(1347), - [anon_sym_public] = ACTIONS(1347), - [anon_sym_private] = ACTIONS(1347), - [anon_sym_protected] = ACTIONS(1347), - [anon_sym_module] = ACTIONS(1347), - [anon_sym_any] = ACTIONS(1347), - [anon_sym_number] = ACTIONS(1347), - [anon_sym_boolean] = ACTIONS(1347), - [anon_sym_string] = ACTIONS(1347), - [anon_sym_symbol] = ACTIONS(1347), - [sym_readonly] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), }, - [143] = { - [sym_import] = STATE(1749), - [sym_expression_statement] = STATE(174), - [sym_variable_declaration] = STATE(174), - [sym_lexical_declaration] = STATE(174), - [sym_empty_statement] = STATE(174), - [sym_parenthesized_expression] = STATE(1109), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1742), - [sym_array] = STATE(1743), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1112), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1345), - [anon_sym_export] = ACTIONS(1347), - [anon_sym_namespace] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1347), + [140] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2181), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1610), + [sym_array] = STATE(1604), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4365), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(585), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(585), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1348), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(585), + [anon_sym_get] = ACTIONS(585), + [anon_sym_set] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(585), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(585), + [anon_sym_any] = ACTIONS(585), + [anon_sym_number] = ACTIONS(585), + [anon_sym_boolean] = ACTIONS(585), + [anon_sym_string] = ACTIONS(585), + [anon_sym_symbol] = ACTIONS(585), + [sym_readonly] = ACTIONS(1350), + }, + [141] = { + [sym_import] = STATE(1630), + [sym_expression_statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_lexical_declaration] = STATE(176), + [sym_empty_statement] = STATE(176), + [sym_parenthesized_expression] = STATE(905), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1545), + [sym_array] = STATE(1543), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1386), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(1334), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(1336), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [anon_sym_var] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(832), + [anon_sym_var] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -28503,9 +28617,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1355), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -28526,187 +28640,482 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(1347), - [anon_sym_set] = ACTIONS(1347), - [anon_sym_declare] = ACTIONS(1347), - [anon_sym_public] = ACTIONS(1347), - [anon_sym_private] = ACTIONS(1347), - [anon_sym_protected] = ACTIONS(1347), - [anon_sym_module] = ACTIONS(1347), - [anon_sym_any] = ACTIONS(1347), - [anon_sym_number] = ACTIONS(1347), - [anon_sym_boolean] = ACTIONS(1347), - [anon_sym_string] = ACTIONS(1347), - [anon_sym_symbol] = ACTIONS(1347), - [sym_readonly] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), }, - [144] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1396), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1877), - [sym_array] = STATE(1880), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3829), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_rest_parameter] = STATE(3412), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(1339), - [anon_sym_export] = ACTIONS(553), - [anon_sym_namespace] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(553), - [anon_sym_typeof] = ACTIONS(499), + [142] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2187), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1610), + [sym_array] = STATE(1604), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4293), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_rest_parameter] = STATE(3702), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(2400), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(585), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(585), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(565), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(1341), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(1348), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), [sym_false] = ACTIONS(513), [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(585), - [anon_sym_private] = ACTIONS(585), - [anon_sym_protected] = ACTIONS(585), - [anon_sym_module] = ACTIONS(553), - [anon_sym_any] = ACTIONS(553), - [anon_sym_number] = ACTIONS(553), - [anon_sym_boolean] = ACTIONS(553), - [anon_sym_string] = ACTIONS(553), - [anon_sym_symbol] = ACTIONS(553), - [sym_readonly] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(585), + [anon_sym_get] = ACTIONS(585), + [anon_sym_set] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(585), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(585), + [anon_sym_any] = ACTIONS(585), + [anon_sym_number] = ACTIONS(585), + [anon_sym_boolean] = ACTIONS(585), + [anon_sym_string] = ACTIONS(585), + [anon_sym_symbol] = ACTIONS(585), + [sym_readonly] = ACTIONS(1350), + }, + [143] = { + [sym_export_clause] = STATE(3607), + [sym__declaration] = STATE(679), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(718), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [aux_sym_object_repeat1] = STATE(3755), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [144] = { + [sym_export_clause] = STATE(3607), + [sym__declaration] = STATE(679), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(718), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [aux_sym_object_repeat1] = STATE(3850), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), }, [145] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [sym_export_clause] = STATE(3607), + [sym__declaration] = STATE(679), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(718), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [aux_sym_object_repeat1] = STATE(3735), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [146] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(1417), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(1357), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -28716,7 +29125,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -28737,73 +29146,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(449), [anon_sym_string] = ACTIONS(449), [anon_sym_symbol] = ACTIONS(449), - [anon_sym_extends] = ACTIONS(1359), + [anon_sym_extends] = ACTIONS(1419), [sym_readonly] = ACTIONS(449), + [anon_sym_PIPE_RBRACE] = ACTIONS(1417), + [sym__automatic_semicolon] = ACTIONS(1417), }, - [146] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [147] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(1417), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1417), [anon_sym_await] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(1357), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1417), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -28813,7 +29225,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -28834,76 +29246,462 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(449), [anon_sym_string] = ACTIONS(449), [anon_sym_symbol] = ACTIONS(449), - [anon_sym_extends] = ACTIONS(1359), + [anon_sym_extends] = ACTIONS(1419), [sym_readonly] = ACTIONS(449), - [anon_sym_PIPE_RBRACE] = ACTIONS(1357), - [sym__automatic_semicolon] = ACTIONS(1357), }, - [147] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1497), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3307), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3844), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3308), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [148] = { + [sym__declaration] = STATE(707), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(672), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [aux_sym_object_repeat1] = STATE(3735), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1423), + [anon_sym_global] = ACTIONS(1425), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [149] = { + [sym_export_clause] = STATE(3607), + [sym__declaration] = STATE(679), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(718), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1438), + [anon_sym_module] = ACTIONS(1440), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [150] = { + [sym__declaration] = STATE(707), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(672), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [aux_sym_object_repeat1] = STATE(3850), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1423), + [anon_sym_global] = ACTIONS(1425), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [151] = { + [sym__declaration] = STATE(707), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(672), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [aux_sym_object_repeat1] = STATE(3755), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1423), + [anon_sym_global] = ACTIONS(1425), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [152] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2319), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_mapped_type_clause] = STATE(4429), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(1442), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_type] = ACTIONS(449), + [anon_sym_type] = ACTIONS(1444), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1448), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(1450), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -28913,7 +29711,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -28921,86 +29719,280 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_get] = ACTIONS(1444), + [anon_sym_set] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_protected] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + [anon_sym_any] = ACTIONS(1444), + [anon_sym_number] = ACTIONS(1444), + [anon_sym_boolean] = ACTIONS(1444), + [anon_sym_string] = ACTIONS(1444), + [anon_sym_symbol] = ACTIONS(1444), + [sym_readonly] = ACTIONS(1444), }, - [148] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1470), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3307), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3844), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3308), - [sym_identifier] = ACTIONS(885), + [153] = { + [sym_export_clause] = STATE(3607), + [sym__declaration] = STATE(679), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(718), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1454), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [154] = { + [sym_export_clause] = STATE(3607), + [sym__declaration] = STATE(679), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(718), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [155] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2252), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4299), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1448), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29010,7 +30002,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29033,71 +30025,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [149] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1502), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3307), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_mapped_type_clause] = STATE(3861), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3308), - [sym_identifier] = ACTIONS(1363), - [anon_sym_export] = ACTIONS(1365), - [anon_sym_namespace] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(891), + [156] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2282), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4299), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_type] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1448), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1369), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29107,7 +30099,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29115,85 +30107,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(1365), - [anon_sym_set] = ACTIONS(1365), - [anon_sym_declare] = ACTIONS(1365), - [anon_sym_public] = ACTIONS(1365), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_protected] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_number] = ACTIONS(1365), - [anon_sym_boolean] = ACTIONS(1365), - [anon_sym_string] = ACTIONS(1365), - [anon_sym_symbol] = ACTIONS(1365), - [sym_readonly] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [150] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1464), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3210), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3211), - [sym_identifier] = ACTIONS(885), + [157] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2232), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3759), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3760), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1458), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29203,7 +30195,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29226,70 +30218,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [151] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1595), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3361), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3181), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [158] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2326), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3925), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3845), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1460), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29299,7 +30291,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29322,70 +30314,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [152] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1500), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3214), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3218), - [sym_identifier] = ACTIONS(885), + [159] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2297), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3749), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3750), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1462), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29395,7 +30387,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29418,70 +30410,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [153] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1490), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3283), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3280), - [sym_identifier] = ACTIONS(885), + [160] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2292), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3811), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(1464), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1464), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1464), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29491,7 +30483,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29514,79 +30506,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [154] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1578), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [161] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2321), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1448), [anon_sym_LT] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29594,86 +30587,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [anon_sym_extends] = ACTIONS(1359), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [155] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1463), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3358), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3356), - [sym_identifier] = ACTIONS(885), + [162] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2245), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3759), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3760), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1458), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29683,7 +30675,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29706,166 +30698,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [156] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1567), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [anon_sym_extends] = ACTIONS(1359), - [sym_readonly] = ACTIONS(789), - }, - [157] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1493), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3307), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3308), - [sym_identifier] = ACTIONS(885), + [163] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2239), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3846), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3848), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1466), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29875,7 +30771,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29898,70 +30794,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [158] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1489), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3361), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [164] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2323), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3764), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3762), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1468), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -29971,7 +30867,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -29994,70 +30890,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [159] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1517), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3406), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3402), - [sym_identifier] = ACTIONS(885), + [165] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2256), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3827), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1448), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -30067,7 +30963,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -30090,70 +30986,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [160] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1507), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3375), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3374), - [sym_identifier] = ACTIONS(885), + [166] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2325), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3831), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3841), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1470), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -30163,7 +31059,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -30186,166 +31082,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [161] = { - [sym_export_clause] = STATE(3143), - [sym__declaration] = STATE(649), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(653), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [aux_sym_object_repeat1] = STATE(3394), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1434), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [162] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1474), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3414), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3410), - [sym_identifier] = ACTIONS(885), + [167] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2269), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3766), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3767), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1472), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -30355,7 +31155,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -30378,70 +31178,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [163] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1496), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3406), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3402), - [sym_identifier] = ACTIONS(885), + [168] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2328), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3784), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1474), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -30451,7 +31251,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -30474,70 +31274,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [164] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1554), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3347), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3349), - [sym_identifier] = ACTIONS(885), + [169] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2385), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3811), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(3530), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(1464), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1464), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -30547,7 +31347,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -30570,70 +31370,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [165] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1487), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3275), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3276), - [sym_identifier] = ACTIONS(885), + [170] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2301), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3779), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3695), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1476), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -30643,7 +31443,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -30666,358 +31466,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [166] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1365), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [anon_sym_extends] = ACTIONS(1359), - [sym_readonly] = ACTIONS(849), - }, - [167] = { - [sym_export_clause] = STATE(3143), - [sym__declaration] = STATE(649), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(653), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [aux_sym_object_repeat1] = STATE(3233), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1434), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [168] = { - [sym_export_clause] = STATE(3143), - [sym__declaration] = STATE(649), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(653), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [aux_sym_object_repeat1] = STATE(3324), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1434), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [169] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1476), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3307), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3308), - [sym_identifier] = ACTIONS(885), + [171] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2307), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3774), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3772), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(457), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1478), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -31027,7 +31539,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -31050,79 +31562,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [170] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1481), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [172] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2243), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(3728), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [aux_sym_array_repeat1] = STATE(3733), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1480), [anon_sym_LT] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(1357), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -31130,182 +31643,179 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_extends] = ACTIONS(1359), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [171] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1682), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [173] = { + [sym__declaration] = STATE(707), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(672), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [anon_sym_extends] = ACTIONS(1359), - [sym_readonly] = ACTIONS(643), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1438), + [anon_sym_module] = ACTIONS(1484), + [anon_sym_global] = ACTIONS(1425), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), }, - [172] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1471), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3409), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [aux_sym_array_repeat1] = STATE(3225), - [sym_identifier] = ACTIONS(885), + [174] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2362), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(4366), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4366), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(1486), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), + [anon_sym_new] = ACTIONS(814), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -31315,7 +31825,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -31338,354 +31848,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [173] = { - [sym_import] = STATE(1749), - [sym_expression_statement] = STATE(215), - [sym_empty_statement] = STATE(215), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [174] = { - [sym_import] = STATE(1749), - [sym_expression_statement] = STATE(213), - [sym_empty_statement] = STATE(213), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, [175] = { - [sym_import] = STATE(1749), - [sym_expression_statement] = STATE(214), - [sym_empty_statement] = STATE(214), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1577), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3547), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [176] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1674), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3984), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3984), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2383), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_spread_element] = STATE(4247), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4247), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(1488), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -31695,7 +31920,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -31718,79 +31943,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, + [176] = { + [sym_import] = STATE(1630), + [sym_expression_statement] = STATE(217), + [sym_empty_statement] = STATE(217), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), + }, [177] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1619), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_spread_element] = STATE(3980), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3980), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -31798,375 +32117,474 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [anon_sym_extends] = ACTIONS(1419), + [sym_readonly] = ACTIONS(874), }, [178] = { - [sym_import] = STATE(2080), - [sym_parenthesized_expression] = STATE(1180), - [sym__expression] = STATE(1950), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2047), - [sym_array] = STATE(2055), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2428), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(2080), - [sym_function] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1736), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1180), - [sym_subscript_expression] = STATE(1180), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3503), - [sym_generic_type] = STATE(2477), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1458), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), + [sym_import] = STATE(1630), + [sym_expression_statement] = STATE(216), + [sym_empty_statement] = STATE(216), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1466), - [sym_this] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [sym_null] = ACTIONS(1468), - [sym_undefined] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_get] = ACTIONS(1460), - [anon_sym_set] = ACTIONS(1460), - [anon_sym_declare] = ACTIONS(1460), - [anon_sym_public] = ACTIONS(1460), - [anon_sym_private] = ACTIONS(1460), - [anon_sym_protected] = ACTIONS(1460), - [anon_sym_module] = ACTIONS(1460), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_number] = ACTIONS(1460), - [anon_sym_boolean] = ACTIONS(1460), - [anon_sym_string] = ACTIONS(1460), - [anon_sym_symbol] = ACTIONS(1460), - [sym_readonly] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [179] = { - [sym__declaration] = STATE(639), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(623), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [aux_sym_object_repeat1] = STATE(3324), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), + [sym__declaration] = STATE(707), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(672), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_global] = ACTIONS(1474), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1405), + [anon_sym_module] = ACTIONS(1423), + [anon_sym_global] = ACTIONS(1425), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), }, [180] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1498), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_nested_identifier] = STATE(3692), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_nested_type_identifier] = STATE(2976), - [sym_generic_type] = STATE(3259), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1476), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [sym_import] = STATE(1630), + [sym_expression_statement] = STATE(215), + [sym_empty_statement] = STATE(215), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2260), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(3941), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [181] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1967), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym__declaration] = STATE(707), + [sym_variable_declaration] = STATE(672), + [sym_lexical_declaration] = STATE(672), + [sym_class_declaration] = STATE(672), + [sym_function_declaration] = STATE(672), + [sym_generator_function_declaration] = STATE(672), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_decorator] = STATE(2545), + [sym_function_signature] = STATE(672), + [sym_ambient_declaration] = STATE(672), + [sym_abstract_class_declaration] = STATE(672), + [sym_module] = STATE(672), + [sym_internal_module] = STATE(722), + [sym_import_alias] = STATE(672), + [sym_interface_declaration] = STATE(672), + [sym_enum_declaration] = STATE(672), + [sym_type_alias_declaration] = STATE(672), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_export_statement_repeat1] = STATE(3361), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_import] = ACTIONS(1368), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1454), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_global] = ACTIONS(1425), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [182] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1397), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1492), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1494), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -32174,177 +32592,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [182] = { - [sym_import] = STATE(2012), - [sym_parenthesized_expression] = STATE(1181), - [sym__expression] = STATE(1969), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2037), - [sym_array] = STATE(2032), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(2012), - [sym_function] = STATE(2012), - [sym_generator_function] = STATE(2012), - [sym_arrow_function] = STATE(2012), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1655), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1181), - [sym_subscript_expression] = STATE(1181), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(2012), - [sym_template_string] = STATE(2012), - [sym_regex] = STATE(2012), - [sym_meta_property] = STATE(2012), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3529), - [sym_generic_type] = STATE(1656), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1488), - [sym_this] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [sym_null] = ACTIONS(1490), - [sym_undefined] = ACTIONS(1490), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [sym_readonly] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [183] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1250), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1492), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1397), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1496), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -32354,7 +32678,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -32378,453 +32702,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(449), }, [184] = { - [sym_import] = STATE(2104), - [sym_parenthesized_expression] = STATE(1183), - [sym__expression] = STATE(1934), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2056), - [sym_array] = STATE(2053), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(536), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(2104), - [sym_function] = STATE(2104), - [sym_generator_function] = STATE(2104), - [sym_arrow_function] = STATE(2104), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(128), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(2104), - [sym_template_string] = STATE(2104), - [sym_regex] = STATE(2104), - [sym_meta_property] = STATE(2104), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1494), - [anon_sym_export] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1736), + [sym_parenthesized_expression] = STATE(1240), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1682), + [sym_array] = STATE(1679), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2606), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1736), + [sym_function] = STATE(1736), + [sym_generator_function] = STATE(1736), + [sym_arrow_function] = STATE(1736), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1435), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1240), + [sym_subscript_expression] = STATE(1240), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1736), + [sym_regex] = STATE(1736), + [sym_meta_property] = STATE(1736), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3954), + [sym_generic_type] = STATE(2643), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1500), + [anon_sym_export] = ACTIONS(1502), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1506), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1502), - [sym_this] = ACTIONS(1504), - [sym_super] = ACTIONS(1504), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [sym_null] = ACTIONS(1504), - [sym_undefined] = ACTIONS(1504), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_null] = ACTIONS(1510), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_get] = ACTIONS(1502), + [anon_sym_set] = ACTIONS(1502), + [anon_sym_declare] = ACTIONS(1502), + [anon_sym_public] = ACTIONS(1502), + [anon_sym_private] = ACTIONS(1502), + [anon_sym_protected] = ACTIONS(1502), + [anon_sym_module] = ACTIONS(1502), + [anon_sym_any] = ACTIONS(1502), + [anon_sym_number] = ACTIONS(1502), + [anon_sym_boolean] = ACTIONS(1502), + [anon_sym_string] = ACTIONS(1502), + [anon_sym_symbol] = ACTIONS(1502), + [sym_readonly] = ACTIONS(1502), }, [185] = { - [sym_import] = STATE(2096), - [sym_parenthesized_expression] = STATE(1182), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2040), - [sym_array] = STATE(2039), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(1885), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(2096), - [sym_function] = STATE(2096), - [sym_generator_function] = STATE(2096), - [sym_arrow_function] = STATE(2096), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1785), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1182), - [sym_subscript_expression] = STATE(1182), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_regex] = STATE(2096), - [sym_meta_property] = STATE(2096), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3675), - [sym_generic_type] = STATE(1898), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1508), - [anon_sym_namespace] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1508), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2295), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(4139), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_get] = ACTIONS(1508), - [anon_sym_set] = ACTIONS(1508), - [anon_sym_declare] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_protected] = ACTIONS(1508), - [anon_sym_module] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_number] = ACTIONS(1508), - [anon_sym_boolean] = ACTIONS(1508), - [anon_sym_string] = ACTIONS(1508), - [anon_sym_symbol] = ACTIONS(1508), - [sym_readonly] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(1512), }, [186] = { - [sym_export_clause] = STATE(3143), - [sym__declaration] = STATE(649), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(653), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1524), - [anon_sym_module] = ACTIONS(1526), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [187] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1226), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1528), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(1336), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1750), + [sym_array] = STATE(1749), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1391), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_namespace] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_var] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [188] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1504), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2878), - [sym_generic_type] = STATE(3378), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(1522), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -32832,281 +32968,187 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), - }, - [189] = { - [sym_export_clause] = STATE(3143), - [sym__declaration] = STATE(649), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(653), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1434), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1516), }, - [190] = { - [sym_import] = STATE(2012), - [sym_parenthesized_expression] = STATE(1181), - [sym__expression] = STATE(1969), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2037), - [sym_array] = STATE(2032), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2291), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(2012), - [sym_function] = STATE(2012), - [sym_generator_function] = STATE(2012), - [sym_arrow_function] = STATE(2012), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1324), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1181), - [sym_subscript_expression] = STATE(1181), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(2012), - [sym_template_string] = STATE(2012), - [sym_regex] = STATE(2012), - [sym_meta_property] = STATE(2012), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3648), - [sym_generic_type] = STATE(2336), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1534), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_typeof] = ACTIONS(625), + [187] = { + [sym_import] = STATE(1736), + [sym_parenthesized_expression] = STATE(1240), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1682), + [sym_array] = STATE(1679), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2606), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1736), + [sym_function] = STATE(1736), + [sym_generator_function] = STATE(1736), + [sym_arrow_function] = STATE(1736), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1435), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1240), + [sym_subscript_expression] = STATE(1240), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1736), + [sym_regex] = STATE(1736), + [sym_meta_property] = STATE(1736), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3954), + [sym_generic_type] = STATE(2643), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1524), + [anon_sym_export] = ACTIONS(1502), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1506), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1488), - [sym_this] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [sym_null] = ACTIONS(1490), - [sym_undefined] = ACTIONS(1490), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_null] = ACTIONS(1510), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [sym_readonly] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_get] = ACTIONS(1502), + [anon_sym_set] = ACTIONS(1502), + [anon_sym_declare] = ACTIONS(1502), + [anon_sym_public] = ACTIONS(1502), + [anon_sym_private] = ACTIONS(1502), + [anon_sym_protected] = ACTIONS(1502), + [anon_sym_module] = ACTIONS(1502), + [anon_sym_any] = ACTIONS(1502), + [anon_sym_number] = ACTIONS(1502), + [anon_sym_boolean] = ACTIONS(1502), + [anon_sym_string] = ACTIONS(1502), + [anon_sym_symbol] = ACTIONS(1502), + [sym_readonly] = ACTIONS(1502), }, - [191] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1226), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1536), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [188] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1494), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1421), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4152), + [sym_generic_type] = STATE(1489), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1494), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -33114,281 +33156,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [192] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1364), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_nested_identifier] = STATE(3692), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_nested_type_identifier] = STATE(2607), - [sym_generic_type] = STATE(3189), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1538), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [193] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1682), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1540), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [194] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1250), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1542), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [189] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1397), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -33396,375 +33250,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [195] = { - [sym_export_clause] = STATE(3143), - [sym__declaration] = STATE(649), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(653), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1434), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [196] = { - [sym__declaration] = STATE(639), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(623), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [aux_sym_object_repeat1] = STATE(3233), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_global] = ACTIONS(1474), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [197] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1365), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1548), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [198] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1481), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1250), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1550), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [190] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1530), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -33772,83 +33344,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [199] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1967), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1552), + [191] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1397), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1492), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -33858,7 +33430,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -33881,162 +33453,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [200] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1567), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1783), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1554), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [201] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1769), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1556), + [192] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1532), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -34046,7 +33524,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -34069,68 +33547,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [202] = { - [sym_import] = STATE(2012), - [sym_parenthesized_expression] = STATE(1171), - [sym__expression] = STATE(1597), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1923), - [sym_array] = STATE(1973), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2291), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(2012), - [sym_function] = STATE(2012), - [sym_generator_function] = STATE(2012), - [sym_arrow_function] = STATE(2012), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1324), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1171), - [sym_subscript_expression] = STATE(1171), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(2012), - [sym_template_string] = STATE(2012), - [sym_regex] = STATE(2012), - [sym_meta_property] = STATE(2012), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3648), - [sym_generic_type] = STATE(2336), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_namespace] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1560), + [193] = { + [sym_import] = STATE(1736), + [sym_parenthesized_expression] = STATE(1240), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1682), + [sym_array] = STATE(1679), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1762), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1736), + [sym_function] = STATE(1736), + [sym_generator_function] = STATE(1736), + [sym_arrow_function] = STATE(1736), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1544), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1240), + [sym_subscript_expression] = STATE(1240), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1736), + [sym_regex] = STATE(1736), + [sym_meta_property] = STATE(1736), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4061), + [sym_generic_type] = STATE(1760), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1534), + [anon_sym_export] = ACTIONS(1502), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1502), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1506), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -34140,289 +33618,289 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1488), - [sym_this] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [sym_null] = ACTIONS(1490), - [sym_undefined] = ACTIONS(1490), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_null] = ACTIONS(1510), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_get] = ACTIONS(1560), - [anon_sym_set] = ACTIONS(1560), - [anon_sym_declare] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_protected] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_number] = ACTIONS(1560), - [anon_sym_boolean] = ACTIONS(1560), - [anon_sym_string] = ACTIONS(1560), - [anon_sym_symbol] = ACTIONS(1560), - [sym_readonly] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_get] = ACTIONS(1502), + [anon_sym_set] = ACTIONS(1502), + [anon_sym_declare] = ACTIONS(1502), + [anon_sym_public] = ACTIONS(1502), + [anon_sym_private] = ACTIONS(1502), + [anon_sym_protected] = ACTIONS(1502), + [anon_sym_module] = ACTIONS(1502), + [anon_sym_any] = ACTIONS(1502), + [anon_sym_number] = ACTIONS(1502), + [anon_sym_boolean] = ACTIONS(1502), + [anon_sym_string] = ACTIONS(1502), + [anon_sym_symbol] = ACTIONS(1502), + [sym_readonly] = ACTIONS(1502), }, - [203] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1172), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2018), - [sym_array] = STATE(2020), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1172), - [sym_subscript_expression] = STATE(1172), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1176), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1566), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_typeof] = ACTIONS(625), + [194] = { + [sym_import] = STATE(2063), + [sym_parenthesized_expression] = STATE(1379), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1982), + [sym_array] = STATE(1983), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2784), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2063), + [sym_function] = STATE(2063), + [sym_generator_function] = STATE(2063), + [sym_arrow_function] = STATE(2063), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1681), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2063), + [sym_template_string] = STATE(2063), + [sym_regex] = STATE(2063), + [sym_meta_property] = STATE(2063), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4059), + [sym_generic_type] = STATE(2945), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1536), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_namespace] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_var] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1542), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1544), + [sym_this] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_null] = ACTIONS(1546), + [sym_undefined] = ACTIONS(1546), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [sym_readonly] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_get] = ACTIONS(1538), + [anon_sym_set] = ACTIONS(1538), + [anon_sym_declare] = ACTIONS(1538), + [anon_sym_public] = ACTIONS(1538), + [anon_sym_private] = ACTIONS(1538), + [anon_sym_protected] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_any] = ACTIONS(1538), + [anon_sym_number] = ACTIONS(1538), + [anon_sym_boolean] = ACTIONS(1538), + [anon_sym_string] = ACTIONS(1538), + [anon_sym_symbol] = ACTIONS(1538), + [sym_readonly] = ACTIONS(1538), }, - [204] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1432), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(3860), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(2612), - [sym_generic_type] = STATE(3132), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [195] = { + [sym_import] = STATE(2130), + [sym_parenthesized_expression] = STATE(1355), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1945), + [sym_array] = STATE(1944), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2706), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2130), + [sym_function] = STATE(2130), + [sym_generator_function] = STATE(2130), + [sym_arrow_function] = STATE(2130), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1486), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1355), + [sym_subscript_expression] = STATE(1355), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2130), + [sym_template_string] = STATE(2130), + [sym_regex] = STATE(2130), + [sym_meta_property] = STATE(2130), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4077), + [sym_generic_type] = STATE(2848), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1548), + [anon_sym_export] = ACTIONS(1550), + [anon_sym_namespace] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1550), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(1554), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [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(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_get] = ACTIONS(1550), + [anon_sym_set] = ACTIONS(1550), + [anon_sym_declare] = ACTIONS(1550), + [anon_sym_public] = ACTIONS(1550), + [anon_sym_private] = ACTIONS(1550), + [anon_sym_protected] = ACTIONS(1550), + [anon_sym_module] = ACTIONS(1550), + [anon_sym_any] = ACTIONS(1550), + [anon_sym_number] = ACTIONS(1550), + [anon_sym_boolean] = ACTIONS(1550), + [anon_sym_string] = ACTIONS(1550), + [anon_sym_symbol] = ACTIONS(1550), + [sym_readonly] = ACTIONS(1550), }, - [205] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1226), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1578), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [196] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1494), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1431), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4152), + [sym_generic_type] = STATE(1489), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1560), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1494), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -34430,459 +33908,553 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [206] = { - [sym__declaration] = STATE(639), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(623), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [aux_sym_object_repeat1] = STATE(3394), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_global] = ACTIONS(1474), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [207] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(1287), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1329), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3473), - [sym_generic_type] = STATE(1288), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1580), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [197] = { + [sym_import] = STATE(2112), + [sym_parenthesized_expression] = STATE(1347), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1790), + [sym_array] = STATE(1887), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(614), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2112), + [sym_function] = STATE(2112), + [sym_generator_function] = STATE(2112), + [sym_arrow_function] = STATE(2112), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(87), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2112), + [sym_template_string] = STATE(2112), + [sym_regex] = STATE(2112), + [sym_meta_property] = STATE(2112), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1568), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1570), + [sym_this] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_true] = ACTIONS(1572), + [sym_false] = ACTIONS(1572), + [sym_null] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1572), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [sym_readonly] = ACTIONS(1564), }, - [208] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1250), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1550), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [198] = { + [sym_import] = STATE(2082), + [sym_parenthesized_expression] = STATE(1363), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1851), + [sym_array] = STATE(1843), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1911), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2082), + [sym_function] = STATE(2082), + [sym_generator_function] = STATE(2082), + [sym_arrow_function] = STATE(2082), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1664), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1363), + [sym_subscript_expression] = STATE(1363), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(2082), + [sym_regex] = STATE(2082), + [sym_meta_property] = STATE(2082), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3974), + [sym_generic_type] = STATE(1913), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1574), + [anon_sym_export] = ACTIONS(1576), + [anon_sym_namespace] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [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(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1576), }, - [209] = { - [sym_import] = STATE(2012), - [sym_parenthesized_expression] = STATE(1181), - [sym__expression] = STATE(1969), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2037), - [sym_array] = STATE(2032), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2291), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(2012), - [sym_function] = STATE(2012), - [sym_generator_function] = STATE(2012), - [sym_arrow_function] = STATE(2012), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1324), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1181), - [sym_subscript_expression] = STATE(1181), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(2012), - [sym_template_string] = STATE(2012), - [sym_regex] = STATE(2012), - [sym_meta_property] = STATE(2012), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3648), - [sym_generic_type] = STATE(2336), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1582), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_typeof] = ACTIONS(625), + [199] = { + [sym_import] = STATE(2082), + [sym_parenthesized_expression] = STATE(1363), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1851), + [sym_array] = STATE(1843), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1911), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2082), + [sym_function] = STATE(2082), + [sym_generator_function] = STATE(2082), + [sym_arrow_function] = STATE(2082), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1640), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1363), + [sym_subscript_expression] = STATE(1363), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(2082), + [sym_regex] = STATE(2082), + [sym_meta_property] = STATE(2082), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3974), + [sym_generic_type] = STATE(1913), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1586), + [anon_sym_export] = ACTIONS(1576), + [anon_sym_namespace] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1488), - [sym_this] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [sym_null] = ACTIONS(1490), - [sym_undefined] = ACTIONS(1490), + [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(91), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [sym_readonly] = ACTIONS(1482), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1576), }, - [210] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1226), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1584), + [200] = { + [sym_import] = STATE(1736), + [sym_parenthesized_expression] = STATE(1240), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1682), + [sym_array] = STATE(1679), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1762), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1736), + [sym_function] = STATE(1736), + [sym_generator_function] = STATE(1736), + [sym_arrow_function] = STATE(1736), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1493), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1240), + [sym_subscript_expression] = STATE(1240), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1736), + [sym_regex] = STATE(1736), + [sym_meta_property] = STATE(1736), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4061), + [sym_generic_type] = STATE(1760), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1502), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(1506), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_null] = ACTIONS(1510), + [sym_undefined] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_get] = ACTIONS(1502), + [anon_sym_set] = ACTIONS(1502), + [anon_sym_declare] = ACTIONS(1502), + [anon_sym_public] = ACTIONS(1502), + [anon_sym_private] = ACTIONS(1502), + [anon_sym_protected] = ACTIONS(1502), + [anon_sym_module] = ACTIONS(1502), + [anon_sym_any] = ACTIONS(1502), + [anon_sym_number] = ACTIONS(1502), + [anon_sym_boolean] = ACTIONS(1502), + [anon_sym_string] = ACTIONS(1502), + [anon_sym_symbol] = ACTIONS(1502), + [sym_readonly] = ACTIONS(1502), + }, + [201] = { + [sym_import] = STATE(2063), + [sym_parenthesized_expression] = STATE(1379), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1982), + [sym_array] = STATE(1983), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2784), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2063), + [sym_function] = STATE(2063), + [sym_generator_function] = STATE(2063), + [sym_arrow_function] = STATE(2063), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1674), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2063), + [sym_template_string] = STATE(2063), + [sym_regex] = STATE(2063), + [sym_meta_property] = STATE(2063), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4059), + [sym_generic_type] = STATE(2945), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1590), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_namespace] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1544), + [sym_this] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_null] = ACTIONS(1546), + [sym_undefined] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_get] = ACTIONS(1538), + [anon_sym_set] = ACTIONS(1538), + [anon_sym_declare] = ACTIONS(1538), + [anon_sym_public] = ACTIONS(1538), + [anon_sym_private] = ACTIONS(1538), + [anon_sym_protected] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_any] = ACTIONS(1538), + [anon_sym_number] = ACTIONS(1538), + [anon_sym_boolean] = ACTIONS(1538), + [anon_sym_string] = ACTIONS(1538), + [anon_sym_symbol] = ACTIONS(1538), + [sym_readonly] = ACTIONS(1538), + }, + [202] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1397), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1592), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -34892,7 +34464,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -34915,172 +34487,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [211] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1523), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3440), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [203] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2259), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_nested_identifier] = STATE(4235), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_nested_type_identifier] = STATE(3354), + [sym_generic_type] = STATE(3758), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1594), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - [sym__automatic_semicolon] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, - [212] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1578), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_nested_identifier] = STATE(2238), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1250), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_nested_type_identifier] = STATE(3562), - [sym_generic_type] = STATE(491), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [204] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2204), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3020), + [sym_generic_type] = STATE(3543), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -35088,82 +34660,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [213] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1616), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3914), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), + [205] = { + [sym_import] = STATE(1736), + [sym_parenthesized_expression] = STATE(1240), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1682), + [sym_array] = STATE(1679), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2606), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1736), + [sym_function] = STATE(1736), + [sym_generator_function] = STATE(1736), + [sym_arrow_function] = STATE(1736), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1435), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1240), + [sym_subscript_expression] = STATE(1240), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1736), + [sym_regex] = STATE(1736), + [sym_meta_property] = STATE(1736), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3954), + [sym_generic_type] = STATE(2643), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1602), + [anon_sym_export] = ACTIONS(1502), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1502), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(1506), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -35173,7 +34746,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_null] = ACTIONS(1510), + [sym_undefined] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_get] = ACTIONS(1502), + [anon_sym_set] = ACTIONS(1502), + [anon_sym_declare] = ACTIONS(1502), + [anon_sym_public] = ACTIONS(1502), + [anon_sym_private] = ACTIONS(1502), + [anon_sym_protected] = ACTIONS(1502), + [anon_sym_module] = ACTIONS(1502), + [anon_sym_any] = ACTIONS(1502), + [anon_sym_number] = ACTIONS(1502), + [anon_sym_boolean] = ACTIONS(1502), + [anon_sym_string] = ACTIONS(1502), + [anon_sym_symbol] = ACTIONS(1502), + [sym_readonly] = ACTIONS(1502), + }, + [206] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1632), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -35181,82 +34848,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [214] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1712), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3836), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [207] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2214), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_nested_identifier] = STATE(4235), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_nested_type_identifier] = STATE(3001), + [sym_generic_type] = STATE(3562), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1606), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [208] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1632), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1608), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -35266,7 +35028,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -35289,67 +35051,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [215] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1722), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3879), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [209] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1494), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1421), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4152), + [sym_generic_type] = STATE(1489), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1526), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -35359,7 +35122,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -35382,66 +35145,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [216] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1672), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3877), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [210] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(1494), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1431), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(4152), + [sym_generic_type] = STATE(1489), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1560), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -35451,7 +35216,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -35474,158 +35239,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [217] = { - [sym_import] = STATE(1979), - [sym_statement_block] = STATE(2009), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1482), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [218] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1433), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1339), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [211] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1665), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -35635,7 +35310,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -35658,158 +35333,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [219] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2889), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3446), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1600), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1602), - }, - [220] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1444), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1338), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [212] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(2558), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1665), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3970), + [sym_generic_type] = STATE(544), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1612), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -35819,7 +35404,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -35842,168 +35427,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [221] = { - [sym_import] = STATE(1979), - [sym_statement_block] = STATE(1947), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1499), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [222] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1806), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_mapped_type_clause] = STATE(3876), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), + [213] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2306), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_nested_identifier] = STATE(4517), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_nested_type_identifier] = STATE(3397), + [sym_generic_type] = STATE(3694), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), [sym_identifier] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_namespace] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(625), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1620), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -36011,357 +35506,175 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(1616), - [anon_sym_set] = ACTIONS(1616), - [anon_sym_declare] = ACTIONS(1616), - [anon_sym_public] = ACTIONS(1616), - [anon_sym_private] = ACTIONS(1616), - [anon_sym_protected] = ACTIONS(1616), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1616), - [anon_sym_number] = ACTIONS(1616), - [anon_sym_boolean] = ACTIONS(1616), - [anon_sym_string] = ACTIONS(1616), - [anon_sym_symbol] = ACTIONS(1616), - [sym_readonly] = ACTIONS(1616), - }, - [223] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2869), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3607), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1600), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [224] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), - }, - [225] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2968), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3604), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1600), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), + [214] = { + [sym__call_signature] = STATE(4460), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [aux_sym_object_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(1616), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(1634), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1638), + [anon_sym_set] = ACTIONS(1638), + [anon_sym_declare] = ACTIONS(1618), + [anon_sym_public] = ACTIONS(1618), + [anon_sym_private] = ACTIONS(1618), + [anon_sym_protected] = ACTIONS(1618), + [anon_sym_module] = ACTIONS(1618), + [anon_sym_any] = ACTIONS(1618), + [anon_sym_number] = ACTIONS(1618), + [anon_sym_boolean] = ACTIONS(1618), + [anon_sym_string] = ACTIONS(1618), + [anon_sym_symbol] = ACTIONS(1618), + [sym_readonly] = ACTIONS(1618), + [sym__automatic_semicolon] = ACTIONS(741), }, - [226] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1720), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3895), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [215] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2369), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4402), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1640), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -36371,7 +35684,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -36394,66 +35707,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [227] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1721), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3890), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [216] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2389), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4523), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1642), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -36463,7 +35777,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -36486,66 +35800,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [228] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1589), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3874), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [217] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2379), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4530), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(1644), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -36555,7 +35870,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -36578,250 +35893,252 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [229] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1283), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), + [218] = { + [sym__call_signature] = STATE(4460), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [aux_sym_object_repeat1] = STATE(3850), + [sym_identifier] = ACTIONS(1616), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(1634), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1638), + [anon_sym_set] = ACTIONS(1638), + [anon_sym_declare] = ACTIONS(1618), + [anon_sym_public] = ACTIONS(1618), + [anon_sym_private] = ACTIONS(1618), + [anon_sym_protected] = ACTIONS(1618), + [anon_sym_module] = ACTIONS(1618), + [anon_sym_any] = ACTIONS(1618), + [anon_sym_number] = ACTIONS(1618), + [anon_sym_boolean] = ACTIONS(1618), + [anon_sym_string] = ACTIONS(1618), + [anon_sym_symbol] = ACTIONS(1618), + [sym_readonly] = ACTIONS(1618), + [sym__automatic_semicolon] = ACTIONS(741), }, - [230] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1727), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3871), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), + [219] = { + [sym__call_signature] = STATE(4460), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [aux_sym_object_repeat1] = STATE(3755), + [sym_identifier] = ACTIONS(1616), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(1634), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1638), + [anon_sym_set] = ACTIONS(1638), + [anon_sym_declare] = ACTIONS(1618), + [anon_sym_public] = ACTIONS(1618), + [anon_sym_private] = ACTIONS(1618), + [anon_sym_protected] = ACTIONS(1618), + [anon_sym_module] = ACTIONS(1618), + [anon_sym_any] = ACTIONS(1618), + [anon_sym_number] = ACTIONS(1618), + [anon_sym_boolean] = ACTIONS(1618), + [anon_sym_string] = ACTIONS(1618), + [anon_sym_symbol] = ACTIONS(1618), + [sym_readonly] = ACTIONS(1618), + [sym__automatic_semicolon] = ACTIONS(741), }, - [231] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1733), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3868), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [220] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2353), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4340), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -36831,7 +36148,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -36854,710 +36171,434 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [232] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2869), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3607), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1632), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_namespace] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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(91), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(1634), - [anon_sym_set] = ACTIONS(1634), - [anon_sym_declare] = ACTIONS(1634), - [anon_sym_public] = ACTIONS(1634), - [anon_sym_private] = ACTIONS(1634), - [anon_sym_protected] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_any] = ACTIONS(1634), - [anon_sym_number] = ACTIONS(1634), - [anon_sym_boolean] = ACTIONS(1634), - [anon_sym_string] = ACTIONS(1634), - [anon_sym_symbol] = ACTIONS(1634), - [sym_readonly] = ACTIONS(1634), - }, - [233] = { - [sym_import] = STATE(1690), - [sym_parenthesized_expression] = STATE(874), - [sym__expression] = STATE(2007), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1495), - [sym_array] = STATE(1494), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1690), - [sym_function] = STATE(1690), - [sym_generator_function] = STATE(1690), - [sym_arrow_function] = STATE(1690), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1690), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(874), - [sym_subscript_expression] = STATE(874), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1690), - [sym_template_string] = STATE(1690), - [sym_regex] = STATE(1690), - [sym_meta_property] = STATE(1690), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1640), - [anon_sym_export] = ACTIONS(1642), - [anon_sym_namespace] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(1642), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(1646), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1652), - [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(91), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_get] = ACTIONS(1642), - [anon_sym_set] = ACTIONS(1642), - [anon_sym_declare] = ACTIONS(1642), - [anon_sym_public] = ACTIONS(1642), - [anon_sym_private] = ACTIONS(1642), - [anon_sym_protected] = ACTIONS(1642), - [anon_sym_module] = ACTIONS(1642), - [anon_sym_any] = ACTIONS(1642), - [anon_sym_number] = ACTIONS(1642), - [anon_sym_boolean] = ACTIONS(1642), - [anon_sym_string] = ACTIONS(1642), - [anon_sym_symbol] = ACTIONS(1642), - [sym_readonly] = ACTIONS(1642), - }, - [234] = { - [sym_import] = STATE(1979), - [sym_statement_block] = STATE(1938), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1525), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [235] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1452), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3743), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [221] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1634), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2050), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [236] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1431), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1569), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [222] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1637), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2047), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [237] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1681), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3902), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [223] = { + [sym_import] = STATE(1669), + [sym_statement_block] = STATE(2127), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2126), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [238] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2998), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3646), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1600), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_typeof] = ACTIONS(625), + [224] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1626), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2074), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1606), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1608), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [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), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1602), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [239] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1680), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3906), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [225] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2217), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(3530), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -37567,7 +36608,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -37590,329 +36631,329 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [240] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1433), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1568), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [226] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1606), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2110), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [241] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1632), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_namespace] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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), + [227] = { + [sym_import] = STATE(1669), + [sym_statement_block] = STATE(2147), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2149), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(1634), - [anon_sym_set] = ACTIONS(1634), - [anon_sym_declare] = ACTIONS(1634), - [anon_sym_public] = ACTIONS(1634), - [anon_sym_private] = ACTIONS(1634), - [anon_sym_protected] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_any] = ACTIONS(1634), - [anon_sym_number] = ACTIONS(1634), - [anon_sym_boolean] = ACTIONS(1634), - [anon_sym_string] = ACTIONS(1634), - [anon_sym_symbol] = ACTIONS(1634), - [sym_readonly] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [242] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1444), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1564), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [228] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1551), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2152), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [243] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1874), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1447), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(849), + [229] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2413), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(3213), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -37920,9 +36961,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_function] = ACTIONS(1652), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -37943,275 +36984,551 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [244] = { - [sym_import] = STATE(1515), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1961), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1380), - [sym_array] = STATE(1381), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1515), - [sym_function] = STATE(1515), - [sym_generator_function] = STATE(1515), - [sym_arrow_function] = STATE(1515), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1515), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1515), - [sym_template_string] = STATE(1515), - [sym_regex] = STATE(1515), - [sym_meta_property] = STATE(1515), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1658), - [anon_sym_export] = ACTIONS(1660), - [anon_sym_namespace] = ACTIONS(1662), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1660), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1664), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1668), - [sym_this] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_true] = ACTIONS(1670), - [sym_false] = ACTIONS(1670), - [sym_null] = ACTIONS(1670), - [sym_undefined] = ACTIONS(1670), + [230] = { + [sym_import] = STATE(1669), + [sym_statement_block] = STATE(2011), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2012), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(1660), - [anon_sym_set] = ACTIONS(1660), - [anon_sym_declare] = ACTIONS(1660), - [anon_sym_public] = ACTIONS(1660), - [anon_sym_private] = ACTIONS(1660), - [anon_sym_protected] = ACTIONS(1660), - [anon_sym_module] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_number] = ACTIONS(1660), - [anon_sym_boolean] = ACTIONS(1660), - [anon_sym_string] = ACTIONS(1660), - [anon_sym_symbol] = ACTIONS(1660), - [sym_readonly] = ACTIONS(1660), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [245] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1804), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1398), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [231] = { + [sym_import] = STATE(1669), + [sym_statement_block] = STATE(2009), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2010), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [232] = { + [sym_import] = STATE(1669), + [sym_statement_block] = STATE(2006), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2007), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [233] = { + [sym_import] = STATE(1669), + [sym_statement_block] = STATE(2115), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2114), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [234] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1633), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2060), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [246] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1709), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3717), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [235] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2213), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4225), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -38219,541 +37536,357 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), - }, - [247] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1702), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_function_signature] = STATE(652), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - }, - [248] = { - [sym__declaration] = STATE(639), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(623), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_global] = ACTIONS(1474), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [249] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1560), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [236] = { + [sym_import] = STATE(2037), + [sym_parenthesized_expression] = STATE(1361), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1827), + [sym_array] = STATE(1828), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2037), + [sym_function] = STATE(2037), + [sym_generator_function] = STATE(2037), + [sym_arrow_function] = STATE(2037), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2037), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2037), + [sym_template_string] = STATE(2037), + [sym_regex] = STATE(2037), + [sym_meta_property] = STATE(2037), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3318), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4064), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1660), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(1662), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [sym_undefined] = ACTIONS(1666), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [250] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1671), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_function_signature] = STATE(2859), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [237] = { + [sym_import] = STATE(1629), + [sym_statement_block] = STATE(1861), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1862), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1678), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, - [251] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1600), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_typeof] = ACTIONS(625), + [238] = { + [sym_import] = STATE(2037), + [sym_parenthesized_expression] = STATE(1361), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1827), + [sym_array] = STATE(1828), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2037), + [sym_function] = STATE(2037), + [sym_generator_function] = STATE(2037), + [sym_arrow_function] = STATE(2037), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2037), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2037), + [sym_template_string] = STATE(2037), + [sym_regex] = STATE(2037), + [sym_meta_property] = STATE(2037), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1660), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1608), + [anon_sym_async] = ACTIONS(1670), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [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), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [sym_undefined] = ACTIONS(1666), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [252] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1378), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1286), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [239] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2333), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4299), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -38763,7 +37896,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -38786,158 +37919,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [253] = { - [sym_import] = STATE(1515), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1961), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1380), - [sym_array] = STATE(1381), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1515), - [sym_function] = STATE(1515), - [sym_generator_function] = STATE(1515), - [sym_arrow_function] = STATE(1515), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1515), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1515), - [sym_template_string] = STATE(1515), - [sym_regex] = STATE(1515), - [sym_meta_property] = STATE(1515), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2869), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3607), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1684), - [anon_sym_namespace] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1688), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1668), - [sym_this] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_true] = ACTIONS(1670), - [sym_false] = ACTIONS(1670), - [sym_null] = ACTIONS(1670), - [sym_undefined] = ACTIONS(1670), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_declare] = ACTIONS(1684), - [anon_sym_public] = ACTIONS(1684), - [anon_sym_private] = ACTIONS(1684), - [anon_sym_protected] = ACTIONS(1684), - [anon_sym_module] = ACTIONS(1684), - [anon_sym_any] = ACTIONS(1684), - [anon_sym_number] = ACTIONS(1684), - [anon_sym_boolean] = ACTIONS(1684), - [anon_sym_string] = ACTIONS(1684), - [anon_sym_symbol] = ACTIONS(1684), - [sym_readonly] = ACTIONS(1684), - }, - [254] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1431), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1341), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [240] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2350), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4231), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -38947,7 +37988,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -38970,158 +38011,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [255] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1468), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3573), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [256] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1607), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3779), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [241] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2405), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4508), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39131,7 +38080,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39154,66 +38103,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [257] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1603), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3783), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [242] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2346), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4232), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39223,7 +38172,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39246,158 +38195,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [258] = { - [sym__declaration] = STATE(639), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(623), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), + [243] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4469), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1524), - [anon_sym_module] = ACTIONS(1690), - [anon_sym_global] = ACTIONS(1474), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [259] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1648), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3903), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [244] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2339), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4330), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39407,7 +38356,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39430,66 +38379,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [260] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1598), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3867), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [245] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2365), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4202), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39499,7 +38448,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39522,66 +38471,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [261] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1668), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3844), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [246] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2377), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4462), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39591,7 +38540,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39614,71 +38563,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [262] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1804), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1653), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [247] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2388), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_function_signature] = STATE(732), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_function] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -39691,81 +38640,357 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [263] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1596), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3956), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [248] = { + [sym_import] = STATE(1629), + [sym_statement_block] = STATE(1833), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1834), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [249] = { + [sym_import] = STATE(2037), + [sym_parenthesized_expression] = STATE(1361), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1827), + [sym_array] = STATE(1828), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2037), + [sym_function] = STATE(2037), + [sym_generator_function] = STATE(2037), + [sym_arrow_function] = STATE(2037), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2037), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2037), + [sym_template_string] = STATE(2037), + [sym_regex] = STATE(2037), + [sym_meta_property] = STATE(2037), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3318), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4064), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1660), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(1670), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [sym_undefined] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), + }, + [250] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2401), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(3530), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [251] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2378), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4244), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39775,7 +39000,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39798,66 +39023,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [264] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1408), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3767), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [252] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2375), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4243), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39867,7 +39092,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39890,66 +39115,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [265] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1637), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3989), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [253] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2371), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4234), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -39959,7 +39184,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -39982,526 +39207,250 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [266] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1874), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1634), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - }, - [267] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1865), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1424), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [268] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1859), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1354), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [269] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1805), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1356), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [254] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2370), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4432), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [270] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1889), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1618), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [255] = { + [sym_import] = STATE(2037), + [sym_parenthesized_expression] = STATE(1361), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1827), + [sym_array] = STATE(1828), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2037), + [sym_function] = STATE(2037), + [sym_generator_function] = STATE(2037), + [sym_arrow_function] = STATE(2037), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2037), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2037), + [sym_template_string] = STATE(2037), + [sym_regex] = STATE(2037), + [sym_meta_property] = STATE(2037), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1660), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [sym_undefined] = ACTIONS(1666), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [271] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1615), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3851), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [256] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2403), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4342), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -40511,7 +39460,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -40534,76 +39483,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [272] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1544), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [257] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2342), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4282), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -40611,449 +39560,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), - }, - [273] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1805), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1612), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - }, - [274] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1889), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1449), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [275] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1859), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1611), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - }, - [276] = { - [sym_import] = STATE(1749), - [sym_statement_block] = STATE(1865), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1609), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [277] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1608), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3697), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [258] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2355), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4306), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -41063,7 +39644,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -41086,260 +39667,168 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [278] = { - [sym_import] = STATE(1515), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1961), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1380), - [sym_array] = STATE(1381), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1515), - [sym_function] = STATE(1515), - [sym_generator_function] = STATE(1515), - [sym_arrow_function] = STATE(1515), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1515), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1515), - [sym_template_string] = STATE(1515), - [sym_regex] = STATE(1515), - [sym_meta_property] = STATE(1515), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2869), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3607), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1658), - [anon_sym_export] = ACTIONS(1660), - [anon_sym_namespace] = ACTIONS(1662), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1660), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(63), + [259] = { + [sym_import] = STATE(2037), + [sym_parenthesized_expression] = STATE(1361), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1827), + [sym_array] = STATE(1828), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2037), + [sym_function] = STATE(2037), + [sym_generator_function] = STATE(2037), + [sym_arrow_function] = STATE(2037), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2037), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2037), + [sym_template_string] = STATE(2037), + [sym_regex] = STATE(2037), + [sym_meta_property] = STATE(2037), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3429), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4118), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1664), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1660), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1668), - [sym_this] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_true] = ACTIONS(1670), - [sym_false] = ACTIONS(1670), - [sym_null] = ACTIONS(1670), - [sym_undefined] = ACTIONS(1670), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(1660), - [anon_sym_set] = ACTIONS(1660), - [anon_sym_declare] = ACTIONS(1660), - [anon_sym_public] = ACTIONS(1660), - [anon_sym_private] = ACTIONS(1660), - [anon_sym_protected] = ACTIONS(1660), - [anon_sym_module] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_number] = ACTIONS(1660), - [anon_sym_boolean] = ACTIONS(1660), - [anon_sym_string] = ACTIONS(1660), - [anon_sym_symbol] = ACTIONS(1660), - [sym_readonly] = ACTIONS(1660), - }, - [279] = { - [sym_import] = STATE(1979), - [sym_statement_block] = STATE(1963), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1581), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [sym_undefined] = ACTIONS(1666), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [280] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1806), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_mapped_type_clause] = STATE(3861), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(1694), - [anon_sym_namespace] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(625), + [260] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2357), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4417), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1698), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -41347,68 +39836,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [281] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1522), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_sequence_expression] = STATE(3443), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [261] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2322), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(4141), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -41416,9 +39905,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -41439,1103 +39928,735 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [282] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1378), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1582), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [262] = { + [sym_import] = STATE(2037), + [sym_parenthesized_expression] = STATE(1361), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1827), + [sym_array] = STATE(1828), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2037), + [sym_function] = STATE(2037), + [sym_generator_function] = STATE(2037), + [sym_arrow_function] = STATE(2037), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2037), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2037), + [sym_template_string] = STATE(2037), + [sym_regex] = STATE(2037), + [sym_meta_property] = STATE(2037), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3208), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4151), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1660), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1662), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [sym_undefined] = ACTIONS(1666), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [283] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1565), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [263] = { + [sym_import] = STATE(2024), + [sym_parenthesized_expression] = STATE(1349), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1994), + [sym_array] = STATE(1993), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2024), + [sym_function] = STATE(2024), + [sym_generator_function] = STATE(2024), + [sym_arrow_function] = STATE(2024), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2024), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1349), + [sym_subscript_expression] = STATE(1349), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2024), + [sym_template_string] = STATE(2024), + [sym_regex] = STATE(2024), + [sym_meta_property] = STATE(2024), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1678), + [anon_sym_namespace] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1682), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1684), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1686), + [sym_this] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_undefined] = ACTIONS(1688), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(1678), + [anon_sym_set] = ACTIONS(1678), + [anon_sym_declare] = ACTIONS(1678), + [anon_sym_public] = ACTIONS(1678), + [anon_sym_private] = ACTIONS(1678), + [anon_sym_protected] = ACTIONS(1678), + [anon_sym_module] = ACTIONS(1678), + [anon_sym_any] = ACTIONS(1678), + [anon_sym_number] = ACTIONS(1678), + [anon_sym_boolean] = ACTIONS(1678), + [anon_sym_string] = ACTIONS(1678), + [anon_sym_symbol] = ACTIONS(1678), + [sym_readonly] = ACTIONS(1678), }, - [284] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1519), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [264] = { + [sym_import] = STATE(2101), + [sym_parenthesized_expression] = STATE(1378), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1970), + [sym_array] = STATE(1968), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2101), + [sym_function] = STATE(2101), + [sym_generator_function] = STATE(2101), + [sym_arrow_function] = STATE(2101), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2101), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2101), + [sym_template_string] = STATE(2101), + [sym_regex] = STATE(2101), + [sym_meta_property] = STATE(2101), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1660), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1696), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1698), + [sym_this] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_true] = ACTIONS(1700), + [sym_false] = ACTIONS(1700), + [sym_null] = ACTIONS(1700), + [sym_undefined] = ACTIONS(1700), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [sym_readonly] = ACTIONS(1692), }, - [285] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1444), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1513), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [265] = { + [sym_import] = STATE(2101), + [sym_parenthesized_expression] = STATE(1378), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1970), + [sym_array] = STATE(1968), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2101), + [sym_function] = STATE(2101), + [sym_generator_function] = STATE(2101), + [sym_arrow_function] = STATE(2101), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2101), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2101), + [sym_template_string] = STATE(2101), + [sym_regex] = STATE(2101), + [sym_meta_property] = STATE(2101), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1660), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1702), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1698), + [sym_this] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_true] = ACTIONS(1700), + [sym_false] = ACTIONS(1700), + [sym_null] = ACTIONS(1700), + [sym_undefined] = ACTIONS(1700), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [sym_readonly] = ACTIONS(1692), }, - [286] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1433), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1511), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [266] = { + [sym_import] = STATE(2163), + [sym_parenthesized_expression] = STATE(1364), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1926), + [sym_array] = STATE(1923), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2163), + [sym_function] = STATE(2163), + [sym_generator_function] = STATE(2163), + [sym_arrow_function] = STATE(2163), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2163), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2163), + [sym_template_string] = STATE(2163), + [sym_regex] = STATE(2163), + [sym_meta_property] = STATE(2163), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1710), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(1712), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [287] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1431), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1510), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1714), + [sym_this] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_true] = ACTIONS(1716), + [sym_false] = ACTIONS(1716), + [sym_null] = ACTIONS(1716), + [sym_undefined] = ACTIONS(1716), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(1706), + [anon_sym_private] = ACTIONS(1706), + [anon_sym_protected] = ACTIONS(1706), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1706), + [anon_sym_number] = ACTIONS(1706), + [anon_sym_boolean] = ACTIONS(1706), + [anon_sym_string] = ACTIONS(1706), + [anon_sym_symbol] = ACTIONS(1706), + [sym_readonly] = ACTIONS(1706), }, - [288] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2869), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3607), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(625), + [267] = { + [sym_import] = STATE(2099), + [sym_parenthesized_expression] = STATE(1356), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1859), + [sym_array] = STATE(1858), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2099), + [sym_function] = STATE(2099), + [sym_generator_function] = STATE(2099), + [sym_arrow_function] = STATE(2099), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2099), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2099), + [sym_template_string] = STATE(2099), + [sym_regex] = STATE(2099), + [sym_meta_property] = STATE(2099), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), - }, - [289] = { - [sym__declaration] = STATE(639), - [sym_variable_declaration] = STATE(623), - [sym_lexical_declaration] = STATE(623), - [sym_class_declaration] = STATE(623), - [sym_function_declaration] = STATE(623), - [sym_generator_function_declaration] = STATE(623), - [sym_decorator] = STATE(2202), - [sym_function_signature] = STATE(623), - [sym_ambient_declaration] = STATE(623), - [sym_abstract_class_declaration] = STATE(623), - [sym_module] = STATE(623), - [sym_internal_module] = STATE(656), - [sym_import_alias] = STATE(623), - [sym_interface_declaration] = STATE(623), - [sym_enum_declaration] = STATE(623), - [sym_type_alias_declaration] = STATE(623), - [aux_sym_export_statement_repeat1] = STATE(2832), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1432), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_global] = ACTIONS(1474), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [290] = { - [sym_import] = STATE(1690), - [sym_parenthesized_expression] = STATE(874), - [sym__expression] = STATE(2007), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1495), - [sym_array] = STATE(1494), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1690), - [sym_function] = STATE(1690), - [sym_generator_function] = STATE(1690), - [sym_arrow_function] = STATE(1690), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1690), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(874), - [sym_subscript_expression] = STATE(874), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1690), - [sym_template_string] = STATE(1690), - [sym_regex] = STATE(1690), - [sym_meta_property] = STATE(1690), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2869), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3607), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1640), - [anon_sym_export] = ACTIONS(1642), - [anon_sym_namespace] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(1642), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(1646), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1652), - [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(91), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_get] = ACTIONS(1642), - [anon_sym_set] = ACTIONS(1642), - [anon_sym_declare] = ACTIONS(1642), - [anon_sym_public] = ACTIONS(1642), - [anon_sym_private] = ACTIONS(1642), - [anon_sym_protected] = ACTIONS(1642), - [anon_sym_module] = ACTIONS(1642), - [anon_sym_any] = ACTIONS(1642), - [anon_sym_number] = ACTIONS(1642), - [anon_sym_boolean] = ACTIONS(1642), - [anon_sym_string] = ACTIONS(1642), - [anon_sym_symbol] = ACTIONS(1642), - [sym_readonly] = ACTIONS(1642), - }, - [291] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1378), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1540), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_DOT] = ACTIONS(1710), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(1724), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1726), + [sym_this] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_get] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_declare] = ACTIONS(1720), + [anon_sym_public] = ACTIONS(1720), + [anon_sym_private] = ACTIONS(1720), + [anon_sym_protected] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_any] = ACTIONS(1720), + [anon_sym_number] = ACTIONS(1720), + [anon_sym_boolean] = ACTIONS(1720), + [anon_sym_string] = ACTIONS(1720), + [anon_sym_symbol] = ACTIONS(1720), + [sym_readonly] = ACTIONS(1720), }, - [292] = { - [sym_import] = STATE(1438), - [sym_variable_declarator] = STATE(3134), - [sym_parenthesized_expression] = STATE(1178), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1346), - [sym_array] = STATE(1347), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1178), - [sym_subscript_expression] = STATE(1178), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1173), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(625), + [268] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1551), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1863), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1706), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_declare] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_protected] = ACTIONS(1702), - [anon_sym_module] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_number] = ACTIONS(1702), - [anon_sym_boolean] = ACTIONS(1702), - [anon_sym_string] = ACTIONS(1702), - [anon_sym_symbol] = ACTIONS(1702), - [sym_readonly] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [293] = { - [sym_import] = STATE(1438), - [sym_variable_declarator] = STATE(3135), - [sym_parenthesized_expression] = STATE(1178), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1346), - [sym_array] = STATE(1347), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1178), - [sym_subscript_expression] = STATE(1178), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1173), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(625), + [269] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2427), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_mapped_type_clause] = STATE(4378), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1706), + [anon_sym_async] = ACTIONS(1736), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -42543,173 +40664,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_declare] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_protected] = ACTIONS(1702), - [anon_sym_module] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_number] = ACTIONS(1702), - [anon_sym_boolean] = ACTIONS(1702), - [anon_sym_string] = ACTIONS(1702), - [anon_sym_symbol] = ACTIONS(1702), - [sym_readonly] = ACTIONS(1702), - }, - [294] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [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(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1732), }, - [295] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1610), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3795), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [270] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2372), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4532), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -42719,7 +40748,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -42742,66 +40771,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [296] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1625), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3720), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [271] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2374), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4531), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -42811,7 +40840,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -42834,66 +40863,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [297] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1628), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3688), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [272] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1606), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1868), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), + }, + [273] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2381), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4528), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -42903,7 +41024,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -42926,66 +41047,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [298] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1630), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3706), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [274] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1626), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1878), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), + }, + [275] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2390), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4521), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -42995,7 +41208,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -43018,342 +41231,434 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [299] = { - [sym_import] = STATE(1979), - [sym_statement_block] = STATE(2006), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1479), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [276] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2392), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4513), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [300] = { - [sym_import] = STATE(1238), - [sym_parenthesized_expression] = STATE(727), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1228), - [sym_array] = STATE(1231), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1238), - [sym_function] = STATE(1238), - [sym_generator_function] = STATE(1238), - [sym_arrow_function] = STATE(1238), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1238), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(727), - [sym_subscript_expression] = STATE(727), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1238), - [sym_template_string] = STATE(1238), - [sym_regex] = STATE(1238), - [sym_meta_property] = STATE(1238), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(625), + [277] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1637), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1884), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(1646), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [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), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [301] = { - [sym_import] = STATE(1438), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1265), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [278] = { + [sym_import] = STATE(1629), + [sym_statement_block] = STATE(1927), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1935), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [279] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1634), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1885), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [302] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1665), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3717), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), + [280] = { + [sym_import] = STATE(2003), + [sym_parenthesized_expression] = STATE(1369), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1972), + [sym_array] = STATE(1962), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(2003), + [sym_function] = STATE(2003), + [sym_generator_function] = STATE(2003), + [sym_arrow_function] = STATE(2003), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(2003), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(2003), + [sym_template_string] = STATE(2003), + [sym_regex] = STATE(2003), + [sym_meta_property] = STATE(2003), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(1740), + [anon_sym_namespace] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1740), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(1682), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(1744), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -43363,89 +41668,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(1746), + [sym_this] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_true] = ACTIONS(1748), + [sym_false] = ACTIONS(1748), + [sym_null] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(1740), + [anon_sym_set] = ACTIONS(1740), + [anon_sym_declare] = ACTIONS(1740), + [anon_sym_public] = ACTIONS(1740), + [anon_sym_private] = ACTIONS(1740), + [anon_sym_protected] = ACTIONS(1740), + [anon_sym_module] = ACTIONS(1740), + [anon_sym_any] = ACTIONS(1740), + [anon_sym_number] = ACTIONS(1740), + [anon_sym_boolean] = ACTIONS(1740), + [anon_sym_string] = ACTIONS(1740), + [anon_sym_symbol] = ACTIONS(1740), + [sym_readonly] = ACTIONS(1740), }, - [303] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1258), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_sequence_expression] = STATE(3181), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [281] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2343), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4458), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -43455,7 +41760,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -43478,327 +41783,421 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [304] = { - [sym_import] = STATE(1515), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1961), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1380), - [sym_array] = STATE(1381), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1515), - [sym_function] = STATE(1515), - [sym_generator_function] = STATE(1515), - [sym_arrow_function] = STATE(1515), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1515), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1515), - [sym_template_string] = STATE(1515), - [sym_regex] = STATE(1515), - [sym_meta_property] = STATE(1515), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1684), - [anon_sym_namespace] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(603), + [282] = { + [sym_import] = STATE(1629), + [sym_statement_block] = STATE(1860), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1857), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(1688), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1668), - [sym_this] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_true] = ACTIONS(1670), - [sym_false] = ACTIONS(1670), - [sym_null] = ACTIONS(1670), - [sym_undefined] = ACTIONS(1670), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_declare] = ACTIONS(1684), - [anon_sym_public] = ACTIONS(1684), - [anon_sym_private] = ACTIONS(1684), - [anon_sym_protected] = ACTIONS(1684), - [anon_sym_module] = ACTIONS(1684), - [anon_sym_any] = ACTIONS(1684), - [anon_sym_number] = ACTIONS(1684), - [anon_sym_boolean] = ACTIONS(1684), - [anon_sym_string] = ACTIONS(1684), - [anon_sym_symbol] = ACTIONS(1684), - [sym_readonly] = ACTIONS(1684), - }, - [305] = { - [sym_import] = STATE(1979), - [sym_statement_block] = STATE(1997), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1492), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, - [306] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [283] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1633), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1886), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [307] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1353), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [284] = { + [sym_import] = STATE(1629), + [sym_statement_block] = STATE(1871), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1870), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [285] = { + [sym_import] = STATE(1629), + [sym_statement_block] = STATE(1877), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1876), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [286] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2298), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_sequence_expression] = STATE(4085), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -43806,9 +42205,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -43829,171 +42228,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [308] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1506), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [309] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), + [287] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2427), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_mapped_type_clause] = STATE(4429), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1442), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1444), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(1450), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -44003,7 +42312,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1708), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -44011,808 +42320,541 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_get] = ACTIONS(1444), + [anon_sym_set] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_protected] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + [anon_sym_any] = ACTIONS(1444), + [anon_sym_number] = ACTIONS(1444), + [anon_sym_boolean] = ACTIONS(1444), + [anon_sym_string] = ACTIONS(1444), + [anon_sym_symbol] = ACTIONS(1444), + [sym_readonly] = ACTIONS(1444), }, - [310] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1570), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [288] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1551), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2165), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), - }, - [311] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1475), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [312] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1478), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [313] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1488), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [314] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1501), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [289] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1606), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2143), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [315] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1567), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [290] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1626), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2122), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [316] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1571), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [291] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1637), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2097), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [317] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1572), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [292] = { + [sym_import] = STATE(1448), + [sym_variable_declarator] = STATE(3542), + [sym_parenthesized_expression] = STATE(1324), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1437), + [sym_array] = STATE(1423), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1324), + [sym_subscript_expression] = STATE(1324), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1392), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1752), }, - [318] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), + [293] = { + [sym_import] = STATE(1448), + [sym_variable_declarator] = STATE(3584), + [sym_parenthesized_expression] = STATE(1324), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1437), + [sym_array] = STATE(1423), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1324), + [sym_subscript_expression] = STATE(1324), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1392), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(1752), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(1756), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -44822,7 +42864,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -44830,80 +42872,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1752), }, - [319] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1257), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [294] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2352), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_sequence_expression] = STATE(4508), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -44913,7 +42956,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -44936,65 +42979,340 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [320] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [295] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1634), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2096), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), + }, + [296] = { + [sym_import] = STATE(1446), + [sym_statement_block] = STATE(1633), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2095), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), + }, + [297] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2317), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [298] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2201), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -45004,7 +43322,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1710), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -45027,530 +43345,985 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [321] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1178), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(2010), - [sym_array] = STATE(2016), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1178), - [sym_subscript_expression] = STATE(1178), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1173), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(1706), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [299] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2171), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_declare] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_protected] = ACTIONS(1702), - [anon_sym_module] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_number] = ACTIONS(1702), - [anon_sym_boolean] = ACTIONS(1702), - [anon_sym_string] = ACTIONS(1702), - [anon_sym_symbol] = ACTIONS(1702), - [sym_readonly] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [322] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1365), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [300] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2173), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [323] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1486), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [301] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2168), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [324] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1437), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [302] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2121), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [325] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1282), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [303] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2030), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [304] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2031), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [305] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2033), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [306] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2036), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [307] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2061), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [308] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2049), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [326] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1578), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [309] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -45558,90 +44331,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [327] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1899), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [310] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1554), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -45649,80 +44422,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [328] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1281), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [311] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2194), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -45732,7 +44505,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -45755,156 +44528,247 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [329] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1437), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [312] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2052), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [330] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [313] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2109), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [314] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2199), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -45914,7 +44778,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1716), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -45937,156 +44801,247 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [331] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1842), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [315] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2138), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [316] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(1554), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [332] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1403), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [317] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2202), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -46096,7 +45051,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -46119,156 +45074,156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [333] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1539), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1710), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [318] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2294), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, - [334] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1704), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1718), + [319] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2176), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -46278,7 +45233,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -46301,234 +45256,143 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [335] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1830), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [336] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1263), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [320] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [337] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1393), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [321] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2203), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46536,9 +45400,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -46559,262 +45423,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [338] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1460), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [339] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1530), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [340] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1403), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1720), + [322] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1620), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -46824,7 +45506,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -46847,247 +45529,156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [341] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1579), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [323] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2026), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), - }, - [342] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1426), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [343] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1280), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [324] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2191), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -47097,7 +45688,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -47120,429 +45711,520 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [344] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1531), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [325] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2278), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [345] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1369), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [326] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [346] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1395), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [327] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2320), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, - [347] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1419), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [328] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2318), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, - [348] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1643), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [329] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2316), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [330] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2198), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -47552,7 +46234,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -47575,75 +46257,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [349] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1580), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [331] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1568), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -47651,67 +46333,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [350] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1415), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [332] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(1984), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -47719,9 +46401,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -47742,80 +46424,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [351] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1266), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [333] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2223), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -47825,7 +46507,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -47848,156 +46530,338 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [352] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1395), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [334] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2119), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [335] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2303), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [353] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [336] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2315), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [337] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2225), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -48007,7 +46871,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1722), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -48030,247 +46894,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [354] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1692), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - }, - [355] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1455), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [356] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1348), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [338] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2231), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -48280,7 +46962,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -48303,156 +46985,520 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [357] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1537), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [339] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2314), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, - [358] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1710), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [340] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2313), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [341] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2312), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [342] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2311), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [343] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2310), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [344] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2226), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -48462,7 +47508,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -48485,156 +47531,156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [359] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1775), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [345] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [360] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1707), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [346] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2215), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -48644,7 +47690,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -48667,65 +47713,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [361] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1704), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [347] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2209), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -48735,7 +47781,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -48758,252 +47804,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [362] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1538), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), - }, - [363] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1541), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), - }, - [364] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1683), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [348] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2184), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -49016,171 +47880,353 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [365] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1682), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [349] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2300), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [350] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2028), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [366] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1229), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [351] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(1554), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), + }, + [352] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2417), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -49190,7 +48236,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -49213,234 +48259,234 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [367] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1548), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [353] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1803), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, - [368] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1550), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [354] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2184), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [369] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1415), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [355] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2255), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -49448,9 +48494,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -49471,67 +48517,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [370] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1377), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [356] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2263), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -49539,9 +48585,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -49562,449 +48608,904 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [371] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [357] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2293), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), + }, + [358] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2108), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [359] = { + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2272), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), + }, + [360] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2188), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), + }, + [361] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1966), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [362] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2056), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1724), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [372] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1512), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [363] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2118), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [373] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1561), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [364] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [374] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1811), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [365] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(1568), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [375] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1696), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [366] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2384), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -50017,80 +49518,353 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [376] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1274), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [367] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(1966), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), + }, + [368] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1984), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [369] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2004), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [370] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2427), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -50100,7 +49874,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -50123,143 +49897,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [377] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1559), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), - }, - [378] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1491), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [371] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2185), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -50267,9 +49950,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -50290,181 +49973,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [379] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1484), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [372] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2075), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [380] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1539), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [373] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2237), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -50472,90 +50155,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [381] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1483), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [374] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2234), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -50563,181 +50246,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [382] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1481), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [375] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2196), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [383] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1327), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [376] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2437), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -50745,67 +50428,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [384] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [377] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2164), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), + }, + [378] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2175), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -50813,9 +50587,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -50836,80 +50610,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [385] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1333), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [379] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2356), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -50919,7 +50693,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -50942,348 +50716,348 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [386] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [380] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2162), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [387] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1558), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [381] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2161), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [388] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1557), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [382] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2025), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [389] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1229), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [383] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2280), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -51291,90 +51065,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [390] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [384] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1554), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -51382,181 +51156,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [391] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1551), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [385] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2160), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [392] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1549), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [386] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -51564,67 +51338,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, - [393] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1393), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [387] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2183), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -51632,9 +51406,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -51647,7 +51421,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1726), + [sym_number] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -51655,363 +51429,909 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), + }, + [388] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(1620), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), + }, + [389] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2159), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), + }, + [390] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2158), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), + }, + [391] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2157), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), + }, + [392] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2156), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), + }, + [393] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2155), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, [394] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1547), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(1620), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, [395] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1552), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2154), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, [396] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1546), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2144), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, [397] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1545), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(1760), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -52019,67 +52339,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [398] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1450), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2177), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52087,9 +52407,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -52110,158 +52430,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [399] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1435), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2281), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [400] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1439), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2195), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52269,9 +52589,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -52292,272 +52612,272 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [401] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1583), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2020), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, [402] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1586), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2431), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [403] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1884), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2262), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -52565,67 +52885,522 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [404] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1457), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2264), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [405] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2266), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [406] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2267), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [407] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1814), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), + }, + [408] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1815), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), + }, + [409] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2241), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52633,9 +53408,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -52656,431 +53431,340 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [405] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1456), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [406] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1454), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [410] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1819), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [407] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1670), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [411] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2116), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, - [408] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1587), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [412] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1821), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [409] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1453), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [413] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2211), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -53088,9 +53772,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -53111,181 +53795,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [410] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1649), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [414] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1822), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [411] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1275), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [415] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1620), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -53293,90 +53977,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [412] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1536), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [416] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2271), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -53384,181 +54068,272 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [413] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1279), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(449), - [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(499), + [417] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1823), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(481), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_void] = ACTIONS(499), - [anon_sym_delete] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [anon_sym_declare] = ACTIONS(449), - [anon_sym_public] = ACTIONS(449), - [anon_sym_private] = ACTIONS(449), - [anon_sym_protected] = ACTIONS(449), - [anon_sym_module] = ACTIONS(449), - [anon_sym_any] = ACTIONS(449), - [anon_sym_number] = ACTIONS(449), - [anon_sym_boolean] = ACTIONS(449), - [anon_sym_string] = ACTIONS(449), - [anon_sym_symbol] = ACTIONS(449), - [sym_readonly] = ACTIONS(449), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [414] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1509), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [418] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2017), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), + }, + [419] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2274), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -53566,158 +54341,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [415] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1636), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, - [416] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1451), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [420] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2188), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -53725,9 +54409,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -53748,727 +54432,363 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [417] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1686), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [418] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1486), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [421] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1825), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(1710), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [419] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1632), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - }, - [420] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [421] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1854), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [422] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1620), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [422] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1629), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [423] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1229), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1829), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [424] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1518), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2276), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -54476,454 +54796,454 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [425] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1627), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1830), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [426] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1520), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1831), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [427] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1521), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1835), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [428] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1529), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2016), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, [429] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1532), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2289), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -54931,90 +55251,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [430] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1533), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2440), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -55022,90 +55342,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [431] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1534), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2430), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -55113,85 +55433,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [432] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1624), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2222), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -55204,272 +55524,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [433] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1535), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [434] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1623), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1988), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, - [435] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1466), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [434] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2404), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -55477,176 +55706,176 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [436] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1555), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [435] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1840), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, - [437] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1622), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [436] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2337), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -55659,176 +55888,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [438] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1621), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [437] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2182), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), - }, - [439] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1620), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -55841,90 +55979,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [440] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1873), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [438] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1812), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), + }, + [439] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2406), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -55932,272 +56161,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [441] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1367), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), - }, - [442] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1617), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [443] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1806), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [440] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2178), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -56205,272 +56252,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [444] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1573), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [445] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1576), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [441] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2119), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, - [446] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1543), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), + [442] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2407), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -56478,67 +56434,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, - [447] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1448), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), + [443] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2186), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), + [anon_sym_import] = ACTIONS(832), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -56546,9 +56502,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -56569,90 +56525,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [448] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1566), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [444] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2404), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1762), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -56660,444 +56616,1172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(513), [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), + }, + [445] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2014), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), + }, + [446] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1964), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [447] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1960), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [448] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1959), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, [449] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1103), - [sym__expression] = STATE(1372), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1604), - [sym_array] = STATE(1606), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3930), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2241), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(929), - [anon_sym_export] = ACTIONS(849), - [anon_sym_namespace] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(849), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(29), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1958), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(857), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_declare] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_any] = ACTIONS(849), - [anon_sym_number] = ACTIONS(849), - [anon_sym_boolean] = ACTIONS(849), - [anon_sym_string] = ACTIONS(849), - [anon_sym_symbol] = ACTIONS(849), - [sym_readonly] = ACTIONS(849), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, [450] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1692), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1895), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1726), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, [451] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1592), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1956), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, [452] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1131), - [sym__expression] = STATE(1556), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1761), - [sym_array] = STATE(1751), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3886), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2242), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1129), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(755), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(747), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_void] = ACTIONS(755), - [anon_sym_delete] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1955), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(731), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_protected] = ACTIONS(731), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [sym_readonly] = ACTIONS(731), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, [453] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1272), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1954), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [454] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1953), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [455] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1950), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [456] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1947), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [457] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -57107,7 +57791,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(1764), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -57130,252 +57814,343 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [454] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1574), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), + [458] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1928), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [459] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2040), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(948), [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(974), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [455] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1488), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1728), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [460] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(1866), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [456] = { - [sym_import] = STATE(1749), - [sym_parenthesized_expression] = STATE(1167), - [sym__expression] = STATE(1591), - [sym_yield_expression] = STATE(1764), - [sym_object] = STATE(1965), - [sym_array] = STATE(1964), - [sym_jsx_element] = STATE(1764), - [sym_jsx_fragment] = STATE(1764), - [sym_jsx_opening_element] = STATE(2377), - [sym_jsx_self_closing_element] = STATE(1764), - [sym_class] = STATE(1749), - [sym_function] = STATE(1749), - [sym_generator_function] = STATE(1749), - [sym_arrow_function] = STATE(1749), - [sym__call_signature] = STATE(3759), - [sym_call_expression] = STATE(1749), - [sym_new_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_member_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1764), - [sym__augmented_assignment_lhs] = STATE(2244), - [sym_augmented_assignment_expression] = STATE(1764), - [sym_ternary_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_unary_expression] = STATE(1764), - [sym_update_expression] = STATE(1764), - [sym_string] = STATE(1749), - [sym_template_string] = STATE(1749), - [sym_regex] = STATE(1749), - [sym_meta_property] = STATE(1749), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1764), - [sym_internal_module] = STATE(1764), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3137), - [sym_identifier] = ACTIONS(1037), - [anon_sym_export] = ACTIONS(643), - [anon_sym_namespace] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_type] = ACTIONS(643), - [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), + [461] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(1907), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(659), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(663), - [anon_sym_async] = ACTIONS(665), - [anon_sym_function] = ACTIONS(667), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_void] = ACTIONS(675), - [anon_sym_delete] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -57388,171 +58163,626 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [anon_sym_declare] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_any] = ACTIONS(643), - [anon_sym_number] = ACTIONS(643), - [anon_sym_boolean] = ACTIONS(643), - [anon_sym_string] = ACTIONS(643), - [anon_sym_symbol] = ACTIONS(643), - [sym_readonly] = ACTIONS(643), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, - [457] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1155), - [sym__expression] = STATE(1584), - [sym_yield_expression] = STATE(1975), - [sym_object] = STATE(1832), - [sym_array] = STATE(1833), - [sym_jsx_element] = STATE(1975), - [sym_jsx_fragment] = STATE(1975), - [sym_jsx_opening_element] = STATE(2354), - [sym_jsx_self_closing_element] = STATE(1975), - [sym_class] = STATE(1979), - [sym_function] = STATE(1979), - [sym_generator_function] = STATE(1979), - [sym_arrow_function] = STATE(1979), - [sym__call_signature] = STATE(3878), - [sym_call_expression] = STATE(1979), - [sym_new_expression] = STATE(1975), - [sym_await_expression] = STATE(1975), - [sym_member_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1975), - [sym__augmented_assignment_lhs] = STATE(2243), - [sym_augmented_assignment_expression] = STATE(1975), - [sym_ternary_expression] = STATE(1975), - [sym_binary_expression] = STATE(1975), - [sym_unary_expression] = STATE(1975), - [sym_update_expression] = STATE(1975), - [sym_string] = STATE(1979), - [sym_template_string] = STATE(1979), - [sym_regex] = STATE(1979), - [sym_meta_property] = STATE(1979), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1975), - [sym_internal_module] = STATE(1975), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(1047), - [anon_sym_export] = ACTIONS(789), - [anon_sym_namespace] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(789), - [anon_sym_typeof] = ACTIONS(825), - [anon_sym_import] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(803), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_class] = ACTIONS(813), - [anon_sym_async] = ACTIONS(815), - [anon_sym_function] = ACTIONS(817), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(833), - [sym_number] = ACTIONS(1065), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [sym_undefined] = ACTIONS(839), + [462] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2021), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), - [anon_sym_declare] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [sym_readonly] = ACTIONS(789), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), }, - [458] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(913), - [sym__expression] = STATE(1276), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1461), - [sym_array] = STATE(1462), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3687), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2240), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(922), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(885), + [463] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1766), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [464] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2055), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [465] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(968), + [sym__expression] = STATE(2027), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1579), + [sym_array] = STATE(1578), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(968), + [sym_subscript_expression] = STATE(968), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2559), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(960), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(974), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [sym_readonly] = ACTIONS(960), + }, + [466] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2093), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), + }, + [467] = { + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1896), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), + }, + [468] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2329), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(776), [anon_sym_type] = ACTIONS(449), [anon_sym_typeof] = ACTIONS(499), [anon_sym_import] = ACTIONS(461), [anon_sym_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(784), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_LT] = ACTIONS(475), [anon_sym_SLASH] = ACTIONS(477), [anon_sym_class] = ACTIONS(479), [anon_sym_async] = ACTIONS(481), [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), [anon_sym_TILDE] = ACTIONS(463), [anon_sym_void] = ACTIONS(499), [anon_sym_delete] = ACTIONS(499), @@ -57562,7 +58792,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), + [sym_number] = ACTIONS(818), [sym_this] = ACTIONS(513), [sym_super] = ACTIONS(513), [sym_true] = ACTIONS(513), @@ -57585,19648 +58815,26657 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(449), [sym_readonly] = ACTIONS(449), }, - [459] = { - [sym_import] = STATE(1438), - [sym_parenthesized_expression] = STATE(1130), - [sym__expression] = STATE(1585), - [sym_yield_expression] = STATE(1441), - [sym_object] = STATE(1800), - [sym_array] = STATE(1903), - [sym_jsx_element] = STATE(1441), - [sym_jsx_fragment] = STATE(1441), - [sym_jsx_opening_element] = STATE(2348), - [sym_jsx_self_closing_element] = STATE(1441), - [sym_class] = STATE(1438), - [sym_function] = STATE(1438), - [sym_generator_function] = STATE(1438), - [sym_arrow_function] = STATE(1438), - [sym__call_signature] = STATE(3790), - [sym_call_expression] = STATE(1438), - [sym_new_expression] = STATE(1441), - [sym_await_expression] = STATE(1441), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1441), - [sym__augmented_assignment_lhs] = STATE(2239), - [sym_augmented_assignment_expression] = STATE(1441), - [sym_ternary_expression] = STATE(1441), - [sym_binary_expression] = STATE(1441), - [sym_unary_expression] = STATE(1441), - [sym_update_expression] = STATE(1441), - [sym_string] = STATE(1438), - [sym_template_string] = STATE(1438), - [sym_regex] = STATE(1438), - [sym_meta_property] = STATE(1438), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(2823), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1441), - [sym_internal_module] = STATE(1441), - [sym_type_parameters] = STATE(3537), - [aux_sym_export_statement_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(595), - [anon_sym_namespace] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_type] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(625), - [anon_sym_import] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_await] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(611), - [anon_sym_function] = ACTIONS(483), - [anon_sym_new] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_void] = ACTIONS(625), - [anon_sym_delete] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [sym_undefined] = ACTIONS(513), + [469] = { + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2092), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [sym_readonly] = ACTIONS(595), - }, - [460] = { - [sym__call_signature] = STATE(3801), - [sym_string] = STATE(2751), - [sym_formal_parameters] = STATE(2823), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [sym_type_parameters] = STATE(3537), - [aux_sym_object_repeat1] = STATE(3233), - [sym_identifier] = ACTIONS(1730), - [anon_sym_export] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(1747), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_get] = ACTIONS(1751), - [anon_sym_set] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_protected] = 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), - [sym_readonly] = ACTIONS(1732), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [461] = { - [sym__call_signature] = STATE(3801), - [sym_string] = STATE(2751), - [sym_formal_parameters] = STATE(2823), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [sym_type_parameters] = STATE(3537), - [aux_sym_object_repeat1] = STATE(3324), - [sym_identifier] = ACTIONS(1730), - [anon_sym_export] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(1747), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_get] = ACTIONS(1751), - [anon_sym_set] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_protected] = 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), - [sym_readonly] = ACTIONS(1732), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [462] = { - [sym__call_signature] = STATE(3801), - [sym_string] = STATE(2751), - [sym_formal_parameters] = STATE(2823), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [sym_type_parameters] = STATE(3537), - [aux_sym_object_repeat1] = STATE(3394), - [sym_identifier] = ACTIONS(1730), - [anon_sym_export] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(1747), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_get] = ACTIONS(1751), - [anon_sym_set] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_protected] = 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), - [sym_readonly] = ACTIONS(1732), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_EQ] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_COMMA] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_var] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_debugger] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_COLON] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [anon_sym_RBRACK] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(1755), - [anon_sym_EQ_GT] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_QMARK] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_void] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym_number] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_undefined] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1755), - [anon_sym_get] = ACTIONS(1755), - [anon_sym_set] = ACTIONS(1755), - [anon_sym_declare] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_implements] = ACTIONS(1755), - [anon_sym_interface] = ACTIONS(1755), - [anon_sym_extends] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [sym_readonly] = ACTIONS(1755), - }, - [464] = { - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_typeof] = ACTIONS(1759), - [anon_sym_import] = ACTIONS(1759), - [anon_sym_var] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_await] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_with] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_debugger] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_COLON] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_RBRACK] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_async] = ACTIONS(1759), - [anon_sym_function] = ACTIONS(1759), - [anon_sym_EQ_GT] = ACTIONS(1757), - [anon_sym_new] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_void] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1757), - [sym_number] = ACTIONS(1757), - [sym_this] = ACTIONS(1759), - [sym_super] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_undefined] = ACTIONS(1759), - [anon_sym_AT] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_abstract] = ACTIONS(1759), - [anon_sym_get] = ACTIONS(1759), - [anon_sym_set] = ACTIONS(1759), - [anon_sym_declare] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_any] = ACTIONS(1759), - [anon_sym_number] = ACTIONS(1759), - [anon_sym_boolean] = ACTIONS(1759), - [anon_sym_string] = ACTIONS(1759), - [anon_sym_symbol] = ACTIONS(1759), - [anon_sym_implements] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_extends] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [sym_readonly] = ACTIONS(1759), - }, - [465] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1763), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_var] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_debugger] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_COLON] = ACTIONS(1761), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_RBRACK] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(1763), - [anon_sym_EQ_GT] = ACTIONS(1761), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_void] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1761), - [sym_number] = ACTIONS(1761), - [sym_this] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_undefined] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_abstract] = ACTIONS(1763), - [anon_sym_get] = ACTIONS(1763), - [anon_sym_set] = ACTIONS(1763), - [anon_sym_declare] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_any] = ACTIONS(1763), - [anon_sym_number] = ACTIONS(1763), - [anon_sym_boolean] = ACTIONS(1763), - [anon_sym_string] = ACTIONS(1763), - [anon_sym_symbol] = ACTIONS(1763), - [anon_sym_implements] = ACTIONS(1763), - [anon_sym_interface] = ACTIONS(1763), - [anon_sym_extends] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym_readonly] = ACTIONS(1763), - }, - [466] = { - [ts_builtin_sym_end] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_EQ] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1767), - [anon_sym_typeof] = ACTIONS(1767), - [anon_sym_import] = ACTIONS(1767), - [anon_sym_var] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_with] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_debugger] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_async] = ACTIONS(1767), - [anon_sym_function] = ACTIONS(1767), - [anon_sym_EQ_GT] = ACTIONS(1765), - [anon_sym_new] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_void] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1765), - [sym_number] = ACTIONS(1765), - [sym_this] = ACTIONS(1767), - [sym_super] = ACTIONS(1767), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_undefined] = ACTIONS(1767), - [anon_sym_AT] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_abstract] = ACTIONS(1767), - [anon_sym_get] = ACTIONS(1767), - [anon_sym_set] = ACTIONS(1767), - [anon_sym_declare] = ACTIONS(1767), - [anon_sym_public] = ACTIONS(1767), - [anon_sym_private] = ACTIONS(1767), - [anon_sym_protected] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_any] = ACTIONS(1767), - [anon_sym_number] = ACTIONS(1767), - [anon_sym_boolean] = ACTIONS(1767), - [anon_sym_string] = ACTIONS(1767), - [anon_sym_symbol] = ACTIONS(1767), - [anon_sym_implements] = ACTIONS(1767), - [anon_sym_interface] = ACTIONS(1767), - [anon_sym_extends] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [sym_readonly] = ACTIONS(1767), - }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_EQ] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(1771), - [anon_sym_import] = ACTIONS(1771), - [anon_sym_var] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_with] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_debugger] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_COLON] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_RBRACK] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_function] = ACTIONS(1771), - [anon_sym_EQ_GT] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_void] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1769), - [sym_number] = ACTIONS(1769), - [sym_this] = ACTIONS(1771), - [sym_super] = ACTIONS(1771), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_undefined] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_abstract] = ACTIONS(1771), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_declare] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_any] = ACTIONS(1771), - [anon_sym_number] = ACTIONS(1771), - [anon_sym_boolean] = ACTIONS(1771), - [anon_sym_string] = ACTIONS(1771), - [anon_sym_symbol] = ACTIONS(1771), - [anon_sym_implements] = ACTIONS(1771), - [anon_sym_interface] = ACTIONS(1771), - [anon_sym_extends] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [sym_readonly] = ACTIONS(1771), - }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_identifier] = ACTIONS(1775), - [anon_sym_export] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_EQ] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1775), - [anon_sym_typeof] = ACTIONS(1775), - [anon_sym_import] = ACTIONS(1775), - [anon_sym_var] = ACTIONS(1775), - [anon_sym_let] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_else] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_with] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_debugger] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_COLON] = ACTIONS(1773), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_yield] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_RBRACK] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_SLASH] = ACTIONS(1775), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_async] = ACTIONS(1775), - [anon_sym_function] = ACTIONS(1775), - [anon_sym_EQ_GT] = ACTIONS(1773), - [anon_sym_new] = ACTIONS(1775), - [anon_sym_QMARK] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_void] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1773), - [sym_number] = ACTIONS(1773), - [sym_this] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_undefined] = ACTIONS(1775), - [anon_sym_AT] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_abstract] = 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_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_implements] = ACTIONS(1775), - [anon_sym_interface] = ACTIONS(1775), - [anon_sym_extends] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [sym_readonly] = ACTIONS(1775), - }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_EQ] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_var] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_debugger] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_COLON] = ACTIONS(1777), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_RBRACK] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_EQ_GT] = ACTIONS(1777), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_QMARK] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_void] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1777), - [sym_number] = ACTIONS(1777), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_abstract] = 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_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_extends] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [sym_readonly] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_EQ] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_RBRACK] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_EQ_GT] = ACTIONS(1781), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_extends] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [sym_readonly] = ACTIONS(1783), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2228), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1787), - [anon_sym_EQ] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_typeof] = ACTIONS(1787), - [anon_sym_import] = ACTIONS(1787), - [anon_sym_var] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_switch] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_await] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_with] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_debugger] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1785), - [anon_sym_case] = ACTIONS(1787), - [anon_sym_yield] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_RBRACK] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_async] = ACTIONS(1787), - [anon_sym_function] = ACTIONS(1787), - [anon_sym_EQ_GT] = ACTIONS(1785), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_void] = ACTIONS(1787), - [anon_sym_delete] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1785), - [sym_number] = ACTIONS(1785), - [sym_this] = ACTIONS(1787), - [sym_super] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_null] = ACTIONS(1787), - [sym_undefined] = ACTIONS(1787), - [anon_sym_AT] = ACTIONS(1785), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(1787), - [anon_sym_extends] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [sym_readonly] = ACTIONS(1787), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_EQ_GT] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_abstract] = 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_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_extends] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [sym_readonly] = ACTIONS(1791), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2291), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_export] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_EQ] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_COMMA] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1795), - [anon_sym_import] = ACTIONS(1795), - [anon_sym_var] = ACTIONS(1795), - [anon_sym_let] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_switch] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_RPAREN] = ACTIONS(1793), - [anon_sym_await] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_do] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_with] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_debugger] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1795), - [anon_sym_yield] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_RBRACK] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_GT] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_async] = ACTIONS(1795), - [anon_sym_function] = ACTIONS(1795), - [anon_sym_EQ_GT] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1795), - [anon_sym_QMARK] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_void] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1793), - [sym_number] = ACTIONS(1793), - [sym_this] = ACTIONS(1795), - [sym_super] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_abstract] = ACTIONS(1795), - [anon_sym_get] = ACTIONS(1795), - [anon_sym_set] = ACTIONS(1795), - [anon_sym_declare] = ACTIONS(1795), - [anon_sym_public] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1795), - [anon_sym_protected] = ACTIONS(1795), - [anon_sym_module] = ACTIONS(1795), - [anon_sym_any] = ACTIONS(1795), - [anon_sym_number] = ACTIONS(1795), - [anon_sym_boolean] = ACTIONS(1795), - [anon_sym_string] = ACTIONS(1795), - [anon_sym_symbol] = ACTIONS(1795), - [anon_sym_interface] = ACTIONS(1795), - [anon_sym_extends] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [sym_readonly] = ACTIONS(1795), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(1568), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_EQ] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_COMMA] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_typeof] = ACTIONS(1799), - [anon_sym_import] = ACTIONS(1799), - [anon_sym_var] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_RPAREN] = ACTIONS(1797), - [anon_sym_await] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_with] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_debugger] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_COLON] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_yield] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_RBRACK] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_async] = ACTIONS(1799), - [anon_sym_function] = ACTIONS(1799), - [anon_sym_EQ_GT] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_void] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1797), - [sym_number] = ACTIONS(1797), - [sym_this] = ACTIONS(1799), - [sym_super] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_undefined] = ACTIONS(1799), - [anon_sym_AT] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_abstract] = ACTIONS(1799), - [anon_sym_get] = ACTIONS(1799), - [anon_sym_set] = ACTIONS(1799), - [anon_sym_declare] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_private] = ACTIONS(1799), - [anon_sym_protected] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_any] = ACTIONS(1799), - [anon_sym_number] = ACTIONS(1799), - [anon_sym_boolean] = ACTIONS(1799), - [anon_sym_string] = ACTIONS(1799), - [anon_sym_symbol] = ACTIONS(1799), - [anon_sym_interface] = ACTIONS(1799), - [anon_sym_extends] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [sym_readonly] = ACTIONS(1799), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2219), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_EQ] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_COLON] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_RBRACK] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_EQ_GT] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_QMARK] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_extends] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym_readonly] = ACTIONS(1803), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(1895), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(1807), - [anon_sym_var] = ACTIONS(1807), - [anon_sym_let] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_await] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_with] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_debugger] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_COLON] = ACTIONS(1805), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_function] = ACTIONS(1807), - [anon_sym_EQ_GT] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_void] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1805), - [sym_number] = ACTIONS(1805), - [sym_this] = ACTIONS(1807), - [sym_super] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_undefined] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_abstract] = ACTIONS(1807), - [anon_sym_get] = ACTIONS(1807), - [anon_sym_set] = ACTIONS(1807), - [anon_sym_declare] = ACTIONS(1807), - [anon_sym_public] = ACTIONS(1807), - [anon_sym_private] = ACTIONS(1807), - [anon_sym_protected] = ACTIONS(1807), - [anon_sym_module] = ACTIONS(1807), - [anon_sym_any] = ACTIONS(1807), - [anon_sym_number] = ACTIONS(1807), - [anon_sym_boolean] = ACTIONS(1807), - [anon_sym_string] = ACTIONS(1807), - [anon_sym_symbol] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_extends] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [sym_readonly] = ACTIONS(1807), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(945), + [sym__expression] = STATE(2059), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1650), + [sym_array] = STATE(1651), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2566), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(906), + [anon_sym_export] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(914), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_void] = ACTIONS(914), + [anon_sym_delete] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(908), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_EQ] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_RBRACK] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_EQ_GT] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_extends] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [sym_readonly] = ACTIONS(1811), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2420), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_COLON] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_RBRACK] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_EQ_GT] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_extends] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [sym_readonly] = ACTIONS(1815), + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2004), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(1817), - [sym_identifier] = ACTIONS(1819), - [anon_sym_export] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1819), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(1819), - [anon_sym_var] = ACTIONS(1819), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_with] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_debugger] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_throw] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_case] = ACTIONS(1819), - [anon_sym_yield] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_class] = ACTIONS(1819), - [anon_sym_async] = ACTIONS(1819), - [anon_sym_function] = ACTIONS(1819), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_new] = ACTIONS(1819), - [anon_sym_QMARK] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1817), - [sym_number] = ACTIONS(1817), - [sym_this] = ACTIONS(1819), - [sym_super] = ACTIONS(1819), - [sym_true] = ACTIONS(1819), - [sym_false] = ACTIONS(1819), - [sym_null] = ACTIONS(1819), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1819), - [anon_sym_abstract] = ACTIONS(1819), - [anon_sym_get] = ACTIONS(1819), - [anon_sym_set] = ACTIONS(1819), - [anon_sym_declare] = ACTIONS(1819), - [anon_sym_public] = ACTIONS(1819), - [anon_sym_private] = ACTIONS(1819), - [anon_sym_protected] = ACTIONS(1819), - [anon_sym_module] = ACTIONS(1819), - [anon_sym_any] = ACTIONS(1819), - [anon_sym_number] = ACTIONS(1819), - [anon_sym_boolean] = ACTIONS(1819), - [anon_sym_string] = ACTIONS(1819), - [anon_sym_symbol] = ACTIONS(1819), - [anon_sym_interface] = ACTIONS(1819), - [anon_sym_extends] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), - [sym_readonly] = ACTIONS(1819), + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2102), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_COLON] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_RBRACK] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1821), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_QMARK] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_extends] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1823), - [sym_readonly] = ACTIONS(1823), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2290), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_COLON] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_RBRACK] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1825), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_QMARK] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_abstract] = 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_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_extends] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [sym_readonly] = ACTIONS(1827), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2288), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [482] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [sym_identifier] = ACTIONS(1831), - [anon_sym_export] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_namespace] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1831), - [anon_sym_import] = ACTIONS(1831), - [anon_sym_var] = ACTIONS(1831), - [anon_sym_let] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_switch] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_await] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_with] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_debugger] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_COLON] = ACTIONS(1829), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_yield] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_async] = ACTIONS(1831), - [anon_sym_function] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_QMARK] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_void] = ACTIONS(1831), - [anon_sym_delete] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1829), - [sym_number] = ACTIONS(1829), - [sym_this] = ACTIONS(1831), - [sym_super] = ACTIONS(1831), - [sym_true] = ACTIONS(1831), - [sym_false] = ACTIONS(1831), - [sym_null] = ACTIONS(1831), - [sym_undefined] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_abstract] = 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_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), - [anon_sym_interface] = ACTIONS(1831), - [anon_sym_extends] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [sym_readonly] = ACTIONS(1831), + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2019), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, [483] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_var] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_RPAREN] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_debugger] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_COLON] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_RBRACK] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_QMARK] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_void] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1833), - [sym_number] = ACTIONS(1833), - [sym_this] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_abstract] = 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_module] = ACTIONS(1835), - [anon_sym_any] = ACTIONS(1835), - [anon_sym_number] = ACTIONS(1835), - [anon_sym_boolean] = ACTIONS(1835), - [anon_sym_string] = ACTIONS(1835), - [anon_sym_symbol] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_extends] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym_readonly] = ACTIONS(1835), + [sym_import] = STATE(1669), + [sym_parenthesized_expression] = STATE(990), + [sym__expression] = STATE(2102), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1553), + [sym_array] = STATE(1552), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1669), + [sym_function] = STATE(1669), + [sym_generator_function] = STATE(1669), + [sym_arrow_function] = STATE(1669), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2567), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1669), + [sym_template_string] = STATE(1669), + [sym_regex] = STATE(1669), + [sym_meta_property] = STATE(1669), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_typeof] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_void] = ACTIONS(1042), + [anon_sym_delete] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1060), + [sym_this] = ACTIONS(1062), + [sym_super] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_get] = ACTIONS(1036), + [anon_sym_set] = ACTIONS(1036), + [anon_sym_declare] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_any] = ACTIONS(1036), + [anon_sym_number] = ACTIONS(1036), + [anon_sym_boolean] = ACTIONS(1036), + [anon_sym_string] = ACTIONS(1036), + [anon_sym_symbol] = ACTIONS(1036), + [sym_readonly] = ACTIONS(1036), }, [484] = { - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_identifier] = ACTIONS(1839), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_namespace] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1839), - [anon_sym_import] = ACTIONS(1839), - [anon_sym_var] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_switch] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_await] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_with] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_debugger] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_throw] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_COLON] = ACTIONS(1837), - [anon_sym_case] = ACTIONS(1839), - [anon_sym_yield] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_function] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_QMARK] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_void] = ACTIONS(1839), - [anon_sym_delete] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [anon_sym_SQUOTE] = ACTIONS(1837), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1837), - [sym_number] = ACTIONS(1837), - [sym_this] = ACTIONS(1839), - [sym_super] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_null] = ACTIONS(1839), - [sym_undefined] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_abstract] = 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_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), - [anon_sym_interface] = ACTIONS(1839), - [anon_sym_extends] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [sym_readonly] = ACTIONS(1839), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2286), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [485] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_COLON] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_RBRACK] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_abstract] = 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_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_extends] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym_readonly] = ACTIONS(1845), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [486] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_var] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_RPAREN] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_do] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_debugger] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_COLON] = ACTIONS(1847), - [anon_sym_case] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_RBRACK] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_function] = ACTIONS(1849), - [anon_sym_EQ_GT] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_delete] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym_number] = ACTIONS(1847), - [sym_this] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_null] = ACTIONS(1849), - [sym_undefined] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(1849), - [anon_sym_extends] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [sym_readonly] = ACTIONS(1849), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2193), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [487] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_EQ] = ACTIONS(1853), - [anon_sym_namespace] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_var] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_with] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_debugger] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_throw] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_function] = ACTIONS(1853), - [anon_sym_EQ_GT] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1853), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_delete] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym_number] = ACTIONS(1851), - [sym_this] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_null] = ACTIONS(1853), - [sym_undefined] = ACTIONS(1853), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_abstract] = 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_module] = ACTIONS(1853), - [anon_sym_any] = ACTIONS(1853), - [anon_sym_number] = ACTIONS(1853), - [anon_sym_boolean] = ACTIONS(1853), - [anon_sym_string] = ACTIONS(1853), - [anon_sym_symbol] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1853), - [anon_sym_extends] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [sym_readonly] = ACTIONS(1853), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2285), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [anon_sym_export] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_namespace] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_typeof] = ACTIONS(1857), - [anon_sym_import] = ACTIONS(1857), - [anon_sym_var] = ACTIONS(1857), - [anon_sym_let] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_switch] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [anon_sym_await] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(1857), - [anon_sym_try] = ACTIONS(1857), - [anon_sym_with] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_debugger] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_throw] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_COLON] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1857), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_RBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1857), - [anon_sym_class] = ACTIONS(1857), - [anon_sym_async] = ACTIONS(1857), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_QMARK] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_void] = ACTIONS(1857), - [anon_sym_delete] = ACTIONS(1857), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1855), - [sym_number] = ACTIONS(1855), - [sym_this] = ACTIONS(1857), - [sym_super] = ACTIONS(1857), - [sym_true] = ACTIONS(1857), - [sym_false] = ACTIONS(1857), - [sym_null] = ACTIONS(1857), - [sym_undefined] = ACTIONS(1857), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_abstract] = ACTIONS(1857), - [anon_sym_get] = ACTIONS(1857), - [anon_sym_set] = ACTIONS(1857), - [anon_sym_declare] = ACTIONS(1857), - [anon_sym_public] = ACTIONS(1857), - [anon_sym_private] = ACTIONS(1857), - [anon_sym_protected] = ACTIONS(1857), - [anon_sym_module] = ACTIONS(1857), - [anon_sym_any] = ACTIONS(1857), - [anon_sym_number] = ACTIONS(1857), - [anon_sym_boolean] = ACTIONS(1857), - [anon_sym_string] = ACTIONS(1857), - [anon_sym_symbol] = ACTIONS(1857), - [anon_sym_interface] = ACTIONS(1857), - [anon_sym_extends] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), - [sym_readonly] = ACTIONS(1857), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1568), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_export] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_namespace] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_typeof] = ACTIONS(1167), - [anon_sym_import] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(1167), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_await] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_try] = ACTIONS(1167), - [anon_sym_with] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_debugger] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_COLON] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_SLASH] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_async] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1167), - [anon_sym_EQ_GT] = ACTIONS(1165), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_void] = ACTIONS(1167), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1165), - [sym_number] = ACTIONS(1165), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(1167), - [sym_true] = ACTIONS(1167), - [sym_false] = ACTIONS(1167), - [sym_null] = ACTIONS(1167), - [sym_undefined] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_abstract] = ACTIONS(1167), - [anon_sym_get] = ACTIONS(1167), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_declare] = ACTIONS(1167), - [anon_sym_public] = ACTIONS(1167), - [anon_sym_private] = ACTIONS(1167), - [anon_sym_protected] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_any] = ACTIONS(1167), - [anon_sym_number] = ACTIONS(1167), - [anon_sym_boolean] = ACTIONS(1167), - [anon_sym_string] = ACTIONS(1167), - [anon_sym_symbol] = ACTIONS(1167), - [anon_sym_interface] = ACTIONS(1167), - [anon_sym_extends] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [sym_readonly] = ACTIONS(1167), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1554), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_COLON] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1859), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_EQ_GT] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_QMARK] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_extends] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym_readonly] = ACTIONS(1861), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(1620), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [anon_sym_export] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_type] = ACTIONS(911), - [anon_sym_typeof] = ACTIONS(911), - [anon_sym_import] = ACTIONS(911), - [anon_sym_var] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_else] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_switch] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_await] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(911), - [anon_sym_try] = ACTIONS(911), - [anon_sym_with] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_debugger] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_throw] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_case] = ACTIONS(911), - [anon_sym_yield] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_class] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_new] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_void] = ACTIONS(911), - [anon_sym_delete] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(909), - [sym_number] = ACTIONS(909), - [sym_this] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_true] = ACTIONS(911), - [sym_false] = ACTIONS(911), - [sym_null] = ACTIONS(911), - [sym_undefined] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(909), - [anon_sym_static] = ACTIONS(911), - [anon_sym_abstract] = ACTIONS(911), - [anon_sym_get] = ACTIONS(911), - [anon_sym_set] = ACTIONS(911), - [anon_sym_declare] = ACTIONS(911), - [anon_sym_public] = ACTIONS(911), - [anon_sym_private] = ACTIONS(911), - [anon_sym_protected] = ACTIONS(911), - [anon_sym_module] = ACTIONS(911), - [anon_sym_any] = ACTIONS(911), - [anon_sym_number] = ACTIONS(911), - [anon_sym_boolean] = ACTIONS(911), - [anon_sym_string] = ACTIONS(911), - [anon_sym_symbol] = ACTIONS(911), - [anon_sym_interface] = ACTIONS(911), - [anon_sym_extends] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [sym_readonly] = ACTIONS(911), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2200), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1141), - [anon_sym_export] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_namespace] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_type] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_var] = ACTIONS(1141), - [anon_sym_let] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_with] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_debugger] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_function] = ACTIONS(1141), - [anon_sym_EQ_GT] = ACTIONS(1139), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1139), - [anon_sym_AMP] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_void] = ACTIONS(1141), - [anon_sym_delete] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1139), - [sym_this] = ACTIONS(1141), - [sym_super] = ACTIONS(1141), - [sym_true] = ACTIONS(1141), - [sym_false] = ACTIONS(1141), - [sym_null] = ACTIONS(1141), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1141), - [anon_sym_declare] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_protected] = ACTIONS(1141), - [anon_sym_module] = ACTIONS(1141), - [anon_sym_any] = ACTIONS(1141), - [anon_sym_number] = ACTIONS(1141), - [anon_sym_boolean] = ACTIONS(1141), - [anon_sym_string] = ACTIONS(1141), - [anon_sym_symbol] = ACTIONS(1141), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_extends] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [sym_readonly] = ACTIONS(1141), - }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_identifier] = ACTIONS(1865), - [anon_sym_export] = ACTIONS(1865), - [anon_sym_default] = ACTIONS(1865), - [anon_sym_EQ] = ACTIONS(1865), - [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_typeof] = ACTIONS(1865), - [anon_sym_import] = ACTIONS(1865), - [anon_sym_var] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_switch] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_await] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_do] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_with] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_debugger] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_throw] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_COLON] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1865), - [anon_sym_async] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1865), - [anon_sym_EQ_GT] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1865), - [anon_sym_QMARK] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_void] = ACTIONS(1865), - [anon_sym_delete] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [anon_sym_SQUOTE] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1863), - [sym_number] = ACTIONS(1863), - [sym_this] = ACTIONS(1865), - [sym_super] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_null] = ACTIONS(1865), - [sym_undefined] = ACTIONS(1865), - [anon_sym_AT] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1865), - [anon_sym_abstract] = ACTIONS(1865), - [anon_sym_get] = ACTIONS(1865), - [anon_sym_set] = ACTIONS(1865), - [anon_sym_declare] = ACTIONS(1865), - [anon_sym_public] = ACTIONS(1865), - [anon_sym_private] = ACTIONS(1865), - [anon_sym_protected] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_any] = ACTIONS(1865), - [anon_sym_number] = ACTIONS(1865), - [anon_sym_boolean] = ACTIONS(1865), - [anon_sym_string] = ACTIONS(1865), - [anon_sym_symbol] = ACTIONS(1865), - [anon_sym_interface] = ACTIONS(1865), - [anon_sym_extends] = ACTIONS(1865), - [anon_sym_enum] = ACTIONS(1865), - [sym_readonly] = ACTIONS(1865), - }, - [494] = { - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1869), - [anon_sym_export] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1869), - [anon_sym_EQ] = ACTIONS(1869), - [anon_sym_namespace] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1869), - [anon_sym_import] = ACTIONS(1869), - [anon_sym_var] = ACTIONS(1869), - [anon_sym_let] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_do] = ACTIONS(1869), - [anon_sym_try] = ACTIONS(1869), - [anon_sym_with] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_debugger] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_throw] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1867), - [anon_sym_COLON] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1869), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_GT] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1869), - [anon_sym_async] = ACTIONS(1869), - [anon_sym_function] = ACTIONS(1869), - [anon_sym_EQ_GT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1869), - [anon_sym_QMARK] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1869), - [anon_sym_delete] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1867), - [sym_number] = ACTIONS(1867), - [sym_this] = ACTIONS(1869), - [sym_super] = ACTIONS(1869), - [sym_true] = ACTIONS(1869), - [sym_false] = ACTIONS(1869), - [sym_null] = ACTIONS(1869), - [sym_undefined] = ACTIONS(1869), - [anon_sym_AT] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_abstract] = ACTIONS(1869), - [anon_sym_get] = ACTIONS(1869), - [anon_sym_set] = ACTIONS(1869), - [anon_sym_declare] = ACTIONS(1869), - [anon_sym_public] = ACTIONS(1869), - [anon_sym_private] = ACTIONS(1869), - [anon_sym_protected] = ACTIONS(1869), - [anon_sym_module] = ACTIONS(1869), - [anon_sym_any] = ACTIONS(1869), - [anon_sym_number] = ACTIONS(1869), - [anon_sym_boolean] = ACTIONS(1869), - [anon_sym_string] = ACTIONS(1869), - [anon_sym_symbol] = ACTIONS(1869), - [anon_sym_interface] = ACTIONS(1869), - [anon_sym_extends] = ACTIONS(1869), - [anon_sym_enum] = ACTIONS(1869), - [sym_readonly] = ACTIONS(1869), - }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_EQ] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_COLON] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_RBRACK] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_GT] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_EQ_GT] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_QMARK] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_extends] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [sym_readonly] = ACTIONS(1873), - }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_EQ] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_COMMA] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_typeof] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_RPAREN] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_debugger] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_COLON] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [anon_sym_RBRACK] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_function] = ACTIONS(1877), - [anon_sym_EQ_GT] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_QMARK] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_PIPE] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_void] = ACTIONS(1877), - [anon_sym_delete] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1875), - [sym_number] = ACTIONS(1875), - [sym_this] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_null] = ACTIONS(1877), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_abstract] = ACTIONS(1877), - [anon_sym_get] = ACTIONS(1877), - [anon_sym_set] = ACTIONS(1877), - [anon_sym_declare] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_private] = ACTIONS(1877), - [anon_sym_protected] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_any] = ACTIONS(1877), - [anon_sym_number] = ACTIONS(1877), - [anon_sym_boolean] = ACTIONS(1877), - [anon_sym_string] = ACTIONS(1877), - [anon_sym_symbol] = ACTIONS(1877), - [anon_sym_interface] = ACTIONS(1877), - [anon_sym_extends] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [sym_readonly] = ACTIONS(1877), - }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_typeof] = ACTIONS(1881), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_switch] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_RPAREN] = ACTIONS(1879), - [anon_sym_await] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_do] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_with] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_debugger] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_throw] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_COLON] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_class] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1881), - [anon_sym_EQ_GT] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_void] = ACTIONS(1881), - [anon_sym_delete] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [anon_sym_SQUOTE] = ACTIONS(1879), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1879), - [sym_number] = ACTIONS(1879), - [sym_this] = ACTIONS(1881), - [sym_super] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_null] = ACTIONS(1881), - [sym_undefined] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_abstract] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_extends] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [sym_readonly] = ACTIONS(1881), - }, + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2309), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [493] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1766), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), + }, + [494] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), + }, + [495] = { + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), + }, + [496] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2284), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), + }, + [497] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2283), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), + }, [498] = { - [ts_builtin_sym_end] = ACTIONS(1357), - [sym_identifier] = ACTIONS(1359), - [anon_sym_export] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1359), - [anon_sym_namespace] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1359), - [anon_sym_typeof] = ACTIONS(1359), - [anon_sym_import] = ACTIONS(1359), - [anon_sym_var] = ACTIONS(1359), - [anon_sym_let] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1359), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_switch] = ACTIONS(1359), - [anon_sym_for] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_await] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1359), - [anon_sym_do] = ACTIONS(1359), - [anon_sym_try] = ACTIONS(1359), - [anon_sym_with] = ACTIONS(1359), - [anon_sym_break] = ACTIONS(1359), - [anon_sym_continue] = ACTIONS(1359), - [anon_sym_debugger] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1359), - [anon_sym_throw] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_yield] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_class] = ACTIONS(1359), - [anon_sym_async] = ACTIONS(1359), - [anon_sym_function] = ACTIONS(1359), - [anon_sym_EQ_GT] = ACTIONS(1357), - [anon_sym_new] = ACTIONS(1359), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_void] = ACTIONS(1359), - [anon_sym_delete] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1357), - [sym_number] = ACTIONS(1357), - [sym_this] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_true] = ACTIONS(1359), - [sym_false] = ACTIONS(1359), - [sym_null] = ACTIONS(1359), - [sym_undefined] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1359), - [anon_sym_abstract] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(1359), - [anon_sym_set] = ACTIONS(1359), - [anon_sym_declare] = ACTIONS(1359), - [anon_sym_public] = ACTIONS(1359), - [anon_sym_private] = ACTIONS(1359), - [anon_sym_protected] = ACTIONS(1359), - [anon_sym_module] = ACTIONS(1359), - [anon_sym_any] = ACTIONS(1359), - [anon_sym_number] = ACTIONS(1359), - [anon_sym_boolean] = ACTIONS(1359), - [anon_sym_string] = ACTIONS(1359), - [anon_sym_symbol] = ACTIONS(1359), - [anon_sym_interface] = ACTIONS(1359), - [anon_sym_extends] = ACTIONS(1359), - [anon_sym_enum] = ACTIONS(1359), - [sym_readonly] = ACTIONS(1359), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1554), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [499] = { - [ts_builtin_sym_end] = ACTIONS(1883), - [sym_identifier] = ACTIONS(1885), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_default] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_COMMA] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1885), - [anon_sym_import] = ACTIONS(1885), - [anon_sym_var] = ACTIONS(1885), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_switch] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_RPAREN] = ACTIONS(1883), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_do] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1885), - [anon_sym_with] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_debugger] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_throw] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_COLON] = ACTIONS(1883), - [anon_sym_case] = ACTIONS(1885), - [anon_sym_yield] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_GT] = ACTIONS(1883), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1885), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_function] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1883), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_PIPE] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_void] = ACTIONS(1885), - [anon_sym_delete] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1883), - [anon_sym_SQUOTE] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1883), - [sym_number] = ACTIONS(1883), - [sym_this] = ACTIONS(1885), - [sym_super] = ACTIONS(1885), - [sym_true] = ACTIONS(1885), - [sym_false] = ACTIONS(1885), - [sym_null] = ACTIONS(1885), - [sym_undefined] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_abstract] = ACTIONS(1885), - [anon_sym_get] = ACTIONS(1885), - [anon_sym_set] = ACTIONS(1885), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1885), - [anon_sym_private] = ACTIONS(1885), - [anon_sym_protected] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_any] = ACTIONS(1885), - [anon_sym_number] = ACTIONS(1885), - [anon_sym_boolean] = ACTIONS(1885), - [anon_sym_string] = ACTIONS(1885), - [anon_sym_symbol] = ACTIONS(1885), - [anon_sym_interface] = ACTIONS(1885), - [anon_sym_extends] = ACTIONS(1885), - [anon_sym_enum] = ACTIONS(1885), - [sym_readonly] = ACTIONS(1885), + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2248), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, [500] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3233), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2093), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, [501] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3324), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1680), + [sym_parenthesized_expression] = STATE(962), + [sym__expression] = STATE(2092), + [sym_yield_expression] = STATE(2072), + [sym_object] = STATE(1587), + [sym_array] = STATE(1586), + [sym_jsx_element] = STATE(2072), + [sym_jsx_fragment] = STATE(2072), + [sym_jsx_opening_element] = STATE(2685), + [sym_jsx_self_closing_element] = STATE(2072), + [sym_class] = STATE(1680), + [sym_function] = STATE(1680), + [sym_generator_function] = STATE(1680), + [sym_arrow_function] = STATE(1680), + [sym__call_signature] = STATE(4424), + [sym_call_expression] = STATE(1680), + [sym_new_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_member_expression] = STATE(962), + [sym_subscript_expression] = STATE(962), + [sym_assignment_expression] = STATE(2072), + [sym__augmented_assignment_lhs] = STATE(2564), + [sym_augmented_assignment_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_binary_expression] = STATE(2072), + [sym_unary_expression] = STATE(2072), + [sym_update_expression] = STATE(2072), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1680), + [sym_regex] = STATE(1680), + [sym_meta_property] = STATE(1680), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(2072), + [sym_internal_module] = STATE(2072), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(982), + [anon_sym_export] = ACTIONS(984), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(984), + [anon_sym_typeof] = ACTIONS(992), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_void] = ACTIONS(992), + [anon_sym_delete] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(984), + [anon_sym_get] = ACTIONS(984), + [anon_sym_set] = ACTIONS(984), + [anon_sym_declare] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [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), + [sym_readonly] = ACTIONS(984), }, [502] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3324), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [503] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3394), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2192), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [504] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3394), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1568), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [505] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3394), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1893), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(903), + [sym__expression] = STATE(2210), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1525), + [sym_array] = STATE(1515), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(903), + [sym_subscript_expression] = STATE(903), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2565), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(832), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [sym_readonly] = ACTIONS(862), }, [506] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3324), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1893), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2416), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [507] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3233), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(1324), + [sym__expression] = STATE(2442), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1772), + [sym_array] = STATE(1771), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(1324), + [sym_subscript_expression] = STATE(1324), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1392), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1768), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1752), }, [508] = { - [sym_string] = STATE(2751), - [sym__property_name] = STATE(2751), - [sym_computed_property_name] = STATE(2751), - [aux_sym_object_repeat1] = STATE(3233), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [sym_readonly] = ACTIONS(1893), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(1555), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(808), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(1770), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [509] = { - [sym__call_signature] = STATE(3768), - [sym_arguments] = STATE(1360), - [sym_formal_parameters] = STATE(2823), - [sym_type_arguments] = STATE(1268), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_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), - [sym_readonly] = ACTIONS(1897), + [sym_import] = STATE(1446), + [sym_parenthesized_expression] = STATE(893), + [sym__expression] = STATE(1934), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1502), + [sym_array] = STATE(1496), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1446), + [sym_function] = STATE(1446), + [sym_generator_function] = STATE(1446), + [sym_arrow_function] = STATE(1446), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1446), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2560), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1446), + [sym_template_string] = STATE(1446), + [sym_regex] = STATE(1446), + [sym_meta_property] = STATE(1446), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(766), + [anon_sym_export] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(780), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_void] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(804), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(768), + [anon_sym_get] = ACTIONS(768), + [anon_sym_set] = ACTIONS(768), + [anon_sym_declare] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_any] = ACTIONS(768), + [anon_sym_number] = ACTIONS(768), + [anon_sym_boolean] = ACTIONS(768), + [anon_sym_string] = ACTIONS(768), + [anon_sym_symbol] = ACTIONS(768), + [sym_readonly] = ACTIONS(768), }, [510] = { - [sym_object] = STATE(3029), - [sym_array] = STATE(3028), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(3865), - [sym_rest_parameter] = STATE(3412), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3057), - [sym_constructor_type] = STATE(3057), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3057), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3057), - [sym_intersection_type] = STATE(3057), - [sym_function_type] = STATE(3057), - [aux_sym_export_statement_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1921), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(926), + [sym__expression] = STATE(2178), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1512), + [sym_array] = STATE(1477), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4363), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2568), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(449), + [anon_sym_namespace] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(449), + [anon_sym_typeof] = ACTIONS(499), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(481), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_void] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(499), + [anon_sym_PLUS_PLUS] = ACTIONS(501), + [anon_sym_DASH_DASH] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [sym_readonly] = ACTIONS(1927), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(449), + [anon_sym_get] = ACTIONS(449), + [anon_sym_set] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_any] = ACTIONS(449), + [anon_sym_number] = ACTIONS(449), + [anon_sym_boolean] = ACTIONS(449), + [anon_sym_string] = ACTIONS(449), + [anon_sym_symbol] = ACTIONS(449), + [sym_readonly] = ACTIONS(449), }, [511] = { - [sym_object] = STATE(3029), - [sym_array] = STATE(3028), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(3865), - [sym_rest_parameter] = STATE(3412), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3162), - [sym_constructor_type] = STATE(3162), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3162), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3162), - [sym_intersection_type] = STATE(3162), - [sym_function_type] = STATE(3162), - [aux_sym_export_statement_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1921), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2419), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [sym_readonly] = ACTIONS(1927), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [512] = { - [sym_object] = STATE(3029), - [sym_array] = STATE(3028), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(3865), - [sym_rest_parameter] = STATE(3412), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3200), - [sym_constructor_type] = STATE(3200), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3200), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3200), - [sym_intersection_type] = STATE(3200), - [sym_function_type] = STATE(3200), - [aux_sym_export_statement_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1921), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2261), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [sym_readonly] = ACTIONS(1927), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [513] = { - [sym_object] = STATE(3029), - [sym_array] = STATE(3028), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(3865), - [sym_rest_parameter] = STATE(3412), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3064), - [sym_intersection_type] = STATE(3064), - [sym_function_type] = STATE(3064), - [aux_sym_export_statement_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1921), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2425), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [sym_readonly] = ACTIONS(1927), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [514] = { - [sym__call_signature] = STATE(3801), - [sym_arguments] = STATE(1853), - [sym_formal_parameters] = STATE(2823), - [sym_type_arguments] = STATE(1691), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_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), - [sym_readonly] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1901), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2238), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [515] = { - [sym_object] = STATE(3029), - [sym_array] = STATE(3028), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(3865), - [sym_rest_parameter] = STATE(3412), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3087), - [sym_constructor_type] = STATE(3087), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3087), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3087), - [sym_intersection_type] = STATE(3087), - [sym_function_type] = STATE(3087), - [aux_sym_export_statement_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1921), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1569), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [sym_readonly] = ACTIONS(1927), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [516] = { - [sym_object] = STATE(3029), - [sym_array] = STATE(3028), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_decorator] = STATE(2202), - [sym_formal_parameters] = STATE(3865), - [sym_rest_parameter] = STATE(3412), - [sym_nested_type_identifier] = STATE(2235), - [sym_accessibility_modifier] = STATE(2226), - [sym_required_parameter] = STATE(3412), - [sym_optional_parameter] = STATE(3412), - [sym__parameter_name] = STATE(2595), - [sym__rest_identifier] = STATE(3133), - [sym__type] = STATE(3155), - [sym_constructor_type] = STATE(3155), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(3155), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(3155), - [sym_intersection_type] = STATE(3155), - [sym_function_type] = STATE(3155), - [aux_sym_export_statement_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1921), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [sym_readonly] = ACTIONS(1927), - [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), - [anon_sym_LBRACE_PIPE] = ACTIONS(525), - }, - [517] = { - [sym__call_signature] = STATE(3782), - [sym_arguments] = STATE(1360), - [sym_formal_parameters] = STATE(2823), - [sym_type_arguments] = STATE(1268), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), - }, - [518] = { - [aux_sym_object_repeat1] = STATE(3394), - [sym_identifier] = ACTIONS(1939), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1939), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_get] = ACTIONS(1939), - [anon_sym_set] = ACTIONS(1939), - [anon_sym_declare] = ACTIONS(1939), - [anon_sym_public] = ACTIONS(1939), - [anon_sym_private] = ACTIONS(1939), - [anon_sym_protected] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_any] = ACTIONS(1939), - [anon_sym_number] = ACTIONS(1939), - [anon_sym_boolean] = ACTIONS(1939), - [anon_sym_string] = ACTIONS(1939), - [anon_sym_symbol] = ACTIONS(1939), - [sym_readonly] = ACTIONS(1939), - [sym__automatic_semicolon] = ACTIONS(1009), - }, - [519] = { - [sym__call_signature] = STATE(3808), - [sym_arguments] = STATE(1928), - [sym_formal_parameters] = STATE(2823), - [sym_type_arguments] = STATE(1920), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1943), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1945), - [anon_sym_function] = ACTIONS(1951), - [anon_sym_EQ_GT] = ACTIONS(1335), - [anon_sym_QMARK_DOT] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_get] = ACTIONS(1945), - [anon_sym_set] = ACTIONS(1945), - [anon_sym_declare] = ACTIONS(1945), - [anon_sym_public] = ACTIONS(1945), - [anon_sym_private] = ACTIONS(1945), - [anon_sym_protected] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_any] = ACTIONS(1945), - [anon_sym_number] = ACTIONS(1945), - [anon_sym_boolean] = ACTIONS(1945), - [anon_sym_string] = ACTIONS(1945), - [anon_sym_symbol] = ACTIONS(1945), - [sym_readonly] = ACTIONS(1945), - [anon_sym_LBRACE_PIPE] = ACTIONS(1901), - }, + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(1568), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [517] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2249), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, + [518] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2275), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), + }, + [519] = { + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2434), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), + }, [520] = { - [aux_sym_object_repeat1] = STATE(3233), - [sym_identifier] = ACTIONS(1939), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1939), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_get] = ACTIONS(1939), - [anon_sym_set] = ACTIONS(1939), - [anon_sym_declare] = ACTIONS(1939), - [anon_sym_public] = ACTIONS(1939), - [anon_sym_private] = ACTIONS(1939), - [anon_sym_protected] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_any] = ACTIONS(1939), - [anon_sym_number] = ACTIONS(1939), - [anon_sym_boolean] = ACTIONS(1939), - [anon_sym_string] = ACTIONS(1939), - [anon_sym_symbol] = ACTIONS(1939), - [sym_readonly] = ACTIONS(1939), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2258), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [521] = { - [sym__call_signature] = STATE(3768), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_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), - [sym_readonly] = ACTIONS(1897), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(955), + [sym__expression] = STATE(2270), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1659), + [sym_array] = STATE(1660), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4449), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2561), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(934), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_any] = ACTIONS(934), + [anon_sym_number] = ACTIONS(934), + [anon_sym_boolean] = ACTIONS(934), + [anon_sym_string] = ACTIONS(934), + [anon_sym_symbol] = ACTIONS(934), + [sym_readonly] = ACTIONS(934), }, [522] = { - [aux_sym_object_repeat1] = STATE(3324), - [sym_identifier] = ACTIONS(1939), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1939), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_number] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_get] = ACTIONS(1939), - [anon_sym_set] = ACTIONS(1939), - [anon_sym_declare] = ACTIONS(1939), - [anon_sym_public] = ACTIONS(1939), - [anon_sym_private] = ACTIONS(1939), - [anon_sym_protected] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_any] = ACTIONS(1939), - [anon_sym_number] = ACTIONS(1939), - [anon_sym_boolean] = ACTIONS(1939), - [anon_sym_string] = ACTIONS(1939), - [anon_sym_symbol] = ACTIONS(1939), - [sym_readonly] = ACTIONS(1939), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1866), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, [523] = { - [sym__call_signature] = STATE(3894), - [sym_arguments] = STATE(1360), - [sym_formal_parameters] = STATE(2823), - [sym_type_arguments] = STATE(1268), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1961), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1123), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1961), - [anon_sym_get] = ACTIONS(1961), - [anon_sym_set] = ACTIONS(1961), - [anon_sym_declare] = ACTIONS(1961), - [anon_sym_public] = ACTIONS(1961), - [anon_sym_private] = ACTIONS(1961), - [anon_sym_protected] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_any] = ACTIONS(1961), - [anon_sym_number] = ACTIONS(1961), - [anon_sym_boolean] = ACTIONS(1961), - [anon_sym_string] = ACTIONS(1961), - [anon_sym_symbol] = ACTIONS(1961), - [anon_sym_implements] = ACTIONS(1899), - [sym_readonly] = ACTIONS(1961), + [sym_import] = STATE(1629), + [sym_parenthesized_expression] = STATE(927), + [sym__expression] = STATE(1907), + [sym_yield_expression] = STATE(1948), + [sym_object] = STATE(1475), + [sym_array] = STATE(1504), + [sym_jsx_element] = STATE(1948), + [sym_jsx_fragment] = STATE(1948), + [sym_jsx_opening_element] = STATE(2697), + [sym_jsx_self_closing_element] = STATE(1948), + [sym_class] = STATE(1629), + [sym_function] = STATE(1629), + [sym_generator_function] = STATE(1629), + [sym_arrow_function] = STATE(1629), + [sym__call_signature] = STATE(4389), + [sym_call_expression] = STATE(1629), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_member_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_assignment_expression] = STATE(1948), + [sym__augmented_assignment_lhs] = STATE(2563), + [sym_augmented_assignment_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_unary_expression] = STATE(1948), + [sym_update_expression] = STATE(1948), + [sym_string] = STATE(1629), + [sym_template_string] = STATE(1629), + [sym_regex] = STATE(1629), + [sym_meta_property] = STATE(1629), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1948), + [sym_internal_module] = STATE(1948), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_type] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(830), + [anon_sym_import] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(856), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [sym_undefined] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(822), }, [524] = { - [sym__call_signature] = STATE(3801), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1963), - [anon_sym_of] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_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), - [sym_readonly] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_import] = STATE(1448), + [sym_parenthesized_expression] = STATE(982), + [sym__expression] = STATE(2428), + [sym_yield_expression] = STATE(1592), + [sym_object] = STATE(1645), + [sym_array] = STATE(1638), + [sym_jsx_element] = STATE(1592), + [sym_jsx_fragment] = STATE(1592), + [sym_jsx_opening_element] = STATE(2677), + [sym_jsx_self_closing_element] = STATE(1592), + [sym_class] = STATE(1448), + [sym_function] = STATE(1448), + [sym_generator_function] = STATE(1448), + [sym_arrow_function] = STATE(1448), + [sym__call_signature] = STATE(4270), + [sym_call_expression] = STATE(1448), + [sym_new_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_member_expression] = STATE(982), + [sym_subscript_expression] = STATE(982), + [sym_assignment_expression] = STATE(1592), + [sym__augmented_assignment_lhs] = STATE(2562), + [sym_augmented_assignment_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_binary_expression] = STATE(1592), + [sym_unary_expression] = STATE(1592), + [sym_update_expression] = STATE(1592), + [sym_string] = STATE(1448), + [sym_template_string] = STATE(1448), + [sym_regex] = STATE(1448), + [sym_meta_property] = STATE(1448), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(3366), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1592), + [sym_internal_module] = STATE(1592), + [sym_type_parameters] = STATE(4013), + [aux_sym_export_statement_repeat1] = STATE(3646), + [sym_identifier] = ACTIONS(872), + [anon_sym_export] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_type] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_import] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_await] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(483), + [anon_sym_new] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_number] = ACTIONS(818), + [sym_this] = ACTIONS(513), + [sym_super] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(874), + [anon_sym_get] = ACTIONS(874), + [anon_sym_set] = ACTIONS(874), + [anon_sym_declare] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_any] = ACTIONS(874), + [anon_sym_number] = ACTIONS(874), + [anon_sym_boolean] = ACTIONS(874), + [anon_sym_string] = ACTIONS(874), + [anon_sym_symbol] = ACTIONS(874), + [sym_readonly] = ACTIONS(874), }, [525] = { - [sym__call_signature] = STATE(3801), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_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), - [sym_readonly] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_export] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_namespace] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(1776), + [anon_sym_import] = ACTIONS(1776), + [anon_sym_var] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_switch] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_await] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_with] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_debugger] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_throw] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1774), + [anon_sym_case] = ACTIONS(1776), + [anon_sym_yield] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_class] = ACTIONS(1776), + [anon_sym_async] = ACTIONS(1776), + [anon_sym_function] = ACTIONS(1776), + [anon_sym_EQ_GT] = ACTIONS(1774), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_void] = ACTIONS(1776), + [anon_sym_delete] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1774), + [sym_number] = ACTIONS(1774), + [sym_this] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_true] = ACTIONS(1776), + [sym_false] = ACTIONS(1776), + [sym_null] = ACTIONS(1776), + [sym_undefined] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_abstract] = 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_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_implements] = ACTIONS(1776), + [anon_sym_interface] = ACTIONS(1776), + [anon_sym_extends] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [sym_readonly] = ACTIONS(1776), }, [526] = { - [sym__call_signature] = STATE(3801), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_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), - [sym_readonly] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3850), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1778), + [anon_sym_set] = ACTIONS(1778), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1778), + [sym__automatic_semicolon] = ACTIONS(741), }, [527] = { - [sym_type_arguments] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_namespace] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_var] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_await] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_with] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_debugger] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_throw] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_case] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(1977), - [anon_sym_class] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_void] = ACTIONS(1972), - [anon_sym_delete] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1970), - [sym_number] = ACTIONS(1970), - [sym_this] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_true] = ACTIONS(1972), - [sym_false] = ACTIONS(1972), - [sym_null] = ACTIONS(1972), - [sym_undefined] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_abstract] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(1972), - [anon_sym_set] = ACTIONS(1972), - [anon_sym_declare] = ACTIONS(1972), - [anon_sym_public] = ACTIONS(1972), - [anon_sym_private] = ACTIONS(1972), - [anon_sym_protected] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_any] = ACTIONS(1972), - [anon_sym_number] = ACTIONS(1972), - [anon_sym_boolean] = ACTIONS(1972), - [anon_sym_string] = ACTIONS(1972), - [anon_sym_symbol] = ACTIONS(1972), - [anon_sym_interface] = ACTIONS(1972), - [anon_sym_extends] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [sym_readonly] = ACTIONS(1972), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3850), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1784), + [sym__automatic_semicolon] = ACTIONS(741), }, [528] = { - [sym__call_signature] = STATE(3801), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1747), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_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), - [sym_readonly] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1009), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3755), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1778), + [anon_sym_set] = ACTIONS(1778), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1778), + [sym__automatic_semicolon] = ACTIONS(741), }, [529] = { - [sym_type_arguments] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1979), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_default] = ACTIONS(1981), - [anon_sym_namespace] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_type] = ACTIONS(1981), - [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_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_case] = ACTIONS(1981), - [anon_sym_yield] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1977), - [anon_sym_class] = ACTIONS(1981), - [anon_sym_async] = ACTIONS(1981), - [anon_sym_function] = ACTIONS(1981), - [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(1979), - [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_abstract] = ACTIONS(1981), - [anon_sym_get] = ACTIONS(1981), - [anon_sym_set] = ACTIONS(1981), - [anon_sym_declare] = ACTIONS(1981), - [anon_sym_public] = ACTIONS(1981), - [anon_sym_private] = ACTIONS(1981), - [anon_sym_protected] = 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_interface] = ACTIONS(1981), - [anon_sym_extends] = ACTIONS(1981), - [anon_sym_enum] = ACTIONS(1981), - [sym_readonly] = ACTIONS(1981), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3755), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1784), + [sym__automatic_semicolon] = ACTIONS(741), }, [530] = { - [sym__call_signature] = STATE(3778), - [sym_arguments] = STATE(1853), - [sym_formal_parameters] = STATE(2823), - [sym_type_arguments] = STATE(1691), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1985), - [anon_sym_type] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1985), - [sym__automatic_semicolon] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(1788), + [anon_sym_namespace] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1788), + [anon_sym_var] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_await] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_with] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_debugger] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_throw] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_GT] = ACTIONS(1786), + [anon_sym_SLASH] = ACTIONS(1788), + [anon_sym_class] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_function] = ACTIONS(1788), + [anon_sym_EQ_GT] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_void] = ACTIONS(1788), + [anon_sym_delete] = ACTIONS(1788), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1786), + [sym_number] = ACTIONS(1786), + [sym_this] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_abstract] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1788), + [anon_sym_set] = ACTIONS(1788), + [anon_sym_declare] = ACTIONS(1788), + [anon_sym_public] = ACTIONS(1788), + [anon_sym_private] = ACTIONS(1788), + [anon_sym_protected] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_any] = ACTIONS(1788), + [anon_sym_number] = ACTIONS(1788), + [anon_sym_boolean] = ACTIONS(1788), + [anon_sym_string] = ACTIONS(1788), + [anon_sym_symbol] = ACTIONS(1788), + [anon_sym_implements] = ACTIONS(1788), + [anon_sym_interface] = ACTIONS(1788), + [anon_sym_extends] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [sym_readonly] = ACTIONS(1788), }, [531] = { - [sym__call_signature] = STATE(3801), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_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), - [sym_readonly] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(1792), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_await] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_with] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_debugger] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_class] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_function] = ACTIONS(1792), + [anon_sym_EQ_GT] = ACTIONS(1790), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_QMARK] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_delete] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_number] = ACTIONS(1790), + [sym_this] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_undefined] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_abstract] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1792), + [anon_sym_set] = ACTIONS(1792), + [anon_sym_declare] = ACTIONS(1792), + [anon_sym_public] = ACTIONS(1792), + [anon_sym_private] = ACTIONS(1792), + [anon_sym_protected] = ACTIONS(1792), + [anon_sym_module] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_number] = ACTIONS(1792), + [anon_sym_boolean] = ACTIONS(1792), + [anon_sym_string] = ACTIONS(1792), + [anon_sym_symbol] = ACTIONS(1792), + [anon_sym_implements] = ACTIONS(1792), + [anon_sym_interface] = ACTIONS(1792), + [anon_sym_extends] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [sym_readonly] = ACTIONS(1792), }, [532] = { - [sym_object] = STATE(3040), - [sym_array] = STATE(3043), - [sym_identifier] = ACTIONS(1987), - [anon_sym_export] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_type] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_this] = ACTIONS(1987), - [anon_sym_static] = ACTIONS(969), - [anon_sym_get] = ACTIONS(969), - [anon_sym_set] = ACTIONS(969), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_public] = ACTIONS(969), - [anon_sym_private] = ACTIONS(969), - [anon_sym_protected] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_any] = ACTIONS(969), - [anon_sym_number] = ACTIONS(969), - [anon_sym_boolean] = ACTIONS(969), - [anon_sym_string] = ACTIONS(969), - [anon_sym_symbol] = ACTIONS(969), - [sym_readonly] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1796), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_namespace] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_COMMA] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1796), + [anon_sym_typeof] = ACTIONS(1796), + [anon_sym_import] = ACTIONS(1796), + [anon_sym_var] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_switch] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_await] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_with] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_debugger] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_COLON] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_yield] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_GT] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_class] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(1796), + [anon_sym_function] = ACTIONS(1796), + [anon_sym_EQ_GT] = ACTIONS(1794), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_QMARK] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_void] = ACTIONS(1796), + [anon_sym_delete] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1794), + [sym_number] = ACTIONS(1794), + [sym_this] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_true] = ACTIONS(1796), + [sym_false] = ACTIONS(1796), + [sym_null] = ACTIONS(1796), + [sym_undefined] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_declare] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_any] = ACTIONS(1796), + [anon_sym_number] = ACTIONS(1796), + [anon_sym_boolean] = ACTIONS(1796), + [anon_sym_string] = ACTIONS(1796), + [anon_sym_symbol] = ACTIONS(1796), + [anon_sym_implements] = ACTIONS(1796), + [anon_sym_interface] = ACTIONS(1796), + [anon_sym_extends] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [sym_readonly] = ACTIONS(1796), }, [533] = { - [sym__call_signature] = STATE(3768), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_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), - [sym_readonly] = ACTIONS(1897), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1784), + [sym__automatic_semicolon] = ACTIONS(741), }, [534] = { - [ts_builtin_sym_end] = ACTIONS(949), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_namespace] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_type] = ACTIONS(951), - [anon_sym_typeof] = ACTIONS(951), - [anon_sym_import] = ACTIONS(951), - [anon_sym_var] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_else] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_switch] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_await] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_try] = ACTIONS(951), - [anon_sym_with] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_debugger] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_throw] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_case] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_class] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_function] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(949), - [anon_sym_void] = ACTIONS(951), - [anon_sym_delete] = ACTIONS(951), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(949), - [sym_number] = ACTIONS(949), - [sym_this] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_true] = ACTIONS(951), - [sym_false] = ACTIONS(951), - [sym_null] = ACTIONS(951), - [sym_undefined] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(949), - [anon_sym_static] = ACTIONS(951), - [anon_sym_abstract] = ACTIONS(951), - [anon_sym_get] = ACTIONS(951), - [anon_sym_set] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(951), - [anon_sym_public] = ACTIONS(951), - [anon_sym_private] = ACTIONS(951), - [anon_sym_protected] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_any] = ACTIONS(951), - [anon_sym_number] = ACTIONS(951), - [anon_sym_boolean] = ACTIONS(951), - [anon_sym_string] = ACTIONS(951), - [anon_sym_symbol] = ACTIONS(951), - [anon_sym_interface] = ACTIONS(951), - [anon_sym_extends] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [sym_readonly] = ACTIONS(951), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1778), + [anon_sym_set] = ACTIONS(1778), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1778), + [sym__automatic_semicolon] = ACTIONS(741), }, [535] = { - [sym_type_arguments] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_abstract] = 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_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_extends] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym_readonly] = ACTIONS(1845), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3850), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1778), + [sym__automatic_semicolon] = ACTIONS(741), }, [536] = { - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [anon_sym_export] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_type] = ACTIONS(911), - [anon_sym_typeof] = ACTIONS(911), - [anon_sym_import] = ACTIONS(911), - [anon_sym_var] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_else] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_switch] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_await] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(911), - [anon_sym_try] = ACTIONS(911), - [anon_sym_with] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_debugger] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_throw] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_case] = ACTIONS(911), - [anon_sym_yield] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(911), - [anon_sym_new] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_void] = ACTIONS(911), - [anon_sym_delete] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(909), - [sym_number] = ACTIONS(909), - [sym_this] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_true] = ACTIONS(911), - [sym_false] = ACTIONS(911), - [sym_null] = ACTIONS(911), - [sym_undefined] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(909), - [anon_sym_static] = ACTIONS(911), - [anon_sym_abstract] = ACTIONS(911), - [anon_sym_get] = ACTIONS(911), - [anon_sym_set] = ACTIONS(911), - [anon_sym_declare] = ACTIONS(911), - [anon_sym_public] = ACTIONS(911), - [anon_sym_private] = ACTIONS(911), - [anon_sym_protected] = ACTIONS(911), - [anon_sym_module] = ACTIONS(911), - [anon_sym_any] = ACTIONS(911), - [anon_sym_number] = ACTIONS(911), - [anon_sym_boolean] = ACTIONS(911), - [anon_sym_string] = ACTIONS(911), - [anon_sym_symbol] = ACTIONS(911), - [anon_sym_interface] = ACTIONS(911), - [anon_sym_extends] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [sym_readonly] = ACTIONS(911), + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_EQ] = ACTIONS(1800), + [anon_sym_namespace] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym_import] = ACTIONS(1800), + [anon_sym_var] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_await] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1800), + [anon_sym_with] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_debugger] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_throw] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(1798), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1800), + [anon_sym_class] = ACTIONS(1800), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_function] = ACTIONS(1800), + [anon_sym_EQ_GT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_QMARK] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_void] = ACTIONS(1800), + [anon_sym_delete] = ACTIONS(1800), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1798), + [sym_number] = ACTIONS(1798), + [sym_this] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_undefined] = ACTIONS(1800), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_abstract] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1800), + [anon_sym_declare] = ACTIONS(1800), + [anon_sym_public] = ACTIONS(1800), + [anon_sym_private] = ACTIONS(1800), + [anon_sym_protected] = ACTIONS(1800), + [anon_sym_module] = ACTIONS(1800), + [anon_sym_any] = ACTIONS(1800), + [anon_sym_number] = ACTIONS(1800), + [anon_sym_boolean] = ACTIONS(1800), + [anon_sym_string] = ACTIONS(1800), + [anon_sym_symbol] = ACTIONS(1800), + [anon_sym_implements] = ACTIONS(1800), + [anon_sym_interface] = ACTIONS(1800), + [anon_sym_extends] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [sym_readonly] = ACTIONS(1800), }, [537] = { - [sym__call_signature] = STATE(3768), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_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), - [sym_readonly] = ACTIONS(1897), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3755), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1778), + [sym__automatic_semicolon] = ACTIONS(741), }, [538] = { - [sym_catch_clause] = STATE(569), - [sym_finally_clause] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2003), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2005), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_typeof] = ACTIONS(2005), - [anon_sym_import] = ACTIONS(2005), - [anon_sym_var] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_switch] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_await] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_with] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_debugger] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_throw] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_case] = ACTIONS(2005), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_finally] = ACTIONS(2009), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2005), - [anon_sym_class] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_function] = ACTIONS(2005), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2003), - [anon_sym_void] = ACTIONS(2005), - [anon_sym_delete] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2003), - [anon_sym_DASH_DASH] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_SQUOTE] = ACTIONS(2003), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2003), - [sym_number] = ACTIONS(2003), - [sym_this] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_true] = ACTIONS(2005), - [sym_false] = ACTIONS(2005), - [sym_null] = ACTIONS(2005), - [sym_undefined] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_abstract] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_interface] = ACTIONS(2005), - [anon_sym_enum] = ACTIONS(2005), - [sym_readonly] = ACTIONS(2005), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(1804), + [anon_sym_namespace] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1804), + [anon_sym_typeof] = ACTIONS(1804), + [anon_sym_import] = ACTIONS(1804), + [anon_sym_var] = ACTIONS(1804), + [anon_sym_let] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_await] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_try] = ACTIONS(1804), + [anon_sym_with] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_debugger] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_throw] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_COLON] = ACTIONS(1802), + [anon_sym_case] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_RBRACK] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_function] = ACTIONS(1804), + [anon_sym_EQ_GT] = ACTIONS(1802), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_void] = ACTIONS(1804), + [anon_sym_delete] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1802), + [sym_number] = ACTIONS(1802), + [sym_this] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_true] = ACTIONS(1804), + [sym_false] = ACTIONS(1804), + [sym_null] = ACTIONS(1804), + [sym_undefined] = ACTIONS(1804), + [anon_sym_AT] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_abstract] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1804), + [anon_sym_set] = ACTIONS(1804), + [anon_sym_declare] = ACTIONS(1804), + [anon_sym_public] = ACTIONS(1804), + [anon_sym_private] = ACTIONS(1804), + [anon_sym_protected] = ACTIONS(1804), + [anon_sym_module] = ACTIONS(1804), + [anon_sym_any] = ACTIONS(1804), + [anon_sym_number] = ACTIONS(1804), + [anon_sym_boolean] = ACTIONS(1804), + [anon_sym_string] = ACTIONS(1804), + [anon_sym_symbol] = ACTIONS(1804), + [anon_sym_implements] = ACTIONS(1804), + [anon_sym_interface] = ACTIONS(1804), + [anon_sym_extends] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [sym_readonly] = ACTIONS(1804), }, [539] = { - [sym__call_signature] = STATE(3768), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_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), - [sym_readonly] = ACTIONS(1897), + [sym_string] = STATE(3143), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__property_name] = STATE(3143), + [sym_computed_property_name] = STATE(3143), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [sym_readonly] = ACTIONS(1778), + [sym__automatic_semicolon] = ACTIONS(741), }, [540] = { - [sym_object] = STATE(3040), - [sym_array] = STATE(3043), - [sym_identifier] = ACTIONS(1987), - [anon_sym_export] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_type] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_this] = ACTIONS(1987), - [anon_sym_static] = ACTIONS(969), - [anon_sym_get] = ACTIONS(969), - [anon_sym_set] = ACTIONS(969), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_public] = ACTIONS(969), - [anon_sym_private] = ACTIONS(969), - [anon_sym_protected] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_any] = ACTIONS(969), - [anon_sym_number] = ACTIONS(969), - [anon_sym_boolean] = ACTIONS(969), - [anon_sym_string] = ACTIONS(969), - [anon_sym_symbol] = ACTIONS(969), - [sym_readonly] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_export] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_typeof] = ACTIONS(1808), + [anon_sym_import] = ACTIONS(1808), + [anon_sym_var] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_with] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_debugger] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(1806), + [anon_sym_case] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_RBRACK] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_class] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1806), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_QMARK] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_void] = ACTIONS(1808), + [anon_sym_delete] = ACTIONS(1808), + [anon_sym_PLUS_PLUS] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1806), + [sym_number] = ACTIONS(1806), + [sym_this] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_null] = ACTIONS(1808), + [sym_undefined] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_declare] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_module] = ACTIONS(1808), + [anon_sym_any] = ACTIONS(1808), + [anon_sym_number] = ACTIONS(1808), + [anon_sym_boolean] = ACTIONS(1808), + [anon_sym_string] = ACTIONS(1808), + [anon_sym_symbol] = ACTIONS(1808), + [anon_sym_interface] = ACTIONS(1808), + [anon_sym_extends] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [sym_readonly] = ACTIONS(1808), }, [541] = { - [sym_type_arguments] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2017), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_default] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_typeof] = ACTIONS(2017), - [anon_sym_import] = ACTIONS(2017), - [anon_sym_var] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_with] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_debugger] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_SLASH] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_void] = ACTIONS(2017), - [anon_sym_delete] = ACTIONS(2017), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2015), - [sym_number] = ACTIONS(2015), - [sym_this] = ACTIONS(2017), - [sym_super] = ACTIONS(2017), - [sym_true] = ACTIONS(2017), - [sym_false] = ACTIONS(2017), - [sym_null] = ACTIONS(2017), - [sym_undefined] = ACTIONS(2017), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2017), - [anon_sym_extends] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [sym_readonly] = ACTIONS(2017), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_EQ] = ACTIONS(1812), + [anon_sym_namespace] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym_import] = ACTIONS(1812), + [anon_sym_var] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_await] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_try] = ACTIONS(1812), + [anon_sym_with] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_debugger] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_COLON] = ACTIONS(1810), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_GT] = ACTIONS(1810), + [anon_sym_SLASH] = ACTIONS(1812), + [anon_sym_class] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(1812), + [anon_sym_EQ_GT] = ACTIONS(1810), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_void] = ACTIONS(1812), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1810), + [sym_number] = ACTIONS(1810), + [sym_this] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_undefined] = ACTIONS(1812), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_abstract] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1812), + [anon_sym_declare] = ACTIONS(1812), + [anon_sym_public] = ACTIONS(1812), + [anon_sym_private] = ACTIONS(1812), + [anon_sym_protected] = ACTIONS(1812), + [anon_sym_module] = ACTIONS(1812), + [anon_sym_any] = ACTIONS(1812), + [anon_sym_number] = ACTIONS(1812), + [anon_sym_boolean] = ACTIONS(1812), + [anon_sym_string] = ACTIONS(1812), + [anon_sym_symbol] = ACTIONS(1812), + [anon_sym_interface] = ACTIONS(1812), + [anon_sym_extends] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [sym_readonly] = ACTIONS(1812), }, [542] = { - [sym__call_signature] = STATE(3808), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1943), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1945), - [anon_sym_function] = ACTIONS(1951), - [anon_sym_EQ_GT] = ACTIONS(1335), - [anon_sym_QMARK_DOT] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_get] = ACTIONS(1945), - [anon_sym_set] = ACTIONS(1945), - [anon_sym_declare] = ACTIONS(1945), - [anon_sym_public] = ACTIONS(1945), - [anon_sym_private] = ACTIONS(1945), - [anon_sym_protected] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_any] = ACTIONS(1945), - [anon_sym_number] = ACTIONS(1945), - [anon_sym_boolean] = ACTIONS(1945), - [anon_sym_string] = ACTIONS(1945), - [anon_sym_symbol] = ACTIONS(1945), - [sym_readonly] = ACTIONS(1945), - [anon_sym_LBRACE_PIPE] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1816), + [anon_sym_export] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_EQ] = ACTIONS(1816), + [anon_sym_namespace] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_COMMA] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym_import] = ACTIONS(1816), + [anon_sym_var] = ACTIONS(1816), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_switch] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_await] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_do] = ACTIONS(1816), + [anon_sym_try] = ACTIONS(1816), + [anon_sym_with] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_debugger] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_throw] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_COLON] = ACTIONS(1814), + [anon_sym_case] = ACTIONS(1816), + [anon_sym_yield] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_RBRACK] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_async] = ACTIONS(1816), + [anon_sym_function] = ACTIONS(1816), + [anon_sym_EQ_GT] = ACTIONS(1814), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_QMARK] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_PLUS] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_TILDE] = ACTIONS(1814), + [anon_sym_void] = ACTIONS(1816), + [anon_sym_delete] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1814), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_DQUOTE] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1814), + [sym_number] = ACTIONS(1814), + [sym_this] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_true] = ACTIONS(1816), + [sym_false] = ACTIONS(1816), + [sym_null] = ACTIONS(1816), + [sym_undefined] = ACTIONS(1816), + [anon_sym_AT] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_abstract] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1816), + [anon_sym_set] = ACTIONS(1816), + [anon_sym_declare] = ACTIONS(1816), + [anon_sym_public] = ACTIONS(1816), + [anon_sym_private] = ACTIONS(1816), + [anon_sym_protected] = ACTIONS(1816), + [anon_sym_module] = ACTIONS(1816), + [anon_sym_any] = ACTIONS(1816), + [anon_sym_number] = ACTIONS(1816), + [anon_sym_boolean] = ACTIONS(1816), + [anon_sym_string] = ACTIONS(1816), + [anon_sym_symbol] = ACTIONS(1816), + [anon_sym_interface] = ACTIONS(1816), + [anon_sym_extends] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [sym_readonly] = ACTIONS(1816), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_catch] = ACTIONS(1163), - [anon_sym_finally] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), - [sym__automatic_semicolon] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_EQ] = ACTIONS(1820), + [anon_sym_namespace] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym_import] = ACTIONS(1820), + [anon_sym_var] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_await] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_with] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_debugger] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_throw] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_COLON] = ACTIONS(1818), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_yield] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_RBRACK] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_class] = ACTIONS(1820), + [anon_sym_async] = ACTIONS(1820), + [anon_sym_function] = ACTIONS(1820), + [anon_sym_EQ_GT] = ACTIONS(1818), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_QMARK] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_void] = ACTIONS(1820), + [anon_sym_delete] = ACTIONS(1820), + [anon_sym_PLUS_PLUS] = ACTIONS(1818), + [anon_sym_DASH_DASH] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1818), + [sym_number] = ACTIONS(1818), + [sym_this] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_true] = ACTIONS(1820), + [sym_false] = ACTIONS(1820), + [sym_null] = ACTIONS(1820), + [sym_undefined] = ACTIONS(1820), + [anon_sym_AT] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_abstract] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(1820), + [anon_sym_set] = ACTIONS(1820), + [anon_sym_declare] = ACTIONS(1820), + [anon_sym_public] = ACTIONS(1820), + [anon_sym_private] = ACTIONS(1820), + [anon_sym_protected] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_any] = ACTIONS(1820), + [anon_sym_number] = ACTIONS(1820), + [anon_sym_boolean] = ACTIONS(1820), + [anon_sym_string] = ACTIONS(1820), + [anon_sym_symbol] = ACTIONS(1820), + [anon_sym_interface] = ACTIONS(1820), + [anon_sym_extends] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [sym_readonly] = ACTIONS(1820), }, [544] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [anon_sym_export] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_namespace] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_typeof] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_var] = ACTIONS(623), + [anon_sym_let] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(621), + [anon_sym_else] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(623), + [anon_sym_try] = ACTIONS(623), + [anon_sym_with] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_debugger] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_throw] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_case] = ACTIONS(623), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(623), + [anon_sym_function] = ACTIONS(623), + [anon_sym_EQ_GT] = ACTIONS(621), + [anon_sym_new] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_void] = ACTIONS(623), + [anon_sym_delete] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(621), + [sym_this] = ACTIONS(623), + [sym_super] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_static] = ACTIONS(623), + [anon_sym_abstract] = ACTIONS(623), + [anon_sym_get] = ACTIONS(623), + [anon_sym_set] = ACTIONS(623), + [anon_sym_declare] = ACTIONS(623), + [anon_sym_public] = ACTIONS(623), + [anon_sym_private] = ACTIONS(623), + [anon_sym_protected] = ACTIONS(623), + [anon_sym_module] = ACTIONS(623), + [anon_sym_any] = ACTIONS(623), + [anon_sym_number] = ACTIONS(623), + [anon_sym_boolean] = ACTIONS(623), + [anon_sym_string] = ACTIONS(623), + [anon_sym_symbol] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_extends] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [sym_readonly] = ACTIONS(623), }, [545] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1103), - [anon_sym_import] = ACTIONS(1103), - [anon_sym_var] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_switch] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1103), - [anon_sym_with] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_debugger] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_throw] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_catch] = ACTIONS(1103), - [anon_sym_finally] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_async] = ACTIONS(1103), - [anon_sym_function] = ACTIONS(1103), - [anon_sym_new] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_void] = ACTIONS(1103), - [anon_sym_delete] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_number] = ACTIONS(1101), - [sym_this] = ACTIONS(1103), - [sym_super] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_null] = ACTIONS(1103), - [sym_undefined] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1103), - [anon_sym_abstract] = ACTIONS(1103), - [anon_sym_get] = ACTIONS(1103), - [anon_sym_set] = ACTIONS(1103), - [anon_sym_declare] = ACTIONS(1103), - [anon_sym_public] = ACTIONS(1103), - [anon_sym_private] = ACTIONS(1103), - [anon_sym_protected] = ACTIONS(1103), - [anon_sym_module] = ACTIONS(1103), - [anon_sym_any] = ACTIONS(1103), - [anon_sym_number] = ACTIONS(1103), - [anon_sym_boolean] = ACTIONS(1103), - [anon_sym_string] = ACTIONS(1103), - [anon_sym_symbol] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [sym_readonly] = ACTIONS(1103), - [sym__automatic_semicolon] = ACTIONS(1109), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1824), + [anon_sym_export] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1824), + [anon_sym_namespace] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1824), + [anon_sym_typeof] = ACTIONS(1824), + [anon_sym_import] = ACTIONS(1824), + [anon_sym_var] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_switch] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1824), + [anon_sym_try] = ACTIONS(1824), + [anon_sym_with] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_debugger] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_COLON] = ACTIONS(1822), + [anon_sym_case] = ACTIONS(1824), + [anon_sym_yield] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1824), + [anon_sym_class] = ACTIONS(1824), + [anon_sym_async] = ACTIONS(1824), + [anon_sym_function] = ACTIONS(1824), + [anon_sym_EQ_GT] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_void] = ACTIONS(1824), + [anon_sym_delete] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1822), + [sym_number] = ACTIONS(1822), + [sym_this] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_true] = ACTIONS(1824), + [sym_false] = ACTIONS(1824), + [sym_null] = ACTIONS(1824), + [sym_undefined] = ACTIONS(1824), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_abstract] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(1824), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_declare] = ACTIONS(1824), + [anon_sym_public] = ACTIONS(1824), + [anon_sym_private] = ACTIONS(1824), + [anon_sym_protected] = ACTIONS(1824), + [anon_sym_module] = ACTIONS(1824), + [anon_sym_any] = ACTIONS(1824), + [anon_sym_number] = ACTIONS(1824), + [anon_sym_boolean] = ACTIONS(1824), + [anon_sym_string] = ACTIONS(1824), + [anon_sym_symbol] = ACTIONS(1824), + [anon_sym_interface] = ACTIONS(1824), + [anon_sym_extends] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [sym_readonly] = ACTIONS(1824), }, [546] = { - [sym__call_signature] = STATE(3894), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1961), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1123), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1961), - [anon_sym_get] = ACTIONS(1961), - [anon_sym_set] = ACTIONS(1961), - [anon_sym_declare] = ACTIONS(1961), - [anon_sym_public] = ACTIONS(1961), - [anon_sym_private] = ACTIONS(1961), - [anon_sym_protected] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_any] = ACTIONS(1961), - [anon_sym_number] = ACTIONS(1961), - [anon_sym_boolean] = ACTIONS(1961), - [anon_sym_string] = ACTIONS(1961), - [anon_sym_symbol] = ACTIONS(1961), - [anon_sym_implements] = ACTIONS(976), - [sym_readonly] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1828), + [anon_sym_namespace] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_typeof] = ACTIONS(1828), + [anon_sym_import] = ACTIONS(1828), + [anon_sym_var] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_switch] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_await] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1828), + [anon_sym_with] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_debugger] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_COLON] = ACTIONS(1826), + [anon_sym_case] = ACTIONS(1828), + [anon_sym_yield] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_RBRACK] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1828), + [anon_sym_class] = ACTIONS(1828), + [anon_sym_async] = ACTIONS(1828), + [anon_sym_function] = ACTIONS(1828), + [anon_sym_EQ_GT] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_QMARK] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1826), + [anon_sym_void] = ACTIONS(1828), + [anon_sym_delete] = ACTIONS(1828), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1826), + [sym_number] = ACTIONS(1826), + [sym_this] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [sym_null] = ACTIONS(1828), + [sym_undefined] = ACTIONS(1828), + [anon_sym_AT] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_abstract] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1828), + [anon_sym_declare] = ACTIONS(1828), + [anon_sym_public] = ACTIONS(1828), + [anon_sym_private] = ACTIONS(1828), + [anon_sym_protected] = ACTIONS(1828), + [anon_sym_module] = ACTIONS(1828), + [anon_sym_any] = ACTIONS(1828), + [anon_sym_number] = ACTIONS(1828), + [anon_sym_boolean] = ACTIONS(1828), + [anon_sym_string] = ACTIONS(1828), + [anon_sym_symbol] = ACTIONS(1828), + [anon_sym_interface] = ACTIONS(1828), + [anon_sym_extends] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [sym_readonly] = ACTIONS(1828), }, [547] = { - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1145), - [anon_sym_export] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_namespace] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_COMMA] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_typeof] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1145), - [anon_sym_var] = ACTIONS(1145), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_const] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_debugger] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_throw] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_yield] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_SLASH] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_async] = ACTIONS(1145), - [anon_sym_function] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_void] = ACTIONS(1145), - [anon_sym_delete] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1143), - [sym_number] = ACTIONS(1143), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(1145), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [sym_null] = ACTIONS(1145), - [sym_undefined] = ACTIONS(1145), - [anon_sym_AT] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_abstract] = ACTIONS(1145), - [anon_sym_get] = ACTIONS(1145), - [anon_sym_set] = ACTIONS(1145), - [anon_sym_declare] = ACTIONS(1145), - [anon_sym_public] = ACTIONS(1145), - [anon_sym_private] = ACTIONS(1145), - [anon_sym_protected] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_any] = ACTIONS(1145), - [anon_sym_number] = ACTIONS(1145), - [anon_sym_boolean] = ACTIONS(1145), - [anon_sym_string] = ACTIONS(1145), - [anon_sym_symbol] = ACTIONS(1145), - [anon_sym_interface] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [sym_readonly] = ACTIONS(1145), - [anon_sym_PIPE_RBRACE] = ACTIONS(1143), - [sym__automatic_semicolon] = ACTIONS(1143), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1832), + [anon_sym_namespace] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym_import] = ACTIONS(1832), + [anon_sym_var] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_await] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_with] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_debugger] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_throw] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_COLON] = ACTIONS(1830), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_GT] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1832), + [anon_sym_class] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(1832), + [anon_sym_EQ_GT] = ACTIONS(1830), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_QMARK] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_void] = ACTIONS(1832), + [anon_sym_delete] = ACTIONS(1832), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1830), + [sym_number] = ACTIONS(1830), + [sym_this] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_undefined] = ACTIONS(1832), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_abstract] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1832), + [anon_sym_set] = ACTIONS(1832), + [anon_sym_declare] = ACTIONS(1832), + [anon_sym_public] = ACTIONS(1832), + [anon_sym_private] = ACTIONS(1832), + [anon_sym_protected] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_any] = ACTIONS(1832), + [anon_sym_number] = ACTIONS(1832), + [anon_sym_boolean] = ACTIONS(1832), + [anon_sym_string] = ACTIONS(1832), + [anon_sym_symbol] = ACTIONS(1832), + [anon_sym_interface] = ACTIONS(1832), + [anon_sym_extends] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [sym_readonly] = ACTIONS(1832), }, [548] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [anon_sym_export] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_namespace] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_try] = ACTIONS(1127), - [anon_sym_with] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_debugger] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_throw] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_yield] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_void] = ACTIONS(1127), - [anon_sym_delete] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1125), - [sym_number] = ACTIONS(1125), - [sym_this] = ACTIONS(1127), - [sym_super] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), - [sym_undefined] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_abstract] = ACTIONS(1127), - [anon_sym_get] = ACTIONS(1127), - [anon_sym_set] = ACTIONS(1127), - [anon_sym_declare] = ACTIONS(1127), - [anon_sym_public] = ACTIONS(1127), - [anon_sym_private] = ACTIONS(1127), - [anon_sym_protected] = ACTIONS(1127), - [anon_sym_module] = ACTIONS(1127), - [anon_sym_any] = ACTIONS(1127), - [anon_sym_number] = ACTIONS(1127), - [anon_sym_boolean] = ACTIONS(1127), - [anon_sym_string] = ACTIONS(1127), - [anon_sym_symbol] = ACTIONS(1127), - [anon_sym_interface] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [sym_readonly] = ACTIONS(1127), - [anon_sym_PIPE_RBRACE] = ACTIONS(1125), - [sym__automatic_semicolon] = ACTIONS(1125), + [ts_builtin_sym_end] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_namespace] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_COMMA] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_typeof] = ACTIONS(1836), + [anon_sym_import] = ACTIONS(1836), + [anon_sym_var] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_else] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_switch] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_await] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_do] = ACTIONS(1836), + [anon_sym_try] = ACTIONS(1836), + [anon_sym_with] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_debugger] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_throw] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_COLON] = ACTIONS(1834), + [anon_sym_case] = ACTIONS(1836), + [anon_sym_yield] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_RBRACK] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_SLASH] = ACTIONS(1836), + [anon_sym_class] = ACTIONS(1836), + [anon_sym_async] = ACTIONS(1836), + [anon_sym_function] = ACTIONS(1836), + [anon_sym_EQ_GT] = ACTIONS(1834), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_QMARK] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1834), + [anon_sym_void] = ACTIONS(1836), + [anon_sym_delete] = ACTIONS(1836), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1834), + [sym_number] = ACTIONS(1834), + [sym_this] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_true] = ACTIONS(1836), + [sym_false] = ACTIONS(1836), + [sym_null] = ACTIONS(1836), + [sym_undefined] = ACTIONS(1836), + [anon_sym_AT] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_abstract] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(1836), + [anon_sym_set] = ACTIONS(1836), + [anon_sym_declare] = ACTIONS(1836), + [anon_sym_public] = ACTIONS(1836), + [anon_sym_private] = ACTIONS(1836), + [anon_sym_protected] = ACTIONS(1836), + [anon_sym_module] = ACTIONS(1836), + [anon_sym_any] = ACTIONS(1836), + [anon_sym_number] = ACTIONS(1836), + [anon_sym_boolean] = ACTIONS(1836), + [anon_sym_string] = ACTIONS(1836), + [anon_sym_symbol] = ACTIONS(1836), + [anon_sym_interface] = ACTIONS(1836), + [anon_sym_extends] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [sym_readonly] = ACTIONS(1836), }, [549] = { - [sym__call_signature] = STATE(3768), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(2024), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_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), - [sym_readonly] = ACTIONS(1897), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1840), + [anon_sym_namespace] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_COMMA] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym_import] = ACTIONS(1840), + [anon_sym_var] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_await] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_with] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_debugger] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_throw] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_COLON] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_RBRACK] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_GT] = ACTIONS(1838), + [anon_sym_SLASH] = ACTIONS(1840), + [anon_sym_class] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(1840), + [anon_sym_EQ_GT] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_QMARK] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_TILDE] = ACTIONS(1838), + [anon_sym_void] = ACTIONS(1840), + [anon_sym_delete] = ACTIONS(1840), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1838), + [sym_number] = ACTIONS(1838), + [sym_this] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_undefined] = ACTIONS(1840), + [anon_sym_AT] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_abstract] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1840), + [anon_sym_declare] = ACTIONS(1840), + [anon_sym_public] = ACTIONS(1840), + [anon_sym_private] = ACTIONS(1840), + [anon_sym_protected] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_any] = ACTIONS(1840), + [anon_sym_number] = ACTIONS(1840), + [anon_sym_boolean] = ACTIONS(1840), + [anon_sym_string] = ACTIONS(1840), + [anon_sym_symbol] = ACTIONS(1840), + [anon_sym_interface] = ACTIONS(1840), + [anon_sym_extends] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [sym_readonly] = ACTIONS(1840), }, [550] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_import] = ACTIONS(1227), - [anon_sym_var] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_await] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_with] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_debugger] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_throw] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_yield] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_class] = ACTIONS(1227), - [anon_sym_async] = ACTIONS(1227), - [anon_sym_function] = ACTIONS(1227), - [anon_sym_new] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1227), - [anon_sym_delete] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1225), - [sym_number] = ACTIONS(1225), - [sym_this] = ACTIONS(1227), - [sym_super] = ACTIONS(1227), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_undefined] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_abstract] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_interface] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [sym_readonly] = ACTIONS(1227), - [anon_sym_PIPE_RBRACE] = ACTIONS(1225), - [sym__automatic_semicolon] = ACTIONS(1225), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_EQ] = ACTIONS(1844), + [anon_sym_namespace] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_COMMA] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), + [anon_sym_var] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_else] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_await] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1844), + [anon_sym_with] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_debugger] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_COLON] = ACTIONS(1842), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_RBRACK] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_class] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_function] = ACTIONS(1844), + [anon_sym_EQ_GT] = ACTIONS(1842), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_QMARK] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_void] = ACTIONS(1844), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_number] = ACTIONS(1842), + [sym_this] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_undefined] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_abstract] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1844), + [anon_sym_set] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1844), + [anon_sym_public] = ACTIONS(1844), + [anon_sym_private] = ACTIONS(1844), + [anon_sym_protected] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1844), + [anon_sym_number] = ACTIONS(1844), + [anon_sym_boolean] = ACTIONS(1844), + [anon_sym_string] = ACTIONS(1844), + [anon_sym_symbol] = ACTIONS(1844), + [anon_sym_interface] = ACTIONS(1844), + [anon_sym_extends] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [sym_readonly] = ACTIONS(1844), }, [551] = { - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1145), - [anon_sym_export] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_namespace] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_COMMA] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_typeof] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1145), - [anon_sym_var] = ACTIONS(1145), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_const] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_debugger] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_throw] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_catch] = ACTIONS(1145), - [anon_sym_finally] = ACTIONS(1145), - [anon_sym_yield] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_SLASH] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_async] = ACTIONS(1145), - [anon_sym_function] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_void] = ACTIONS(1145), - [anon_sym_delete] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1143), - [sym_number] = ACTIONS(1143), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(1145), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [sym_null] = ACTIONS(1145), - [sym_undefined] = ACTIONS(1145), - [anon_sym_AT] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_abstract] = ACTIONS(1145), - [anon_sym_get] = ACTIONS(1145), - [anon_sym_set] = ACTIONS(1145), - [anon_sym_declare] = ACTIONS(1145), - [anon_sym_public] = ACTIONS(1145), - [anon_sym_private] = ACTIONS(1145), - [anon_sym_protected] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_any] = ACTIONS(1145), - [anon_sym_number] = ACTIONS(1145), - [anon_sym_boolean] = ACTIONS(1145), - [anon_sym_string] = ACTIONS(1145), - [anon_sym_symbol] = ACTIONS(1145), - [anon_sym_interface] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [sym_readonly] = ACTIONS(1145), + [ts_builtin_sym_end] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1848), + [anon_sym_export] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_namespace] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_COMMA] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym_import] = ACTIONS(1848), + [anon_sym_var] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_else] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_await] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_with] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_debugger] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_throw] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_COLON] = ACTIONS(1846), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_yield] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_RBRACK] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_GT] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1848), + [anon_sym_class] = ACTIONS(1848), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_function] = ACTIONS(1848), + [anon_sym_EQ_GT] = ACTIONS(1846), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_QMARK] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_void] = ACTIONS(1848), + [anon_sym_delete] = ACTIONS(1848), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1846), + [sym_number] = ACTIONS(1846), + [sym_this] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_undefined] = ACTIONS(1848), + [anon_sym_AT] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_abstract] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(1848), + [anon_sym_set] = ACTIONS(1848), + [anon_sym_declare] = ACTIONS(1848), + [anon_sym_public] = ACTIONS(1848), + [anon_sym_private] = ACTIONS(1848), + [anon_sym_protected] = ACTIONS(1848), + [anon_sym_module] = ACTIONS(1848), + [anon_sym_any] = ACTIONS(1848), + [anon_sym_number] = ACTIONS(1848), + [anon_sym_boolean] = ACTIONS(1848), + [anon_sym_string] = ACTIONS(1848), + [anon_sym_symbol] = ACTIONS(1848), + [anon_sym_interface] = ACTIONS(1848), + [anon_sym_extends] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [sym_readonly] = ACTIONS(1848), }, [552] = { - [sym__call_signature] = STATE(3778), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1985), - [anon_sym_type] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1985), - [sym__automatic_semicolon] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1852), + [anon_sym_namespace] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_COMMA] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1852), + [anon_sym_import] = ACTIONS(1852), + [anon_sym_var] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_else] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_RPAREN] = ACTIONS(1850), + [anon_sym_await] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_try] = ACTIONS(1852), + [anon_sym_with] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_debugger] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_throw] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_COLON] = ACTIONS(1850), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_yield] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_RBRACK] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_GT] = ACTIONS(1850), + [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_class] = ACTIONS(1852), + [anon_sym_async] = ACTIONS(1852), + [anon_sym_function] = ACTIONS(1852), + [anon_sym_EQ_GT] = ACTIONS(1850), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_QMARK] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_void] = ACTIONS(1852), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1850), + [sym_number] = ACTIONS(1850), + [sym_this] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_true] = ACTIONS(1852), + [sym_false] = ACTIONS(1852), + [sym_null] = ACTIONS(1852), + [sym_undefined] = ACTIONS(1852), + [anon_sym_AT] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_abstract] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1852), + [anon_sym_declare] = ACTIONS(1852), + [anon_sym_public] = ACTIONS(1852), + [anon_sym_private] = ACTIONS(1852), + [anon_sym_protected] = ACTIONS(1852), + [anon_sym_module] = ACTIONS(1852), + [anon_sym_any] = ACTIONS(1852), + [anon_sym_number] = ACTIONS(1852), + [anon_sym_boolean] = ACTIONS(1852), + [anon_sym_string] = ACTIONS(1852), + [anon_sym_symbol] = ACTIONS(1852), + [anon_sym_interface] = ACTIONS(1852), + [anon_sym_extends] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [sym_readonly] = ACTIONS(1852), }, [553] = { - [sym__call_signature] = STATE(3778), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1985), - [anon_sym_type] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1985), - [sym__automatic_semicolon] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1856), + [anon_sym_export] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1856), + [anon_sym_namespace] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_COMMA] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1856), + [anon_sym_import] = ACTIONS(1856), + [anon_sym_var] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_await] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_do] = ACTIONS(1856), + [anon_sym_try] = ACTIONS(1856), + [anon_sym_with] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_debugger] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_throw] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_COLON] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1856), + [anon_sym_yield] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_RBRACK] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_class] = ACTIONS(1856), + [anon_sym_async] = ACTIONS(1856), + [anon_sym_function] = ACTIONS(1856), + [anon_sym_EQ_GT] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_QMARK] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_TILDE] = ACTIONS(1854), + [anon_sym_void] = ACTIONS(1856), + [anon_sym_delete] = ACTIONS(1856), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1854), + [sym_number] = ACTIONS(1854), + [sym_this] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_true] = ACTIONS(1856), + [sym_false] = ACTIONS(1856), + [sym_null] = ACTIONS(1856), + [sym_undefined] = ACTIONS(1856), + [anon_sym_AT] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_abstract] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1856), + [anon_sym_set] = ACTIONS(1856), + [anon_sym_declare] = ACTIONS(1856), + [anon_sym_public] = ACTIONS(1856), + [anon_sym_private] = ACTIONS(1856), + [anon_sym_protected] = ACTIONS(1856), + [anon_sym_module] = ACTIONS(1856), + [anon_sym_any] = ACTIONS(1856), + [anon_sym_number] = ACTIONS(1856), + [anon_sym_boolean] = ACTIONS(1856), + [anon_sym_string] = ACTIONS(1856), + [anon_sym_symbol] = ACTIONS(1856), + [anon_sym_interface] = ACTIONS(1856), + [anon_sym_extends] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [sym_readonly] = ACTIONS(1856), }, [554] = { - [sym__call_signature] = STATE(3778), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1985), - [anon_sym_type] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(2028), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1985), - [sym__automatic_semicolon] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_namespace] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_COMMA] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1862), + [anon_sym_import] = ACTIONS(1862), + [anon_sym_var] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_await] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(1862), + [anon_sym_with] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_debugger] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_throw] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_COLON] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_class] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_function] = ACTIONS(1862), + [anon_sym_EQ_GT] = ACTIONS(1860), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1860), + [anon_sym_void] = ACTIONS(1862), + [anon_sym_delete] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1860), + [sym_number] = ACTIONS(1860), + [sym_this] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_true] = ACTIONS(1862), + [sym_false] = ACTIONS(1862), + [sym_null] = ACTIONS(1862), + [sym_undefined] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_abstract] = ACTIONS(1862), + [anon_sym_get] = ACTIONS(1862), + [anon_sym_set] = ACTIONS(1862), + [anon_sym_declare] = ACTIONS(1862), + [anon_sym_public] = ACTIONS(1862), + [anon_sym_private] = ACTIONS(1862), + [anon_sym_protected] = ACTIONS(1862), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_any] = ACTIONS(1862), + [anon_sym_number] = ACTIONS(1862), + [anon_sym_boolean] = ACTIONS(1862), + [anon_sym_string] = ACTIONS(1862), + [anon_sym_symbol] = ACTIONS(1862), + [anon_sym_interface] = ACTIONS(1862), + [anon_sym_extends] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [sym_readonly] = ACTIONS(1862), }, [555] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), - [anon_sym_PIPE_RBRACE] = ACTIONS(1161), - [sym__automatic_semicolon] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_EQ] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1224), + [anon_sym_var] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_RPAREN] = ACTIONS(1222), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_try] = ACTIONS(1224), + [anon_sym_with] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_debugger] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_throw] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_QMARK] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1224), + [anon_sym_delete] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_number] = ACTIONS(1222), + [sym_this] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [sym_null] = ACTIONS(1224), + [sym_undefined] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_abstract] = ACTIONS(1224), + [anon_sym_get] = ACTIONS(1224), + [anon_sym_set] = ACTIONS(1224), + [anon_sym_declare] = ACTIONS(1224), + [anon_sym_public] = ACTIONS(1224), + [anon_sym_private] = ACTIONS(1224), + [anon_sym_protected] = ACTIONS(1224), + [anon_sym_module] = ACTIONS(1224), + [anon_sym_any] = ACTIONS(1224), + [anon_sym_number] = ACTIONS(1224), + [anon_sym_boolean] = ACTIONS(1224), + [anon_sym_string] = ACTIONS(1224), + [anon_sym_symbol] = ACTIONS(1224), + [anon_sym_interface] = ACTIONS(1224), + [anon_sym_extends] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [sym_readonly] = ACTIONS(1224), }, [556] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_namespace] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1866), + [anon_sym_import] = ACTIONS(1866), + [anon_sym_var] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_await] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_with] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_debugger] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_throw] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_COLON] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_function] = ACTIONS(1866), + [anon_sym_EQ_GT] = ACTIONS(1864), + [anon_sym_new] = ACTIONS(1866), + [anon_sym_QMARK] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1864), + [anon_sym_void] = ACTIONS(1866), + [anon_sym_delete] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1864), + [sym_number] = ACTIONS(1864), + [sym_this] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_true] = ACTIONS(1866), + [sym_false] = ACTIONS(1866), + [sym_null] = ACTIONS(1866), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1864), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1866), + [anon_sym_set] = ACTIONS(1866), + [anon_sym_declare] = ACTIONS(1866), + [anon_sym_public] = ACTIONS(1866), + [anon_sym_private] = ACTIONS(1866), + [anon_sym_protected] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_any] = ACTIONS(1866), + [anon_sym_number] = ACTIONS(1866), + [anon_sym_boolean] = ACTIONS(1866), + [anon_sym_string] = ACTIONS(1866), + [anon_sym_symbol] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1866), + [anon_sym_extends] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1866), + [sym_readonly] = ACTIONS(1866), }, [557] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), - [anon_sym_PIPE_RBRACE] = ACTIONS(1161), - [sym__automatic_semicolon] = ACTIONS(2030), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_export] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_EQ] = ACTIONS(1870), + [anon_sym_namespace] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_COMMA] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_typeof] = ACTIONS(1870), + [anon_sym_import] = ACTIONS(1870), + [anon_sym_var] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_else] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_switch] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_await] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_do] = ACTIONS(1870), + [anon_sym_try] = ACTIONS(1870), + [anon_sym_with] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_debugger] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_throw] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_COLON] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_RBRACK] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1870), + [anon_sym_class] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_function] = ACTIONS(1870), + [anon_sym_EQ_GT] = ACTIONS(1868), + [anon_sym_new] = ACTIONS(1870), + [anon_sym_QMARK] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_void] = ACTIONS(1870), + [anon_sym_delete] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_SQUOTE] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [sym_this] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_true] = ACTIONS(1870), + [sym_false] = ACTIONS(1870), + [sym_null] = ACTIONS(1870), + [sym_undefined] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_abstract] = ACTIONS(1870), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_declare] = ACTIONS(1870), + [anon_sym_public] = ACTIONS(1870), + [anon_sym_private] = ACTIONS(1870), + [anon_sym_protected] = ACTIONS(1870), + [anon_sym_module] = ACTIONS(1870), + [anon_sym_any] = ACTIONS(1870), + [anon_sym_number] = ACTIONS(1870), + [anon_sym_boolean] = ACTIONS(1870), + [anon_sym_string] = ACTIONS(1870), + [anon_sym_symbol] = ACTIONS(1870), + [anon_sym_interface] = ACTIONS(1870), + [anon_sym_extends] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [sym_readonly] = ACTIONS(1870), }, [558] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_COMMA] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_typeof] = ACTIONS(1874), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_switch] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_await] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_with] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_debugger] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_throw] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_COLON] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_RBRACK] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1874), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_new] = ACTIONS(1874), + [anon_sym_QMARK] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1872), + [anon_sym_void] = ACTIONS(1874), + [anon_sym_delete] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1872), + [sym_number] = ACTIONS(1872), + [sym_this] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_true] = ACTIONS(1874), + [sym_false] = ACTIONS(1874), + [sym_null] = ACTIONS(1874), + [sym_undefined] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_abstract] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [anon_sym_interface] = ACTIONS(1874), + [anon_sym_extends] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), }, [559] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_catch] = ACTIONS(1163), - [anon_sym_finally] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_export] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_namespace] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1878), + [anon_sym_import] = ACTIONS(1878), + [anon_sym_var] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_await] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_with] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_debugger] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_throw] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1878), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_RBRACK] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_GT] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_function] = ACTIONS(1878), + [anon_sym_EQ_GT] = ACTIONS(1876), + [anon_sym_new] = ACTIONS(1878), + [anon_sym_QMARK] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1876), + [anon_sym_void] = ACTIONS(1878), + [anon_sym_delete] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1876), + [sym_number] = ACTIONS(1876), + [sym_this] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_true] = ACTIONS(1878), + [sym_false] = ACTIONS(1878), + [sym_null] = ACTIONS(1878), + [sym_undefined] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_abstract] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1878), + [anon_sym_set] = ACTIONS(1878), + [anon_sym_declare] = ACTIONS(1878), + [anon_sym_public] = ACTIONS(1878), + [anon_sym_private] = ACTIONS(1878), + [anon_sym_protected] = ACTIONS(1878), + [anon_sym_module] = ACTIONS(1878), + [anon_sym_any] = ACTIONS(1878), + [anon_sym_number] = ACTIONS(1878), + [anon_sym_boolean] = ACTIONS(1878), + [anon_sym_string] = ACTIONS(1878), + [anon_sym_symbol] = ACTIONS(1878), + [anon_sym_interface] = ACTIONS(1878), + [anon_sym_extends] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [sym_readonly] = ACTIONS(1878), }, [560] = { - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_export] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_namespace] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2036), - [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_yield] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [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_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2040), - [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(2034), - [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_abstract] = 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_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_interface] = ACTIONS(2036), - [anon_sym_extends] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2036), - [sym_readonly] = ACTIONS(2036), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_export] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_namespace] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_COMMA] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_typeof] = ACTIONS(1882), + [anon_sym_import] = ACTIONS(1882), + [anon_sym_var] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_switch] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_await] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_with] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_debugger] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_throw] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_COLON] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_class] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_function] = ACTIONS(1882), + [anon_sym_EQ_GT] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1882), + [anon_sym_QMARK] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1880), + [anon_sym_void] = ACTIONS(1882), + [anon_sym_delete] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1880), + [sym_number] = ACTIONS(1880), + [sym_this] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_true] = ACTIONS(1882), + [sym_false] = ACTIONS(1882), + [sym_null] = ACTIONS(1882), + [sym_undefined] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1880), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_abstract] = ACTIONS(1882), + [anon_sym_get] = ACTIONS(1882), + [anon_sym_set] = ACTIONS(1882), + [anon_sym_declare] = ACTIONS(1882), + [anon_sym_public] = ACTIONS(1882), + [anon_sym_private] = ACTIONS(1882), + [anon_sym_protected] = ACTIONS(1882), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_any] = ACTIONS(1882), + [anon_sym_number] = ACTIONS(1882), + [anon_sym_boolean] = ACTIONS(1882), + [anon_sym_string] = ACTIONS(1882), + [anon_sym_symbol] = ACTIONS(1882), + [anon_sym_interface] = ACTIONS(1882), + [anon_sym_extends] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [sym_readonly] = ACTIONS(1882), }, [561] = { - [ts_builtin_sym_end] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2046), - [anon_sym_export] = ACTIONS(2046), - [anon_sym_default] = ACTIONS(2046), - [anon_sym_namespace] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2046), - [anon_sym_typeof] = ACTIONS(2046), - [anon_sym_import] = ACTIONS(2046), - [anon_sym_var] = ACTIONS(2046), - [anon_sym_let] = ACTIONS(2046), - [anon_sym_const] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_else] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_switch] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_await] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_do] = ACTIONS(2046), - [anon_sym_try] = ACTIONS(2046), - [anon_sym_with] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_debugger] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_throw] = ACTIONS(2046), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_case] = ACTIONS(2046), - [anon_sym_yield] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_LT] = ACTIONS(2044), - [anon_sym_SLASH] = ACTIONS(2046), - [anon_sym_class] = ACTIONS(2046), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_function] = ACTIONS(2046), - [anon_sym_new] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_TILDE] = ACTIONS(2044), - [anon_sym_void] = ACTIONS(2046), - [anon_sym_delete] = ACTIONS(2046), - [anon_sym_PLUS_PLUS] = ACTIONS(2044), - [anon_sym_DASH_DASH] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2044), - [sym_number] = ACTIONS(2044), - [sym_this] = ACTIONS(2046), - [sym_super] = ACTIONS(2046), - [sym_true] = ACTIONS(2046), - [sym_false] = ACTIONS(2046), - [sym_null] = ACTIONS(2046), - [sym_undefined] = ACTIONS(2046), - [anon_sym_AT] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_abstract] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(2046), - [anon_sym_set] = ACTIONS(2046), - [anon_sym_declare] = ACTIONS(2046), - [anon_sym_public] = ACTIONS(2046), - [anon_sym_private] = ACTIONS(2046), - [anon_sym_protected] = ACTIONS(2046), - [anon_sym_module] = ACTIONS(2046), - [anon_sym_any] = ACTIONS(2046), - [anon_sym_number] = ACTIONS(2046), - [anon_sym_boolean] = ACTIONS(2046), - [anon_sym_string] = ACTIONS(2046), - [anon_sym_symbol] = ACTIONS(2046), - [anon_sym_interface] = ACTIONS(2046), - [anon_sym_extends] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2046), - [sym_readonly] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_await] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_with] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_debugger] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_COLON] = ACTIONS(1884), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_QMARK] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_void] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [sym_this] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_undefined] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1886), + [anon_sym_set] = ACTIONS(1886), + [anon_sym_declare] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_protected] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_any] = ACTIONS(1886), + [anon_sym_number] = ACTIONS(1886), + [anon_sym_boolean] = ACTIONS(1886), + [anon_sym_string] = ACTIONS(1886), + [anon_sym_symbol] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_extends] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [sym_readonly] = ACTIONS(1886), }, [562] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1103), - [anon_sym_import] = ACTIONS(1103), - [anon_sym_var] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_switch] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1103), - [anon_sym_with] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_debugger] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_throw] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_async] = ACTIONS(1103), - [anon_sym_function] = ACTIONS(1103), - [anon_sym_new] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_void] = ACTIONS(1103), - [anon_sym_delete] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_number] = ACTIONS(1101), - [sym_this] = ACTIONS(1103), - [sym_super] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_null] = ACTIONS(1103), - [sym_undefined] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1103), - [anon_sym_abstract] = ACTIONS(1103), - [anon_sym_get] = ACTIONS(1103), - [anon_sym_set] = ACTIONS(1103), - [anon_sym_declare] = ACTIONS(1103), - [anon_sym_public] = ACTIONS(1103), - [anon_sym_private] = ACTIONS(1103), - [anon_sym_protected] = ACTIONS(1103), - [anon_sym_module] = ACTIONS(1103), - [anon_sym_any] = ACTIONS(1103), - [anon_sym_number] = ACTIONS(1103), - [anon_sym_boolean] = ACTIONS(1103), - [anon_sym_string] = ACTIONS(1103), - [anon_sym_symbol] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [sym_readonly] = ACTIONS(1103), - [anon_sym_PIPE_RBRACE] = ACTIONS(1101), - [sym__automatic_semicolon] = ACTIONS(2048), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_await] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_with] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_debugger] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_throw] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_COLON] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1890), + [anon_sym_EQ_GT] = ACTIONS(1888), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_QMARK] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1888), + [anon_sym_void] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_number] = ACTIONS(1888), + [sym_this] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_undefined] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [anon_sym_interface] = ACTIONS(1890), + [anon_sym_extends] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [563] = { - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_export] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_namespace] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2052), - [anon_sym_import] = ACTIONS(2052), - [anon_sym_var] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_else] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_switch] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_await] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_do] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [anon_sym_with] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_debugger] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_throw] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_class] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_function] = ACTIONS(2052), - [anon_sym_new] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2050), - [anon_sym_void] = ACTIONS(2052), - [anon_sym_delete] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2050), - [sym_number] = ACTIONS(2050), - [sym_this] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_null] = ACTIONS(2052), - [sym_undefined] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_abstract] = ACTIONS(2052), - [anon_sym_get] = ACTIONS(2052), - [anon_sym_set] = ACTIONS(2052), - [anon_sym_declare] = ACTIONS(2052), - [anon_sym_public] = ACTIONS(2052), - [anon_sym_private] = ACTIONS(2052), - [anon_sym_protected] = ACTIONS(2052), - [anon_sym_module] = ACTIONS(2052), - [anon_sym_any] = ACTIONS(2052), - [anon_sym_number] = ACTIONS(2052), - [anon_sym_boolean] = ACTIONS(2052), - [anon_sym_string] = ACTIONS(2052), - [anon_sym_symbol] = ACTIONS(2052), - [anon_sym_interface] = ACTIONS(2052), - [anon_sym_extends] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2052), - [sym_readonly] = ACTIONS(2052), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_namespace] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_import] = ACTIONS(1894), + [anon_sym_var] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_await] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_with] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_debugger] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_throw] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_COLON] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_class] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1894), + [anon_sym_EQ_GT] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_QMARK] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1892), + [anon_sym_void] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_number] = ACTIONS(1892), + [sym_this] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_true] = ACTIONS(1894), + [sym_false] = ACTIONS(1894), + [sym_null] = ACTIONS(1894), + [sym_undefined] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_abstract] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(1894), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1894), + [anon_sym_private] = ACTIONS(1894), + [anon_sym_protected] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_any] = ACTIONS(1894), + [anon_sym_number] = ACTIONS(1894), + [anon_sym_boolean] = ACTIONS(1894), + [anon_sym_string] = ACTIONS(1894), + [anon_sym_symbol] = ACTIONS(1894), + [anon_sym_interface] = ACTIONS(1894), + [anon_sym_extends] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [sym_readonly] = ACTIONS(1894), }, [564] = { - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_export] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_namespace] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_typeof] = ACTIONS(2056), - [anon_sym_import] = ACTIONS(2056), - [anon_sym_var] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_else] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_switch] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_await] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_do] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [anon_sym_with] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_debugger] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_throw] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_case] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_SLASH] = ACTIONS(2056), - [anon_sym_class] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_function] = ACTIONS(2056), - [anon_sym_new] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2054), - [anon_sym_void] = ACTIONS(2056), - [anon_sym_delete] = ACTIONS(2056), - [anon_sym_PLUS_PLUS] = ACTIONS(2054), - [anon_sym_DASH_DASH] = ACTIONS(2054), - [anon_sym_DQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2054), - [sym_number] = ACTIONS(2054), - [sym_this] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_true] = ACTIONS(2056), - [sym_false] = ACTIONS(2056), - [sym_null] = ACTIONS(2056), - [sym_undefined] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2054), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_abstract] = ACTIONS(2056), - [anon_sym_get] = ACTIONS(2056), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_declare] = ACTIONS(2056), - [anon_sym_public] = ACTIONS(2056), - [anon_sym_private] = ACTIONS(2056), - [anon_sym_protected] = ACTIONS(2056), - [anon_sym_module] = ACTIONS(2056), - [anon_sym_any] = ACTIONS(2056), - [anon_sym_number] = ACTIONS(2056), - [anon_sym_boolean] = ACTIONS(2056), - [anon_sym_string] = ACTIONS(2056), - [anon_sym_symbol] = ACTIONS(2056), - [anon_sym_interface] = ACTIONS(2056), - [anon_sym_extends] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [sym_readonly] = ACTIONS(2056), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_export] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1898), + [anon_sym_namespace] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_COMMA] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1898), + [anon_sym_import] = ACTIONS(1898), + [anon_sym_var] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_else] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_switch] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_await] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [anon_sym_with] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_debugger] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_throw] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_COLON] = ACTIONS(1896), + [anon_sym_case] = ACTIONS(1898), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1896), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_function] = ACTIONS(1898), + [anon_sym_EQ_GT] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_QMARK] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1896), + [anon_sym_void] = ACTIONS(1898), + [anon_sym_delete] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1896), + [anon_sym_DASH_DASH] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1896), + [sym_number] = ACTIONS(1896), + [sym_this] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_true] = ACTIONS(1898), + [sym_false] = ACTIONS(1898), + [sym_null] = ACTIONS(1898), + [sym_undefined] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_abstract] = ACTIONS(1898), + [anon_sym_get] = ACTIONS(1898), + [anon_sym_set] = ACTIONS(1898), + [anon_sym_declare] = ACTIONS(1898), + [anon_sym_public] = ACTIONS(1898), + [anon_sym_private] = ACTIONS(1898), + [anon_sym_protected] = ACTIONS(1898), + [anon_sym_module] = ACTIONS(1898), + [anon_sym_any] = ACTIONS(1898), + [anon_sym_number] = ACTIONS(1898), + [anon_sym_boolean] = ACTIONS(1898), + [anon_sym_string] = ACTIONS(1898), + [anon_sym_symbol] = ACTIONS(1898), + [anon_sym_interface] = ACTIONS(1898), + [anon_sym_extends] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [sym_readonly] = ACTIONS(1898), }, [565] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1963), - [anon_sym_of] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_export] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_namespace] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_COMMA] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_typeof] = ACTIONS(1902), + [anon_sym_import] = ACTIONS(1902), + [anon_sym_var] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_else] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_await] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_do] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1902), + [anon_sym_with] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_debugger] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_throw] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_COLON] = ACTIONS(1900), + [anon_sym_case] = ACTIONS(1902), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_RBRACK] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_class] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_function] = ACTIONS(1902), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_new] = ACTIONS(1902), + [anon_sym_QMARK] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_TILDE] = ACTIONS(1900), + [anon_sym_void] = ACTIONS(1902), + [anon_sym_delete] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [sym_this] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_true] = ACTIONS(1902), + [sym_false] = ACTIONS(1902), + [sym_null] = ACTIONS(1902), + [sym_undefined] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_abstract] = ACTIONS(1902), + [anon_sym_get] = ACTIONS(1902), + [anon_sym_set] = ACTIONS(1902), + [anon_sym_declare] = ACTIONS(1902), + [anon_sym_public] = ACTIONS(1902), + [anon_sym_private] = ACTIONS(1902), + [anon_sym_protected] = ACTIONS(1902), + [anon_sym_module] = ACTIONS(1902), + [anon_sym_any] = ACTIONS(1902), + [anon_sym_number] = ACTIONS(1902), + [anon_sym_boolean] = ACTIONS(1902), + [anon_sym_string] = ACTIONS(1902), + [anon_sym_symbol] = ACTIONS(1902), + [anon_sym_interface] = ACTIONS(1902), + [anon_sym_extends] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [sym_readonly] = ACTIONS(1902), }, [566] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_of] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_typeof] = ACTIONS(1234), + [anon_sym_import] = ACTIONS(1234), + [anon_sym_var] = ACTIONS(1234), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_await] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_try] = ACTIONS(1234), + [anon_sym_with] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_debugger] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_throw] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_class] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1234), + [anon_sym_function] = ACTIONS(1234), + [anon_sym_EQ_GT] = ACTIONS(1232), + [anon_sym_new] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_void] = ACTIONS(1234), + [anon_sym_delete] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1232), + [sym_number] = ACTIONS(1232), + [sym_this] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [sym_undefined] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_abstract] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_interface] = ACTIONS(1234), + [anon_sym_extends] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [sym_readonly] = ACTIONS(1234), }, [567] = { - [sym_statement_block] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_export] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1906), + [anon_sym_namespace] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_typeof] = ACTIONS(1906), + [anon_sym_import] = ACTIONS(1906), + [anon_sym_var] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_await] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_do] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1906), + [anon_sym_with] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_debugger] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_throw] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1906), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_RBRACK] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_GT] = ACTIONS(1904), + [anon_sym_SLASH] = ACTIONS(1906), + [anon_sym_class] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_function] = ACTIONS(1906), + [anon_sym_EQ_GT] = ACTIONS(1904), + [anon_sym_new] = ACTIONS(1906), + [anon_sym_QMARK] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_TILDE] = ACTIONS(1904), + [anon_sym_void] = ACTIONS(1906), + [anon_sym_delete] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1904), + [sym_this] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_abstract] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1906), + [anon_sym_set] = ACTIONS(1906), + [anon_sym_declare] = ACTIONS(1906), + [anon_sym_public] = ACTIONS(1906), + [anon_sym_private] = ACTIONS(1906), + [anon_sym_protected] = ACTIONS(1906), + [anon_sym_module] = ACTIONS(1906), + [anon_sym_any] = ACTIONS(1906), + [anon_sym_number] = ACTIONS(1906), + [anon_sym_boolean] = ACTIONS(1906), + [anon_sym_string] = ACTIONS(1906), + [anon_sym_symbol] = ACTIONS(1906), + [anon_sym_interface] = ACTIONS(1906), + [anon_sym_extends] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [sym_readonly] = ACTIONS(1906), }, [568] = { - [sym_identifier] = ACTIONS(1939), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_this] = ACTIONS(1939), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_get] = ACTIONS(1939), - [anon_sym_set] = ACTIONS(1939), - [anon_sym_declare] = ACTIONS(1939), - [anon_sym_public] = ACTIONS(1939), - [anon_sym_private] = ACTIONS(1939), - [anon_sym_protected] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_any] = ACTIONS(1939), - [anon_sym_number] = ACTIONS(1939), - [anon_sym_boolean] = ACTIONS(1939), - [anon_sym_string] = ACTIONS(1939), - [anon_sym_symbol] = ACTIONS(1939), - [sym_readonly] = ACTIONS(1939), + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_default] = 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_type] = ACTIONS(1419), + [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(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_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [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_QMARK] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = 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(1417), + [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_abstract] = 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_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_interface] = ACTIONS(1419), + [anon_sym_extends] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [sym_readonly] = ACTIONS(1419), }, [569] = { - [sym_finally_clause] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2069), - [anon_sym_export] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_namespace] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(2069), - [anon_sym_import] = ACTIONS(2069), - [anon_sym_var] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_switch] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [anon_sym_do] = ACTIONS(2069), - [anon_sym_try] = ACTIONS(2069), - [anon_sym_with] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_debugger] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_throw] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2069), - [anon_sym_finally] = ACTIONS(2009), - [anon_sym_yield] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2069), - [anon_sym_class] = ACTIONS(2069), - [anon_sym_async] = ACTIONS(2069), - [anon_sym_function] = ACTIONS(2069), - [anon_sym_new] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2069), - [anon_sym_delete] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_this] = ACTIONS(2069), - [sym_super] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_null] = ACTIONS(2069), - [sym_undefined] = ACTIONS(2069), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_abstract] = ACTIONS(2069), - [anon_sym_get] = ACTIONS(2069), - [anon_sym_set] = ACTIONS(2069), - [anon_sym_declare] = ACTIONS(2069), - [anon_sym_public] = ACTIONS(2069), - [anon_sym_private] = ACTIONS(2069), - [anon_sym_protected] = ACTIONS(2069), - [anon_sym_module] = ACTIONS(2069), - [anon_sym_any] = ACTIONS(2069), - [anon_sym_number] = ACTIONS(2069), - [anon_sym_boolean] = ACTIONS(2069), - [anon_sym_string] = ACTIONS(2069), - [anon_sym_symbol] = ACTIONS(2069), - [anon_sym_interface] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [sym_readonly] = ACTIONS(2069), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_export] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_EQ] = ACTIONS(1910), + [anon_sym_namespace] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1910), + [anon_sym_import] = ACTIONS(1910), + [anon_sym_var] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_else] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_switch] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_do] = ACTIONS(1910), + [anon_sym_try] = ACTIONS(1910), + [anon_sym_with] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_debugger] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_throw] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_COLON] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1910), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_RBRACK] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1908), + [anon_sym_SLASH] = ACTIONS(1910), + [anon_sym_class] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_function] = ACTIONS(1910), + [anon_sym_EQ_GT] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_void] = ACTIONS(1910), + [anon_sym_delete] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1908), + [sym_number] = ACTIONS(1908), + [sym_this] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_true] = ACTIONS(1910), + [sym_false] = ACTIONS(1910), + [sym_null] = ACTIONS(1910), + [sym_undefined] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_abstract] = ACTIONS(1910), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_declare] = ACTIONS(1910), + [anon_sym_public] = ACTIONS(1910), + [anon_sym_private] = ACTIONS(1910), + [anon_sym_protected] = ACTIONS(1910), + [anon_sym_module] = ACTIONS(1910), + [anon_sym_any] = ACTIONS(1910), + [anon_sym_number] = ACTIONS(1910), + [anon_sym_boolean] = ACTIONS(1910), + [anon_sym_string] = ACTIONS(1910), + [anon_sym_symbol] = ACTIONS(1910), + [anon_sym_interface] = ACTIONS(1910), + [anon_sym_extends] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [sym_readonly] = ACTIONS(1910), }, [570] = { - [sym_identifier] = ACTIONS(1939), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_in] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym_this] = ACTIONS(1939), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_get] = ACTIONS(1939), - [anon_sym_set] = ACTIONS(1939), - [anon_sym_declare] = ACTIONS(1939), - [anon_sym_public] = ACTIONS(1939), - [anon_sym_private] = ACTIONS(1939), - [anon_sym_protected] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_any] = ACTIONS(1939), - [anon_sym_number] = ACTIONS(1939), - [anon_sym_boolean] = ACTIONS(1939), - [anon_sym_string] = ACTIONS(1939), - [anon_sym_symbol] = ACTIONS(1939), - [sym_readonly] = ACTIONS(1939), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_export] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1914), + [anon_sym_namespace] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_COMMA] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_import] = ACTIONS(1914), + [anon_sym_var] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_else] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_switch] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1912), + [anon_sym_await] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_do] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1914), + [anon_sym_with] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_debugger] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_COLON] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1914), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_RBRACK] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_GT] = ACTIONS(1912), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_function] = ACTIONS(1914), + [anon_sym_EQ_GT] = ACTIONS(1912), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_QMARK] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1912), + [anon_sym_void] = ACTIONS(1914), + [anon_sym_delete] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1912), + [sym_number] = ACTIONS(1912), + [sym_this] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [sym_null] = ACTIONS(1914), + [sym_undefined] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_abstract] = ACTIONS(1914), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1914), + [anon_sym_declare] = ACTIONS(1914), + [anon_sym_public] = ACTIONS(1914), + [anon_sym_private] = ACTIONS(1914), + [anon_sym_protected] = ACTIONS(1914), + [anon_sym_module] = ACTIONS(1914), + [anon_sym_any] = ACTIONS(1914), + [anon_sym_number] = ACTIONS(1914), + [anon_sym_boolean] = ACTIONS(1914), + [anon_sym_string] = ACTIONS(1914), + [anon_sym_symbol] = ACTIONS(1914), + [anon_sym_interface] = ACTIONS(1914), + [anon_sym_extends] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [sym_readonly] = ACTIONS(1914), }, [571] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(2071), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3850), + [sym_identifier] = ACTIONS(1916), + [anon_sym_export] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(1916), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_declare] = ACTIONS(1916), + [anon_sym_public] = ACTIONS(1916), + [anon_sym_private] = ACTIONS(1916), + [anon_sym_protected] = ACTIONS(1916), + [anon_sym_module] = ACTIONS(1916), + [anon_sym_any] = ACTIONS(1916), + [anon_sym_number] = ACTIONS(1916), + [anon_sym_boolean] = ACTIONS(1916), + [anon_sym_string] = ACTIONS(1916), + [anon_sym_symbol] = ACTIONS(1916), + [sym_readonly] = ACTIONS(1916), + [sym__automatic_semicolon] = ACTIONS(741), }, [572] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_identifier] = ACTIONS(1193), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_namespace] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_type] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1193), - [anon_sym_import] = ACTIONS(1193), - [anon_sym_var] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_with] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_debugger] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_throw] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_yield] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_async] = ACTIONS(1193), - [anon_sym_function] = ACTIONS(1193), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1193), - [anon_sym_delete] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1191), - [sym_number] = ACTIONS(1191), - [sym_this] = ACTIONS(1193), - [sym_super] = ACTIONS(1193), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [sym_null] = ACTIONS(1193), - [sym_undefined] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_abstract] = ACTIONS(1193), - [anon_sym_get] = ACTIONS(1193), - [anon_sym_set] = ACTIONS(1193), - [anon_sym_declare] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(1193), - [anon_sym_private] = ACTIONS(1193), - [anon_sym_protected] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_any] = ACTIONS(1193), - [anon_sym_number] = ACTIONS(1193), - [anon_sym_boolean] = ACTIONS(1193), - [anon_sym_string] = ACTIONS(1193), - [anon_sym_symbol] = ACTIONS(1193), - [anon_sym_interface] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [sym_readonly] = ACTIONS(1193), - [sym__automatic_semicolon] = ACTIONS(1199), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(1916), + [anon_sym_export] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(1916), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_declare] = ACTIONS(1916), + [anon_sym_public] = ACTIONS(1916), + [anon_sym_private] = ACTIONS(1916), + [anon_sym_protected] = ACTIONS(1916), + [anon_sym_module] = ACTIONS(1916), + [anon_sym_any] = ACTIONS(1916), + [anon_sym_number] = ACTIONS(1916), + [anon_sym_boolean] = ACTIONS(1916), + [anon_sym_string] = ACTIONS(1916), + [anon_sym_symbol] = ACTIONS(1916), + [sym_readonly] = ACTIONS(1916), + [sym__automatic_semicolon] = ACTIONS(741), }, [573] = { - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_namespace] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_type] = ACTIONS(1245), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(1245), - [anon_sym_var] = ACTIONS(1245), - [anon_sym_let] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_await] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_debugger] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_throw] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_yield] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_class] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1245), - [anon_sym_function] = ACTIONS(1245), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1243), - [sym_this] = ACTIONS(1245), - [sym_super] = ACTIONS(1245), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [sym_null] = ACTIONS(1245), - [sym_undefined] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_abstract] = ACTIONS(1245), - [anon_sym_get] = ACTIONS(1245), - [anon_sym_set] = ACTIONS(1245), - [anon_sym_declare] = ACTIONS(1245), - [anon_sym_public] = ACTIONS(1245), - [anon_sym_private] = ACTIONS(1245), - [anon_sym_protected] = ACTIONS(1245), - [anon_sym_module] = ACTIONS(1245), - [anon_sym_any] = ACTIONS(1245), - [anon_sym_number] = ACTIONS(1245), - [anon_sym_boolean] = ACTIONS(1245), - [anon_sym_string] = ACTIONS(1245), - [anon_sym_symbol] = ACTIONS(1245), - [anon_sym_interface] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [sym_readonly] = ACTIONS(1245), - [sym__automatic_semicolon] = ACTIONS(1251), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3755), + [sym_identifier] = ACTIONS(1916), + [anon_sym_export] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(1916), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_declare] = ACTIONS(1916), + [anon_sym_public] = ACTIONS(1916), + [anon_sym_private] = ACTIONS(1916), + [anon_sym_protected] = ACTIONS(1916), + [anon_sym_module] = ACTIONS(1916), + [anon_sym_any] = ACTIONS(1916), + [anon_sym_number] = ACTIONS(1916), + [anon_sym_boolean] = ACTIONS(1916), + [anon_sym_string] = ACTIONS(1916), + [anon_sym_symbol] = ACTIONS(1916), + [sym_readonly] = ACTIONS(1916), + [sym__automatic_semicolon] = ACTIONS(741), }, [574] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(2024), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1926), + [anon_sym_of] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [575] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_export] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_type] = ACTIONS(1207), - [anon_sym_typeof] = ACTIONS(1207), - [anon_sym_import] = ACTIONS(1207), - [anon_sym_var] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_await] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_try] = ACTIONS(1207), - [anon_sym_with] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_debugger] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_throw] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_class] = ACTIONS(1207), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(1207), - [anon_sym_new] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_void] = ACTIONS(1207), - [anon_sym_delete] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1205), - [sym_number] = ACTIONS(1205), - [sym_this] = ACTIONS(1207), - [sym_super] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_null] = ACTIONS(1207), - [sym_undefined] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_abstract] = ACTIONS(1207), - [anon_sym_get] = ACTIONS(1207), - [anon_sym_set] = ACTIONS(1207), - [anon_sym_declare] = ACTIONS(1207), - [anon_sym_public] = ACTIONS(1207), - [anon_sym_private] = ACTIONS(1207), - [anon_sym_protected] = ACTIONS(1207), - [anon_sym_module] = ACTIONS(1207), - [anon_sym_any] = ACTIONS(1207), - [anon_sym_number] = ACTIONS(1207), - [anon_sym_boolean] = ACTIONS(1207), - [anon_sym_string] = ACTIONS(1207), - [anon_sym_symbol] = ACTIONS(1207), - [anon_sym_interface] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [sym_readonly] = ACTIONS(1207), - [sym__automatic_semicolon] = ACTIONS(1213), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1951), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [576] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(2073), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(1634), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [577] = { - [sym__call_signature] = STATE(3782), - [sym_formal_parameters] = STATE(2823), - [sym_type_parameters] = STATE(3537), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1091), - [anon_sym_QMARK_DOT] = ACTIONS(2075), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_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), - [sym_readonly] = ACTIONS(1937), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [578] = { - [sym_else_clause] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2079), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2079), - [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(2081), - [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_yield] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [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_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2079), - [anon_sym_delete] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [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_abstract] = 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_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_interface] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [sym_readonly] = ACTIONS(2079), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [579] = { - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_identifier] = ACTIONS(1217), - [anon_sym_export] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_namespace] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [anon_sym_type] = ACTIONS(1217), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(1217), - [anon_sym_var] = ACTIONS(1217), - [anon_sym_let] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_await] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_try] = ACTIONS(1217), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_debugger] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_throw] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_SLASH] = ACTIONS(1217), - [anon_sym_class] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_function] = ACTIONS(1217), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1215), - [sym_number] = ACTIONS(1215), - [sym_this] = ACTIONS(1217), - [sym_super] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_null] = ACTIONS(1217), - [sym_undefined] = ACTIONS(1217), - [anon_sym_AT] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_abstract] = ACTIONS(1217), - [anon_sym_get] = ACTIONS(1217), - [anon_sym_set] = ACTIONS(1217), - [anon_sym_declare] = ACTIONS(1217), - [anon_sym_public] = ACTIONS(1217), - [anon_sym_private] = ACTIONS(1217), - [anon_sym_protected] = ACTIONS(1217), - [anon_sym_module] = ACTIONS(1217), - [anon_sym_any] = ACTIONS(1217), - [anon_sym_number] = ACTIONS(1217), - [anon_sym_boolean] = ACTIONS(1217), - [anon_sym_string] = ACTIONS(1217), - [anon_sym_symbol] = ACTIONS(1217), - [anon_sym_interface] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [sym_readonly] = ACTIONS(1217), - [sym__automatic_semicolon] = ACTIONS(1223), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [580] = { - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2085), - [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_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_finally] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [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(2083), - [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_abstract] = 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_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_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym_readonly] = ACTIONS(2085), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [581] = { - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [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), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_case] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2087), - [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_TILDE] = ACTIONS(2087), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2087), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2087), - [sym_number] = ACTIONS(2087), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym_readonly] = ACTIONS(2089), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [582] = { - [ts_builtin_sym_end] = ACTIONS(949), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_namespace] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_type] = ACTIONS(951), - [anon_sym_typeof] = ACTIONS(951), - [anon_sym_import] = ACTIONS(951), - [anon_sym_var] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_else] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_switch] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_await] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_try] = ACTIONS(951), - [anon_sym_with] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_debugger] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_throw] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_case] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_class] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_function] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(949), - [anon_sym_void] = ACTIONS(951), - [anon_sym_delete] = ACTIONS(951), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(949), - [sym_number] = ACTIONS(949), - [sym_this] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_true] = ACTIONS(951), - [sym_false] = ACTIONS(951), - [sym_null] = ACTIONS(951), - [sym_undefined] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(949), - [anon_sym_static] = ACTIONS(951), - [anon_sym_abstract] = ACTIONS(951), - [anon_sym_get] = ACTIONS(951), - [anon_sym_set] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(951), - [anon_sym_public] = ACTIONS(951), - [anon_sym_private] = ACTIONS(951), - [anon_sym_protected] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_any] = ACTIONS(951), - [anon_sym_number] = ACTIONS(951), - [anon_sym_boolean] = ACTIONS(951), - [anon_sym_string] = ACTIONS(951), - [anon_sym_symbol] = ACTIONS(951), - [anon_sym_interface] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [sym_readonly] = ACTIONS(951), + [sym_object] = STATE(3273), + [sym_array] = STATE(3275), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(1966), + [anon_sym_export] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(699), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_this] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(699), + [anon_sym_get] = ACTIONS(699), + [anon_sym_set] = ACTIONS(699), + [anon_sym_declare] = ACTIONS(699), + [anon_sym_public] = ACTIONS(699), + [anon_sym_private] = ACTIONS(699), + [anon_sym_protected] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), + [anon_sym_any] = ACTIONS(699), + [anon_sym_number] = ACTIONS(699), + [anon_sym_boolean] = ACTIONS(699), + [anon_sym_string] = ACTIONS(699), + [anon_sym_symbol] = ACTIONS(699), + [sym_readonly] = ACTIONS(699), }, [583] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), - [anon_sym_export] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_type] = ACTIONS(1255), - [anon_sym_typeof] = ACTIONS(1255), - [anon_sym_import] = ACTIONS(1255), - [anon_sym_var] = ACTIONS(1255), - [anon_sym_let] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_await] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_with] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_debugger] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_throw] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1255), - [anon_sym_class] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_function] = ACTIONS(1255), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_void] = ACTIONS(1255), - [anon_sym_delete] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1253), - [sym_number] = ACTIONS(1253), - [sym_this] = ACTIONS(1255), - [sym_super] = ACTIONS(1255), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [sym_null] = ACTIONS(1255), - [sym_undefined] = ACTIONS(1255), - [anon_sym_AT] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_abstract] = ACTIONS(1255), - [anon_sym_get] = ACTIONS(1255), - [anon_sym_set] = ACTIONS(1255), - [anon_sym_declare] = ACTIONS(1255), - [anon_sym_public] = ACTIONS(1255), - [anon_sym_private] = ACTIONS(1255), - [anon_sym_protected] = ACTIONS(1255), - [anon_sym_module] = ACTIONS(1255), - [anon_sym_any] = ACTIONS(1255), - [anon_sym_number] = ACTIONS(1255), - [anon_sym_boolean] = ACTIONS(1255), - [anon_sym_string] = ACTIONS(1255), - [anon_sym_symbol] = ACTIONS(1255), - [anon_sym_interface] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [sym_readonly] = ACTIONS(1255), - [sym__automatic_semicolon] = ACTIONS(1261), + [sym_object] = STATE(3288), + [sym_array] = STATE(3290), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(4316), + [sym_rest_parameter] = STATE(3702), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3546), + [sym_constructor_type] = STATE(3546), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3546), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3546), + [sym_intersection_type] = STATE(3546), + [sym_function_type] = STATE(3546), + [aux_sym_export_statement_repeat1] = STATE(2422), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1991), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1993), + [anon_sym_private] = ACTIONS(1993), + [anon_sym_protected] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1979), + [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), + [sym_readonly] = ACTIONS(1997), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [584] = { - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2091), - [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_TILDE] = ACTIONS(2091), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2091), - [sym_number] = ACTIONS(2091), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym_readonly] = ACTIONS(2093), + [sym__call_signature] = STATE(4320), + [sym_template_string] = STATE(1796), + [sym_arguments] = STATE(1796), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3675), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1999), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2003), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(2014), + [anon_sym_QMARK_DOT] = ACTIONS(2016), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [sym_readonly] = ACTIONS(2001), + [anon_sym_LBRACE_PIPE] = ACTIONS(741), }, [585] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1173), - [anon_sym_export] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_namespace] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_typeof] = ACTIONS(1173), - [anon_sym_import] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1171), - [anon_sym_await] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_debugger] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_yield] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_class] = ACTIONS(1173), - [anon_sym_async] = ACTIONS(1173), - [anon_sym_function] = ACTIONS(1173), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_void] = ACTIONS(1173), - [anon_sym_delete] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1171), - [sym_this] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [sym_null] = ACTIONS(1173), - [sym_undefined] = ACTIONS(1173), - [anon_sym_AT] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_abstract] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1173), - [anon_sym_number] = ACTIONS(1173), - [anon_sym_boolean] = ACTIONS(1173), - [anon_sym_string] = ACTIONS(1173), - [anon_sym_symbol] = ACTIONS(1173), - [anon_sym_interface] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [sym_readonly] = ACTIONS(1173), - [sym__automatic_semicolon] = ACTIONS(1179), + [sym_object] = STATE(3288), + [sym_array] = STATE(3290), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(4316), + [sym_rest_parameter] = STATE(3702), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3481), + [sym_constructor_type] = STATE(3481), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3481), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3481), + [sym_intersection_type] = STATE(3481), + [sym_function_type] = STATE(3481), + [aux_sym_export_statement_repeat1] = STATE(2422), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1991), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1993), + [anon_sym_private] = ACTIONS(1993), + [anon_sym_protected] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1979), + [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), + [sym_readonly] = ACTIONS(1997), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [586] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2097), - [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_RPAREN] = 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_LT] = ACTIONS(2095), - [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(2095), - [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_abstract] = 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_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_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym_readonly] = ACTIONS(2097), + [sym_object] = STATE(3288), + [sym_array] = STATE(3290), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(4316), + [sym_rest_parameter] = STATE(3702), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3616), + [sym_constructor_type] = STATE(3616), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3616), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3616), + [sym_intersection_type] = STATE(3616), + [sym_function_type] = STATE(3616), + [aux_sym_export_statement_repeat1] = STATE(2422), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1991), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1993), + [anon_sym_private] = ACTIONS(1993), + [anon_sym_protected] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1979), + [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), + [sym_readonly] = ACTIONS(1997), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [587] = { - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_namespace] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1265), - [anon_sym_typeof] = ACTIONS(1265), - [anon_sym_import] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(1265), - [anon_sym_let] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1265), - [anon_sym_with] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_debugger] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_yield] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_class] = ACTIONS(1265), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_function] = ACTIONS(1265), - [anon_sym_new] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_void] = ACTIONS(1265), - [anon_sym_delete] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1263), - [sym_number] = ACTIONS(1263), - [sym_this] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [sym_null] = ACTIONS(1265), - [sym_undefined] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_abstract] = ACTIONS(1265), - [anon_sym_get] = ACTIONS(1265), - [anon_sym_set] = ACTIONS(1265), - [anon_sym_declare] = ACTIONS(1265), - [anon_sym_public] = ACTIONS(1265), - [anon_sym_private] = ACTIONS(1265), - [anon_sym_protected] = ACTIONS(1265), - [anon_sym_module] = ACTIONS(1265), - [anon_sym_any] = ACTIONS(1265), - [anon_sym_number] = ACTIONS(1265), - [anon_sym_boolean] = ACTIONS(1265), - [anon_sym_string] = ACTIONS(1265), - [anon_sym_symbol] = ACTIONS(1265), - [anon_sym_interface] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [sym_readonly] = ACTIONS(1265), - [sym__automatic_semicolon] = ACTIONS(1271), + [sym__call_signature] = STATE(4452), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(2027), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1951), + [anon_sym_static] = 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_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_implements] = ACTIONS(706), + [sym_readonly] = ACTIONS(2023), }, [588] = { - [ts_builtin_sym_end] = ACTIONS(1151), - [sym_identifier] = ACTIONS(1153), - [anon_sym_export] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_type] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1153), - [anon_sym_import] = ACTIONS(1153), - [anon_sym_var] = ACTIONS(1153), - [anon_sym_let] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_await] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_debugger] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_yield] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1151), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1153), - [anon_sym_function] = ACTIONS(1153), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_void] = ACTIONS(1153), - [anon_sym_delete] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1151), - [sym_number] = ACTIONS(1151), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(1153), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_null] = ACTIONS(1153), - [sym_undefined] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_abstract] = ACTIONS(1153), - [anon_sym_get] = ACTIONS(1153), - [anon_sym_set] = ACTIONS(1153), - [anon_sym_declare] = ACTIONS(1153), - [anon_sym_public] = ACTIONS(1153), - [anon_sym_private] = ACTIONS(1153), - [anon_sym_protected] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), - [anon_sym_any] = ACTIONS(1153), - [anon_sym_number] = ACTIONS(1153), - [anon_sym_boolean] = ACTIONS(1153), - [anon_sym_string] = ACTIONS(1153), - [anon_sym_symbol] = ACTIONS(1153), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [sym_readonly] = ACTIONS(1153), - [sym__automatic_semicolon] = ACTIONS(1159), + [sym__call_signature] = STATE(4253), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(2029), + [anon_sym_export] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_get] = ACTIONS(2031), + [anon_sym_set] = ACTIONS(2031), + [anon_sym_declare] = ACTIONS(2031), + [anon_sym_public] = ACTIONS(2031), + [anon_sym_private] = ACTIONS(2031), + [anon_sym_protected] = ACTIONS(2031), + [anon_sym_module] = ACTIONS(2031), + [anon_sym_any] = ACTIONS(2031), + [anon_sym_number] = ACTIONS(2031), + [anon_sym_boolean] = ACTIONS(2031), + [anon_sym_string] = ACTIONS(2031), + [anon_sym_symbol] = ACTIONS(2031), + [sym_readonly] = ACTIONS(2031), }, [589] = { - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2101), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2101), - [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_finally] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [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(2099), - [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_abstract] = 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_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_interface] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [sym_readonly] = ACTIONS(2101), + [sym__call_signature] = STATE(4253), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(2029), + [anon_sym_export] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1951), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_get] = ACTIONS(2031), + [anon_sym_set] = ACTIONS(2031), + [anon_sym_declare] = ACTIONS(2031), + [anon_sym_public] = ACTIONS(2031), + [anon_sym_private] = ACTIONS(2031), + [anon_sym_protected] = ACTIONS(2031), + [anon_sym_module] = ACTIONS(2031), + [anon_sym_any] = ACTIONS(2031), + [anon_sym_number] = ACTIONS(2031), + [anon_sym_boolean] = ACTIONS(2031), + [anon_sym_string] = ACTIONS(2031), + [anon_sym_symbol] = ACTIONS(2031), + [sym_readonly] = ACTIONS(2031), }, [590] = { - [sym_statement_block] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), + [sym_object] = STATE(3273), + [sym_array] = STATE(3275), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(1966), + [anon_sym_export] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(699), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_this] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(699), + [anon_sym_get] = ACTIONS(699), + [anon_sym_set] = ACTIONS(699), + [anon_sym_declare] = ACTIONS(699), + [anon_sym_public] = ACTIONS(699), + [anon_sym_private] = ACTIONS(699), + [anon_sym_protected] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), + [anon_sym_any] = ACTIONS(699), + [anon_sym_number] = ACTIONS(699), + [anon_sym_boolean] = ACTIONS(699), + [anon_sym_string] = ACTIONS(699), + [anon_sym_symbol] = ACTIONS(699), + [sym_readonly] = ACTIONS(699), }, [591] = { - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [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_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym_readonly] = ACTIONS(2105), + [sym__call_signature] = STATE(4452), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(2027), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = 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_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_implements] = ACTIONS(706), + [sym_readonly] = ACTIONS(2023), }, [592] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_export] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_debugger] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_async] = ACTIONS(1183), - [anon_sym_function] = ACTIONS(1183), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1183), - [anon_sym_delete] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1181), - [sym_number] = ACTIONS(1181), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_null] = ACTIONS(1183), - [sym_undefined] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_get] = ACTIONS(1183), - [anon_sym_set] = ACTIONS(1183), - [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_any] = ACTIONS(1183), - [anon_sym_number] = ACTIONS(1183), - [anon_sym_boolean] = ACTIONS(1183), - [anon_sym_string] = ACTIONS(1183), - [anon_sym_symbol] = ACTIONS(1183), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [sym_readonly] = ACTIONS(1183), - [sym__automatic_semicolon] = ACTIONS(1189), + [sym_object] = STATE(3288), + [sym_array] = STATE(3290), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(4316), + [sym_rest_parameter] = STATE(3702), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3523), + [sym_constructor_type] = STATE(3523), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3523), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3523), + [sym_intersection_type] = STATE(3523), + [sym_function_type] = STATE(3523), + [aux_sym_export_statement_repeat1] = STATE(2422), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1991), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1993), + [anon_sym_private] = ACTIONS(1993), + [anon_sym_protected] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1979), + [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), + [sym_readonly] = ACTIONS(1997), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [593] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1235), - [anon_sym_export] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_namespace] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_type] = ACTIONS(1235), - [anon_sym_typeof] = ACTIONS(1235), - [anon_sym_import] = ACTIONS(1235), - [anon_sym_var] = ACTIONS(1235), - [anon_sym_let] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_try] = ACTIONS(1235), - [anon_sym_with] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_debugger] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_throw] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1235), - [anon_sym_yield] = ACTIONS(1235), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_class] = ACTIONS(1235), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1235), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_void] = ACTIONS(1235), - [anon_sym_delete] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1233), - [sym_number] = ACTIONS(1233), - [sym_this] = ACTIONS(1235), - [sym_super] = ACTIONS(1235), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [sym_null] = ACTIONS(1235), - [sym_undefined] = ACTIONS(1235), - [anon_sym_AT] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_abstract] = ACTIONS(1235), - [anon_sym_get] = ACTIONS(1235), - [anon_sym_set] = ACTIONS(1235), - [anon_sym_declare] = ACTIONS(1235), - [anon_sym_public] = ACTIONS(1235), - [anon_sym_private] = ACTIONS(1235), - [anon_sym_protected] = ACTIONS(1235), - [anon_sym_module] = ACTIONS(1235), - [anon_sym_any] = ACTIONS(1235), - [anon_sym_number] = ACTIONS(1235), - [anon_sym_boolean] = ACTIONS(1235), - [anon_sym_string] = ACTIONS(1235), - [anon_sym_symbol] = ACTIONS(1235), - [anon_sym_interface] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [sym_readonly] = ACTIONS(1235), - [sym__automatic_semicolon] = ACTIONS(1241), + [sym_object] = STATE(3288), + [sym_array] = STATE(3290), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(4316), + [sym_rest_parameter] = STATE(3702), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3570), + [sym_constructor_type] = STATE(3570), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3570), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3570), + [sym_intersection_type] = STATE(3570), + [sym_function_type] = STATE(3570), + [aux_sym_export_statement_repeat1] = STATE(2422), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1991), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1993), + [anon_sym_private] = ACTIONS(1993), + [anon_sym_protected] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1979), + [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), + [sym_readonly] = ACTIONS(1997), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [594] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_typeof] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(1131), - [anon_sym_let] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_try] = ACTIONS(1131), - [anon_sym_with] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_debugger] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_throw] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_yield] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_class] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(1131), - [anon_sym_new] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1131), - [anon_sym_delete] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1129), - [sym_number] = ACTIONS(1129), - [sym_this] = ACTIONS(1131), - [sym_super] = ACTIONS(1131), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [sym_null] = ACTIONS(1131), - [sym_undefined] = ACTIONS(1131), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_abstract] = ACTIONS(1131), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1131), - [anon_sym_declare] = ACTIONS(1131), - [anon_sym_public] = ACTIONS(1131), - [anon_sym_private] = ACTIONS(1131), - [anon_sym_protected] = ACTIONS(1131), - [anon_sym_module] = ACTIONS(1131), - [anon_sym_any] = ACTIONS(1131), - [anon_sym_number] = ACTIONS(1131), - [anon_sym_boolean] = ACTIONS(1131), - [anon_sym_string] = ACTIONS(1131), - [anon_sym_symbol] = ACTIONS(1131), - [anon_sym_interface] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [sym_readonly] = ACTIONS(1131), - [sym__automatic_semicolon] = ACTIONS(1137), + [sym__call_signature] = STATE(4253), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(2029), + [anon_sym_export] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_get] = ACTIONS(2031), + [anon_sym_set] = ACTIONS(2031), + [anon_sym_declare] = ACTIONS(2031), + [anon_sym_public] = ACTIONS(2031), + [anon_sym_private] = ACTIONS(2031), + [anon_sym_protected] = ACTIONS(2031), + [anon_sym_module] = ACTIONS(2031), + [anon_sym_any] = ACTIONS(2031), + [anon_sym_number] = ACTIONS(2031), + [anon_sym_boolean] = ACTIONS(2031), + [anon_sym_string] = ACTIONS(2031), + [anon_sym_symbol] = ACTIONS(2031), + [sym_readonly] = ACTIONS(2031), }, [595] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_default] = ACTIONS(1113), - [anon_sym_namespace] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_var] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_switch] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_debugger] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_throw] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_case] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_class] = ACTIONS(1113), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_delete] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1111), - [sym_this] = ACTIONS(1113), - [sym_super] = ACTIONS(1113), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_null] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1111), - [anon_sym_static] = ACTIONS(1113), - [anon_sym_abstract] = ACTIONS(1113), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1113), - [anon_sym_declare] = ACTIONS(1113), - [anon_sym_public] = ACTIONS(1113), - [anon_sym_private] = ACTIONS(1113), - [anon_sym_protected] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_any] = ACTIONS(1113), - [anon_sym_number] = ACTIONS(1113), - [anon_sym_boolean] = ACTIONS(1113), - [anon_sym_string] = ACTIONS(1113), - [anon_sym_symbol] = ACTIONS(1113), - [anon_sym_interface] = ACTIONS(1113), - [anon_sym_enum] = ACTIONS(1113), - [sym_readonly] = ACTIONS(1113), - [sym__automatic_semicolon] = ACTIONS(1119), + [sym__call_signature] = STATE(4320), + [sym_template_string] = STATE(1796), + [sym_arguments] = STATE(1796), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3675), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1999), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2046), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(2014), + [anon_sym_QMARK_DOT] = ACTIONS(2016), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [sym_readonly] = ACTIONS(2001), + [anon_sym_LBRACE_PIPE] = ACTIONS(741), }, [596] = { - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2109), - [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_LT] = ACTIONS(2107), - [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_TILDE] = ACTIONS(2107), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2107), - [sym_comment] = ACTIONS(3), - [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_abstract] = 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_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_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym_readonly] = ACTIONS(2109), + [sym_object] = STATE(3288), + [sym_array] = STATE(3290), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(4316), + [sym_rest_parameter] = STATE(3702), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3463), + [sym_constructor_type] = STATE(3463), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3463), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3463), + [sym_intersection_type] = STATE(3463), + [sym_function_type] = STATE(3463), + [aux_sym_export_statement_repeat1] = STATE(2422), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1991), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1993), + [anon_sym_private] = ACTIONS(1993), + [anon_sym_protected] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1979), + [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), + [sym_readonly] = ACTIONS(1997), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [597] = { - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2113), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_default] = ACTIONS(2113), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2113), - [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_LT] = ACTIONS(2111), - [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_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2113), - [anon_sym_delete] = ACTIONS(2113), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - [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_abstract] = 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_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_interface] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [sym_readonly] = ACTIONS(2113), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [598] = { - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2117), - [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_LT] = ACTIONS(2115), - [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_TILDE] = ACTIONS(2115), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [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_abstract] = 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_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_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym_readonly] = ACTIONS(2117), - }, - [599] = { - [sym_object] = STATE(3040), - [sym_array] = STATE(3043), - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3865), - [sym_nested_type_identifier] = STATE(2235), - [sym__type] = STATE(3289), - [sym_constructor_type] = STATE(3289), - [sym__primary_type] = STATE(3161), - [sym_infer_type] = STATE(3289), - [sym_conditional_type] = STATE(3161), - [sym_generic_type] = STATE(3161), - [sym_type_query] = STATE(3161), - [sym_index_type_query] = STATE(3161), - [sym_lookup_type] = STATE(3161), - [sym_literal_type] = STATE(3161), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(3161), - [sym_flow_maybe_type] = STATE(3161), - [sym_parenthesized_type] = STATE(3161), - [sym_predefined_type] = STATE(3161), - [sym_object_type] = STATE(3161), - [sym_type_parameters] = STATE(3474), - [sym_array_type] = STATE(3161), - [sym__tuple_type_body] = STATE(490), - [sym_tuple_type] = STATE(3161), - [sym_union_type] = STATE(3289), - [sym_intersection_type] = STATE(3289), - [sym_function_type] = STATE(3289), - [sym_identifier] = ACTIONS(967), - [anon_sym_export] = ACTIONS(969), + [sym_object] = STATE(3288), + [sym_array] = STATE(3290), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_decorator] = STATE(2545), + [sym_formal_parameters] = STATE(4316), + [sym_rest_parameter] = STATE(3702), + [sym_nested_type_identifier] = STATE(2555), + [sym_accessibility_modifier] = STATE(2546), + [sym_required_parameter] = STATE(3702), + [sym_optional_parameter] = STATE(3702), + [sym__parameter_name] = STATE(2940), + [sym__rest_identifier] = STATE(3578), + [sym__type] = STATE(3640), + [sym_constructor_type] = STATE(3640), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3640), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3640), + [sym_intersection_type] = STATE(3640), + [sym_function_type] = STATE(3640), + [aux_sym_export_statement_repeat1] = STATE(2422), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1979), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym_namespace] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(969), - [anon_sym_typeof] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(969), - [anon_sym_new] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1019), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(969), - [anon_sym_get] = ACTIONS(969), - [anon_sym_set] = ACTIONS(969), - [anon_sym_declare] = ACTIONS(969), - [anon_sym_public] = ACTIONS(969), - [anon_sym_private] = ACTIONS(969), - [anon_sym_protected] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_any] = ACTIONS(1023), - [anon_sym_number] = ACTIONS(1023), - [anon_sym_boolean] = ACTIONS(1023), - [anon_sym_string] = ACTIONS(1023), - [anon_sym_symbol] = ACTIONS(1023), - [sym_readonly] = ACTIONS(1025), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(1991), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1993), + [anon_sym_private] = ACTIONS(1993), + [anon_sym_protected] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1979), + [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), + [sym_readonly] = ACTIONS(1997), [anon_sym_infer] = ACTIONS(521), - [anon_sym_keyof] = ACTIONS(591), + [anon_sym_keyof] = ACTIONS(581), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, + [599] = { + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), + }, [600] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2121), - [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_LT] = ACTIONS(2119), - [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(2119), - [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_abstract] = 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_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_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [sym_readonly] = ACTIONS(2121), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [601] = { - [ts_builtin_sym_end] = ACTIONS(2123), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2123), - [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_TILDE] = ACTIONS(2123), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2123), - [sym_number] = ACTIONS(2123), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym_readonly] = ACTIONS(2125), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(2054), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [602] = { - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2129), - [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_LT] = ACTIONS(2127), - [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(2127), - [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_abstract] = 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_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_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym_readonly] = ACTIONS(2129), + [sym__call_signature] = STATE(4460), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1920), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(2056), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1922), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1922), + [anon_sym_private] = ACTIONS(1922), + [anon_sym_protected] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_any] = ACTIONS(1922), + [anon_sym_number] = ACTIONS(1922), + [anon_sym_boolean] = ACTIONS(1922), + [anon_sym_string] = ACTIONS(1922), + [anon_sym_symbol] = ACTIONS(1922), + [sym_readonly] = ACTIONS(1922), + [sym__automatic_semicolon] = ACTIONS(741), }, [603] = { - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_default] = ACTIONS(2133), - [anon_sym_namespace] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2133), - [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_LT] = ACTIONS(2131), - [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(2131), - [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_abstract] = 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_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_interface] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [sym_readonly] = ACTIONS(2133), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3588), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2058), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [604] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2137), - [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_LT] = ACTIONS(2135), - [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(2135), - [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_abstract] = 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_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_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym_readonly] = ACTIONS(2137), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(1916), + [anon_sym_export] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_this] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(1916), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_declare] = ACTIONS(1916), + [anon_sym_public] = ACTIONS(1916), + [anon_sym_private] = ACTIONS(1916), + [anon_sym_protected] = ACTIONS(1916), + [anon_sym_module] = ACTIONS(1916), + [anon_sym_any] = ACTIONS(1916), + [anon_sym_number] = ACTIONS(1916), + [anon_sym_boolean] = ACTIONS(1916), + [anon_sym_string] = ACTIONS(1916), + [anon_sym_symbol] = ACTIONS(1916), + [sym_readonly] = ACTIONS(1916), }, [605] = { - [ts_builtin_sym_end] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [anon_sym_export] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_typeof] = ACTIONS(2141), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_switch] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_with] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_debugger] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_case] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [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_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2141), - [anon_sym_delete] = ACTIONS(2141), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_this] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_true] = ACTIONS(2141), - [sym_false] = ACTIONS(2141), - [sym_null] = ACTIONS(2141), - [sym_undefined] = ACTIONS(2141), - [anon_sym_AT] = ACTIONS(2139), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_abstract] = ACTIONS(2141), - [anon_sym_get] = ACTIONS(2141), - [anon_sym_set] = ACTIONS(2141), - [anon_sym_declare] = ACTIONS(2141), - [anon_sym_public] = ACTIONS(2141), - [anon_sym_private] = ACTIONS(2141), - [anon_sym_protected] = ACTIONS(2141), - [anon_sym_module] = ACTIONS(2141), - [anon_sym_any] = ACTIONS(2141), - [anon_sym_number] = ACTIONS(2141), - [anon_sym_boolean] = ACTIONS(2141), - [anon_sym_string] = ACTIONS(2141), - [anon_sym_symbol] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [sym_readonly] = ACTIONS(2141), + [sym_type_arguments] = STATE(530), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2062), + [anon_sym_export] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_namespace] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2062), + [anon_sym_typeof] = ACTIONS(2062), + [anon_sym_import] = ACTIONS(2062), + [anon_sym_var] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_else] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_switch] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_await] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [anon_sym_with] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_debugger] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_throw] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2062), + [anon_sym_yield] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_SLASH] = ACTIONS(2062), + [anon_sym_DOT] = ACTIONS(2064), + [anon_sym_class] = ACTIONS(2062), + [anon_sym_async] = ACTIONS(2062), + [anon_sym_function] = ACTIONS(2062), + [anon_sym_new] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2060), + [anon_sym_void] = ACTIONS(2062), + [anon_sym_delete] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2060), + [sym_number] = ACTIONS(2060), + [sym_this] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_true] = ACTIONS(2062), + [sym_false] = ACTIONS(2062), + [sym_null] = ACTIONS(2062), + [sym_undefined] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_abstract] = ACTIONS(2062), + [anon_sym_get] = ACTIONS(2062), + [anon_sym_set] = ACTIONS(2062), + [anon_sym_declare] = ACTIONS(2062), + [anon_sym_public] = ACTIONS(2062), + [anon_sym_private] = ACTIONS(2062), + [anon_sym_protected] = ACTIONS(2062), + [anon_sym_module] = ACTIONS(2062), + [anon_sym_any] = ACTIONS(2062), + [anon_sym_number] = ACTIONS(2062), + [anon_sym_boolean] = ACTIONS(2062), + [anon_sym_string] = ACTIONS(2062), + [anon_sym_symbol] = ACTIONS(2062), + [anon_sym_interface] = ACTIONS(2062), + [anon_sym_extends] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [sym_readonly] = ACTIONS(2062), }, [606] = { - [ts_builtin_sym_end] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [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_TILDE] = ACTIONS(2143), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [anon_sym_SQUOTE] = ACTIONS(2143), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2143), - [sym_number] = ACTIONS(2143), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym_readonly] = ACTIONS(2145), + [sym_type_arguments] = STATE(530), + [ts_builtin_sym_end] = ACTIONS(2066), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2064), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2066), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2066), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2066), + [sym_number] = ACTIONS(2066), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_extends] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym_readonly] = ACTIONS(2068), }, [607] = { - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [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_TILDE] = ACTIONS(2147), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2147), - [sym_number] = ACTIONS(2147), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym_readonly] = ACTIONS(2149), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_of] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2153), - [anon_sym_export] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_typeof] = ACTIONS(2153), - [anon_sym_import] = ACTIONS(2153), - [anon_sym_var] = ACTIONS(2153), - [anon_sym_let] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_switch] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_with] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_debugger] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_throw] = ACTIONS(2153), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_case] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [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_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2153), - [anon_sym_delete] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_this] = ACTIONS(2153), - [sym_super] = ACTIONS(2153), - [sym_true] = ACTIONS(2153), - [sym_false] = ACTIONS(2153), - [sym_null] = ACTIONS(2153), - [sym_undefined] = ACTIONS(2153), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_abstract] = ACTIONS(2153), - [anon_sym_get] = ACTIONS(2153), - [anon_sym_set] = ACTIONS(2153), - [anon_sym_declare] = ACTIONS(2153), - [anon_sym_public] = ACTIONS(2153), - [anon_sym_private] = ACTIONS(2153), - [anon_sym_protected] = ACTIONS(2153), - [anon_sym_module] = ACTIONS(2153), - [anon_sym_any] = ACTIONS(2153), - [anon_sym_number] = ACTIONS(2153), - [anon_sym_boolean] = ACTIONS(2153), - [anon_sym_string] = ACTIONS(2153), - [anon_sym_symbol] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [sym_readonly] = ACTIONS(2153), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(1916), + [anon_sym_export] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_this] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(1916), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_declare] = ACTIONS(1916), + [anon_sym_public] = ACTIONS(1916), + [anon_sym_private] = ACTIONS(1916), + [anon_sym_protected] = ACTIONS(1916), + [anon_sym_module] = ACTIONS(1916), + [anon_sym_any] = ACTIONS(1916), + [anon_sym_number] = ACTIONS(1916), + [anon_sym_boolean] = ACTIONS(1916), + [anon_sym_string] = ACTIONS(1916), + [anon_sym_symbol] = ACTIONS(1916), + [sym_readonly] = ACTIONS(1916), }, [609] = { - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2157), - [anon_sym_export] = ACTIONS(2157), - [anon_sym_default] = ACTIONS(2157), - [anon_sym_namespace] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2157), - [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_LT] = ACTIONS(2155), - [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(2155), - [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_abstract] = 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_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_interface] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [sym_readonly] = ACTIONS(2157), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1926), + [anon_sym_of] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [610] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1277), - [anon_sym_export] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym_import] = ACTIONS(1277), - [anon_sym_var] = ACTIONS(1277), - [anon_sym_let] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_try] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_debugger] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_throw] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_yield] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1277), - [anon_sym_class] = ACTIONS(1277), - [anon_sym_async] = ACTIONS(1277), - [anon_sym_function] = ACTIONS(1277), - [anon_sym_new] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_void] = ACTIONS(1277), - [anon_sym_delete] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1275), - [sym_number] = ACTIONS(1275), - [sym_this] = ACTIONS(1277), - [sym_super] = ACTIONS(1277), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [sym_null] = ACTIONS(1277), - [sym_undefined] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_abstract] = ACTIONS(1277), - [anon_sym_get] = ACTIONS(1277), - [anon_sym_set] = ACTIONS(1277), - [anon_sym_declare] = ACTIONS(1277), - [anon_sym_public] = ACTIONS(1277), - [anon_sym_private] = ACTIONS(1277), - [anon_sym_protected] = ACTIONS(1277), - [anon_sym_module] = ACTIONS(1277), - [anon_sym_any] = ACTIONS(1277), - [anon_sym_number] = ACTIONS(1277), - [anon_sym_boolean] = ACTIONS(1277), - [anon_sym_string] = ACTIONS(1277), - [anon_sym_symbol] = ACTIONS(1277), - [anon_sym_interface] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [sym_readonly] = ACTIONS(1277), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1939), + [sym_arguments] = STATE(1939), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3586), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2078), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2161), - [anon_sym_export] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_typeof] = ACTIONS(2161), - [anon_sym_import] = ACTIONS(2161), - [anon_sym_var] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_with] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_debugger] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [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_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2161), - [anon_sym_delete] = ACTIONS(2161), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_this] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_true] = ACTIONS(2161), - [sym_false] = ACTIONS(2161), - [sym_null] = ACTIONS(2161), - [sym_undefined] = ACTIONS(2161), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_abstract] = ACTIONS(2161), - [anon_sym_get] = ACTIONS(2161), - [anon_sym_set] = ACTIONS(2161), - [anon_sym_declare] = ACTIONS(2161), - [anon_sym_public] = ACTIONS(2161), - [anon_sym_private] = ACTIONS(2161), - [anon_sym_protected] = ACTIONS(2161), - [anon_sym_module] = ACTIONS(2161), - [anon_sym_any] = ACTIONS(2161), - [anon_sym_number] = ACTIONS(2161), - [anon_sym_boolean] = ACTIONS(2161), - [anon_sym_string] = ACTIONS(2161), - [anon_sym_symbol] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [sym_readonly] = ACTIONS(2161), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2165), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(2165), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_typeof] = ACTIONS(2165), - [anon_sym_import] = ACTIONS(2165), - [anon_sym_var] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_with] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_debugger] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_throw] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_case] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [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_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2165), - [anon_sym_delete] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_this] = ACTIONS(2165), - [sym_super] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [sym_null] = ACTIONS(2165), - [sym_undefined] = ACTIONS(2165), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_get] = ACTIONS(2165), - [anon_sym_set] = ACTIONS(2165), - [anon_sym_declare] = ACTIONS(2165), - [anon_sym_public] = ACTIONS(2165), - [anon_sym_private] = ACTIONS(2165), - [anon_sym_protected] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_any] = ACTIONS(2165), - [anon_sym_number] = ACTIONS(2165), - [anon_sym_boolean] = ACTIONS(2165), - [anon_sym_string] = ACTIONS(2165), - [anon_sym_symbol] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [sym_readonly] = ACTIONS(2165), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(2086), + [sym_arguments] = STATE(2086), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3568), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2084), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [613] = { - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2169), - [anon_sym_export] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_typeof] = ACTIONS(2169), - [anon_sym_import] = ACTIONS(2169), - [anon_sym_var] = ACTIONS(2169), - [anon_sym_let] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [anon_sym_with] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_debugger] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_throw] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [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_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2169), - [anon_sym_delete] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_this] = ACTIONS(2169), - [sym_super] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_null] = ACTIONS(2169), - [sym_undefined] = ACTIONS(2169), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_abstract] = ACTIONS(2169), - [anon_sym_get] = ACTIONS(2169), - [anon_sym_set] = ACTIONS(2169), - [anon_sym_declare] = ACTIONS(2169), - [anon_sym_public] = ACTIONS(2169), - [anon_sym_private] = ACTIONS(2169), - [anon_sym_protected] = ACTIONS(2169), - [anon_sym_module] = ACTIONS(2169), - [anon_sym_any] = ACTIONS(2169), - [anon_sym_number] = ACTIONS(2169), - [anon_sym_boolean] = ACTIONS(2169), - [anon_sym_string] = ACTIONS(2169), - [anon_sym_symbol] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [sym_readonly] = ACTIONS(2169), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(2039), + [sym_arguments] = STATE(2039), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3587), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2088), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [614] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_import] = ACTIONS(1227), - [anon_sym_var] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_await] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_with] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_debugger] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_throw] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_yield] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_class] = ACTIONS(1227), - [anon_sym_async] = ACTIONS(1227), - [anon_sym_function] = ACTIONS(1227), - [anon_sym_new] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1227), - [anon_sym_delete] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1225), - [sym_number] = ACTIONS(1225), - [sym_this] = ACTIONS(1227), - [sym_super] = ACTIONS(1227), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_undefined] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_abstract] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_interface] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [sym_readonly] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [anon_sym_export] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_namespace] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_typeof] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_var] = ACTIONS(623), + [anon_sym_let] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(621), + [anon_sym_else] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(623), + [anon_sym_try] = ACTIONS(623), + [anon_sym_with] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_debugger] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_throw] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_case] = ACTIONS(623), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(623), + [anon_sym_function] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_void] = ACTIONS(623), + [anon_sym_delete] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(621), + [sym_this] = ACTIONS(623), + [sym_super] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_static] = ACTIONS(623), + [anon_sym_abstract] = ACTIONS(623), + [anon_sym_get] = ACTIONS(623), + [anon_sym_set] = ACTIONS(623), + [anon_sym_declare] = ACTIONS(623), + [anon_sym_public] = ACTIONS(623), + [anon_sym_private] = ACTIONS(623), + [anon_sym_protected] = ACTIONS(623), + [anon_sym_module] = ACTIONS(623), + [anon_sym_any] = ACTIONS(623), + [anon_sym_number] = ACTIONS(623), + [anon_sym_boolean] = ACTIONS(623), + [anon_sym_string] = ACTIONS(623), + [anon_sym_symbol] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_extends] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [sym_readonly] = ACTIONS(623), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2173), - [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_LT] = ACTIONS(2171), - [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_TILDE] = ACTIONS(2171), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [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_abstract] = 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_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_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym_readonly] = ACTIONS(2173), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(2048), + [sym_arguments] = STATE(2048), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3461), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2092), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [616] = { - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_export] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_typeof] = ACTIONS(2177), - [anon_sym_import] = ACTIONS(2177), - [anon_sym_var] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_with] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_debugger] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_throw] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [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_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2177), - [anon_sym_delete] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_this] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_null] = ACTIONS(2177), - [sym_undefined] = ACTIONS(2177), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_abstract] = ACTIONS(2177), - [anon_sym_get] = ACTIONS(2177), - [anon_sym_set] = ACTIONS(2177), - [anon_sym_declare] = ACTIONS(2177), - [anon_sym_public] = ACTIONS(2177), - [anon_sym_private] = ACTIONS(2177), - [anon_sym_protected] = ACTIONS(2177), - [anon_sym_module] = ACTIONS(2177), - [anon_sym_any] = ACTIONS(2177), - [anon_sym_number] = ACTIONS(2177), - [anon_sym_boolean] = ACTIONS(2177), - [anon_sym_string] = ACTIONS(2177), - [anon_sym_symbol] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [sym_readonly] = ACTIONS(2177), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(118), + [sym_arguments] = STATE(118), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3495), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2096), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [617] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2181), - [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_LT] = ACTIONS(2179), - [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(2179), - [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_abstract] = 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_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_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym_readonly] = ACTIONS(2181), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1733), + [sym_arguments] = STATE(1733), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3615), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2102), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_typeof] = ACTIONS(2185), - [anon_sym_import] = ACTIONS(2185), - [anon_sym_var] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_switch] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_do] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_with] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_debugger] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_throw] = ACTIONS(2185), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [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_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2185), - [anon_sym_delete] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_this] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_null] = ACTIONS(2185), - [sym_undefined] = ACTIONS(2185), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_abstract] = ACTIONS(2185), - [anon_sym_get] = ACTIONS(2185), - [anon_sym_set] = ACTIONS(2185), - [anon_sym_declare] = ACTIONS(2185), - [anon_sym_public] = ACTIONS(2185), - [anon_sym_private] = ACTIONS(2185), - [anon_sym_protected] = ACTIONS(2185), - [anon_sym_module] = ACTIONS(2185), - [anon_sym_any] = ACTIONS(2185), - [anon_sym_number] = ACTIONS(2185), - [anon_sym_boolean] = ACTIONS(2185), - [anon_sym_string] = ACTIONS(2185), - [anon_sym_symbol] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [sym_readonly] = ACTIONS(2185), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1597), + [sym_arguments] = STATE(1597), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3513), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2106), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2189), - [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), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2187), - [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_TILDE] = ACTIONS(2187), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2187), - [sym_number] = ACTIONS(2187), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym_readonly] = ACTIONS(2189), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_namespace] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_COMMA] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_type] = ACTIONS(1084), + [anon_sym_typeof] = ACTIONS(1084), + [anon_sym_import] = ACTIONS(1084), + [anon_sym_var] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_with] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_debugger] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_throw] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_catch] = ACTIONS(1084), + [anon_sym_finally] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(1084), + [anon_sym_new] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1084), + [anon_sym_delete] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [sym_this] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_undefined] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_abstract] = ACTIONS(1084), + [anon_sym_get] = ACTIONS(1084), + [anon_sym_set] = ACTIONS(1084), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1084), + [anon_sym_private] = ACTIONS(1084), + [anon_sym_protected] = ACTIONS(1084), + [anon_sym_module] = ACTIONS(1084), + [anon_sym_any] = ACTIONS(1084), + [anon_sym_number] = ACTIONS(1084), + [anon_sym_boolean] = ACTIONS(1084), + [anon_sym_string] = ACTIONS(1084), + [anon_sym_symbol] = ACTIONS(1084), + [anon_sym_interface] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [sym_readonly] = ACTIONS(1084), + [sym__automatic_semicolon] = ACTIONS(1090), }, [620] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [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_TILDE] = ACTIONS(2191), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2191), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2191), - [sym_number] = ACTIONS(2191), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym_readonly] = ACTIONS(2193), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1597), + [sym_arguments] = STATE(1597), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3513), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2106), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [621] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [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_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym_readonly] = ACTIONS(2197), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1646), + [sym_arguments] = STATE(1646), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3649), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2108), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [622] = { - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2201), - [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_LT] = ACTIONS(2199), - [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_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2201), - [anon_sym_delete] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [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_abstract] = 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_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_interface] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [sym_readonly] = ACTIONS(2201), + [sym_catch_clause] = STATE(644), + [sym_finally_clause] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2112), + [anon_sym_export] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2112), + [anon_sym_typeof] = ACTIONS(2112), + [anon_sym_import] = ACTIONS(2112), + [anon_sym_var] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_with] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_debugger] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_throw] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_catch] = ACTIONS(2114), + [anon_sym_finally] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_async] = ACTIONS(2112), + [anon_sym_function] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2112), + [anon_sym_delete] = ACTIONS(2112), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_this] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [sym_null] = ACTIONS(2112), + [sym_undefined] = ACTIONS(2112), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_abstract] = ACTIONS(2112), + [anon_sym_get] = ACTIONS(2112), + [anon_sym_set] = ACTIONS(2112), + [anon_sym_declare] = ACTIONS(2112), + [anon_sym_public] = ACTIONS(2112), + [anon_sym_private] = ACTIONS(2112), + [anon_sym_protected] = ACTIONS(2112), + [anon_sym_module] = ACTIONS(2112), + [anon_sym_any] = ACTIONS(2112), + [anon_sym_number] = ACTIONS(2112), + [anon_sym_boolean] = ACTIONS(2112), + [anon_sym_string] = ACTIONS(2112), + [anon_sym_symbol] = ACTIONS(2112), + [anon_sym_interface] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [sym_readonly] = ACTIONS(2112), }, [623] = { - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_identifier] = ACTIONS(1149), - [anon_sym_export] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_namespace] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_type] = ACTIONS(1149), - [anon_sym_typeof] = ACTIONS(1149), - [anon_sym_import] = ACTIONS(1149), - [anon_sym_var] = ACTIONS(1149), - [anon_sym_let] = ACTIONS(1149), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1147), - [anon_sym_await] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(1149), - [anon_sym_with] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_debugger] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_throw] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(1149), - [anon_sym_class] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1149), - [anon_sym_function] = ACTIONS(1149), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_void] = ACTIONS(1149), - [anon_sym_delete] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1147), - [sym_number] = ACTIONS(1147), - [sym_this] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_abstract] = ACTIONS(1149), - [anon_sym_get] = ACTIONS(1149), - [anon_sym_set] = ACTIONS(1149), - [anon_sym_declare] = ACTIONS(1149), - [anon_sym_public] = ACTIONS(1149), - [anon_sym_private] = ACTIONS(1149), - [anon_sym_protected] = ACTIONS(1149), - [anon_sym_module] = ACTIONS(1149), - [anon_sym_any] = ACTIONS(1149), - [anon_sym_number] = ACTIONS(1149), - [anon_sym_boolean] = ACTIONS(1149), - [anon_sym_string] = ACTIONS(1149), - [anon_sym_symbol] = ACTIONS(1149), - [anon_sym_interface] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [sym_readonly] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_var] = ACTIONS(890), + [anon_sym_let] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_else] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_await] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_with] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_debugger] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_case] = ACTIONS(890), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(890), + [anon_sym_function] = ACTIONS(890), + [anon_sym_new] = ACTIONS(890), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_void] = ACTIONS(890), + [anon_sym_delete] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [anon_sym_SQUOTE] = ACTIONS(888), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(888), + [sym_number] = ACTIONS(888), + [sym_this] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_undefined] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_static] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_extends] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [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_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym_readonly] = ACTIONS(2205), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3593), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [625] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_typeof] = ACTIONS(2209), - [anon_sym_import] = ACTIONS(2209), - [anon_sym_var] = ACTIONS(2209), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_with] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_debugger] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_throw] = ACTIONS(2209), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [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_TILDE] = ACTIONS(2207), - [anon_sym_void] = ACTIONS(2209), - [anon_sym_delete] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2207), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2207), - [sym_number] = ACTIONS(2207), - [sym_this] = ACTIONS(2209), - [sym_super] = ACTIONS(2209), - [sym_true] = ACTIONS(2209), - [sym_false] = ACTIONS(2209), - [sym_null] = ACTIONS(2209), - [sym_undefined] = ACTIONS(2209), - [anon_sym_AT] = ACTIONS(2207), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_abstract] = ACTIONS(2209), - [anon_sym_get] = ACTIONS(2209), - [anon_sym_set] = ACTIONS(2209), - [anon_sym_declare] = ACTIONS(2209), - [anon_sym_public] = ACTIONS(2209), - [anon_sym_private] = ACTIONS(2209), - [anon_sym_protected] = ACTIONS(2209), - [anon_sym_module] = ACTIONS(2209), - [anon_sym_any] = ACTIONS(2209), - [anon_sym_number] = ACTIONS(2209), - [anon_sym_boolean] = ACTIONS(2209), - [anon_sym_string] = ACTIONS(2209), - [anon_sym_symbol] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [sym_readonly] = ACTIONS(2209), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1799), + [sym_arguments] = STATE(1799), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3527), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2121), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [626] = { - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2213), - [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_LT] = ACTIONS(2211), - [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(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [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_abstract] = 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_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_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym_readonly] = ACTIONS(2213), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1646), + [sym_arguments] = STATE(1646), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3649), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2108), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_export] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2217), - [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_LT] = ACTIONS(2215), - [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(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [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_abstract] = 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_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_interface] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [sym_readonly] = ACTIONS(2217), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_catch] = ACTIONS(1208), + [anon_sym_finally] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), + [sym__automatic_semicolon] = ACTIONS(2123), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2221), - [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_LT] = ACTIONS(2219), - [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(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2219), - [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_abstract] = 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_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_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_readonly] = ACTIONS(2221), + [sym_type_arguments] = STATE(531), + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2127), + [anon_sym_export] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2127), + [anon_sym_namespace] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_typeof] = ACTIONS(2127), + [anon_sym_import] = ACTIONS(2127), + [anon_sym_var] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_do] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_debugger] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_throw] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2127), + [anon_sym_yield] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2127), + [anon_sym_class] = ACTIONS(2127), + [anon_sym_async] = ACTIONS(2127), + [anon_sym_function] = ACTIONS(2127), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2127), + [anon_sym_delete] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_this] = ACTIONS(2127), + [sym_super] = ACTIONS(2127), + [sym_true] = ACTIONS(2127), + [sym_false] = ACTIONS(2127), + [sym_null] = ACTIONS(2127), + [sym_undefined] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2127), + [anon_sym_abstract] = ACTIONS(2127), + [anon_sym_get] = ACTIONS(2127), + [anon_sym_set] = ACTIONS(2127), + [anon_sym_declare] = ACTIONS(2127), + [anon_sym_public] = ACTIONS(2127), + [anon_sym_private] = ACTIONS(2127), + [anon_sym_protected] = ACTIONS(2127), + [anon_sym_module] = ACTIONS(2127), + [anon_sym_any] = ACTIONS(2127), + [anon_sym_number] = ACTIONS(2127), + [anon_sym_boolean] = ACTIONS(2127), + [anon_sym_string] = ACTIONS(2127), + [anon_sym_symbol] = ACTIONS(2127), + [anon_sym_interface] = ACTIONS(2127), + [anon_sym_extends] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [sym_readonly] = ACTIONS(2127), }, [629] = { - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2225), - [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_LT] = ACTIONS(2223), - [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(2223), - [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_abstract] = 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_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_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym_readonly] = ACTIONS(2225), + [sym__call_signature] = STATE(4370), + [sym_template_string] = STATE(1796), + [sym_arguments] = STATE(1796), + [sym_formal_parameters] = STATE(3366), + [sym_call_type_arguments] = STATE(3675), + [sym_type_parameters] = STATE(4013), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(2132), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, [630] = { - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2229), - [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_LT] = ACTIONS(2227), - [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(2227), - [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_abstract] = 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_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_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym_readonly] = ACTIONS(2229), + [sym_type_arguments] = STATE(531), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_namespace] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_import] = ACTIONS(1894), + [anon_sym_var] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_await] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_with] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_debugger] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_throw] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_class] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1894), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1892), + [anon_sym_void] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_number] = ACTIONS(1892), + [sym_this] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_true] = ACTIONS(1894), + [sym_false] = ACTIONS(1894), + [sym_null] = ACTIONS(1894), + [sym_undefined] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_abstract] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(1894), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1894), + [anon_sym_private] = ACTIONS(1894), + [anon_sym_protected] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_any] = ACTIONS(1894), + [anon_sym_number] = ACTIONS(1894), + [anon_sym_boolean] = ACTIONS(1894), + [anon_sym_string] = ACTIONS(1894), + [anon_sym_symbol] = ACTIONS(1894), + [anon_sym_interface] = ACTIONS(1894), + [anon_sym_extends] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [sym_readonly] = ACTIONS(1894), }, [631] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2233), - [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_LT] = ACTIONS(2231), - [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(2231), - [anon_sym_DQUOTE] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2231), - [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_abstract] = 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_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_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [sym_readonly] = ACTIONS(2233), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_catch] = ACTIONS(1208), + [anon_sym_finally] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), }, [632] = { - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [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_LT] = ACTIONS(2235), - [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(2235), - [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_abstract] = 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_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_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym_readonly] = ACTIONS(2237), + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2136), + [anon_sym_export] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2136), + [anon_sym_typeof] = ACTIONS(2136), + [anon_sym_import] = ACTIONS(2136), + [anon_sym_var] = ACTIONS(2136), + [anon_sym_let] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [anon_sym_with] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_debugger] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_throw] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2136), + [anon_sym_yield] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_async] = ACTIONS(2136), + [anon_sym_function] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_this] = ACTIONS(2136), + [sym_super] = ACTIONS(2136), + [sym_true] = ACTIONS(2136), + [sym_false] = ACTIONS(2136), + [sym_null] = ACTIONS(2136), + [sym_undefined] = ACTIONS(2136), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_abstract] = ACTIONS(2136), + [anon_sym_get] = ACTIONS(2136), + [anon_sym_set] = ACTIONS(2136), + [anon_sym_declare] = ACTIONS(2136), + [anon_sym_public] = ACTIONS(2136), + [anon_sym_private] = ACTIONS(2136), + [anon_sym_protected] = ACTIONS(2136), + [anon_sym_module] = ACTIONS(2136), + [anon_sym_any] = ACTIONS(2136), + [anon_sym_number] = ACTIONS(2136), + [anon_sym_boolean] = ACTIONS(2136), + [anon_sym_string] = ACTIONS(2136), + [anon_sym_symbol] = ACTIONS(2136), + [anon_sym_interface] = ACTIONS(2136), + [anon_sym_extends] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2136), + [sym_readonly] = ACTIONS(2136), }, [633] = { - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2241), - [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_LT] = ACTIONS(2239), - [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(2239), - [anon_sym_DQUOTE] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [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_abstract] = 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_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_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym_readonly] = ACTIONS(2241), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_typeof] = ACTIONS(1186), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_var] = ACTIONS(1186), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_await] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_try] = ACTIONS(1186), + [anon_sym_with] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_debugger] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_throw] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_SLASH] = ACTIONS(1186), + [anon_sym_class] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1186), + [anon_sym_function] = ACTIONS(1186), + [anon_sym_new] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_void] = ACTIONS(1186), + [anon_sym_delete] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_number] = ACTIONS(1184), + [sym_this] = ACTIONS(1186), + [sym_super] = ACTIONS(1186), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [sym_undefined] = ACTIONS(1186), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_abstract] = ACTIONS(1186), + [anon_sym_get] = ACTIONS(1186), + [anon_sym_set] = ACTIONS(1186), + [anon_sym_declare] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(1186), + [anon_sym_private] = ACTIONS(1186), + [anon_sym_protected] = ACTIONS(1186), + [anon_sym_module] = ACTIONS(1186), + [anon_sym_any] = ACTIONS(1186), + [anon_sym_number] = ACTIONS(1186), + [anon_sym_boolean] = ACTIONS(1186), + [anon_sym_string] = ACTIONS(1186), + [anon_sym_symbol] = ACTIONS(1186), + [anon_sym_interface] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [sym_readonly] = ACTIONS(1186), + [anon_sym_PIPE_RBRACE] = ACTIONS(1184), + [sym__automatic_semicolon] = ACTIONS(1184), }, [634] = { - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2245), - [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_LT] = ACTIONS(2243), - [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(2243), - [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_abstract] = 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_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_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [sym_readonly] = ACTIONS(2245), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_await] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_try] = ACTIONS(1204), + [anon_sym_with] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_debugger] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_throw] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_function] = ACTIONS(1204), + [anon_sym_new] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_void] = ACTIONS(1204), + [anon_sym_delete] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1202), + [sym_number] = ACTIONS(1202), + [sym_this] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), + [sym_undefined] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_get] = ACTIONS(1204), + [anon_sym_set] = ACTIONS(1204), + [anon_sym_declare] = ACTIONS(1204), + [anon_sym_public] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_protected] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(1204), + [anon_sym_any] = ACTIONS(1204), + [anon_sym_number] = ACTIONS(1204), + [anon_sym_boolean] = ACTIONS(1204), + [anon_sym_string] = ACTIONS(1204), + [anon_sym_symbol] = ACTIONS(1204), + [anon_sym_interface] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [sym_readonly] = ACTIONS(1204), + [anon_sym_PIPE_RBRACE] = ACTIONS(1202), + [sym__automatic_semicolon] = ACTIONS(1202), }, [635] = { - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2249), - [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_LT] = ACTIONS(2247), - [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(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2247), - [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_abstract] = 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_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_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [sym_readonly] = ACTIONS(2249), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_namespace] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_typeof] = ACTIONS(2146), + [anon_sym_import] = ACTIONS(2146), + [anon_sym_var] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_switch] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_await] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_with] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_debugger] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_throw] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_class] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_function] = ACTIONS(2146), + [anon_sym_new] = ACTIONS(2146), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_void] = ACTIONS(2146), + [anon_sym_delete] = ACTIONS(2146), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2144), + [sym_number] = ACTIONS(2144), + [sym_this] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_true] = ACTIONS(2146), + [sym_false] = ACTIONS(2146), + [sym_null] = ACTIONS(2146), + [sym_undefined] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_abstract] = ACTIONS(2146), + [anon_sym_get] = ACTIONS(2146), + [anon_sym_set] = ACTIONS(2146), + [anon_sym_declare] = ACTIONS(2146), + [anon_sym_public] = ACTIONS(2146), + [anon_sym_private] = ACTIONS(2146), + [anon_sym_protected] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_any] = ACTIONS(2146), + [anon_sym_number] = ACTIONS(2146), + [anon_sym_boolean] = ACTIONS(2146), + [anon_sym_string] = ACTIONS(2146), + [anon_sym_symbol] = ACTIONS(2146), + [anon_sym_interface] = ACTIONS(2146), + [anon_sym_extends] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2146), + [sym_readonly] = ACTIONS(2146), }, [636] = { - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2253), - [anon_sym_export] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_namespace] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2253), - [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_LT] = ACTIONS(2251), - [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(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [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_abstract] = 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_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_interface] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [sym_readonly] = ACTIONS(2253), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_namespace] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_COMMA] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_type] = ACTIONS(1084), + [anon_sym_typeof] = ACTIONS(1084), + [anon_sym_import] = ACTIONS(1084), + [anon_sym_var] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_with] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_debugger] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_throw] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(1084), + [anon_sym_new] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1084), + [anon_sym_delete] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [sym_this] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_undefined] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_abstract] = ACTIONS(1084), + [anon_sym_get] = ACTIONS(1084), + [anon_sym_set] = ACTIONS(1084), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1084), + [anon_sym_private] = ACTIONS(1084), + [anon_sym_protected] = ACTIONS(1084), + [anon_sym_module] = ACTIONS(1084), + [anon_sym_any] = ACTIONS(1084), + [anon_sym_number] = ACTIONS(1084), + [anon_sym_boolean] = ACTIONS(1084), + [anon_sym_string] = ACTIONS(1084), + [anon_sym_symbol] = ACTIONS(1084), + [anon_sym_interface] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [sym_readonly] = ACTIONS(1084), + [anon_sym_PIPE_RBRACE] = ACTIONS(1082), + [sym__automatic_semicolon] = ACTIONS(2148), }, [637] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2257), - [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_LT] = ACTIONS(2255), - [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(2255), - [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_abstract] = 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_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_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym_readonly] = ACTIONS(2257), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_export] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_namespace] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1148), + [anon_sym_typeof] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_var] = ACTIONS(1148), + [anon_sym_let] = ACTIONS(1148), + [anon_sym_const] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_with] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_debugger] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_function] = ACTIONS(1148), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_void] = ACTIONS(1148), + [anon_sym_delete] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_number] = ACTIONS(1146), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(1148), + [sym_true] = ACTIONS(1148), + [sym_false] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [sym_undefined] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_get] = ACTIONS(1148), + [anon_sym_set] = ACTIONS(1148), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_protected] = ACTIONS(1148), + [anon_sym_module] = ACTIONS(1148), + [anon_sym_any] = ACTIONS(1148), + [anon_sym_number] = ACTIONS(1148), + [anon_sym_boolean] = ACTIONS(1148), + [anon_sym_string] = ACTIONS(1148), + [anon_sym_symbol] = ACTIONS(1148), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [sym_readonly] = ACTIONS(1148), + [anon_sym_PIPE_RBRACE] = ACTIONS(1146), + [sym__automatic_semicolon] = ACTIONS(1146), }, [638] = { - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_export] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2261), - [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_LT] = ACTIONS(2259), - [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(2259), - [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_abstract] = 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_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_interface] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [sym_readonly] = ACTIONS(2261), + [ts_builtin_sym_end] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2150), + [sym_number] = ACTIONS(2150), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_extends] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym_readonly] = ACTIONS(2152), }, [639] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2265), - [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_LT] = ACTIONS(2263), - [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(2263), - [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_abstract] = 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_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_interface] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [sym_readonly] = ACTIONS(2265), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2154), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2154), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2154), + [sym_number] = ACTIONS(2154), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_extends] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2156), + [sym_readonly] = ACTIONS(2156), }, [640] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_export] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2269), - [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_LT] = ACTIONS(2267), - [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(2267), - [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_abstract] = 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_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_interface] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [sym_readonly] = ACTIONS(2269), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), + [anon_sym_PIPE_RBRACE] = ACTIONS(1206), + [sym__automatic_semicolon] = ACTIONS(1206), }, [641] = { - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_namespace] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2273), - [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_LT] = ACTIONS(2271), - [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(2271), - [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_abstract] = 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_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_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [sym_readonly] = ACTIONS(2273), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_typeof] = ACTIONS(1186), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_var] = ACTIONS(1186), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_await] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_try] = ACTIONS(1186), + [anon_sym_with] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_debugger] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_throw] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_catch] = ACTIONS(1186), + [anon_sym_finally] = ACTIONS(1186), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_SLASH] = ACTIONS(1186), + [anon_sym_class] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1186), + [anon_sym_function] = ACTIONS(1186), + [anon_sym_new] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_void] = ACTIONS(1186), + [anon_sym_delete] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_number] = ACTIONS(1184), + [sym_this] = ACTIONS(1186), + [sym_super] = ACTIONS(1186), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [sym_undefined] = ACTIONS(1186), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_abstract] = ACTIONS(1186), + [anon_sym_get] = ACTIONS(1186), + [anon_sym_set] = ACTIONS(1186), + [anon_sym_declare] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(1186), + [anon_sym_private] = ACTIONS(1186), + [anon_sym_protected] = ACTIONS(1186), + [anon_sym_module] = ACTIONS(1186), + [anon_sym_any] = ACTIONS(1186), + [anon_sym_number] = ACTIONS(1186), + [anon_sym_boolean] = ACTIONS(1186), + [anon_sym_string] = ACTIONS(1186), + [anon_sym_symbol] = ACTIONS(1186), + [anon_sym_interface] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [sym_readonly] = ACTIONS(1186), }, [642] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2277), - [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_LT] = ACTIONS(2275), - [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(2275), - [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_abstract] = 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_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_interface] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [sym_readonly] = ACTIONS(2277), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), + [anon_sym_PIPE_RBRACE] = ACTIONS(1206), + [sym__automatic_semicolon] = ACTIONS(2158), }, [643] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1281), - [anon_sym_export] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1281), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_import] = ACTIONS(1281), - [anon_sym_var] = ACTIONS(1281), - [anon_sym_let] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_try] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_debugger] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_throw] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_class] = ACTIONS(1281), - [anon_sym_async] = ACTIONS(1281), - [anon_sym_function] = ACTIONS(1281), - [anon_sym_new] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_void] = ACTIONS(1281), - [anon_sym_delete] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1279), - [sym_number] = ACTIONS(1279), - [sym_this] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [sym_null] = ACTIONS(1281), - [sym_undefined] = ACTIONS(1281), - [anon_sym_AT] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_abstract] = ACTIONS(1281), - [anon_sym_get] = ACTIONS(1281), - [anon_sym_set] = ACTIONS(1281), - [anon_sym_declare] = ACTIONS(1281), - [anon_sym_public] = ACTIONS(1281), - [anon_sym_private] = ACTIONS(1281), - [anon_sym_protected] = ACTIONS(1281), - [anon_sym_module] = ACTIONS(1281), - [anon_sym_any] = ACTIONS(1281), - [anon_sym_number] = ACTIONS(1281), - [anon_sym_boolean] = ACTIONS(1281), - [anon_sym_string] = ACTIONS(1281), - [anon_sym_symbol] = ACTIONS(1281), - [anon_sym_interface] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [sym_readonly] = ACTIONS(1281), + [sym_statement_block] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [anon_sym_let] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_with] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_debugger] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(2162), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1098), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(1100), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_undefined] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_get] = ACTIONS(1100), + [anon_sym_set] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_protected] = ACTIONS(1100), + [anon_sym_module] = ACTIONS(1100), + [anon_sym_any] = ACTIONS(1100), + [anon_sym_number] = ACTIONS(1100), + [anon_sym_boolean] = ACTIONS(1100), + [anon_sym_string] = ACTIONS(1100), + [anon_sym_symbol] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [sym_readonly] = ACTIONS(1100), }, [644] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2281), - [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_LT] = ACTIONS(2279), - [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(2279), - [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_abstract] = 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_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_interface] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [sym_readonly] = ACTIONS(2281), + [sym_finally_clause] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2166), + [anon_sym_finally] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [sym_readonly] = ACTIONS(2166), }, [645] = { - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_export] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2285), - [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_LT] = ACTIONS(2283), - [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(2283), - [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_abstract] = 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_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_interface] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [sym_readonly] = ACTIONS(2285), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2168), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2168), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2168), + [anon_sym_case] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2168), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2168), + [anon_sym_DQUOTE] = ACTIONS(2168), + [anon_sym_SQUOTE] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2168), + [sym_number] = ACTIONS(2168), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [sym_readonly] = ACTIONS(2170), }, [646] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2289), - [anon_sym_export] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2289), - [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_LT] = ACTIONS(2287), - [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(2287), - [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_abstract] = 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_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_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [sym_readonly] = ACTIONS(2289), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1118), + [anon_sym_export] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_namespace] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1118), + [anon_sym_typeof] = ACTIONS(1118), + [anon_sym_import] = ACTIONS(1118), + [anon_sym_var] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_try] = ACTIONS(1118), + [anon_sym_with] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_debugger] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_throw] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_SLASH] = ACTIONS(1118), + [anon_sym_class] = ACTIONS(1118), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(1118), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1118), + [anon_sym_delete] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_number] = ACTIONS(1116), + [sym_this] = ACTIONS(1118), + [sym_super] = ACTIONS(1118), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [sym_undefined] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_abstract] = ACTIONS(1118), + [anon_sym_get] = ACTIONS(1118), + [anon_sym_set] = ACTIONS(1118), + [anon_sym_declare] = ACTIONS(1118), + [anon_sym_public] = ACTIONS(1118), + [anon_sym_private] = ACTIONS(1118), + [anon_sym_protected] = ACTIONS(1118), + [anon_sym_module] = ACTIONS(1118), + [anon_sym_any] = ACTIONS(1118), + [anon_sym_number] = ACTIONS(1118), + [anon_sym_boolean] = ACTIONS(1118), + [anon_sym_string] = ACTIONS(1118), + [anon_sym_symbol] = ACTIONS(1118), + [anon_sym_interface] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [sym_readonly] = ACTIONS(1118), + [sym__automatic_semicolon] = ACTIONS(1124), }, [647] = { - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_export] = ACTIONS(2293), - [anon_sym_default] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2293), - [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_LT] = ACTIONS(2291), - [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(2291), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2291), - [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_abstract] = 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_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_interface] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [sym_readonly] = ACTIONS(2293), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2174), + [anon_sym_finally] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [sym_readonly] = ACTIONS(2174), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2297), - [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_LT] = ACTIONS(2295), - [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(2295), - [anon_sym_DQUOTE] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), - [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_abstract] = 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_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_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym_readonly] = ACTIONS(2297), + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_namespace] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1128), + [anon_sym_import] = ACTIONS(1128), + [anon_sym_var] = ACTIONS(1128), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_await] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1128), + [anon_sym_with] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_debugger] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_throw] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_yield] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_class] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(1128), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_void] = ACTIONS(1128), + [anon_sym_delete] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), + [sym_this] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [sym_undefined] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_abstract] = ACTIONS(1128), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [anon_sym_declare] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1128), + [anon_sym_private] = ACTIONS(1128), + [anon_sym_protected] = ACTIONS(1128), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1128), + [anon_sym_number] = ACTIONS(1128), + [anon_sym_boolean] = ACTIONS(1128), + [anon_sym_string] = ACTIONS(1128), + [anon_sym_symbol] = ACTIONS(1128), + [anon_sym_interface] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [sym_readonly] = ACTIONS(1128), + [sym__automatic_semicolon] = ACTIONS(1134), }, [649] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2301), - [anon_sym_export] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2301), - [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_LT] = ACTIONS(2299), - [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(2299), - [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_abstract] = 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_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_interface] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [sym_readonly] = ACTIONS(2301), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2176), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym_readonly] = ACTIONS(2178), }, [650] = { - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_identifier] = ACTIONS(2305), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2305), - [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_LT] = ACTIONS(2303), - [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(2303), - [anon_sym_DQUOTE] = ACTIONS(2303), - [anon_sym_SQUOTE] = ACTIONS(2303), - [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_abstract] = 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_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_interface] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [sym_readonly] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_finally] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2180), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2180), + [sym_number] = ACTIONS(2180), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2180), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [sym_readonly] = ACTIONS(2182), }, [651] = { - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2309), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_default] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2309), - [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_LT] = ACTIONS(2307), - [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(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_SQUOTE] = ACTIONS(2307), - [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_abstract] = 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_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_interface] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [sym_readonly] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_export] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_namespace] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_var] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_with] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_debugger] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_throw] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_void] = ACTIONS(1190), + [anon_sym_delete] = ACTIONS(1190), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [sym_this] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_undefined] = ACTIONS(1190), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_abstract] = ACTIONS(1190), + [anon_sym_get] = ACTIONS(1190), + [anon_sym_set] = ACTIONS(1190), + [anon_sym_declare] = ACTIONS(1190), + [anon_sym_public] = ACTIONS(1190), + [anon_sym_private] = ACTIONS(1190), + [anon_sym_protected] = ACTIONS(1190), + [anon_sym_module] = ACTIONS(1190), + [anon_sym_any] = ACTIONS(1190), + [anon_sym_number] = ACTIONS(1190), + [anon_sym_boolean] = ACTIONS(1190), + [anon_sym_string] = ACTIONS(1190), + [anon_sym_symbol] = ACTIONS(1190), + [anon_sym_interface] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [sym_readonly] = ACTIONS(1190), + [sym__automatic_semicolon] = ACTIONS(1196), }, [652] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2313), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2313), - [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_LT] = ACTIONS(2311), - [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(2311), - [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_abstract] = 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_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_interface] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [sym_readonly] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_export] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_namespace] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_typeof] = ACTIONS(1176), + [anon_sym_import] = ACTIONS(1176), + [anon_sym_var] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_switch] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_await] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1176), + [anon_sym_with] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_debugger] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_throw] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_function] = ACTIONS(1176), + [anon_sym_new] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_void] = ACTIONS(1176), + [anon_sym_delete] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1174), + [sym_number] = ACTIONS(1174), + [sym_this] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_true] = ACTIONS(1176), + [sym_false] = ACTIONS(1176), + [sym_null] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(1176), + [anon_sym_get] = ACTIONS(1176), + [anon_sym_set] = ACTIONS(1176), + [anon_sym_declare] = ACTIONS(1176), + [anon_sym_public] = ACTIONS(1176), + [anon_sym_private] = ACTIONS(1176), + [anon_sym_protected] = ACTIONS(1176), + [anon_sym_module] = ACTIONS(1176), + [anon_sym_any] = ACTIONS(1176), + [anon_sym_number] = ACTIONS(1176), + [anon_sym_boolean] = ACTIONS(1176), + [anon_sym_string] = ACTIONS(1176), + [anon_sym_symbol] = ACTIONS(1176), + [anon_sym_interface] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [sym_readonly] = ACTIONS(1176), + [sym__automatic_semicolon] = ACTIONS(1182), }, [653] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2317), - [anon_sym_export] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2317), - [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_LT] = ACTIONS(2315), - [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(2315), - [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_abstract] = 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_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_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [sym_readonly] = ACTIONS(2317), + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [anon_sym_export] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2186), + [anon_sym_typeof] = ACTIONS(2186), + [anon_sym_import] = ACTIONS(2186), + [anon_sym_var] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_with] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_debugger] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_finally] = ACTIONS(2186), + [anon_sym_yield] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_function] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_this] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [sym_null] = ACTIONS(2186), + [sym_undefined] = ACTIONS(2186), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_abstract] = ACTIONS(2186), + [anon_sym_get] = ACTIONS(2186), + [anon_sym_set] = ACTIONS(2186), + [anon_sym_declare] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_module] = ACTIONS(2186), + [anon_sym_any] = ACTIONS(2186), + [anon_sym_number] = ACTIONS(2186), + [anon_sym_boolean] = ACTIONS(2186), + [anon_sym_string] = ACTIONS(2186), + [anon_sym_symbol] = ACTIONS(2186), + [anon_sym_interface] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [sym_readonly] = ACTIONS(2186), }, [654] = { - [ts_builtin_sym_end] = ACTIONS(2319), - [sym_identifier] = ACTIONS(2321), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [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_LT] = ACTIONS(2319), - [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(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [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_abstract] = 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_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_interface] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [sym_readonly] = ACTIONS(2321), + [sym_statement_block] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [anon_sym_let] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_with] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_debugger] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1098), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(1100), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_undefined] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_get] = ACTIONS(1100), + [anon_sym_set] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_protected] = ACTIONS(1100), + [anon_sym_module] = ACTIONS(1100), + [anon_sym_any] = ACTIONS(1100), + [anon_sym_number] = ACTIONS(1100), + [anon_sym_boolean] = ACTIONS(1100), + [anon_sym_string] = ACTIONS(1100), + [anon_sym_symbol] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [sym_readonly] = ACTIONS(1100), }, [655] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2325), - [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_LT] = ACTIONS(2323), - [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(2323), - [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_abstract] = 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_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_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [sym_readonly] = ACTIONS(2325), + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_var] = ACTIONS(890), + [anon_sym_let] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_else] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_await] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_with] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_debugger] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_case] = ACTIONS(890), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(890), + [anon_sym_function] = ACTIONS(890), + [anon_sym_new] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_void] = ACTIONS(890), + [anon_sym_delete] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [anon_sym_SQUOTE] = ACTIONS(888), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(888), + [sym_number] = ACTIONS(888), + [sym_this] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_undefined] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_static] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, [656] = { - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_identifier] = ACTIONS(1149), - [anon_sym_export] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_namespace] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_type] = ACTIONS(1149), - [anon_sym_typeof] = ACTIONS(1149), - [anon_sym_import] = ACTIONS(1149), - [anon_sym_var] = ACTIONS(1149), - [anon_sym_let] = ACTIONS(1149), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1147), - [anon_sym_await] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(1149), - [anon_sym_with] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_debugger] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_throw] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(1149), - [anon_sym_class] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1149), - [anon_sym_function] = ACTIONS(1149), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_void] = ACTIONS(1149), - [anon_sym_delete] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1147), - [sym_number] = ACTIONS(1147), - [sym_this] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_abstract] = ACTIONS(1149), - [anon_sym_get] = ACTIONS(1149), - [anon_sym_set] = ACTIONS(1149), - [anon_sym_declare] = ACTIONS(1149), - [anon_sym_public] = ACTIONS(1149), - [anon_sym_private] = ACTIONS(1149), - [anon_sym_protected] = ACTIONS(1149), - [anon_sym_module] = ACTIONS(1149), - [anon_sym_any] = ACTIONS(1149), - [anon_sym_number] = ACTIONS(1149), - [anon_sym_boolean] = ACTIONS(1149), - [anon_sym_string] = ACTIONS(1149), - [anon_sym_symbol] = ACTIONS(1149), - [anon_sym_interface] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [sym_readonly] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_namespace] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_type] = ACTIONS(1138), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(1138), + [anon_sym_var] = ACTIONS(1138), + [anon_sym_let] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_await] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_try] = ACTIONS(1138), + [anon_sym_with] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_debugger] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_throw] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1138), + [anon_sym_class] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1136), + [sym_number] = ACTIONS(1136), + [sym_this] = ACTIONS(1138), + [sym_super] = ACTIONS(1138), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_undefined] = ACTIONS(1138), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_abstract] = ACTIONS(1138), + [anon_sym_get] = ACTIONS(1138), + [anon_sym_set] = ACTIONS(1138), + [anon_sym_declare] = ACTIONS(1138), + [anon_sym_public] = ACTIONS(1138), + [anon_sym_private] = ACTIONS(1138), + [anon_sym_protected] = ACTIONS(1138), + [anon_sym_module] = ACTIONS(1138), + [anon_sym_any] = ACTIONS(1138), + [anon_sym_number] = ACTIONS(1138), + [anon_sym_boolean] = ACTIONS(1138), + [anon_sym_string] = ACTIONS(1138), + [anon_sym_symbol] = ACTIONS(1138), + [anon_sym_interface] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [sym_readonly] = ACTIONS(1138), + [sym__automatic_semicolon] = ACTIONS(1144), }, [657] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2329), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2329), - [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_LT] = ACTIONS(2327), - [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(2327), - [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_abstract] = 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_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_interface] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [sym_readonly] = ACTIONS(2329), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_export] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_typeof] = ACTIONS(1258), + [anon_sym_import] = ACTIONS(1258), + [anon_sym_var] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1258), + [anon_sym_with] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_debugger] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_throw] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_class] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_function] = ACTIONS(1258), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1258), + [anon_sym_delete] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [sym_this] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [sym_null] = ACTIONS(1258), + [sym_undefined] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_abstract] = ACTIONS(1258), + [anon_sym_get] = ACTIONS(1258), + [anon_sym_set] = ACTIONS(1258), + [anon_sym_declare] = ACTIONS(1258), + [anon_sym_public] = ACTIONS(1258), + [anon_sym_private] = ACTIONS(1258), + [anon_sym_protected] = ACTIONS(1258), + [anon_sym_module] = ACTIONS(1258), + [anon_sym_any] = ACTIONS(1258), + [anon_sym_number] = ACTIONS(1258), + [anon_sym_boolean] = ACTIONS(1258), + [anon_sym_string] = ACTIONS(1258), + [anon_sym_symbol] = ACTIONS(1258), + [anon_sym_interface] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [sym_readonly] = ACTIONS(1258), + [sym__automatic_semicolon] = ACTIONS(1264), }, [658] = { - [ts_builtin_sym_end] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2333), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2333), - [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_LT] = ACTIONS(2331), - [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(2331), - [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_abstract] = 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_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_interface] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [sym_readonly] = ACTIONS(2333), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), + [anon_sym_export] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_namespace] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1166), + [anon_sym_import] = ACTIONS(1166), + [anon_sym_var] = ACTIONS(1166), + [anon_sym_let] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_await] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_try] = ACTIONS(1166), + [anon_sym_with] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_debugger] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_throw] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_class] = ACTIONS(1166), + [anon_sym_async] = ACTIONS(1166), + [anon_sym_function] = ACTIONS(1166), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1166), + [anon_sym_delete] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1164), + [sym_number] = ACTIONS(1164), + [sym_this] = ACTIONS(1166), + [sym_super] = ACTIONS(1166), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_undefined] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_abstract] = ACTIONS(1166), + [anon_sym_get] = ACTIONS(1166), + [anon_sym_set] = ACTIONS(1166), + [anon_sym_declare] = ACTIONS(1166), + [anon_sym_public] = ACTIONS(1166), + [anon_sym_private] = ACTIONS(1166), + [anon_sym_protected] = ACTIONS(1166), + [anon_sym_module] = ACTIONS(1166), + [anon_sym_any] = ACTIONS(1166), + [anon_sym_number] = ACTIONS(1166), + [anon_sym_boolean] = ACTIONS(1166), + [anon_sym_string] = ACTIONS(1166), + [anon_sym_symbol] = ACTIONS(1166), + [anon_sym_interface] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [sym_readonly] = ACTIONS(1166), + [sym__automatic_semicolon] = ACTIONS(1172), }, [659] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2337), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2337), - [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_LT] = ACTIONS(2335), - [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(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [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_abstract] = 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_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_interface] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [sym_readonly] = ACTIONS(2337), + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2190), + [anon_sym_export] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2190), + [anon_sym_typeof] = ACTIONS(2190), + [anon_sym_import] = ACTIONS(2190), + [anon_sym_var] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_switch] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_with] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_debugger] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_throw] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2190), + [anon_sym_finally] = ACTIONS(2190), + [anon_sym_yield] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_async] = ACTIONS(2190), + [anon_sym_function] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2190), + [anon_sym_delete] = ACTIONS(2190), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_this] = ACTIONS(2190), + [sym_super] = ACTIONS(2190), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [sym_null] = ACTIONS(2190), + [sym_undefined] = ACTIONS(2190), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_abstract] = ACTIONS(2190), + [anon_sym_get] = ACTIONS(2190), + [anon_sym_set] = ACTIONS(2190), + [anon_sym_declare] = ACTIONS(2190), + [anon_sym_public] = ACTIONS(2190), + [anon_sym_private] = ACTIONS(2190), + [anon_sym_protected] = ACTIONS(2190), + [anon_sym_module] = ACTIONS(2190), + [anon_sym_any] = ACTIONS(2190), + [anon_sym_number] = ACTIONS(2190), + [anon_sym_boolean] = ACTIONS(2190), + [anon_sym_string] = ACTIONS(2190), + [anon_sym_symbol] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [sym_readonly] = ACTIONS(2190), }, [660] = { - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2341), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_default] = ACTIONS(2341), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2341), - [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_LT] = ACTIONS(2339), - [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(2339), - [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_abstract] = 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_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_interface] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [sym_readonly] = ACTIONS(2341), + [sym_else_clause] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2194), + [anon_sym_export] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_typeof] = ACTIONS(2194), + [anon_sym_import] = ACTIONS(2194), + [anon_sym_var] = ACTIONS(2194), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_switch] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [anon_sym_with] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_debugger] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_throw] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_yield] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_async] = ACTIONS(2194), + [anon_sym_function] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2194), + [anon_sym_delete] = ACTIONS(2194), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_this] = ACTIONS(2194), + [sym_super] = ACTIONS(2194), + [sym_true] = ACTIONS(2194), + [sym_false] = ACTIONS(2194), + [sym_null] = ACTIONS(2194), + [sym_undefined] = ACTIONS(2194), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_abstract] = ACTIONS(2194), + [anon_sym_get] = ACTIONS(2194), + [anon_sym_set] = ACTIONS(2194), + [anon_sym_declare] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_module] = ACTIONS(2194), + [anon_sym_any] = ACTIONS(2194), + [anon_sym_number] = ACTIONS(2194), + [anon_sym_boolean] = ACTIONS(2194), + [anon_sym_string] = ACTIONS(2194), + [anon_sym_symbol] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [sym_readonly] = ACTIONS(2194), }, [661] = { - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2345), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_namespace] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2345), - [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_LT] = ACTIONS(2343), - [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(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_SQUOTE] = ACTIONS(2343), - [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_abstract] = 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_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_interface] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [sym_readonly] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_namespace] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_typeof] = ACTIONS(1248), + [anon_sym_import] = ACTIONS(1248), + [anon_sym_var] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_await] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_try] = ACTIONS(1248), + [anon_sym_with] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_debugger] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_throw] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_class] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1248), + [anon_sym_new] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_void] = ACTIONS(1248), + [anon_sym_delete] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1246), + [sym_number] = ACTIONS(1246), + [sym_this] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_abstract] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_interface] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [sym_readonly] = ACTIONS(1248), + [sym__automatic_semicolon] = ACTIONS(1254), }, [662] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2349), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2349), - [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_LT] = ACTIONS(2347), - [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(2347), - [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_abstract] = 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_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_interface] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [sym_readonly] = ACTIONS(2349), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(1238), + [anon_sym_var] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [anon_sym_with] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_debugger] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_throw] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_class] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_function] = ACTIONS(1238), + [anon_sym_new] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1236), + [sym_number] = ACTIONS(1236), + [sym_this] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [sym_undefined] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_abstract] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_interface] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [sym_readonly] = ACTIONS(1238), + [sym__automatic_semicolon] = ACTIONS(1244), }, [663] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2353), - [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_LT] = ACTIONS(2351), - [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(2351), - [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_abstract] = 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_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_interface] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [sym_readonly] = ACTIONS(2353), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_export] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_await] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_debugger] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_function] = ACTIONS(1108), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_void] = ACTIONS(1108), + [anon_sym_delete] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1106), + [sym_number] = ACTIONS(1106), + [sym_this] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_get] = ACTIONS(1108), + [anon_sym_set] = ACTIONS(1108), + [anon_sym_declare] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_protected] = ACTIONS(1108), + [anon_sym_module] = ACTIONS(1108), + [anon_sym_any] = ACTIONS(1108), + [anon_sym_number] = ACTIONS(1108), + [anon_sym_boolean] = ACTIONS(1108), + [anon_sym_string] = ACTIONS(1108), + [anon_sym_symbol] = ACTIONS(1108), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [sym_readonly] = ACTIONS(1108), + [sym__automatic_semicolon] = ACTIONS(1114), }, [664] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2357), - [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_LT] = ACTIONS(2355), - [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(2355), - [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_abstract] = 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_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_interface] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [sym_readonly] = ACTIONS(2357), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_typeof] = ACTIONS(1214), + [anon_sym_import] = ACTIONS(1214), + [anon_sym_var] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_await] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_try] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_debugger] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_throw] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1212), + [anon_sym_SLASH] = ACTIONS(1214), + [anon_sym_class] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(1214), + [anon_sym_function] = ACTIONS(1214), + [anon_sym_new] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_void] = ACTIONS(1214), + [anon_sym_delete] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1212), + [sym_number] = ACTIONS(1212), + [sym_this] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [sym_null] = ACTIONS(1214), + [sym_undefined] = ACTIONS(1214), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_abstract] = ACTIONS(1214), + [anon_sym_get] = ACTIONS(1214), + [anon_sym_set] = ACTIONS(1214), + [anon_sym_declare] = ACTIONS(1214), + [anon_sym_public] = ACTIONS(1214), + [anon_sym_private] = ACTIONS(1214), + [anon_sym_protected] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_any] = ACTIONS(1214), + [anon_sym_number] = ACTIONS(1214), + [anon_sym_boolean] = ACTIONS(1214), + [anon_sym_string] = ACTIONS(1214), + [anon_sym_symbol] = ACTIONS(1214), + [anon_sym_interface] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [sym_readonly] = ACTIONS(1214), + [sym__automatic_semicolon] = ACTIONS(1220), }, [665] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [sym_identifier] = ACTIONS(2361), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2361), - [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_LT] = ACTIONS(2359), - [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(2359), - [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_abstract] = 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_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_interface] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [sym_readonly] = ACTIONS(2361), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1156), + [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_import] = ACTIONS(1156), + [anon_sym_var] = ACTIONS(1156), + [anon_sym_let] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_await] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_do] = ACTIONS(1156), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_with] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_debugger] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_throw] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_class] = ACTIONS(1156), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(1156), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_void] = ACTIONS(1156), + [anon_sym_delete] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1154), + [sym_number] = ACTIONS(1154), + [sym_this] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_true] = ACTIONS(1156), + [sym_false] = ACTIONS(1156), + [sym_null] = ACTIONS(1156), + [sym_undefined] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_abstract] = ACTIONS(1156), + [anon_sym_get] = ACTIONS(1156), + [anon_sym_set] = ACTIONS(1156), + [anon_sym_declare] = ACTIONS(1156), + [anon_sym_public] = ACTIONS(1156), + [anon_sym_private] = ACTIONS(1156), + [anon_sym_protected] = ACTIONS(1156), + [anon_sym_module] = ACTIONS(1156), + [anon_sym_any] = ACTIONS(1156), + [anon_sym_number] = ACTIONS(1156), + [anon_sym_boolean] = ACTIONS(1156), + [anon_sym_string] = ACTIONS(1156), + [anon_sym_symbol] = ACTIONS(1156), + [anon_sym_interface] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [sym_readonly] = ACTIONS(1156), + [sym__automatic_semicolon] = ACTIONS(1162), }, [666] = { - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(2365), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2365), - [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_LT] = ACTIONS(2363), - [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(2363), - [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_abstract] = 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_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_interface] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [sym_readonly] = ACTIONS(2365), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2200), + [anon_sym_abstract] = ACTIONS(2200), + [anon_sym_get] = ACTIONS(2200), + [anon_sym_set] = ACTIONS(2200), + [anon_sym_declare] = ACTIONS(2200), + [anon_sym_public] = ACTIONS(2200), + [anon_sym_private] = ACTIONS(2200), + [anon_sym_protected] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_any] = ACTIONS(2200), + [anon_sym_number] = ACTIONS(2200), + [anon_sym_boolean] = ACTIONS(2200), + [anon_sym_string] = ACTIONS(2200), + [anon_sym_symbol] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym_readonly] = ACTIONS(2200), }, [667] = { - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2369), - [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_LT] = ACTIONS(2367), - [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(2367), - [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_abstract] = 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_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_interface] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [sym_readonly] = ACTIONS(2369), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_else] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2202), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [anon_sym_SQUOTE] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2202), + [sym_number] = ACTIONS(2202), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym_readonly] = ACTIONS(2204), }, [668] = { - [ts_builtin_sym_end] = ACTIONS(2371), - [sym_identifier] = ACTIONS(2373), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_default] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2373), - [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_LT] = ACTIONS(2371), - [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(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [anon_sym_SQUOTE] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2371), - [sym_number] = ACTIONS(2371), - [sym_this] = ACTIONS(2373), - [sym_super] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_null] = ACTIONS(2373), - [sym_undefined] = ACTIONS(2373), - [anon_sym_AT] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_abstract] = ACTIONS(2373), - [anon_sym_get] = ACTIONS(2373), - [anon_sym_set] = ACTIONS(2373), - [anon_sym_declare] = ACTIONS(2373), - [anon_sym_public] = ACTIONS(2373), - [anon_sym_private] = ACTIONS(2373), - [anon_sym_protected] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_any] = ACTIONS(2373), - [anon_sym_number] = ACTIONS(2373), - [anon_sym_boolean] = ACTIONS(2373), - [anon_sym_string] = ACTIONS(2373), - [anon_sym_symbol] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [sym_readonly] = ACTIONS(2373), + [ts_builtin_sym_end] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2206), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2206), + [sym_number] = ACTIONS(2206), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym_readonly] = ACTIONS(2208), }, [669] = { - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2377), - [anon_sym_export] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2377), - [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_LT] = ACTIONS(2375), - [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(2375), - [anon_sym_DQUOTE] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), - [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_abstract] = 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_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_interface] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [sym_readonly] = ACTIONS(2377), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2210), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2210), + [sym_number] = ACTIONS(2210), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym_readonly] = ACTIONS(2212), }, [670] = { - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2381), - [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_LT] = ACTIONS(2379), - [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_TILDE] = ACTIONS(2379), - [anon_sym_void] = ACTIONS(2381), - [anon_sym_delete] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [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_abstract] = 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_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_interface] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [sym_readonly] = ACTIONS(2381), + [ts_builtin_sym_end] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2216), + [anon_sym_export] = ACTIONS(2216), + [anon_sym_default] = ACTIONS(2216), + [anon_sym_namespace] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2216), + [anon_sym_typeof] = ACTIONS(2216), + [anon_sym_import] = ACTIONS(2216), + [anon_sym_var] = ACTIONS(2216), + [anon_sym_let] = ACTIONS(2216), + [anon_sym_const] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2216), + [anon_sym_switch] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2216), + [anon_sym_do] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2216), + [anon_sym_with] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2216), + [anon_sym_continue] = ACTIONS(2216), + [anon_sym_debugger] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_throw] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2216), + [anon_sym_yield] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2216), + [anon_sym_class] = ACTIONS(2216), + [anon_sym_async] = ACTIONS(2216), + [anon_sym_function] = ACTIONS(2216), + [anon_sym_new] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(2216), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_this] = ACTIONS(2216), + [sym_super] = ACTIONS(2216), + [sym_true] = ACTIONS(2216), + [sym_false] = ACTIONS(2216), + [sym_null] = ACTIONS(2216), + [sym_undefined] = ACTIONS(2216), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2216), + [anon_sym_abstract] = ACTIONS(2216), + [anon_sym_get] = ACTIONS(2216), + [anon_sym_set] = ACTIONS(2216), + [anon_sym_declare] = ACTIONS(2216), + [anon_sym_public] = ACTIONS(2216), + [anon_sym_private] = ACTIONS(2216), + [anon_sym_protected] = ACTIONS(2216), + [anon_sym_module] = ACTIONS(2216), + [anon_sym_any] = ACTIONS(2216), + [anon_sym_number] = ACTIONS(2216), + [anon_sym_boolean] = ACTIONS(2216), + [anon_sym_string] = ACTIONS(2216), + [anon_sym_symbol] = ACTIONS(2216), + [anon_sym_interface] = ACTIONS(2216), + [anon_sym_enum] = ACTIONS(2216), + [sym_readonly] = ACTIONS(2216), }, [671] = { - [ts_builtin_sym_end] = ACTIONS(2383), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_typeof] = ACTIONS(2385), - [anon_sym_import] = ACTIONS(2385), - [anon_sym_var] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_with] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_debugger] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_case] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LT] = ACTIONS(2383), - [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_TILDE] = ACTIONS(2383), - [anon_sym_void] = ACTIONS(2385), - [anon_sym_delete] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2383), - [sym_number] = ACTIONS(2383), - [sym_this] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_true] = ACTIONS(2385), - [sym_false] = ACTIONS(2385), - [sym_null] = ACTIONS(2385), - [sym_undefined] = ACTIONS(2385), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_abstract] = ACTIONS(2385), - [anon_sym_get] = ACTIONS(2385), - [anon_sym_set] = ACTIONS(2385), - [anon_sym_declare] = ACTIONS(2385), - [anon_sym_public] = ACTIONS(2385), - [anon_sym_private] = ACTIONS(2385), - [anon_sym_protected] = ACTIONS(2385), - [anon_sym_module] = ACTIONS(2385), - [anon_sym_any] = ACTIONS(2385), - [anon_sym_number] = ACTIONS(2385), - [anon_sym_boolean] = ACTIONS(2385), - [anon_sym_string] = ACTIONS(2385), - [anon_sym_symbol] = ACTIONS(2385), - [anon_sym_interface] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [sym_readonly] = ACTIONS(2385), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_export] = ACTIONS(2220), + [anon_sym_default] = ACTIONS(2220), + [anon_sym_namespace] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_typeof] = ACTIONS(2220), + [anon_sym_import] = ACTIONS(2220), + [anon_sym_var] = ACTIONS(2220), + [anon_sym_let] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2220), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_await] = ACTIONS(2220), + [anon_sym_while] = ACTIONS(2220), + [anon_sym_do] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2220), + [anon_sym_with] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_debugger] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_throw] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2220), + [anon_sym_yield] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LT] = ACTIONS(2218), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_class] = ACTIONS(2220), + [anon_sym_async] = ACTIONS(2220), + [anon_sym_function] = ACTIONS(2220), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2218), + [anon_sym_void] = ACTIONS(2220), + [anon_sym_delete] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_SQUOTE] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2218), + [sym_number] = ACTIONS(2218), + [sym_this] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_null] = ACTIONS(2220), + [sym_undefined] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_abstract] = ACTIONS(2220), + [anon_sym_get] = ACTIONS(2220), + [anon_sym_set] = ACTIONS(2220), + [anon_sym_declare] = ACTIONS(2220), + [anon_sym_public] = ACTIONS(2220), + [anon_sym_private] = ACTIONS(2220), + [anon_sym_protected] = ACTIONS(2220), + [anon_sym_module] = ACTIONS(2220), + [anon_sym_any] = ACTIONS(2220), + [anon_sym_number] = ACTIONS(2220), + [anon_sym_boolean] = ACTIONS(2220), + [anon_sym_string] = ACTIONS(2220), + [anon_sym_symbol] = ACTIONS(2220), + [anon_sym_interface] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [sym_readonly] = ACTIONS(2220), }, [672] = { - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2389), - [anon_sym_export] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_typeof] = ACTIONS(2389), - [anon_sym_import] = ACTIONS(2389), - [anon_sym_var] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_with] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_debugger] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_case] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [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_TILDE] = ACTIONS(2387), - [anon_sym_void] = ACTIONS(2389), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2387), - [sym_number] = ACTIONS(2387), - [sym_this] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_true] = ACTIONS(2389), - [sym_false] = ACTIONS(2389), - [sym_null] = ACTIONS(2389), - [sym_undefined] = ACTIONS(2389), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_get] = ACTIONS(2389), - [anon_sym_set] = ACTIONS(2389), - [anon_sym_declare] = ACTIONS(2389), - [anon_sym_public] = ACTIONS(2389), - [anon_sym_private] = ACTIONS(2389), - [anon_sym_protected] = ACTIONS(2389), - [anon_sym_module] = ACTIONS(2389), - [anon_sym_any] = ACTIONS(2389), - [anon_sym_number] = ACTIONS(2389), - [anon_sym_boolean] = ACTIONS(2389), - [anon_sym_string] = ACTIONS(2389), - [anon_sym_symbol] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [sym_readonly] = ACTIONS(2389), + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_export] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_typeof] = ACTIONS(1200), + [anon_sym_import] = ACTIONS(1200), + [anon_sym_var] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_await] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_try] = ACTIONS(1200), + [anon_sym_with] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_debugger] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_throw] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_SLASH] = ACTIONS(1200), + [anon_sym_class] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_function] = ACTIONS(1200), + [anon_sym_new] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1200), + [anon_sym_delete] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_number] = ACTIONS(1198), + [sym_this] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [sym_null] = ACTIONS(1200), + [sym_undefined] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_abstract] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(1200), + [anon_sym_set] = ACTIONS(1200), + [anon_sym_declare] = ACTIONS(1200), + [anon_sym_public] = ACTIONS(1200), + [anon_sym_private] = ACTIONS(1200), + [anon_sym_protected] = ACTIONS(1200), + [anon_sym_module] = ACTIONS(1200), + [anon_sym_any] = ACTIONS(1200), + [anon_sym_number] = ACTIONS(1200), + [anon_sym_boolean] = ACTIONS(1200), + [anon_sym_string] = ACTIONS(1200), + [anon_sym_symbol] = ACTIONS(1200), + [anon_sym_interface] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [sym_readonly] = ACTIONS(1200), }, [673] = { - [ts_builtin_sym_end] = ACTIONS(2391), - [sym_identifier] = ACTIONS(2393), - [anon_sym_export] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_typeof] = ACTIONS(2393), - [anon_sym_import] = ACTIONS(2393), - [anon_sym_var] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_with] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_debugger] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_case] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2391), - [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_TILDE] = ACTIONS(2391), - [anon_sym_void] = ACTIONS(2393), - [anon_sym_delete] = ACTIONS(2393), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [anon_sym_SQUOTE] = ACTIONS(2391), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2391), - [sym_number] = ACTIONS(2391), - [sym_this] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_null] = ACTIONS(2393), - [sym_undefined] = ACTIONS(2393), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_any] = ACTIONS(2393), - [anon_sym_number] = ACTIONS(2393), - [anon_sym_boolean] = ACTIONS(2393), - [anon_sym_string] = ACTIONS(2393), - [anon_sym_symbol] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [sym_readonly] = ACTIONS(2393), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2224), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_typeof] = ACTIONS(2224), + [anon_sym_import] = ACTIONS(2224), + [anon_sym_var] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_switch] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_do] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_with] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_debugger] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_yield] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_class] = ACTIONS(2224), + [anon_sym_async] = ACTIONS(2224), + [anon_sym_function] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2224), + [anon_sym_delete] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_this] = ACTIONS(2224), + [sym_super] = ACTIONS(2224), + [sym_true] = ACTIONS(2224), + [sym_false] = ACTIONS(2224), + [sym_null] = ACTIONS(2224), + [sym_undefined] = ACTIONS(2224), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_abstract] = ACTIONS(2224), + [anon_sym_get] = ACTIONS(2224), + [anon_sym_set] = ACTIONS(2224), + [anon_sym_declare] = ACTIONS(2224), + [anon_sym_public] = ACTIONS(2224), + [anon_sym_private] = ACTIONS(2224), + [anon_sym_protected] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_any] = ACTIONS(2224), + [anon_sym_number] = ACTIONS(2224), + [anon_sym_boolean] = ACTIONS(2224), + [anon_sym_string] = ACTIONS(2224), + [anon_sym_symbol] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2224), + [anon_sym_enum] = ACTIONS(2224), + [sym_readonly] = ACTIONS(2224), }, [674] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [anon_sym_export] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_namespace] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(1127), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_try] = ACTIONS(1127), - [anon_sym_with] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_debugger] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_throw] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_yield] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_void] = ACTIONS(1127), - [anon_sym_delete] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1125), - [sym_number] = ACTIONS(1125), - [sym_this] = ACTIONS(1127), - [sym_super] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), - [sym_undefined] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_abstract] = ACTIONS(1127), - [anon_sym_get] = ACTIONS(1127), - [anon_sym_set] = ACTIONS(1127), - [anon_sym_declare] = ACTIONS(1127), - [anon_sym_public] = ACTIONS(1127), - [anon_sym_private] = ACTIONS(1127), - [anon_sym_protected] = ACTIONS(1127), - [anon_sym_module] = ACTIONS(1127), - [anon_sym_any] = ACTIONS(1127), - [anon_sym_number] = ACTIONS(1127), - [anon_sym_boolean] = ACTIONS(1127), - [anon_sym_string] = ACTIONS(1127), - [anon_sym_symbol] = ACTIONS(1127), - [anon_sym_interface] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [sym_readonly] = ACTIONS(1127), + [ts_builtin_sym_end] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2228), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2228), + [anon_sym_namespace] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2228), + [anon_sym_typeof] = ACTIONS(2228), + [anon_sym_import] = ACTIONS(2228), + [anon_sym_var] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_switch] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_do] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [anon_sym_with] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_debugger] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2228), + [anon_sym_yield] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_class] = ACTIONS(2228), + [anon_sym_async] = ACTIONS(2228), + [anon_sym_function] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2228), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_this] = ACTIONS(2228), + [sym_super] = ACTIONS(2228), + [sym_true] = ACTIONS(2228), + [sym_false] = ACTIONS(2228), + [sym_null] = ACTIONS(2228), + [sym_undefined] = ACTIONS(2228), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_abstract] = ACTIONS(2228), + [anon_sym_get] = ACTIONS(2228), + [anon_sym_set] = ACTIONS(2228), + [anon_sym_declare] = ACTIONS(2228), + [anon_sym_public] = ACTIONS(2228), + [anon_sym_private] = ACTIONS(2228), + [anon_sym_protected] = ACTIONS(2228), + [anon_sym_module] = ACTIONS(2228), + [anon_sym_any] = ACTIONS(2228), + [anon_sym_number] = ACTIONS(2228), + [anon_sym_boolean] = ACTIONS(2228), + [anon_sym_string] = ACTIONS(2228), + [anon_sym_symbol] = ACTIONS(2228), + [anon_sym_interface] = ACTIONS(2228), + [anon_sym_enum] = ACTIONS(2228), + [sym_readonly] = ACTIONS(2228), }, [675] = { - [ts_builtin_sym_end] = ACTIONS(2395), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_typeof] = ACTIONS(2397), - [anon_sym_import] = ACTIONS(2397), - [anon_sym_var] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_with] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_debugger] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_case] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(2395), - [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_TILDE] = ACTIONS(2395), - [anon_sym_void] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2395), - [sym_number] = ACTIONS(2395), - [sym_this] = ACTIONS(2397), - [sym_super] = ACTIONS(2397), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_undefined] = ACTIONS(2397), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_abstract] = ACTIONS(2397), - [anon_sym_get] = ACTIONS(2397), - [anon_sym_set] = ACTIONS(2397), - [anon_sym_declare] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_private] = ACTIONS(2397), - [anon_sym_protected] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_any] = ACTIONS(2397), - [anon_sym_number] = ACTIONS(2397), - [anon_sym_boolean] = ACTIONS(2397), - [anon_sym_string] = ACTIONS(2397), - [anon_sym_symbol] = ACTIONS(2397), - [anon_sym_interface] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [sym_readonly] = ACTIONS(2397), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_export] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_namespace] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1148), + [anon_sym_typeof] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_var] = ACTIONS(1148), + [anon_sym_let] = ACTIONS(1148), + [anon_sym_const] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_with] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_debugger] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_function] = ACTIONS(1148), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_void] = ACTIONS(1148), + [anon_sym_delete] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_number] = ACTIONS(1146), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(1148), + [sym_true] = ACTIONS(1148), + [sym_false] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [sym_undefined] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_get] = ACTIONS(1148), + [anon_sym_set] = ACTIONS(1148), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_protected] = ACTIONS(1148), + [anon_sym_module] = ACTIONS(1148), + [anon_sym_any] = ACTIONS(1148), + [anon_sym_number] = ACTIONS(1148), + [anon_sym_boolean] = ACTIONS(1148), + [anon_sym_string] = ACTIONS(1148), + [anon_sym_symbol] = ACTIONS(1148), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [sym_readonly] = ACTIONS(1148), }, [676] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2401), - [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_LT] = ACTIONS(2399), - [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(2399), - [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_abstract] = 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_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_interface] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [sym_readonly] = ACTIONS(2401), + [sym_object] = STATE(3273), + [sym_array] = STATE(3275), + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4316), + [sym_nested_type_identifier] = STATE(2555), + [sym__type] = STATE(3734), + [sym_constructor_type] = STATE(3734), + [sym__primary_type] = STATE(3688), + [sym_infer_type] = STATE(3734), + [sym_conditional_type] = STATE(3688), + [sym_generic_type] = STATE(3688), + [sym_type_query] = STATE(3688), + [sym_index_type_query] = STATE(3688), + [sym_lookup_type] = STATE(3688), + [sym_literal_type] = STATE(3688), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(3688), + [sym_flow_maybe_type] = STATE(3688), + [sym_parenthesized_type] = STATE(3688), + [sym_predefined_type] = STATE(3688), + [sym_object_type] = STATE(3688), + [sym_type_parameters] = STATE(4143), + [sym_array_type] = STATE(3688), + [sym__tuple_type_body] = STATE(565), + [sym_tuple_type] = STATE(3688), + [sym_union_type] = STATE(3734), + [sym_intersection_type] = STATE(3734), + [sym_function_type] = STATE(3734), + [sym_identifier] = ACTIONS(697), + [anon_sym_export] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(717), + [anon_sym_type] = ACTIONS(699), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_COLON] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(699), + [anon_sym_new] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(751), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_static] = ACTIONS(699), + [anon_sym_get] = ACTIONS(699), + [anon_sym_set] = ACTIONS(699), + [anon_sym_declare] = ACTIONS(699), + [anon_sym_public] = ACTIONS(699), + [anon_sym_private] = ACTIONS(699), + [anon_sym_protected] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [sym_readonly] = ACTIONS(757), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(581), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(2403), - [sym_identifier] = ACTIONS(2405), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_typeof] = ACTIONS(2405), - [anon_sym_import] = ACTIONS(2405), - [anon_sym_var] = ACTIONS(2405), - [anon_sym_let] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_with] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_debugger] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(2403), - [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_TILDE] = ACTIONS(2403), - [anon_sym_void] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2403), - [sym_number] = ACTIONS(2403), - [sym_this] = ACTIONS(2405), - [sym_super] = ACTIONS(2405), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_undefined] = ACTIONS(2405), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_abstract] = ACTIONS(2405), - [anon_sym_get] = ACTIONS(2405), - [anon_sym_set] = ACTIONS(2405), - [anon_sym_declare] = ACTIONS(2405), - [anon_sym_public] = ACTIONS(2405), - [anon_sym_private] = ACTIONS(2405), - [anon_sym_protected] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_any] = ACTIONS(2405), - [anon_sym_number] = ACTIONS(2405), - [anon_sym_boolean] = ACTIONS(2405), - [anon_sym_string] = ACTIONS(2405), - [anon_sym_symbol] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [sym_readonly] = ACTIONS(2405), + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_typeof] = ACTIONS(1152), + [anon_sym_import] = ACTIONS(1152), + [anon_sym_var] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1152), + [anon_sym_with] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_debugger] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_throw] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1152), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_SLASH] = ACTIONS(1152), + [anon_sym_class] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(1152), + [anon_sym_function] = ACTIONS(1152), + [anon_sym_new] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_void] = ACTIONS(1152), + [anon_sym_delete] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1150), + [sym_number] = ACTIONS(1150), + [sym_this] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_true] = ACTIONS(1152), + [sym_false] = ACTIONS(1152), + [sym_null] = ACTIONS(1152), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [sym_readonly] = ACTIONS(1152), }, [678] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_typeof] = ACTIONS(2409), - [anon_sym_import] = ACTIONS(2409), - [anon_sym_var] = ACTIONS(2409), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_with] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_debugger] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_case] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_LT] = ACTIONS(2407), - [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_TILDE] = ACTIONS(2407), - [anon_sym_void] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [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_abstract] = 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_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_interface] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [sym_readonly] = ACTIONS(2409), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_await] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_try] = ACTIONS(1204), + [anon_sym_with] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_debugger] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_throw] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_function] = ACTIONS(1204), + [anon_sym_new] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_void] = ACTIONS(1204), + [anon_sym_delete] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1202), + [sym_number] = ACTIONS(1202), + [sym_this] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), + [sym_undefined] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_get] = ACTIONS(1204), + [anon_sym_set] = ACTIONS(1204), + [anon_sym_declare] = ACTIONS(1204), + [anon_sym_public] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_protected] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(1204), + [anon_sym_any] = ACTIONS(1204), + [anon_sym_number] = ACTIONS(1204), + [anon_sym_boolean] = ACTIONS(1204), + [anon_sym_string] = ACTIONS(1204), + [anon_sym_symbol] = ACTIONS(1204), + [anon_sym_interface] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [sym_readonly] = ACTIONS(1204), }, [679] = { - [ts_builtin_sym_end] = ACTIONS(2411), - [sym_identifier] = ACTIONS(2413), - [anon_sym_export] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2413), - [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_LT] = ACTIONS(2411), - [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_TILDE] = ACTIONS(2411), - [anon_sym_void] = ACTIONS(2413), - [anon_sym_delete] = ACTIONS(2413), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [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_abstract] = 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_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_interface] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [sym_readonly] = ACTIONS(2413), + [ts_builtin_sym_end] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2232), + [anon_sym_export] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_typeof] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_var] = ACTIONS(2232), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_with] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_debugger] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_case] = ACTIONS(2232), + [anon_sym_yield] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_class] = ACTIONS(2232), + [anon_sym_async] = ACTIONS(2232), + [anon_sym_function] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2232), + [anon_sym_delete] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_this] = ACTIONS(2232), + [sym_super] = ACTIONS(2232), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [sym_null] = ACTIONS(2232), + [sym_undefined] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_abstract] = ACTIONS(2232), + [anon_sym_get] = ACTIONS(2232), + [anon_sym_set] = ACTIONS(2232), + [anon_sym_declare] = ACTIONS(2232), + [anon_sym_public] = ACTIONS(2232), + [anon_sym_private] = ACTIONS(2232), + [anon_sym_protected] = ACTIONS(2232), + [anon_sym_module] = ACTIONS(2232), + [anon_sym_any] = ACTIONS(2232), + [anon_sym_number] = ACTIONS(2232), + [anon_sym_boolean] = ACTIONS(2232), + [anon_sym_string] = ACTIONS(2232), + [anon_sym_symbol] = ACTIONS(2232), + [anon_sym_interface] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [sym_readonly] = ACTIONS(2232), }, [680] = { - [sym_identifier] = ACTIONS(2415), - [anon_sym_export] = ACTIONS(2415), - [anon_sym_namespace] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_type] = ACTIONS(2415), - [anon_sym_typeof] = ACTIONS(2415), - [anon_sym_import] = ACTIONS(2415), - [anon_sym_var] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_switch] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_do] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_with] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_debugger] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_throw] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_SLASH] = ACTIONS(2415), - [anon_sym_class] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_function] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2417), - [anon_sym_void] = ACTIONS(2415), - [anon_sym_delete] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2417), - [anon_sym_DASH_DASH] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2417), - [anon_sym_SQUOTE] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2417), - [sym_number] = ACTIONS(2417), - [sym_this] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_true] = ACTIONS(2415), - [sym_false] = ACTIONS(2415), - [sym_null] = ACTIONS(2415), - [sym_undefined] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_abstract] = ACTIONS(2415), - [anon_sym_get] = ACTIONS(2415), - [anon_sym_set] = ACTIONS(2415), - [anon_sym_declare] = ACTIONS(2415), - [anon_sym_public] = ACTIONS(2415), - [anon_sym_private] = ACTIONS(2415), - [anon_sym_protected] = ACTIONS(2415), - [anon_sym_module] = ACTIONS(2415), - [anon_sym_any] = ACTIONS(2415), - [anon_sym_number] = ACTIONS(2415), - [anon_sym_boolean] = ACTIONS(2415), - [anon_sym_string] = ACTIONS(2415), - [anon_sym_symbol] = ACTIONS(2415), - [anon_sym_interface] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), - [sym_readonly] = ACTIONS(2415), + [ts_builtin_sym_end] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym_readonly] = ACTIONS(2236), }, [681] = { - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_typeof] = ACTIONS(2419), - [anon_sym_import] = ACTIONS(2419), - [anon_sym_var] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_switch] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_await] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_do] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2419), - [anon_sym_with] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_debugger] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_throw] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_class] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_new] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2421), - [anon_sym_void] = ACTIONS(2419), - [anon_sym_delete] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2421), - [sym_number] = ACTIONS(2421), - [sym_this] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_null] = ACTIONS(2419), - [sym_undefined] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_abstract] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_interface] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [sym_readonly] = ACTIONS(2419), + [ts_builtin_sym_end] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2240), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2240), + [anon_sym_typeof] = ACTIONS(2240), + [anon_sym_import] = ACTIONS(2240), + [anon_sym_var] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_with] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_debugger] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_throw] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2240), + [anon_sym_yield] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_class] = ACTIONS(2240), + [anon_sym_async] = ACTIONS(2240), + [anon_sym_function] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2240), + [anon_sym_delete] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_this] = ACTIONS(2240), + [sym_super] = ACTIONS(2240), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [sym_null] = ACTIONS(2240), + [sym_undefined] = ACTIONS(2240), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_abstract] = ACTIONS(2240), + [anon_sym_get] = ACTIONS(2240), + [anon_sym_set] = ACTIONS(2240), + [anon_sym_declare] = ACTIONS(2240), + [anon_sym_public] = ACTIONS(2240), + [anon_sym_private] = ACTIONS(2240), + [anon_sym_protected] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_any] = ACTIONS(2240), + [anon_sym_number] = ACTIONS(2240), + [anon_sym_boolean] = ACTIONS(2240), + [anon_sym_string] = ACTIONS(2240), + [anon_sym_symbol] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [sym_readonly] = ACTIONS(2240), }, [682] = { - [sym_identifier] = ACTIONS(2423), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_typeof] = ACTIONS(2423), - [anon_sym_import] = ACTIONS(2423), - [anon_sym_var] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_switch] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_await] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2423), - [anon_sym_with] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_debugger] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_throw] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_class] = ACTIONS(2423), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2423), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2425), - [anon_sym_void] = ACTIONS(2423), - [anon_sym_delete] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2425), - [anon_sym_DASH_DASH] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2425), - [sym_number] = ACTIONS(2425), - [sym_this] = ACTIONS(2423), - [sym_super] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_null] = ACTIONS(2423), - [sym_undefined] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_abstract] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_interface] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [sym_readonly] = ACTIONS(2423), + [ts_builtin_sym_end] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym_readonly] = ACTIONS(2244), }, [683] = { - [sym_identifier] = ACTIONS(2427), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_typeof] = ACTIONS(2427), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_var] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_switch] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_await] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_do] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_with] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_debugger] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_throw] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_SLASH] = ACTIONS(2427), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_function] = ACTIONS(2427), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2429), - [anon_sym_void] = ACTIONS(2427), - [anon_sym_delete] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2429), - [sym_number] = ACTIONS(2429), - [sym_this] = ACTIONS(2427), - [sym_super] = ACTIONS(2427), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_null] = ACTIONS(2427), - [sym_undefined] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_abstract] = ACTIONS(2427), - [anon_sym_get] = ACTIONS(2427), - [anon_sym_set] = ACTIONS(2427), - [anon_sym_declare] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_protected] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_any] = ACTIONS(2427), - [anon_sym_number] = ACTIONS(2427), - [anon_sym_boolean] = ACTIONS(2427), - [anon_sym_string] = ACTIONS(2427), - [anon_sym_symbol] = ACTIONS(2427), - [anon_sym_interface] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [sym_readonly] = ACTIONS(2427), + [ts_builtin_sym_end] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2248), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_default] = ACTIONS(2248), + [anon_sym_namespace] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2248), + [anon_sym_typeof] = ACTIONS(2248), + [anon_sym_import] = ACTIONS(2248), + [anon_sym_var] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_switch] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_await] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_debugger] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_throw] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_case] = ACTIONS(2248), + [anon_sym_yield] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_async] = ACTIONS(2248), + [anon_sym_function] = ACTIONS(2248), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_void] = ACTIONS(2248), + [anon_sym_delete] = ACTIONS(2248), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2246), + [sym_number] = ACTIONS(2246), + [sym_this] = ACTIONS(2248), + [sym_super] = ACTIONS(2248), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [sym_null] = ACTIONS(2248), + [sym_undefined] = ACTIONS(2248), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_abstract] = ACTIONS(2248), + [anon_sym_get] = ACTIONS(2248), + [anon_sym_set] = ACTIONS(2248), + [anon_sym_declare] = ACTIONS(2248), + [anon_sym_public] = ACTIONS(2248), + [anon_sym_private] = ACTIONS(2248), + [anon_sym_protected] = ACTIONS(2248), + [anon_sym_module] = ACTIONS(2248), + [anon_sym_any] = ACTIONS(2248), + [anon_sym_number] = ACTIONS(2248), + [anon_sym_boolean] = ACTIONS(2248), + [anon_sym_string] = ACTIONS(2248), + [anon_sym_symbol] = ACTIONS(2248), + [anon_sym_interface] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [sym_readonly] = ACTIONS(2248), }, [684] = { - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_namespace] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_typeof] = ACTIONS(2431), - [anon_sym_import] = ACTIONS(2431), - [anon_sym_var] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_switch] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_do] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_with] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_debugger] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_throw] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2431), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_function] = ACTIONS(2431), - [anon_sym_new] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_void] = ACTIONS(2431), - [anon_sym_delete] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2433), - [sym_number] = ACTIONS(2433), - [sym_this] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_null] = ACTIONS(2431), - [sym_undefined] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_abstract] = ACTIONS(2431), - [anon_sym_get] = ACTIONS(2431), - [anon_sym_set] = ACTIONS(2431), - [anon_sym_declare] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_protected] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_any] = ACTIONS(2431), - [anon_sym_number] = ACTIONS(2431), - [anon_sym_boolean] = ACTIONS(2431), - [anon_sym_string] = ACTIONS(2431), - [anon_sym_symbol] = ACTIONS(2431), - [anon_sym_interface] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [sym_readonly] = ACTIONS(2431), + [ts_builtin_sym_end] = ACTIONS(2250), + [sym_identifier] = ACTIONS(2252), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2252), + [anon_sym_namespace] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(2252), + [anon_sym_import] = ACTIONS(2252), + [anon_sym_var] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_switch] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_with] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_debugger] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_throw] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2252), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_class] = ACTIONS(2252), + [anon_sym_async] = ACTIONS(2252), + [anon_sym_function] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2252), + [anon_sym_delete] = ACTIONS(2252), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_this] = ACTIONS(2252), + [sym_super] = ACTIONS(2252), + [sym_true] = ACTIONS(2252), + [sym_false] = ACTIONS(2252), + [sym_null] = ACTIONS(2252), + [sym_undefined] = ACTIONS(2252), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_abstract] = ACTIONS(2252), + [anon_sym_get] = ACTIONS(2252), + [anon_sym_set] = ACTIONS(2252), + [anon_sym_declare] = ACTIONS(2252), + [anon_sym_public] = ACTIONS(2252), + [anon_sym_private] = ACTIONS(2252), + [anon_sym_protected] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_any] = ACTIONS(2252), + [anon_sym_number] = ACTIONS(2252), + [anon_sym_boolean] = ACTIONS(2252), + [anon_sym_string] = ACTIONS(2252), + [anon_sym_symbol] = ACTIONS(2252), + [anon_sym_interface] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), + [sym_readonly] = ACTIONS(2252), }, [685] = { - [sym_identifier] = ACTIONS(2435), - [anon_sym_export] = ACTIONS(2435), - [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2435), - [anon_sym_typeof] = ACTIONS(2435), - [anon_sym_import] = ACTIONS(2435), - [anon_sym_var] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [anon_sym_BANG] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_switch] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_await] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_debugger] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_throw] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_class] = ACTIONS(2435), - [anon_sym_async] = ACTIONS(2435), - [anon_sym_function] = ACTIONS(2435), - [anon_sym_new] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_void] = ACTIONS(2435), - [anon_sym_delete] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2437), - [sym_number] = ACTIONS(2437), - [sym_this] = ACTIONS(2435), - [sym_super] = ACTIONS(2435), - [sym_true] = ACTIONS(2435), - [sym_false] = ACTIONS(2435), - [sym_null] = ACTIONS(2435), - [sym_undefined] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_abstract] = ACTIONS(2435), - [anon_sym_get] = ACTIONS(2435), - [anon_sym_set] = ACTIONS(2435), - [anon_sym_declare] = ACTIONS(2435), - [anon_sym_public] = ACTIONS(2435), - [anon_sym_private] = ACTIONS(2435), - [anon_sym_protected] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_any] = ACTIONS(2435), - [anon_sym_number] = ACTIONS(2435), - [anon_sym_boolean] = ACTIONS(2435), - [anon_sym_string] = ACTIONS(2435), - [anon_sym_symbol] = ACTIONS(2435), - [anon_sym_interface] = ACTIONS(2435), - [anon_sym_enum] = ACTIONS(2435), - [sym_readonly] = ACTIONS(2435), + [ts_builtin_sym_end] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2256), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym_import] = ACTIONS(2256), + [anon_sym_var] = ACTIONS(2256), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_with] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_throw] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2256), + [anon_sym_yield] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_async] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2256), + [anon_sym_delete] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_this] = ACTIONS(2256), + [sym_super] = ACTIONS(2256), + [sym_true] = ACTIONS(2256), + [sym_false] = ACTIONS(2256), + [sym_null] = ACTIONS(2256), + [sym_undefined] = ACTIONS(2256), + [anon_sym_AT] = ACTIONS(2254), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_declare] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_protected] = ACTIONS(2256), + [anon_sym_module] = ACTIONS(2256), + [anon_sym_any] = ACTIONS(2256), + [anon_sym_number] = ACTIONS(2256), + [anon_sym_boolean] = ACTIONS(2256), + [anon_sym_string] = ACTIONS(2256), + [anon_sym_symbol] = ACTIONS(2256), + [anon_sym_interface] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [sym_readonly] = ACTIONS(2256), }, [686] = { - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2439), - [anon_sym_namespace] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2441), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(2439), - [anon_sym_import] = ACTIONS(2439), - [anon_sym_var] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_switch] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_await] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_do] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2439), - [anon_sym_with] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_debugger] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_throw] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_class] = ACTIONS(2439), - [anon_sym_async] = ACTIONS(2439), - [anon_sym_function] = ACTIONS(2439), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2441), - [anon_sym_void] = ACTIONS(2439), - [anon_sym_delete] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2441), - [anon_sym_DASH_DASH] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2441), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2441), - [sym_number] = ACTIONS(2441), - [sym_this] = ACTIONS(2439), - [sym_super] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_null] = ACTIONS(2439), - [sym_undefined] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2439), - [anon_sym_abstract] = ACTIONS(2439), - [anon_sym_get] = ACTIONS(2439), - [anon_sym_set] = ACTIONS(2439), - [anon_sym_declare] = ACTIONS(2439), - [anon_sym_public] = ACTIONS(2439), - [anon_sym_private] = ACTIONS(2439), - [anon_sym_protected] = ACTIONS(2439), - [anon_sym_module] = ACTIONS(2439), - [anon_sym_any] = ACTIONS(2439), - [anon_sym_number] = ACTIONS(2439), - [anon_sym_boolean] = ACTIONS(2439), - [anon_sym_string] = ACTIONS(2439), - [anon_sym_symbol] = ACTIONS(2439), - [anon_sym_interface] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [sym_readonly] = ACTIONS(2439), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LT] = ACTIONS(2258), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2258), + [anon_sym_DASH_DASH] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2258), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2258), + [sym_number] = ACTIONS(2258), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [sym_readonly] = ACTIONS(2260), }, [687] = { - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_namespace] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2443), - [anon_sym_typeof] = ACTIONS(2443), - [anon_sym_import] = ACTIONS(2443), - [anon_sym_var] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_switch] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_await] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_with] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_debugger] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_throw] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_function] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_void] = ACTIONS(2443), - [anon_sym_delete] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2445), - [anon_sym_DASH_DASH] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2445), - [sym_number] = ACTIONS(2445), - [sym_this] = ACTIONS(2443), - [sym_super] = ACTIONS(2443), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_undefined] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_abstract] = ACTIONS(2443), - [anon_sym_get] = ACTIONS(2443), - [anon_sym_set] = ACTIONS(2443), - [anon_sym_declare] = ACTIONS(2443), - [anon_sym_public] = ACTIONS(2443), - [anon_sym_private] = ACTIONS(2443), - [anon_sym_protected] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_any] = ACTIONS(2443), - [anon_sym_number] = ACTIONS(2443), - [anon_sym_boolean] = ACTIONS(2443), - [anon_sym_string] = ACTIONS(2443), - [anon_sym_symbol] = ACTIONS(2443), - [anon_sym_interface] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [sym_readonly] = ACTIONS(2443), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2262), + [sym_number] = ACTIONS(2262), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym_readonly] = ACTIONS(2264), }, [688] = { - [sym_identifier] = ACTIONS(2447), - [anon_sym_export] = ACTIONS(2447), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_typeof] = ACTIONS(2447), - [anon_sym_import] = ACTIONS(2447), - [anon_sym_var] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_switch] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_with] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_debugger] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_function] = ACTIONS(2447), - [anon_sym_new] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_void] = ACTIONS(2447), - [anon_sym_delete] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2449), - [sym_number] = ACTIONS(2449), - [sym_this] = ACTIONS(2447), - [sym_super] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_null] = ACTIONS(2447), - [sym_undefined] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_abstract] = ACTIONS(2447), - [anon_sym_get] = ACTIONS(2447), - [anon_sym_set] = ACTIONS(2447), - [anon_sym_declare] = ACTIONS(2447), - [anon_sym_public] = ACTIONS(2447), - [anon_sym_private] = ACTIONS(2447), - [anon_sym_protected] = ACTIONS(2447), - [anon_sym_module] = ACTIONS(2447), - [anon_sym_any] = ACTIONS(2447), - [anon_sym_number] = ACTIONS(2447), - [anon_sym_boolean] = ACTIONS(2447), - [anon_sym_string] = ACTIONS(2447), - [anon_sym_symbol] = ACTIONS(2447), - [anon_sym_interface] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [sym_readonly] = ACTIONS(2447), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2266), + [sym_number] = ACTIONS(2266), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym_readonly] = ACTIONS(2268), }, [689] = { - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2451), - [anon_sym_namespace] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_typeof] = ACTIONS(2451), - [anon_sym_import] = ACTIONS(2451), - [anon_sym_var] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_await] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_with] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_debugger] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_async] = ACTIONS(2451), - [anon_sym_function] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_void] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2453), - [sym_number] = ACTIONS(2453), - [sym_this] = ACTIONS(2451), - [sym_super] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [sym_undefined] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_abstract] = ACTIONS(2451), - [anon_sym_get] = ACTIONS(2451), - [anon_sym_set] = ACTIONS(2451), - [anon_sym_declare] = ACTIONS(2451), - [anon_sym_public] = ACTIONS(2451), - [anon_sym_private] = ACTIONS(2451), - [anon_sym_protected] = ACTIONS(2451), - [anon_sym_module] = ACTIONS(2451), - [anon_sym_any] = ACTIONS(2451), - [anon_sym_number] = ACTIONS(2451), - [anon_sym_boolean] = ACTIONS(2451), - [anon_sym_string] = ACTIONS(2451), - [anon_sym_symbol] = ACTIONS(2451), - [anon_sym_interface] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [sym_readonly] = ACTIONS(2451), + [ts_builtin_sym_end] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2270), + [sym_number] = ACTIONS(2270), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym_readonly] = ACTIONS(2272), }, [690] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3693), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3215), - [sym_optional_type] = STATE(3215), - [sym_rest_type] = STATE(3215), - [sym__tuple_type_member] = STATE(3215), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3568), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [sym_identifier] = ACTIONS(2455), + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_number] = ACTIONS(2274), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym_readonly] = ACTIONS(2276), + }, + [691] = { + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_default] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_case] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2278), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2278), + [anon_sym_DASH_DASH] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2278), + [sym_number] = ACTIONS(2278), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2278), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [sym_readonly] = ACTIONS(2280), + }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_case] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2282), + [anon_sym_DASH_DASH] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2282), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2282), + [sym_number] = ACTIONS(2282), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym_readonly] = ACTIONS(2284), + }, + [693] = { + [ts_builtin_sym_end] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_readonly] = ACTIONS(2288), + }, + [694] = { + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2290), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2290), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2290), + [anon_sym_SQUOTE] = ACTIONS(2290), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2290), + [sym_number] = ACTIONS(2290), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym_readonly] = ACTIONS(2292), + }, + [695] = { + [ts_builtin_sym_end] = ACTIONS(2294), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym_readonly] = ACTIONS(2296), + }, + [696] = { + [ts_builtin_sym_end] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym_readonly] = ACTIONS(2300), + }, + [697] = { + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym_readonly] = ACTIONS(2304), + }, + [698] = { + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2306), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2306), + [anon_sym_DASH_DASH] = ACTIONS(2306), + [anon_sym_DQUOTE] = ACTIONS(2306), + [anon_sym_SQUOTE] = ACTIONS(2306), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2306), + [sym_number] = ACTIONS(2306), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2306), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym_readonly] = ACTIONS(2308), + }, + [699] = { + [ts_builtin_sym_end] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2312), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_default] = ACTIONS(2312), + [anon_sym_namespace] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2312), + [anon_sym_typeof] = ACTIONS(2312), + [anon_sym_import] = ACTIONS(2312), + [anon_sym_var] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_switch] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2312), + [anon_sym_with] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_debugger] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_throw] = ACTIONS(2312), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2312), + [anon_sym_yield] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2312), + [anon_sym_async] = ACTIONS(2312), + [anon_sym_function] = ACTIONS(2312), + [anon_sym_new] = ACTIONS(2312), + [anon_sym_PLUS] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2312), + [anon_sym_delete] = ACTIONS(2312), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_this] = ACTIONS(2312), + [sym_super] = ACTIONS(2312), + [sym_true] = ACTIONS(2312), + [sym_false] = ACTIONS(2312), + [sym_null] = ACTIONS(2312), + [sym_undefined] = ACTIONS(2312), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2312), + [anon_sym_abstract] = ACTIONS(2312), + [anon_sym_get] = ACTIONS(2312), + [anon_sym_set] = ACTIONS(2312), + [anon_sym_declare] = ACTIONS(2312), + [anon_sym_public] = ACTIONS(2312), + [anon_sym_private] = ACTIONS(2312), + [anon_sym_protected] = ACTIONS(2312), + [anon_sym_module] = ACTIONS(2312), + [anon_sym_any] = ACTIONS(2312), + [anon_sym_number] = ACTIONS(2312), + [anon_sym_boolean] = ACTIONS(2312), + [anon_sym_string] = ACTIONS(2312), + [anon_sym_symbol] = ACTIONS(2312), + [anon_sym_interface] = ACTIONS(2312), + [anon_sym_enum] = ACTIONS(2312), + [sym_readonly] = ACTIONS(2312), + }, + [700] = { + [ts_builtin_sym_end] = ACTIONS(2314), + [sym_identifier] = ACTIONS(2316), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_default] = ACTIONS(2316), + [anon_sym_namespace] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2316), + [anon_sym_typeof] = ACTIONS(2316), + [anon_sym_import] = ACTIONS(2316), + [anon_sym_var] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_switch] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_with] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_debugger] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_throw] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_case] = ACTIONS(2316), + [anon_sym_yield] = ACTIONS(2316), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2316), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_function] = ACTIONS(2316), + [anon_sym_new] = ACTIONS(2316), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2316), + [anon_sym_delete] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_this] = ACTIONS(2316), + [sym_super] = ACTIONS(2316), + [sym_true] = ACTIONS(2316), + [sym_false] = ACTIONS(2316), + [sym_null] = ACTIONS(2316), + [sym_undefined] = ACTIONS(2316), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2316), + [anon_sym_abstract] = ACTIONS(2316), + [anon_sym_get] = ACTIONS(2316), + [anon_sym_set] = ACTIONS(2316), + [anon_sym_declare] = ACTIONS(2316), + [anon_sym_public] = ACTIONS(2316), + [anon_sym_private] = ACTIONS(2316), + [anon_sym_protected] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_any] = ACTIONS(2316), + [anon_sym_number] = ACTIONS(2316), + [anon_sym_boolean] = ACTIONS(2316), + [anon_sym_string] = ACTIONS(2316), + [anon_sym_symbol] = ACTIONS(2316), + [anon_sym_interface] = ACTIONS(2316), + [anon_sym_enum] = ACTIONS(2316), + [sym_readonly] = ACTIONS(2316), + }, + [701] = { + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(2320), + [anon_sym_default] = ACTIONS(2320), + [anon_sym_namespace] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2320), + [anon_sym_typeof] = ACTIONS(2320), + [anon_sym_import] = ACTIONS(2320), + [anon_sym_var] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2320), + [anon_sym_const] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_switch] = ACTIONS(2320), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_do] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2320), + [anon_sym_with] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_debugger] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_throw] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2320), + [anon_sym_yield] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2320), + [anon_sym_class] = ACTIONS(2320), + [anon_sym_async] = ACTIONS(2320), + [anon_sym_function] = ACTIONS(2320), + [anon_sym_new] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2320), + [anon_sym_delete] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_this] = ACTIONS(2320), + [sym_super] = ACTIONS(2320), + [sym_true] = ACTIONS(2320), + [sym_false] = ACTIONS(2320), + [sym_null] = ACTIONS(2320), + [sym_undefined] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2320), + [anon_sym_abstract] = ACTIONS(2320), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_declare] = ACTIONS(2320), + [anon_sym_public] = ACTIONS(2320), + [anon_sym_private] = ACTIONS(2320), + [anon_sym_protected] = ACTIONS(2320), + [anon_sym_module] = ACTIONS(2320), + [anon_sym_any] = ACTIONS(2320), + [anon_sym_number] = ACTIONS(2320), + [anon_sym_boolean] = ACTIONS(2320), + [anon_sym_string] = ACTIONS(2320), + [anon_sym_symbol] = ACTIONS(2320), + [anon_sym_interface] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2320), + [sym_readonly] = ACTIONS(2320), + }, + [702] = { + [ts_builtin_sym_end] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2324), + [anon_sym_export] = ACTIONS(2324), + [anon_sym_default] = ACTIONS(2324), + [anon_sym_namespace] = ACTIONS(2324), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_type] = ACTIONS(2324), + [anon_sym_typeof] = ACTIONS(2324), + [anon_sym_import] = ACTIONS(2324), + [anon_sym_var] = ACTIONS(2324), + [anon_sym_let] = ACTIONS(2324), + [anon_sym_const] = ACTIONS(2324), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2324), + [anon_sym_if] = ACTIONS(2324), + [anon_sym_switch] = ACTIONS(2324), + [anon_sym_for] = ACTIONS(2324), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_await] = ACTIONS(2324), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_do] = ACTIONS(2324), + [anon_sym_try] = ACTIONS(2324), + [anon_sym_with] = ACTIONS(2324), + [anon_sym_break] = ACTIONS(2324), + [anon_sym_continue] = ACTIONS(2324), + [anon_sym_debugger] = ACTIONS(2324), + [anon_sym_return] = ACTIONS(2324), + [anon_sym_throw] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(2322), + [anon_sym_case] = ACTIONS(2324), + [anon_sym_yield] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_LT] = ACTIONS(2322), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_class] = ACTIONS(2324), + [anon_sym_async] = ACTIONS(2324), + [anon_sym_function] = ACTIONS(2324), + [anon_sym_new] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_TILDE] = ACTIONS(2322), + [anon_sym_void] = ACTIONS(2324), + [anon_sym_delete] = ACTIONS(2324), + [anon_sym_PLUS_PLUS] = ACTIONS(2322), + [anon_sym_DASH_DASH] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2322), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2322), + [sym_number] = ACTIONS(2322), + [sym_this] = ACTIONS(2324), + [sym_super] = ACTIONS(2324), + [sym_true] = ACTIONS(2324), + [sym_false] = ACTIONS(2324), + [sym_null] = ACTIONS(2324), + [sym_undefined] = ACTIONS(2324), + [anon_sym_AT] = ACTIONS(2322), + [anon_sym_static] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2324), + [anon_sym_get] = ACTIONS(2324), + [anon_sym_set] = ACTIONS(2324), + [anon_sym_declare] = ACTIONS(2324), + [anon_sym_public] = ACTIONS(2324), + [anon_sym_private] = ACTIONS(2324), + [anon_sym_protected] = ACTIONS(2324), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_any] = ACTIONS(2324), + [anon_sym_number] = ACTIONS(2324), + [anon_sym_boolean] = ACTIONS(2324), + [anon_sym_string] = ACTIONS(2324), + [anon_sym_symbol] = ACTIONS(2324), + [anon_sym_interface] = ACTIONS(2324), + [anon_sym_enum] = ACTIONS(2324), + [sym_readonly] = ACTIONS(2324), + }, + [703] = { + [ts_builtin_sym_end] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2326), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2326), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(2326), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2326), + [sym_number] = ACTIONS(2326), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2326), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym_readonly] = ACTIONS(2328), + }, + [704] = { + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2330), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2330), + [sym_number] = ACTIONS(2330), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym_readonly] = ACTIONS(2332), + }, + [705] = { + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_namespace] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_typeof] = ACTIONS(2336), + [anon_sym_import] = ACTIONS(2336), + [anon_sym_var] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_switch] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_await] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_with] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_debugger] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_throw] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_case] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_class] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_function] = ACTIONS(2336), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_void] = ACTIONS(2336), + [anon_sym_delete] = ACTIONS(2336), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2334), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2334), + [sym_number] = ACTIONS(2334), + [sym_this] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_true] = ACTIONS(2336), + [sym_false] = ACTIONS(2336), + [sym_null] = ACTIONS(2336), + [sym_undefined] = ACTIONS(2336), + [anon_sym_AT] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_abstract] = ACTIONS(2336), + [anon_sym_get] = ACTIONS(2336), + [anon_sym_set] = ACTIONS(2336), + [anon_sym_declare] = ACTIONS(2336), + [anon_sym_public] = ACTIONS(2336), + [anon_sym_private] = ACTIONS(2336), + [anon_sym_protected] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_any] = ACTIONS(2336), + [anon_sym_number] = ACTIONS(2336), + [anon_sym_boolean] = ACTIONS(2336), + [anon_sym_string] = ACTIONS(2336), + [anon_sym_symbol] = ACTIONS(2336), + [anon_sym_interface] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), + [sym_readonly] = ACTIONS(2336), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2338), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2338), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2338), + [anon_sym_DASH_DASH] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [anon_sym_SQUOTE] = ACTIONS(2338), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2338), + [sym_number] = ACTIONS(2338), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym_readonly] = ACTIONS(2340), + }, + [707] = { + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2344), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2344), + [anon_sym_namespace] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2344), + [anon_sym_typeof] = ACTIONS(2344), + [anon_sym_import] = ACTIONS(2344), + [anon_sym_var] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_switch] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_await] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_with] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_debugger] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_throw] = ACTIONS(2344), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_case] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2344), + [anon_sym_class] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_function] = ACTIONS(2344), + [anon_sym_new] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_void] = ACTIONS(2344), + [anon_sym_delete] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2342), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2342), + [sym_number] = ACTIONS(2342), + [sym_this] = ACTIONS(2344), + [sym_super] = ACTIONS(2344), + [sym_true] = ACTIONS(2344), + [sym_false] = ACTIONS(2344), + [sym_null] = ACTIONS(2344), + [sym_undefined] = ACTIONS(2344), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_static] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2344), + [anon_sym_get] = ACTIONS(2344), + [anon_sym_set] = ACTIONS(2344), + [anon_sym_declare] = ACTIONS(2344), + [anon_sym_public] = ACTIONS(2344), + [anon_sym_private] = ACTIONS(2344), + [anon_sym_protected] = ACTIONS(2344), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_any] = ACTIONS(2344), + [anon_sym_number] = ACTIONS(2344), + [anon_sym_boolean] = ACTIONS(2344), + [anon_sym_string] = ACTIONS(2344), + [anon_sym_symbol] = ACTIONS(2344), + [anon_sym_interface] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), + [sym_readonly] = ACTIONS(2344), + }, + [708] = { + [ts_builtin_sym_end] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2346), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2346), + [sym_number] = ACTIONS(2346), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym_readonly] = ACTIONS(2348), + }, + [709] = { + [ts_builtin_sym_end] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2352), + [anon_sym_export] = ACTIONS(2352), + [anon_sym_default] = ACTIONS(2352), + [anon_sym_namespace] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2352), + [anon_sym_typeof] = ACTIONS(2352), + [anon_sym_import] = ACTIONS(2352), + [anon_sym_var] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_switch] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_await] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_debugger] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_throw] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2352), + [anon_sym_yield] = ACTIONS(2352), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2352), + [anon_sym_class] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2352), + [anon_sym_function] = ACTIONS(2352), + [anon_sym_new] = ACTIONS(2352), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2350), + [anon_sym_void] = ACTIONS(2352), + [anon_sym_delete] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2350), + [sym_number] = ACTIONS(2350), + [sym_this] = ACTIONS(2352), + [sym_super] = ACTIONS(2352), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [sym_null] = ACTIONS(2352), + [sym_undefined] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2352), + [anon_sym_abstract] = ACTIONS(2352), + [anon_sym_get] = ACTIONS(2352), + [anon_sym_set] = ACTIONS(2352), + [anon_sym_declare] = ACTIONS(2352), + [anon_sym_public] = ACTIONS(2352), + [anon_sym_private] = ACTIONS(2352), + [anon_sym_protected] = ACTIONS(2352), + [anon_sym_module] = ACTIONS(2352), + [anon_sym_any] = ACTIONS(2352), + [anon_sym_number] = ACTIONS(2352), + [anon_sym_boolean] = ACTIONS(2352), + [anon_sym_string] = ACTIONS(2352), + [anon_sym_symbol] = ACTIONS(2352), + [anon_sym_interface] = ACTIONS(2352), + [anon_sym_enum] = ACTIONS(2352), + [sym_readonly] = ACTIONS(2352), + }, + [710] = { + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1230), + [anon_sym_export] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_typeof] = ACTIONS(1230), + [anon_sym_import] = ACTIONS(1230), + [anon_sym_var] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_await] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_try] = ACTIONS(1230), + [anon_sym_with] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_debugger] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_throw] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_class] = ACTIONS(1230), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_void] = ACTIONS(1230), + [anon_sym_delete] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1228), + [sym_number] = ACTIONS(1228), + [sym_this] = ACTIONS(1230), + [sym_super] = ACTIONS(1230), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [sym_null] = ACTIONS(1230), + [sym_undefined] = ACTIONS(1230), + [anon_sym_AT] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_abstract] = ACTIONS(1230), + [anon_sym_get] = ACTIONS(1230), + [anon_sym_set] = ACTIONS(1230), + [anon_sym_declare] = ACTIONS(1230), + [anon_sym_public] = ACTIONS(1230), + [anon_sym_private] = ACTIONS(1230), + [anon_sym_protected] = ACTIONS(1230), + [anon_sym_module] = ACTIONS(1230), + [anon_sym_any] = ACTIONS(1230), + [anon_sym_number] = ACTIONS(1230), + [anon_sym_boolean] = ACTIONS(1230), + [anon_sym_string] = ACTIONS(1230), + [anon_sym_symbol] = ACTIONS(1230), + [anon_sym_interface] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [sym_readonly] = ACTIONS(1230), + }, + [711] = { + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2354), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2354), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2354), + [anon_sym_SQUOTE] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2354), + [sym_number] = ACTIONS(2354), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_readonly] = ACTIONS(2356), + }, + [712] = { + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym_readonly] = ACTIONS(2360), + }, + [713] = { + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2364), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_namespace] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_import] = ACTIONS(2364), + [anon_sym_var] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_await] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_with] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_debugger] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_throw] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_yield] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_class] = ACTIONS(2364), + [anon_sym_async] = ACTIONS(2364), + [anon_sym_function] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_void] = ACTIONS(2364), + [anon_sym_delete] = ACTIONS(2364), + [anon_sym_PLUS_PLUS] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(2362), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2362), + [sym_number] = ACTIONS(2362), + [sym_this] = ACTIONS(2364), + [sym_super] = ACTIONS(2364), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [sym_null] = ACTIONS(2364), + [sym_undefined] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(2362), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2364), + [anon_sym_get] = ACTIONS(2364), + [anon_sym_set] = ACTIONS(2364), + [anon_sym_declare] = ACTIONS(2364), + [anon_sym_public] = ACTIONS(2364), + [anon_sym_private] = ACTIONS(2364), + [anon_sym_protected] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_any] = ACTIONS(2364), + [anon_sym_number] = ACTIONS(2364), + [anon_sym_boolean] = ACTIONS(2364), + [anon_sym_string] = ACTIONS(2364), + [anon_sym_symbol] = ACTIONS(2364), + [anon_sym_interface] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [sym_readonly] = ACTIONS(2364), + }, + [714] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_readonly] = ACTIONS(2368), + }, + [715] = { + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2372), + [anon_sym_export] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2372), + [anon_sym_typeof] = ACTIONS(2372), + [anon_sym_import] = ACTIONS(2372), + [anon_sym_var] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_debugger] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_yield] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_async] = ACTIONS(2372), + [anon_sym_function] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_this] = ACTIONS(2372), + [sym_super] = ACTIONS(2372), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_undefined] = ACTIONS(2372), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_abstract] = ACTIONS(2372), + [anon_sym_get] = ACTIONS(2372), + [anon_sym_set] = ACTIONS(2372), + [anon_sym_declare] = ACTIONS(2372), + [anon_sym_public] = ACTIONS(2372), + [anon_sym_private] = ACTIONS(2372), + [anon_sym_protected] = ACTIONS(2372), + [anon_sym_module] = ACTIONS(2372), + [anon_sym_any] = ACTIONS(2372), + [anon_sym_number] = ACTIONS(2372), + [anon_sym_boolean] = ACTIONS(2372), + [anon_sym_string] = ACTIONS(2372), + [anon_sym_symbol] = ACTIONS(2372), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [sym_readonly] = ACTIONS(2372), + }, + [716] = { + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2374), + [sym_number] = ACTIONS(2374), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2374), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym_readonly] = ACTIONS(2376), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2378), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2378), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2378), + [sym_number] = ACTIONS(2378), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2378), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym_readonly] = ACTIONS(2380), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2382), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2382), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2382), + [anon_sym_SQUOTE] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2382), + [sym_number] = ACTIONS(2382), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2382), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym_readonly] = ACTIONS(2384), + }, + [719] = { + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym_readonly] = ACTIONS(2388), + }, + [720] = { + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2392), + [anon_sym_default] = ACTIONS(2392), + [anon_sym_namespace] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_typeof] = ACTIONS(2392), + [anon_sym_import] = ACTIONS(2392), + [anon_sym_var] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_switch] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_await] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2392), + [anon_sym_with] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_debugger] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_throw] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_case] = ACTIONS(2392), + [anon_sym_yield] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_class] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(2392), + [anon_sym_function] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_void] = ACTIONS(2392), + [anon_sym_delete] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2390), + [sym_number] = ACTIONS(2390), + [sym_this] = ACTIONS(2392), + [sym_super] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_null] = ACTIONS(2392), + [sym_undefined] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_abstract] = ACTIONS(2392), + [anon_sym_get] = ACTIONS(2392), + [anon_sym_set] = ACTIONS(2392), + [anon_sym_declare] = ACTIONS(2392), + [anon_sym_public] = ACTIONS(2392), + [anon_sym_private] = ACTIONS(2392), + [anon_sym_protected] = ACTIONS(2392), + [anon_sym_module] = ACTIONS(2392), + [anon_sym_any] = ACTIONS(2392), + [anon_sym_number] = ACTIONS(2392), + [anon_sym_boolean] = ACTIONS(2392), + [anon_sym_string] = ACTIONS(2392), + [anon_sym_symbol] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [sym_readonly] = ACTIONS(2392), + }, + [721] = { + [ts_builtin_sym_end] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2394), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2394), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2394), + [sym_number] = ACTIONS(2394), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2394), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym_readonly] = ACTIONS(2396), + }, + [722] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_export] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_typeof] = ACTIONS(1200), + [anon_sym_import] = ACTIONS(1200), + [anon_sym_var] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_await] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_try] = ACTIONS(1200), + [anon_sym_with] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_debugger] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_throw] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_SLASH] = ACTIONS(1200), + [anon_sym_class] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_function] = ACTIONS(1200), + [anon_sym_new] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1200), + [anon_sym_delete] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_number] = ACTIONS(1198), + [sym_this] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [sym_null] = ACTIONS(1200), + [sym_undefined] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_abstract] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(1200), + [anon_sym_set] = ACTIONS(1200), + [anon_sym_declare] = ACTIONS(1200), + [anon_sym_public] = ACTIONS(1200), + [anon_sym_private] = ACTIONS(1200), + [anon_sym_protected] = ACTIONS(1200), + [anon_sym_module] = ACTIONS(1200), + [anon_sym_any] = ACTIONS(1200), + [anon_sym_number] = ACTIONS(1200), + [anon_sym_boolean] = ACTIONS(1200), + [anon_sym_string] = ACTIONS(1200), + [anon_sym_symbol] = ACTIONS(1200), + [anon_sym_interface] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [sym_readonly] = ACTIONS(1200), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2400), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_typeof] = ACTIONS(2400), + [anon_sym_import] = ACTIONS(2400), + [anon_sym_var] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_await] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_with] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_debugger] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_yield] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_void] = ACTIONS(2400), + [anon_sym_delete] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2398), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2398), + [sym_number] = ACTIONS(2398), + [sym_this] = ACTIONS(2400), + [sym_super] = ACTIONS(2400), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [sym_null] = ACTIONS(2400), + [sym_undefined] = ACTIONS(2400), + [anon_sym_AT] = ACTIONS(2398), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_abstract] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_interface] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [sym_readonly] = ACTIONS(2400), + }, + [724] = { + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [sym_readonly] = ACTIONS(2404), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_namespace] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_type] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_import] = ACTIONS(2408), + [anon_sym_var] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_await] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_with] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_debugger] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_yield] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_async] = ACTIONS(2408), + [anon_sym_function] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_void] = ACTIONS(2408), + [anon_sym_delete] = ACTIONS(2408), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2406), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2406), + [sym_number] = ACTIONS(2406), + [sym_this] = ACTIONS(2408), + [sym_super] = ACTIONS(2408), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_undefined] = ACTIONS(2408), + [anon_sym_AT] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_abstract] = ACTIONS(2408), + [anon_sym_get] = ACTIONS(2408), + [anon_sym_set] = ACTIONS(2408), + [anon_sym_declare] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_protected] = ACTIONS(2408), + [anon_sym_module] = ACTIONS(2408), + [anon_sym_any] = ACTIONS(2408), + [anon_sym_number] = ACTIONS(2408), + [anon_sym_boolean] = ACTIONS(2408), + [anon_sym_string] = ACTIONS(2408), + [anon_sym_symbol] = ACTIONS(2408), + [anon_sym_interface] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [sym_readonly] = ACTIONS(2408), + }, + [726] = { + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_import] = ACTIONS(2412), + [anon_sym_var] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_with] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_debugger] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_yield] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2412), + [anon_sym_function] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2412), + [anon_sym_delete] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_this] = ACTIONS(2412), + [sym_super] = ACTIONS(2412), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [sym_null] = ACTIONS(2412), + [sym_undefined] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2412), + [anon_sym_get] = ACTIONS(2412), + [anon_sym_set] = ACTIONS(2412), + [anon_sym_declare] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_protected] = ACTIONS(2412), + [anon_sym_module] = ACTIONS(2412), + [anon_sym_any] = ACTIONS(2412), + [anon_sym_number] = ACTIONS(2412), + [anon_sym_boolean] = ACTIONS(2412), + [anon_sym_string] = ACTIONS(2412), + [anon_sym_symbol] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [sym_readonly] = ACTIONS(2412), + }, + [727] = { + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2416), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_import] = ACTIONS(2416), + [anon_sym_var] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_debugger] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_yield] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_this] = ACTIONS(2416), + [sym_super] = ACTIONS(2416), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [sym_null] = ACTIONS(2416), + [sym_undefined] = ACTIONS(2416), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_abstract] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_interface] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [sym_readonly] = ACTIONS(2416), + }, + [728] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_import] = ACTIONS(2420), + [anon_sym_var] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_with] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_debugger] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_yield] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_this] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_undefined] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_declare] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_any] = ACTIONS(2420), + [anon_sym_number] = ACTIONS(2420), + [anon_sym_boolean] = ACTIONS(2420), + [anon_sym_string] = ACTIONS(2420), + [anon_sym_symbol] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [sym_readonly] = ACTIONS(2420), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_import] = ACTIONS(2424), + [anon_sym_var] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_with] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_debugger] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_yield] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_this] = ACTIONS(2424), + [sym_super] = ACTIONS(2424), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_undefined] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_abstract] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_declare] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_any] = ACTIONS(2424), + [anon_sym_number] = ACTIONS(2424), + [anon_sym_boolean] = ACTIONS(2424), + [anon_sym_string] = ACTIONS(2424), + [anon_sym_symbol] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [sym_readonly] = ACTIONS(2424), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_import] = ACTIONS(2428), + [anon_sym_var] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_await] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_with] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_debugger] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_yield] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2428), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_void] = ACTIONS(2428), + [anon_sym_delete] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2426), + [sym_number] = ACTIONS(2426), + [sym_this] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [sym_null] = ACTIONS(2428), + [sym_undefined] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2426), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_abstract] = ACTIONS(2428), + [anon_sym_get] = ACTIONS(2428), + [anon_sym_set] = ACTIONS(2428), + [anon_sym_declare] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_module] = ACTIONS(2428), + [anon_sym_any] = ACTIONS(2428), + [anon_sym_number] = ACTIONS(2428), + [anon_sym_boolean] = ACTIONS(2428), + [anon_sym_string] = ACTIONS(2428), + [anon_sym_symbol] = ACTIONS(2428), + [anon_sym_interface] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [sym_readonly] = ACTIONS(2428), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_import] = ACTIONS(2432), + [anon_sym_var] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_with] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_debugger] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_yield] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_this] = ACTIONS(2432), + [sym_super] = ACTIONS(2432), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [sym_null] = ACTIONS(2432), + [sym_undefined] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_abstract] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [sym_readonly] = ACTIONS(2432), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2436), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_import] = ACTIONS(2436), + [anon_sym_var] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_with] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_debugger] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_yield] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_this] = ACTIONS(2436), + [sym_super] = ACTIONS(2436), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [sym_null] = ACTIONS(2436), + [sym_undefined] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(2434), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_abstract] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_interface] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [sym_readonly] = ACTIONS(2436), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2438), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym_readonly] = ACTIONS(2440), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2444), + [anon_sym_export] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2444), + [anon_sym_typeof] = ACTIONS(2444), + [anon_sym_import] = ACTIONS(2444), + [anon_sym_var] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_with] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_debugger] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_yield] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_function] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2444), + [anon_sym_delete] = ACTIONS(2444), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_this] = ACTIONS(2444), + [sym_super] = ACTIONS(2444), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [sym_null] = ACTIONS(2444), + [sym_undefined] = ACTIONS(2444), + [anon_sym_AT] = ACTIONS(2442), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_abstract] = ACTIONS(2444), + [anon_sym_get] = ACTIONS(2444), + [anon_sym_set] = ACTIONS(2444), + [anon_sym_declare] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_any] = ACTIONS(2444), + [anon_sym_number] = ACTIONS(2444), + [anon_sym_boolean] = ACTIONS(2444), + [anon_sym_string] = ACTIONS(2444), + [anon_sym_symbol] = ACTIONS(2444), + [anon_sym_interface] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [sym_readonly] = ACTIONS(2444), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2446), + [sym_number] = ACTIONS(2446), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym_readonly] = ACTIONS(2448), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_with] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [sym_readonly] = ACTIONS(2452), + }, + [737] = { + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_readonly] = ACTIONS(2456), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2460), + [anon_sym_export] = ACTIONS(2460), + [anon_sym_default] = ACTIONS(2460), + [anon_sym_namespace] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2460), + [anon_sym_typeof] = ACTIONS(2460), + [anon_sym_import] = ACTIONS(2460), + [anon_sym_var] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_switch] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_do] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2460), + [anon_sym_with] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_debugger] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_throw] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2460), + [anon_sym_yield] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_class] = ACTIONS(2460), + [anon_sym_async] = ACTIONS(2460), + [anon_sym_function] = ACTIONS(2460), + [anon_sym_new] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2460), + [anon_sym_delete] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_this] = ACTIONS(2460), + [sym_super] = ACTIONS(2460), + [sym_true] = ACTIONS(2460), + [sym_false] = ACTIONS(2460), + [sym_null] = ACTIONS(2460), + [sym_undefined] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_abstract] = ACTIONS(2460), + [anon_sym_get] = ACTIONS(2460), + [anon_sym_set] = ACTIONS(2460), + [anon_sym_declare] = ACTIONS(2460), + [anon_sym_public] = ACTIONS(2460), + [anon_sym_private] = ACTIONS(2460), + [anon_sym_protected] = ACTIONS(2460), + [anon_sym_module] = ACTIONS(2460), + [anon_sym_any] = ACTIONS(2460), + [anon_sym_number] = ACTIONS(2460), + [anon_sym_boolean] = ACTIONS(2460), + [anon_sym_string] = ACTIONS(2460), + [anon_sym_symbol] = ACTIONS(2460), + [anon_sym_interface] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + [sym_readonly] = ACTIONS(2460), + }, + [739] = { + [ts_builtin_sym_end] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_namespace] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_typeof] = ACTIONS(2464), + [anon_sym_import] = ACTIONS(2464), + [anon_sym_var] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_with] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_debugger] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_throw] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2464), + [anon_sym_yield] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_class] = ACTIONS(2464), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2464), + [anon_sym_delete] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_this] = ACTIONS(2464), + [sym_super] = ACTIONS(2464), + [sym_true] = ACTIONS(2464), + [sym_false] = ACTIONS(2464), + [sym_null] = ACTIONS(2464), + [sym_undefined] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_declare] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_protected] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_any] = ACTIONS(2464), + [anon_sym_number] = ACTIONS(2464), + [anon_sym_boolean] = ACTIONS(2464), + [anon_sym_string] = ACTIONS(2464), + [anon_sym_symbol] = ACTIONS(2464), + [anon_sym_interface] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [sym_readonly] = ACTIONS(2464), + }, + [740] = { + [ts_builtin_sym_end] = ACTIONS(2466), + [sym_identifier] = ACTIONS(2468), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_namespace] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2468), + [anon_sym_typeof] = ACTIONS(2468), + [anon_sym_import] = ACTIONS(2468), + [anon_sym_var] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_switch] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_await] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_with] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_debugger] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_throw] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2468), + [anon_sym_yield] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_class] = ACTIONS(2468), + [anon_sym_async] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_void] = ACTIONS(2468), + [anon_sym_delete] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2466), + [sym_number] = ACTIONS(2466), + [sym_this] = ACTIONS(2468), + [sym_super] = ACTIONS(2468), + [sym_true] = ACTIONS(2468), + [sym_false] = ACTIONS(2468), + [sym_null] = ACTIONS(2468), + [sym_undefined] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_get] = ACTIONS(2468), + [anon_sym_set] = ACTIONS(2468), + [anon_sym_declare] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_protected] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_any] = ACTIONS(2468), + [anon_sym_number] = ACTIONS(2468), + [anon_sym_boolean] = ACTIONS(2468), + [anon_sym_string] = ACTIONS(2468), + [anon_sym_symbol] = ACTIONS(2468), + [anon_sym_interface] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [sym_readonly] = ACTIONS(2468), + }, + [741] = { + [ts_builtin_sym_end] = ACTIONS(2470), + [sym_identifier] = ACTIONS(2472), + [anon_sym_export] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2472), + [anon_sym_namespace] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2472), + [anon_sym_import] = ACTIONS(2472), + [anon_sym_var] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_do] = ACTIONS(2472), + [anon_sym_try] = ACTIONS(2472), + [anon_sym_with] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_debugger] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_throw] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_class] = ACTIONS(2472), + [anon_sym_async] = ACTIONS(2472), + [anon_sym_function] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2472), + [anon_sym_delete] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_this] = ACTIONS(2472), + [sym_super] = ACTIONS(2472), + [sym_true] = ACTIONS(2472), + [sym_false] = ACTIONS(2472), + [sym_null] = ACTIONS(2472), + [sym_undefined] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_abstract] = ACTIONS(2472), + [anon_sym_get] = ACTIONS(2472), + [anon_sym_set] = ACTIONS(2472), + [anon_sym_declare] = ACTIONS(2472), + [anon_sym_public] = ACTIONS(2472), + [anon_sym_private] = ACTIONS(2472), + [anon_sym_protected] = ACTIONS(2472), + [anon_sym_module] = ACTIONS(2472), + [anon_sym_any] = ACTIONS(2472), + [anon_sym_number] = ACTIONS(2472), + [anon_sym_boolean] = ACTIONS(2472), + [anon_sym_string] = ACTIONS(2472), + [anon_sym_symbol] = ACTIONS(2472), + [anon_sym_interface] = ACTIONS(2472), + [anon_sym_enum] = ACTIONS(2472), + [sym_readonly] = ACTIONS(2472), + }, + [742] = { + [ts_builtin_sym_end] = ACTIONS(2474), + [sym_identifier] = ACTIONS(2476), + [anon_sym_export] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2476), + [anon_sym_typeof] = ACTIONS(2476), + [anon_sym_import] = ACTIONS(2476), + [anon_sym_var] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_with] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_debugger] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_yield] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_void] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2474), + [sym_number] = ACTIONS(2474), + [sym_this] = ACTIONS(2476), + [sym_super] = ACTIONS(2476), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_undefined] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_abstract] = ACTIONS(2476), + [anon_sym_get] = ACTIONS(2476), + [anon_sym_set] = ACTIONS(2476), + [anon_sym_declare] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_protected] = ACTIONS(2476), + [anon_sym_module] = ACTIONS(2476), + [anon_sym_any] = ACTIONS(2476), + [anon_sym_number] = ACTIONS(2476), + [anon_sym_boolean] = ACTIONS(2476), + [anon_sym_string] = ACTIONS(2476), + [anon_sym_symbol] = ACTIONS(2476), + [anon_sym_interface] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [sym_readonly] = ACTIONS(2476), + }, + [743] = { + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [anon_sym_export] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2480), + [anon_sym_typeof] = ACTIONS(2480), + [anon_sym_import] = ACTIONS(2480), + [anon_sym_var] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_with] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_debugger] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_throw] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_yield] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2480), + [anon_sym_class] = ACTIONS(2480), + [anon_sym_async] = ACTIONS(2480), + [anon_sym_function] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2480), + [anon_sym_delete] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_this] = ACTIONS(2480), + [sym_super] = ACTIONS(2480), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_undefined] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_abstract] = ACTIONS(2480), + [anon_sym_get] = ACTIONS(2480), + [anon_sym_set] = ACTIONS(2480), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_public] = ACTIONS(2480), + [anon_sym_private] = ACTIONS(2480), + [anon_sym_protected] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2480), + [anon_sym_any] = ACTIONS(2480), + [anon_sym_number] = ACTIONS(2480), + [anon_sym_boolean] = ACTIONS(2480), + [anon_sym_string] = ACTIONS(2480), + [anon_sym_symbol] = ACTIONS(2480), + [anon_sym_interface] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [sym_readonly] = ACTIONS(2480), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2484), + [anon_sym_namespace] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2484), + [anon_sym_typeof] = ACTIONS(2484), + [anon_sym_import] = ACTIONS(2484), + [anon_sym_var] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_switch] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_with] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_debugger] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_throw] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2484), + [anon_sym_yield] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2484), + [anon_sym_class] = ACTIONS(2484), + [anon_sym_async] = ACTIONS(2484), + [anon_sym_function] = ACTIONS(2484), + [anon_sym_new] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2484), + [anon_sym_delete] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_this] = ACTIONS(2484), + [sym_super] = ACTIONS(2484), + [sym_true] = ACTIONS(2484), + [sym_false] = ACTIONS(2484), + [sym_null] = ACTIONS(2484), + [sym_undefined] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_get] = ACTIONS(2484), + [anon_sym_set] = ACTIONS(2484), + [anon_sym_declare] = ACTIONS(2484), + [anon_sym_public] = ACTIONS(2484), + [anon_sym_private] = ACTIONS(2484), + [anon_sym_protected] = ACTIONS(2484), + [anon_sym_module] = ACTIONS(2484), + [anon_sym_any] = ACTIONS(2484), + [anon_sym_number] = ACTIONS(2484), + [anon_sym_boolean] = ACTIONS(2484), + [anon_sym_string] = ACTIONS(2484), + [anon_sym_symbol] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [sym_readonly] = ACTIONS(2484), + }, + [745] = { + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_typeof] = ACTIONS(2488), + [anon_sym_import] = ACTIONS(2488), + [anon_sym_var] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_await] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_with] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_debugger] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_throw] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2488), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_void] = ACTIONS(2488), + [anon_sym_delete] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_number] = ACTIONS(2486), + [sym_this] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_true] = ACTIONS(2488), + [sym_false] = ACTIONS(2488), + [sym_null] = ACTIONS(2488), + [sym_undefined] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_declare] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_protected] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_any] = ACTIONS(2488), + [anon_sym_number] = ACTIONS(2488), + [anon_sym_boolean] = ACTIONS(2488), + [anon_sym_string] = ACTIONS(2488), + [anon_sym_symbol] = ACTIONS(2488), + [anon_sym_interface] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [sym_readonly] = ACTIONS(2488), + }, + [746] = { + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_typeof] = ACTIONS(2492), + [anon_sym_import] = ACTIONS(2492), + [anon_sym_var] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_switch] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_await] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_with] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_debugger] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_throw] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2492), + [anon_sym_yield] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2490), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_class] = ACTIONS(2492), + [anon_sym_async] = ACTIONS(2492), + [anon_sym_function] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2490), + [anon_sym_void] = ACTIONS(2492), + [anon_sym_delete] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2490), + [sym_number] = ACTIONS(2490), + [sym_this] = ACTIONS(2492), + [sym_super] = ACTIONS(2492), + [sym_true] = ACTIONS(2492), + [sym_false] = ACTIONS(2492), + [sym_null] = ACTIONS(2492), + [sym_undefined] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_abstract] = ACTIONS(2492), + [anon_sym_get] = ACTIONS(2492), + [anon_sym_set] = ACTIONS(2492), + [anon_sym_declare] = ACTIONS(2492), + [anon_sym_public] = ACTIONS(2492), + [anon_sym_private] = ACTIONS(2492), + [anon_sym_protected] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_any] = ACTIONS(2492), + [anon_sym_number] = ACTIONS(2492), + [anon_sym_boolean] = ACTIONS(2492), + [anon_sym_string] = ACTIONS(2492), + [anon_sym_symbol] = ACTIONS(2492), + [anon_sym_interface] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [sym_readonly] = ACTIONS(2492), + }, + [747] = { + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2496), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_namespace] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_type] = ACTIONS(2496), + [anon_sym_typeof] = ACTIONS(2496), + [anon_sym_import] = ACTIONS(2496), + [anon_sym_var] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_switch] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_await] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_with] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_debugger] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_throw] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2494), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_class] = ACTIONS(2496), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(2496), + [anon_sym_new] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2494), + [anon_sym_void] = ACTIONS(2496), + [anon_sym_delete] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2494), + [sym_number] = ACTIONS(2494), + [sym_this] = ACTIONS(2496), + [sym_super] = ACTIONS(2496), + [sym_true] = ACTIONS(2496), + [sym_false] = ACTIONS(2496), + [sym_null] = ACTIONS(2496), + [sym_undefined] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_abstract] = ACTIONS(2496), + [anon_sym_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_declare] = ACTIONS(2496), + [anon_sym_public] = ACTIONS(2496), + [anon_sym_private] = ACTIONS(2496), + [anon_sym_protected] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_any] = ACTIONS(2496), + [anon_sym_number] = ACTIONS(2496), + [anon_sym_boolean] = ACTIONS(2496), + [anon_sym_string] = ACTIONS(2496), + [anon_sym_symbol] = ACTIONS(2496), + [anon_sym_interface] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [sym_readonly] = ACTIONS(2496), + }, + [748] = { + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2500), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_namespace] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(2500), + [anon_sym_import] = ACTIONS(2500), + [anon_sym_var] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_switch] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_await] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_with] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_debugger] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_throw] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_class] = ACTIONS(2500), + [anon_sym_async] = ACTIONS(2500), + [anon_sym_function] = ACTIONS(2500), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2498), + [anon_sym_void] = ACTIONS(2500), + [anon_sym_delete] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2498), + [sym_number] = ACTIONS(2498), + [sym_this] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_true] = ACTIONS(2500), + [sym_false] = ACTIONS(2500), + [sym_null] = ACTIONS(2500), + [sym_undefined] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_abstract] = ACTIONS(2500), + [anon_sym_get] = ACTIONS(2500), + [anon_sym_set] = ACTIONS(2500), + [anon_sym_declare] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_protected] = ACTIONS(2500), + [anon_sym_module] = ACTIONS(2500), + [anon_sym_any] = ACTIONS(2500), + [anon_sym_number] = ACTIONS(2500), + [anon_sym_boolean] = ACTIONS(2500), + [anon_sym_string] = ACTIONS(2500), + [anon_sym_symbol] = ACTIONS(2500), + [anon_sym_interface] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), + [sym_readonly] = ACTIONS(2500), + }, + [749] = { + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_namespace] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_typeof] = ACTIONS(2504), + [anon_sym_import] = ACTIONS(2504), + [anon_sym_var] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_switch] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_await] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_with] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_debugger] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_throw] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_case] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_class] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2502), + [anon_sym_void] = ACTIONS(2504), + [anon_sym_delete] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2502), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2502), + [sym_number] = ACTIONS(2502), + [sym_this] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_true] = ACTIONS(2504), + [sym_false] = ACTIONS(2504), + [sym_null] = ACTIONS(2504), + [sym_undefined] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_get] = ACTIONS(2504), + [anon_sym_set] = ACTIONS(2504), + [anon_sym_declare] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_protected] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_any] = ACTIONS(2504), + [anon_sym_number] = ACTIONS(2504), + [anon_sym_boolean] = ACTIONS(2504), + [anon_sym_string] = ACTIONS(2504), + [anon_sym_symbol] = ACTIONS(2504), + [anon_sym_interface] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [sym_readonly] = ACTIONS(2504), + }, + [750] = { + [sym_identifier] = ACTIONS(2506), + [anon_sym_export] = ACTIONS(2506), + [anon_sym_namespace] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2508), + [anon_sym_type] = ACTIONS(2506), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_import] = ACTIONS(2506), + [anon_sym_var] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_switch] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_await] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2506), + [anon_sym_with] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_debugger] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_throw] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_yield] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2506), + [anon_sym_class] = ACTIONS(2506), + [anon_sym_async] = ACTIONS(2506), + [anon_sym_function] = ACTIONS(2506), + [anon_sym_new] = ACTIONS(2506), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_TILDE] = ACTIONS(2508), + [anon_sym_void] = ACTIONS(2506), + [anon_sym_delete] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2508), + [anon_sym_DASH_DASH] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2508), + [sym_number] = ACTIONS(2508), + [sym_this] = ACTIONS(2506), + [sym_super] = ACTIONS(2506), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_abstract] = ACTIONS(2506), + [anon_sym_get] = ACTIONS(2506), + [anon_sym_set] = ACTIONS(2506), + [anon_sym_declare] = ACTIONS(2506), + [anon_sym_public] = ACTIONS(2506), + [anon_sym_private] = ACTIONS(2506), + [anon_sym_protected] = ACTIONS(2506), + [anon_sym_module] = ACTIONS(2506), + [anon_sym_any] = ACTIONS(2506), + [anon_sym_number] = ACTIONS(2506), + [anon_sym_boolean] = ACTIONS(2506), + [anon_sym_string] = ACTIONS(2506), + [anon_sym_symbol] = ACTIONS(2506), + [anon_sym_interface] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [sym_readonly] = ACTIONS(2506), + }, + [751] = { + [sym_identifier] = ACTIONS(2510), + [anon_sym_export] = ACTIONS(2510), + [anon_sym_namespace] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2510), + [anon_sym_typeof] = ACTIONS(2510), + [anon_sym_import] = ACTIONS(2510), + [anon_sym_var] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_switch] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_await] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2510), + [anon_sym_with] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_debugger] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_throw] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2510), + [anon_sym_class] = ACTIONS(2510), + [anon_sym_async] = ACTIONS(2510), + [anon_sym_function] = ACTIONS(2510), + [anon_sym_new] = ACTIONS(2510), + [anon_sym_PLUS] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(2510), + [anon_sym_delete] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2512), + [sym_number] = ACTIONS(2512), + [sym_this] = ACTIONS(2510), + [sym_super] = ACTIONS(2510), + [sym_true] = ACTIONS(2510), + [sym_false] = ACTIONS(2510), + [sym_null] = ACTIONS(2510), + [sym_undefined] = ACTIONS(2510), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_abstract] = ACTIONS(2510), + [anon_sym_get] = ACTIONS(2510), + [anon_sym_set] = ACTIONS(2510), + [anon_sym_declare] = ACTIONS(2510), + [anon_sym_public] = ACTIONS(2510), + [anon_sym_private] = ACTIONS(2510), + [anon_sym_protected] = ACTIONS(2510), + [anon_sym_module] = ACTIONS(2510), + [anon_sym_any] = ACTIONS(2510), + [anon_sym_number] = ACTIONS(2510), + [anon_sym_boolean] = ACTIONS(2510), + [anon_sym_string] = ACTIONS(2510), + [anon_sym_symbol] = ACTIONS(2510), + [anon_sym_interface] = ACTIONS(2510), + [anon_sym_enum] = ACTIONS(2510), + [sym_readonly] = ACTIONS(2510), + }, + [752] = { + [sym_identifier] = ACTIONS(2514), + [anon_sym_export] = ACTIONS(2514), + [anon_sym_namespace] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2514), + [anon_sym_import] = ACTIONS(2514), + [anon_sym_var] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2514), + [anon_sym_const] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_switch] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_await] = ACTIONS(2514), + [anon_sym_while] = ACTIONS(2514), + [anon_sym_do] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_debugger] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_throw] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2516), + [anon_sym_void] = ACTIONS(2514), + [anon_sym_delete] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2516), + [anon_sym_SQUOTE] = ACTIONS(2516), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2516), + [sym_number] = ACTIONS(2516), + [sym_this] = ACTIONS(2514), + [sym_super] = ACTIONS(2514), + [sym_true] = ACTIONS(2514), + [sym_false] = ACTIONS(2514), + [sym_null] = ACTIONS(2514), + [sym_undefined] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2514), + [anon_sym_abstract] = ACTIONS(2514), + [anon_sym_get] = ACTIONS(2514), + [anon_sym_set] = ACTIONS(2514), + [anon_sym_declare] = ACTIONS(2514), + [anon_sym_public] = ACTIONS(2514), + [anon_sym_private] = ACTIONS(2514), + [anon_sym_protected] = ACTIONS(2514), + [anon_sym_module] = ACTIONS(2514), + [anon_sym_any] = ACTIONS(2514), + [anon_sym_number] = ACTIONS(2514), + [anon_sym_boolean] = ACTIONS(2514), + [anon_sym_string] = ACTIONS(2514), + [anon_sym_symbol] = ACTIONS(2514), + [anon_sym_interface] = ACTIONS(2514), + [anon_sym_enum] = ACTIONS(2514), + [sym_readonly] = ACTIONS(2514), + }, + [753] = { + [sym_identifier] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_typeof] = ACTIONS(2518), + [anon_sym_import] = ACTIONS(2518), + [anon_sym_var] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_with] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_debugger] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_throw] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_function] = ACTIONS(2518), + [anon_sym_new] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2518), + [anon_sym_delete] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_this] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_true] = ACTIONS(2518), + [sym_false] = ACTIONS(2518), + [sym_null] = ACTIONS(2518), + [sym_undefined] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_abstract] = ACTIONS(2518), + [anon_sym_get] = ACTIONS(2518), + [anon_sym_set] = ACTIONS(2518), + [anon_sym_declare] = ACTIONS(2518), + [anon_sym_public] = ACTIONS(2518), + [anon_sym_private] = ACTIONS(2518), + [anon_sym_protected] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_any] = ACTIONS(2518), + [anon_sym_number] = ACTIONS(2518), + [anon_sym_boolean] = ACTIONS(2518), + [anon_sym_string] = ACTIONS(2518), + [anon_sym_symbol] = ACTIONS(2518), + [anon_sym_interface] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + [sym_readonly] = ACTIONS(2518), + }, + [754] = { + [sym_identifier] = ACTIONS(2522), + [anon_sym_export] = ACTIONS(2522), + [anon_sym_namespace] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2522), + [anon_sym_import] = ACTIONS(2522), + [anon_sym_var] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_switch] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_await] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_with] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_debugger] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_throw] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_function] = ACTIONS(2522), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2524), + [anon_sym_void] = ACTIONS(2522), + [anon_sym_delete] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2524), + [sym_number] = ACTIONS(2524), + [sym_this] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_abstract] = ACTIONS(2522), + [anon_sym_get] = ACTIONS(2522), + [anon_sym_set] = ACTIONS(2522), + [anon_sym_declare] = ACTIONS(2522), + [anon_sym_public] = ACTIONS(2522), + [anon_sym_private] = ACTIONS(2522), + [anon_sym_protected] = ACTIONS(2522), + [anon_sym_module] = ACTIONS(2522), + [anon_sym_any] = ACTIONS(2522), + [anon_sym_number] = ACTIONS(2522), + [anon_sym_boolean] = ACTIONS(2522), + [anon_sym_string] = ACTIONS(2522), + [anon_sym_symbol] = ACTIONS(2522), + [anon_sym_interface] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [sym_readonly] = ACTIONS(2522), + }, + [755] = { + [sym_identifier] = ACTIONS(2526), + [anon_sym_export] = ACTIONS(2526), + [anon_sym_namespace] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2526), + [anon_sym_typeof] = ACTIONS(2526), + [anon_sym_import] = ACTIONS(2526), + [anon_sym_var] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_switch] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_await] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_do] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_debugger] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_throw] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_SLASH] = ACTIONS(2526), + [anon_sym_class] = ACTIONS(2526), + [anon_sym_async] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_void] = ACTIONS(2526), + [anon_sym_delete] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_SQUOTE] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2528), + [sym_number] = ACTIONS(2528), + [sym_this] = ACTIONS(2526), + [sym_super] = ACTIONS(2526), + [sym_true] = ACTIONS(2526), + [sym_false] = ACTIONS(2526), + [sym_null] = ACTIONS(2526), + [sym_undefined] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2526), + [anon_sym_abstract] = ACTIONS(2526), + [anon_sym_get] = ACTIONS(2526), + [anon_sym_set] = ACTIONS(2526), + [anon_sym_declare] = ACTIONS(2526), + [anon_sym_public] = ACTIONS(2526), + [anon_sym_private] = ACTIONS(2526), + [anon_sym_protected] = ACTIONS(2526), + [anon_sym_module] = ACTIONS(2526), + [anon_sym_any] = ACTIONS(2526), + [anon_sym_number] = ACTIONS(2526), + [anon_sym_boolean] = ACTIONS(2526), + [anon_sym_string] = ACTIONS(2526), + [anon_sym_symbol] = ACTIONS(2526), + [anon_sym_interface] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2526), + [sym_readonly] = ACTIONS(2526), + }, + [756] = { + [sym_identifier] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(2530), + [anon_sym_namespace] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_typeof] = ACTIONS(2530), + [anon_sym_import] = ACTIONS(2530), + [anon_sym_var] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2530), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2530), + [anon_sym_switch] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_await] = ACTIONS(2530), + [anon_sym_while] = ACTIONS(2530), + [anon_sym_do] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2530), + [anon_sym_with] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_debugger] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2530), + [anon_sym_throw] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2530), + [anon_sym_class] = ACTIONS(2530), + [anon_sym_async] = ACTIONS(2530), + [anon_sym_function] = ACTIONS(2530), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_PLUS] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2532), + [anon_sym_void] = ACTIONS(2530), + [anon_sym_delete] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2532), + [anon_sym_SQUOTE] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2532), + [sym_number] = ACTIONS(2532), + [sym_this] = ACTIONS(2530), + [sym_super] = ACTIONS(2530), + [sym_true] = ACTIONS(2530), + [sym_false] = ACTIONS(2530), + [sym_null] = ACTIONS(2530), + [sym_undefined] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_abstract] = ACTIONS(2530), + [anon_sym_get] = ACTIONS(2530), + [anon_sym_set] = ACTIONS(2530), + [anon_sym_declare] = ACTIONS(2530), + [anon_sym_public] = ACTIONS(2530), + [anon_sym_private] = ACTIONS(2530), + [anon_sym_protected] = ACTIONS(2530), + [anon_sym_module] = ACTIONS(2530), + [anon_sym_any] = ACTIONS(2530), + [anon_sym_number] = ACTIONS(2530), + [anon_sym_boolean] = ACTIONS(2530), + [anon_sym_string] = ACTIONS(2530), + [anon_sym_symbol] = ACTIONS(2530), + [anon_sym_interface] = ACTIONS(2530), + [anon_sym_enum] = ACTIONS(2530), + [sym_readonly] = ACTIONS(2530), + }, + [757] = { + [sym_identifier] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2534), + [anon_sym_namespace] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(2534), + [anon_sym_import] = ACTIONS(2534), + [anon_sym_var] = ACTIONS(2534), + [anon_sym_let] = ACTIONS(2534), + [anon_sym_const] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2534), + [anon_sym_switch] = ACTIONS(2534), + [anon_sym_for] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_await] = ACTIONS(2534), + [anon_sym_while] = ACTIONS(2534), + [anon_sym_do] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2534), + [anon_sym_with] = ACTIONS(2534), + [anon_sym_break] = ACTIONS(2534), + [anon_sym_continue] = ACTIONS(2534), + [anon_sym_debugger] = ACTIONS(2534), + [anon_sym_return] = ACTIONS(2534), + [anon_sym_throw] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2534), + [anon_sym_class] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(2534), + [anon_sym_function] = ACTIONS(2534), + [anon_sym_new] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2534), + [anon_sym_delete] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2536), + [sym_number] = ACTIONS(2536), + [sym_this] = ACTIONS(2534), + [sym_super] = ACTIONS(2534), + [sym_true] = ACTIONS(2534), + [sym_false] = ACTIONS(2534), + [sym_null] = ACTIONS(2534), + [sym_undefined] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2534), + [anon_sym_abstract] = ACTIONS(2534), + [anon_sym_get] = ACTIONS(2534), + [anon_sym_set] = ACTIONS(2534), + [anon_sym_declare] = ACTIONS(2534), + [anon_sym_public] = ACTIONS(2534), + [anon_sym_private] = ACTIONS(2534), + [anon_sym_protected] = ACTIONS(2534), + [anon_sym_module] = ACTIONS(2534), + [anon_sym_any] = ACTIONS(2534), + [anon_sym_number] = ACTIONS(2534), + [anon_sym_boolean] = ACTIONS(2534), + [anon_sym_string] = ACTIONS(2534), + [anon_sym_symbol] = ACTIONS(2534), + [anon_sym_interface] = ACTIONS(2534), + [anon_sym_enum] = ACTIONS(2534), + [sym_readonly] = ACTIONS(2534), + }, + [758] = { + [sym_identifier] = ACTIONS(2538), + [anon_sym_export] = ACTIONS(2538), + [anon_sym_namespace] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_typeof] = ACTIONS(2538), + [anon_sym_import] = ACTIONS(2538), + [anon_sym_var] = ACTIONS(2538), + [anon_sym_let] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_switch] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_await] = ACTIONS(2538), + [anon_sym_while] = ACTIONS(2538), + [anon_sym_do] = ACTIONS(2538), + [anon_sym_try] = ACTIONS(2538), + [anon_sym_with] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_debugger] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_throw] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2538), + [anon_sym_class] = ACTIONS(2538), + [anon_sym_async] = ACTIONS(2538), + [anon_sym_function] = ACTIONS(2538), + [anon_sym_new] = ACTIONS(2538), + [anon_sym_PLUS] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_delete] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2540), + [sym_number] = ACTIONS(2540), + [sym_this] = ACTIONS(2538), + [sym_super] = ACTIONS(2538), + [sym_true] = ACTIONS(2538), + [sym_false] = ACTIONS(2538), + [sym_null] = ACTIONS(2538), + [sym_undefined] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2538), + [anon_sym_get] = ACTIONS(2538), + [anon_sym_set] = ACTIONS(2538), + [anon_sym_declare] = ACTIONS(2538), + [anon_sym_public] = ACTIONS(2538), + [anon_sym_private] = ACTIONS(2538), + [anon_sym_protected] = ACTIONS(2538), + [anon_sym_module] = ACTIONS(2538), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_interface] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [sym_readonly] = ACTIONS(2538), + }, + [759] = { + [sym_identifier] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_typeof] = ACTIONS(2542), + [anon_sym_import] = ACTIONS(2542), + [anon_sym_var] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_await] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_with] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_debugger] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_yield] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_async] = ACTIONS(2542), + [anon_sym_function] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2544), + [anon_sym_void] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2544), + [sym_this] = ACTIONS(2542), + [sym_super] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_null] = ACTIONS(2542), + [sym_undefined] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_abstract] = ACTIONS(2542), + [anon_sym_get] = ACTIONS(2542), + [anon_sym_set] = ACTIONS(2542), + [anon_sym_declare] = ACTIONS(2542), + [anon_sym_public] = ACTIONS(2542), + [anon_sym_private] = ACTIONS(2542), + [anon_sym_protected] = ACTIONS(2542), + [anon_sym_module] = ACTIONS(2542), + [anon_sym_any] = ACTIONS(2542), + [anon_sym_number] = ACTIONS(2542), + [anon_sym_boolean] = ACTIONS(2542), + [anon_sym_string] = ACTIONS(2542), + [anon_sym_symbol] = ACTIONS(2542), + [anon_sym_interface] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [sym_readonly] = ACTIONS(2542), + }, + [760] = { + [sym_nested_identifier] = STATE(90), + [sym_string] = STATE(91), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(97), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3850), + [sym_identifier] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(2548), + [anon_sym_SQUOTE] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [761] = { + [sym_nested_identifier] = STATE(90), + [sym_string] = STATE(91), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(97), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(2548), + [anon_sym_SQUOTE] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [762] = { + [sym_nested_identifier] = STATE(643), + [sym_string] = STATE(654), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(713), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [763] = { + [sym_nested_identifier] = STATE(90), + [sym_string] = STATE(91), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(97), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3755), + [sym_identifier] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(2548), + [anon_sym_SQUOTE] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [764] = { + [sym_nested_identifier] = STATE(643), + [sym_string] = STATE(654), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(713), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3850), + [sym_identifier] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [765] = { + [sym_nested_identifier] = STATE(643), + [sym_string] = STATE(654), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(713), + [sym_call_type_arguments] = STATE(3588), + [aux_sym_object_repeat1] = STATE(3755), + [sym_identifier] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [766] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3720), + [sym_optional_type] = STATE(3720), + [sym_rest_type] = STATE(3720), + [sym__tuple_type_member] = STATE(3720), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_RBRACK] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(2465), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), [anon_sym_keyof] = ACTIONS(523), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [691] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3693), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3369), - [sym_optional_type] = STATE(3369), - [sym_rest_type] = STATE(3369), - [sym__tuple_type_member] = STATE(3369), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3568), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [sym_identifier] = ACTIONS(2455), + [767] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3922), + [sym_optional_type] = STATE(3922), + [sym_rest_type] = STATE(3922), + [sym__tuple_type_member] = STATE(3922), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_RBRACK] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(2465), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), [anon_sym_keyof] = ACTIONS(523), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [692] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3693), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3382), - [sym_optional_type] = STATE(3382), - [sym_rest_type] = STATE(3382), - [sym__tuple_type_member] = STATE(3382), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3568), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [sym_identifier] = ACTIONS(2455), + [768] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3793), + [sym_optional_type] = STATE(3793), + [sym_rest_type] = STATE(3793), + [sym__tuple_type_member] = STATE(3793), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_RBRACK] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(2465), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), [anon_sym_keyof] = ACTIONS(523), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [693] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3693), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3257), - [sym_optional_type] = STATE(3257), - [sym_rest_type] = STATE(3257), - [sym__tuple_type_member] = STATE(3257), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3568), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [sym_identifier] = ACTIONS(2455), + [769] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3878), + [sym_optional_type] = STATE(3878), + [sym_rest_type] = STATE(3878), + [sym__tuple_type_member] = STATE(3878), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(2465), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), [anon_sym_keyof] = ACTIONS(523), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [694] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3693), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3234), - [sym_optional_type] = STATE(3234), - [sym_rest_type] = STATE(3234), - [sym__tuple_type_member] = STATE(3234), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3568), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [sym_identifier] = ACTIONS(2455), + [770] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3877), + [sym_optional_type] = STATE(3877), + [sym_rest_type] = STATE(3877), + [sym__tuple_type_member] = STATE(3877), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(2465), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), [anon_sym_keyof] = ACTIONS(523), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [695] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3693), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3344), - [sym_optional_type] = STATE(3344), - [sym_rest_type] = STATE(3344), - [sym__tuple_type_member] = STATE(3344), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3568), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [sym_identifier] = ACTIONS(2455), + [771] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3914), + [sym_optional_type] = STATE(3914), + [sym_rest_type] = STATE(3914), + [sym__tuple_type_member] = STATE(3914), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(2465), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), [anon_sym_keyof] = ACTIONS(523), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [696] = { - [sym_nested_identifier] = STATE(1260), - [sym_string] = STATE(1259), - [sym_arguments] = STATE(1360), - [sym__module] = STATE(1442), - [sym_type_arguments] = STATE(1268), - [sym_identifier] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - }, - [697] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(499), - [sym_formal_parameters] = STATE(3693), - [sym_nested_type_identifier] = STATE(2235), - [sym__rest_identifier] = STATE(3961), - [sym_rest_identifier] = STATE(3577), - [sym__type] = STATE(2763), - [sym_optional_identifier] = STATE(3577), - [sym__tuple_type_identifier] = STATE(3577), - [sym_labeled_tuple_type_member] = STATE(3433), - [sym_optional_type] = STATE(3433), - [sym_rest_type] = STATE(3433), - [sym__tuple_type_member] = STATE(3433), - [sym_constructor_type] = STATE(2763), - [sym__primary_type] = STATE(484), - [sym_infer_type] = STATE(2763), - [sym_conditional_type] = STATE(484), - [sym_generic_type] = STATE(484), - [sym_type_query] = STATE(484), - [sym_index_type_query] = STATE(484), - [sym_lookup_type] = STATE(484), - [sym_literal_type] = STATE(484), - [sym__number] = STATE(499), - [sym_existential_type] = STATE(484), - [sym_flow_maybe_type] = STATE(484), - [sym_parenthesized_type] = STATE(484), - [sym_predefined_type] = STATE(484), - [sym_object_type] = STATE(484), - [sym_type_parameters] = STATE(3568), - [sym_array_type] = STATE(484), - [sym__tuple_type_body] = STATE(483), - [sym_tuple_type] = STATE(484), - [sym_union_type] = STATE(2763), - [sym_intersection_type] = STATE(2763), - [sym_function_type] = STATE(2763), - [sym_identifier] = ACTIONS(2455), + [772] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(3778), + [sym_optional_type] = STATE(3778), + [sym_rest_type] = STATE(3778), + [sym__tuple_type_member] = STATE(3778), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), [anon_sym_QMARK] = ACTIONS(489), [anon_sym_AMP] = ACTIONS(491), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(2465), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1011), - [anon_sym_number] = ACTIONS(1011), - [anon_sym_boolean] = ACTIONS(1011), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_symbol] = ACTIONS(1011), - [sym_readonly] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), [anon_sym_infer] = ACTIONS(521), [anon_sym_keyof] = ACTIONS(523), [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [698] = { - [sym_nested_identifier] = STATE(567), - [sym_string] = STATE(590), - [sym__module] = STATE(634), - [aux_sym_object_repeat1] = STATE(3394), - [sym_identifier] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym__automatic_semicolon] = ACTIONS(1009), + [773] = { + [sym_nested_identifier] = STATE(1523), + [sym_string] = STATE(1524), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(1686), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [774] = { + [sym_nested_identifier] = STATE(4517), + [sym_string] = STATE(569), + [sym_formal_parameters] = STATE(4313), + [sym_nested_type_identifier] = STATE(2555), + [sym__rest_identifier] = STATE(4318), + [sym_rest_identifier] = STATE(4041), + [sym__type] = STATE(3108), + [sym_optional_identifier] = STATE(4041), + [sym__tuple_type_identifier] = STATE(4041), + [sym_labeled_tuple_type_member] = STATE(4121), + [sym_optional_type] = STATE(4121), + [sym_rest_type] = STATE(4121), + [sym__tuple_type_member] = STATE(4121), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(570), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(570), + [sym_generic_type] = STATE(570), + [sym_type_query] = STATE(570), + [sym_index_type_query] = STATE(570), + [sym_lookup_type] = STATE(570), + [sym_literal_type] = STATE(570), + [sym__number] = STATE(569), + [sym_existential_type] = STATE(570), + [sym_flow_maybe_type] = STATE(570), + [sym_parenthesized_type] = STATE(570), + [sym_predefined_type] = STATE(570), + [sym_object_type] = STATE(570), + [sym_type_parameters] = STATE(4120), + [sym_array_type] = STATE(570), + [sym__tuple_type_body] = STATE(567), + [sym_tuple_type] = STATE(570), + [sym_union_type] = STATE(3108), + [sym_intersection_type] = STATE(3108), + [sym_function_type] = STATE(3108), + [sym_identifier] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(749), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [anon_sym_any] = ACTIONS(743), + [anon_sym_number] = ACTIONS(743), + [anon_sym_boolean] = ACTIONS(743), + [anon_sym_string] = ACTIONS(743), + [anon_sym_symbol] = ACTIONS(743), + [sym_readonly] = ACTIONS(1074), + [anon_sym_infer] = ACTIONS(521), + [anon_sym_keyof] = ACTIONS(523), + [anon_sym_LBRACE_PIPE] = ACTIONS(525), }, - [699] = { - [sym_nested_identifier] = STATE(567), - [sym_string] = STATE(590), - [sym__module] = STATE(634), - [aux_sym_object_repeat1] = STATE(3233), - [sym_identifier] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym__automatic_semicolon] = ACTIONS(1009), + [775] = { + [sym_nested_identifier] = STATE(643), + [sym_string] = STATE(654), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(713), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [776] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), }, - [700] = { - [sym_nested_identifier] = STATE(96), - [sym_string] = STATE(97), - [sym__module] = STATE(124), - [aux_sym_object_repeat1] = STATE(3394), - [sym_identifier] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2485), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym__automatic_semicolon] = ACTIONS(1009), + [777] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1951), + }, + [778] = { + [sym_nested_identifier] = STATE(643), + [sym_string] = STATE(654), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(713), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [779] = { + [sym_nested_identifier] = STATE(1523), + [sym_string] = STATE(1524), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(1686), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1963), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [780] = { + [sym_nested_identifier] = STATE(1523), + [sym_string] = STATE(1524), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(1686), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [781] = { + [sym_nested_identifier] = STATE(1523), + [sym_string] = STATE(1524), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(1686), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [782] = { + [sym_nested_identifier] = STATE(3658), + [sym_string] = STATE(654), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(713), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [783] = { + [sym_nested_identifier] = STATE(1523), + [sym_string] = STATE(1524), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(1686), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1926), + [anon_sym_of] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [784] = { + [sym_nested_identifier] = STATE(90), + [sym_string] = STATE(91), + [sym_template_string] = STATE(1506), + [sym_arguments] = STATE(1506), + [sym__module] = STATE(97), + [sym_call_type_arguments] = STATE(3588), + [sym_identifier] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1396), + [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(2548), + [anon_sym_SQUOTE] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(741), + }, + [785] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(2027), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_implements] = ACTIONS(706), + }, + [786] = { + [sym_template_string] = STATE(1406), + [sym_arguments] = STATE(1406), + [sym_type_arguments] = STATE(530), + [sym_call_type_arguments] = STATE(3474), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_as] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_else] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_in] = ACTIONS(625), + [anon_sym_while] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_QMARK_DOT] = ACTIONS(2591), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_STAR_STAR_EQ] = ACTIONS(635), + [anon_sym_AMP_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(635), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(625), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_STAR_STAR] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_QMARK_QMARK] = ACTIONS(625), + [anon_sym_instanceof] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_DASH_DASH] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_extends] = ACTIONS(621), }, - [701] = { - [sym_nested_identifier] = STATE(96), - [sym_string] = STATE(97), - [sym__module] = STATE(124), - [aux_sym_object_repeat1] = STATE(3233), - [sym_identifier] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2485), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym__automatic_semicolon] = ACTIONS(1009), + [787] = { + [sym_nested_identifier] = STATE(1869), + [sym_string] = STATE(1867), + [sym_template_string] = STATE(1796), + [sym_arguments] = STATE(1796), + [sym__module] = STATE(2153), + [sym_call_type_arguments] = STATE(3675), + [sym_identifier] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2046), + [anon_sym_as] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(2010), + [anon_sym_EQ_GT] = ACTIONS(2014), + [anon_sym_QMARK_DOT] = ACTIONS(2016), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_LBRACE_PIPE] = ACTIONS(741), + }, + [788] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), }, - [702] = { - [sym_nested_identifier] = STATE(567), - [sym_string] = STATE(590), - [sym__module] = STATE(634), - [aux_sym_object_repeat1] = STATE(3324), - [sym_identifier] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym__automatic_semicolon] = ACTIONS(1009), + [789] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(2027), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1951), + [anon_sym_implements] = ACTIONS(706), + }, + [790] = { + [sym_template_string] = STATE(1406), + [sym_arguments] = STATE(1406), + [sym_type_arguments] = STATE(1482), + [sym_call_type_arguments] = STATE(3474), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_STAR_STAR_EQ] = ACTIONS(635), + [anon_sym_AMP_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(635), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_QMARK_QMARK] = ACTIONS(623), + [anon_sym_instanceof] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_implements] = ACTIONS(621), + [anon_sym_extends] = ACTIONS(621), + }, + [791] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(725), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), }, - [703] = { - [sym_nested_identifier] = STATE(1260), - [sym_string] = STATE(1259), - [sym_arguments] = STATE(1853), - [sym__module] = STATE(1442), - [sym_type_arguments] = STATE(1691), - [sym_identifier] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), + [792] = { + [sym_nested_identifier] = STATE(1869), + [sym_string] = STATE(1867), + [sym_template_string] = STATE(1796), + [sym_arguments] = STATE(1796), + [sym__module] = STATE(2153), + [sym_call_type_arguments] = STATE(3675), + [sym_identifier] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2003), + [anon_sym_as] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_in] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(2010), + [anon_sym_EQ_GT] = ACTIONS(2014), + [anon_sym_QMARK_DOT] = ACTIONS(2016), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2018), + [anon_sym_LBRACE_PIPE] = ACTIONS(741), + }, + [793] = { + [sym_template_string] = STATE(1406), + [sym_arguments] = STATE(1406), + [sym_type_arguments] = STATE(1482), + [sym_call_type_arguments] = STATE(3474), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_STAR_STAR_EQ] = ACTIONS(635), + [anon_sym_AMP_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(635), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_QMARK_QMARK] = ACTIONS(623), + [anon_sym_instanceof] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_implements] = ACTIONS(621), + [anon_sym_extends] = ACTIONS(621), + }, + [794] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1951), + }, + [795] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), [anon_sym_DQUOTE] = ACTIONS(503), [anon_sym_SQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym__automatic_semicolon] = ACTIONS(1901), + [anon_sym_BQUOTE] = ACTIONS(507), }, - [704] = { - [sym_nested_identifier] = STATE(96), - [sym_string] = STATE(97), - [sym__module] = STATE(124), - [aux_sym_object_repeat1] = STATE(3324), - [sym_identifier] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR_EQ] = ACTIONS(999), - [anon_sym_AMP_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_instanceof] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2485), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1009), - [sym__automatic_semicolon] = ACTIONS(1009), + [796] = { + [sym_nested_identifier] = STATE(1514), + [sym_string] = STATE(1522), + [sym_template_string] = STATE(1419), + [sym_arguments] = STATE(1419), + [sym__module] = STATE(1653), + [sym_call_type_arguments] = STATE(3593), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_as] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_in] = ACTIONS(706), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(706), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), }, }; static uint16_t ts_small_parse_table[] = { - [0] = 19, + [0] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(2058), 1, + anon_sym_QMARK_DOT, + ACTIONS(2576), 1, sym_identifier, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_LT, - STATE(1259), 1, - sym_string, - STATE(1260), 1, + STATE(1514), 1, sym_nested_identifier, - STATE(1268), 1, - sym_type_arguments, - STATE(1360), 1, - sym_arguments, - STATE(1442), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - ACTIONS(1901), 10, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_COMMA, 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_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77242,7 +85481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 23, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -77266,50 +85505,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [103] = 19, + [105] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1123), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2473), 1, - sym_identifier, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_LT, - STATE(1259), 1, - sym_string, - STATE(1260), 1, + ACTIONS(2052), 1, + anon_sym_COLON, + ACTIONS(2576), 1, + sym_identifier, + STATE(1514), 1, sym_nested_identifier, - STATE(1268), 1, - sym_type_arguments, - STATE(1360), 1, - sym_arguments, - STATE(1442), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - ACTIONS(1901), 9, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 7, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77325,7 +85567,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 24, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -77349,47 +85591,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [206] = 15, + [212] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1069), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2600), 1, + anon_sym_LT, + ACTIONS(2603), 1, anon_sym_DOT, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 13, + ACTIONS(2605), 1, + anon_sym_QMARK_DOT, + STATE(2649), 1, + sym_type_arguments, + STATE(3508), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77405,12 +85652,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77419,9 +85664,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77429,51 +85672,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [301] = 19, + [309] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(1335), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1337), 1, - anon_sym_QMARK_DOT, - ACTIONS(1947), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_DOT, - ACTIONS(2473), 1, - sym_identifier, - ACTIONS(2491), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2493), 1, + ACTIONS(2600), 1, anon_sym_LT, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - STATE(1920), 1, + ACTIONS(2605), 1, + anon_sym_QMARK_DOT, + ACTIONS(2607), 1, + anon_sym_DOT, + STATE(2649), 1, sym_type_arguments, - STATE(1928), 1, + STATE(3508), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1503), 2, + sym_template_string, sym_arguments, - ACTIONS(1901), 9, + ACTIONS(621), 7, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77489,10 +85732,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 24, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -77503,9 +85744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77513,38 +85752,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [404] = 16, + [405] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1384), 1, + anon_sym_LT, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(1544), 1, - anon_sym_COLON, - ACTIONS(2479), 1, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1400), 1, + anon_sym_QMARK, + ACTIONS(1421), 1, + anon_sym_EQ, + ACTIONS(2609), 1, sym_identifier, - STATE(567), 1, - sym_nested_identifier, - STATE(590), 1, - sym_string, - STATE(634), 1, - sym__module, - ACTIONS(1009), 11, + STATE(3588), 1, + sym_call_type_arguments, + STATE(3755), 1, + aux_sym_object_repeat1, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 9, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -77552,8 +85796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77569,15 +85812,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -77594,48 +85835,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [500] = 17, + [507] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1963), 1, + ACTIONS(2611), 1, + anon_sym_EQ, + ACTIONS(2615), 1, + anon_sym_BANG, + ACTIONS(2617), 1, anon_sym_in, - ACTIONS(1966), 1, + ACTIONS(2620), 1, anon_sym_of, - ACTIONS(2495), 1, - sym_identifier, - STATE(1349), 1, - sym_nested_identifier, - STATE(1350), 1, - sym_string, - STATE(1542), 1, - sym__module, - ACTIONS(1009), 11, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3260), 1, + sym_type_annotation, + STATE(3474), 1, + sym_call_type_arguments, + STATE(3888), 1, + sym__initializer, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(2613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77651,11 +85900,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 23, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77674,47 +85920,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [598] = 16, + [613] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1079), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(1085), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(2600), 1, + anon_sym_LT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(2634), 1, anon_sym_DOT, - ACTIONS(1522), 1, - anon_sym_COLON, - ACTIONS(2495), 1, - sym_identifier, - STATE(1349), 1, - sym_nested_identifier, - STATE(1350), 1, - sym_string, - STATE(1542), 1, - sym__module, - ACTIONS(1009), 11, - sym__automatic_semicolon, + STATE(2649), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2631), 2, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(2636), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(2066), 4, + sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77730,12 +85982,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77744,9 +85994,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77754,47 +86002,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [694] = 16, + [713] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, + ACTIONS(727), 1, anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1926), 1, + anon_sym_in, + ACTIONS(1929), 1, + anon_sym_of, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(1544), 1, - anon_sym_COLON, - ACTIONS(2495), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, sym_identifier, - STATE(1349), 1, + STATE(1514), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1522), 1, sym_string, - STATE(1542), 1, + STATE(1653), 1, sym__module, - ACTIONS(1009), 11, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77810,12 +86065,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77835,50 +86088,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [790] = 19, + [821] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 1, anon_sym_QMARK_DOT, - ACTIONS(1089), 1, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_EQ_GT, - ACTIONS(1417), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2473), 1, - sym_identifier, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LT, - STATE(1259), 1, - sym_string, - STATE(1260), 1, + ACTIONS(2073), 1, + anon_sym_in, + ACTIONS(2076), 1, + anon_sym_of, + ACTIONS(2576), 1, + sym_identifier, + STATE(1514), 1, sym_nested_identifier, - STATE(1442), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - STATE(1691), 1, - sym_type_arguments, - STATE(1853), 1, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, sym_arguments, - ACTIONS(1901), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77894,11 +86151,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 23, + ACTIONS(706), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77918,37 +86174,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [892] = 16, + [929] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1384), 1, + anon_sym_LT, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(1532), 1, - anon_sym_COLON, - ACTIONS(2481), 1, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1400), 1, + anon_sym_QMARK, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1421), 1, + anon_sym_EQ, + ACTIONS(2609), 1, sym_identifier, - ACTIONS(2483), 1, - anon_sym_DQUOTE, - ACTIONS(2485), 1, - anon_sym_SQUOTE, - STATE(96), 1, - sym_nested_identifier, - STATE(97), 1, - sym_string, - STATE(124), 1, - sym__module, - ACTIONS(1009), 11, + STATE(3588), 1, + sym_call_type_arguments, + STATE(3850), 1, + aux_sym_object_repeat1, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 9, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -77956,8 +86218,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77973,15 +86234,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -77998,37 +86257,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [988] = 16, + [1031] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1384), 1, + anon_sym_LT, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(1522), 1, - anon_sym_COLON, - ACTIONS(2497), 1, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1400), 1, + anon_sym_QMARK, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(1421), 1, + anon_sym_EQ, + ACTIONS(2609), 1, sym_identifier, - STATE(590), 1, - sym_string, - STATE(634), 1, - sym__module, - STATE(3062), 1, - sym_nested_identifier, - ACTIONS(1009), 11, + STATE(3588), 1, + sym_call_type_arguments, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 9, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -78036,8 +86301,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78053,15 +86317,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -78078,46 +86340,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1084] = 16, + [1133] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(1532), 1, - anon_sym_COLON, - ACTIONS(2479), 1, + ACTIONS(2102), 1, + anon_sym_QMARK_DOT, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2576), 1, sym_identifier, - STATE(567), 1, + ACTIONS(2639), 1, + anon_sym_LPAREN, + STATE(1514), 1, sym_nested_identifier, - STATE(590), 1, + STATE(1522), 1, sym_string, - STATE(634), 1, + STATE(1653), 1, sym__module, - ACTIONS(1009), 11, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3615), 1, + sym_call_type_arguments, + STATE(1733), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78133,12 +86399,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78158,45 +86423,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1180] = 15, + [1236] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1384), 1, + anon_sym_LT, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1400), 1, + anon_sym_QMARK, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1421), 1, + anon_sym_EQ, + STATE(3588), 1, + sym_call_type_arguments, + STATE(3850), 1, + aux_sym_object_repeat1, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [1335] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2084), 1, + anon_sym_QMARK_DOT, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2576), 1, sym_identifier, - STATE(1349), 1, + ACTIONS(2641), 1, + anon_sym_LPAREN, + STATE(1514), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1522), 1, sym_string, - STATE(1542), 1, + STATE(1653), 1, sym__module, - ACTIONS(1009), 12, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3568), 1, + sym_call_type_arguments, + STATE(2086), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78212,12 +86563,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78237,43 +86587,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1274] = 15, + [1438] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1329), 1, - anon_sym_EQ, - ACTIONS(1335), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1337), 1, - anon_sym_QMARK_DOT, - ACTIONS(1947), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2499), 1, + ACTIONS(2088), 1, + anon_sym_QMARK_DOT, + ACTIONS(2576), 1, sym_identifier, - STATE(1866), 1, - sym_string, - STATE(1875), 1, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(1514), 1, sym_nested_identifier, - STATE(2000), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - ACTIONS(1009), 10, - anon_sym_COMMA, - anon_sym_LPAREN, + STATE(3587), 1, + sym_call_type_arguments, + STATE(2039), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78289,13 +86646,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 25, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78315,38 +86670,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1367] = 13, + [1541] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(2643), 1, anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2501), 1, + ACTIONS(2647), 1, anon_sym_LT, - ACTIONS(2504), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(2506), 1, + ACTIONS(2653), 1, + anon_sym_EQ_GT, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 8, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(927), 10, + ACTIONS(2657), 1, + anon_sym_QMARK, + STATE(3508), 1, + sym_call_type_arguments, + STATE(3755), 1, + aux_sym_object_repeat1, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -78354,8 +86714,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78371,19 +86730,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(625), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -78391,44 +86751,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1456] = 15, + [1640] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(2132), 1, + anon_sym_QMARK_DOT, + ACTIONS(2576), 1, sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(1514), 1, sym_nested_identifier, - STATE(1442), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - ACTIONS(1009), 11, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + STATE(3675), 1, + sym_call_type_arguments, + STATE(1796), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78444,12 +86810,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78469,43 +86834,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1549] = 15, + [1743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(1123), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1384), 1, + anon_sym_LT, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 10, - anon_sym_LBRACE, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1400), 1, + anon_sym_QMARK, + ACTIONS(1421), 1, + anon_sym_EQ, + STATE(3588), 1, + sym_call_type_arguments, + STATE(3755), 1, + aux_sym_object_repeat1, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78521,15 +86894,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 25, + ACTIONS(706), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -78545,24 +86915,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_implements, - [1642] = 10, + [1842] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2508), 1, - anon_sym_DOT, - STATE(1295), 1, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1726), 1, sym_type_arguments, - ACTIONS(925), 15, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78578,15 +86949,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(909), 18, + ACTIONS(621), 16, + sym__automatic_semicolon, 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_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, @@ -78594,10 +86965,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - ACTIONS(911), 22, + ACTIONS(623), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -78620,48 +86989,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1725] = 18, + [1927] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(993), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(995), 1, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(2660), 1, + anon_sym_LT, + ACTIONS(2663), 1, + anon_sym_DOT, + ACTIONS(2665), 1, anon_sym_QMARK_DOT, - ACTIONS(1903), 1, + STATE(2782), 1, + sym_type_arguments, + STATE(3604), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1731), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(1993), 1, - anon_sym_QMARK, - ACTIONS(2011), 1, - anon_sym_COLON, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(980), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1009), 8, - anon_sym_LPAREN, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78677,22 +87048,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 23, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -78700,46 +87068,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1824] = 16, + [2022] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1069), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(2643), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2647), 1, + anon_sym_LT, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(2001), 1, - anon_sym_COLON, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 10, + ACTIONS(2653), 1, + anon_sym_EQ_GT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2657), 1, + anon_sym_QMARK, + STATE(3508), 1, + sym_call_type_arguments, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78755,15 +87128,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(625), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -78779,48 +87149,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1919] = 17, + [2121] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, - anon_sym_EQ, - ACTIONS(993), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1903), 1, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(1993), 1, - anon_sym_QMARK, - ACTIONS(2473), 1, + ACTIONS(2078), 1, + anon_sym_QMARK_DOT, + ACTIONS(2576), 1, sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, + STATE(1514), 1, sym_nested_identifier, - STATE(1442), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - ACTIONS(980), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1009), 8, - anon_sym_LPAREN, + STATE(3586), 1, + sym_call_type_arguments, + STATE(1939), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78836,14 +87208,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 23, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -78860,95 +87232,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2016] = 7, + [2224] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(955), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(949), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(953), 20, - anon_sym_STAR, + ACTIONS(1066), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 26, - anon_sym_as, + ACTIONS(1431), 1, anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(2121), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + ACTIONS(2576), 1, + sym_identifier, + STATE(1514), 1, + sym_nested_identifier, + STATE(1522), 1, + sym_string, + STATE(1653), 1, + sym__module, + STATE(3527), 1, + sym_call_type_arguments, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [2092] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - STATE(1267), 1, - sym_type_arguments, - STATE(1358), 1, - sym_arguments, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78964,25 +87291,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2515), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2513), 21, + ACTIONS(706), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -79003,44 +87314,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2178] = 16, + anon_sym_instanceof, + [2327] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1376), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(2643), 1, + anon_sym_EQ, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2647), 1, + anon_sym_LT, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(2001), 1, - anon_sym_COLON, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 9, - anon_sym_LPAREN, - anon_sym_RBRACK, + ACTIONS(2653), 1, + anon_sym_EQ_GT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2657), 1, + anon_sym_QMARK, + STATE(3508), 1, + sym_call_type_arguments, + STATE(3850), 1, + aux_sym_object_repeat1, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79056,15 +87375,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(625), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -79080,44 +87396,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2272] = 15, + [2426] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1201), 1, - anon_sym_EQ, - ACTIONS(1203), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1417), 1, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2096), 1, + anon_sym_QMARK_DOT, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2576), 1, sym_identifier, - STATE(1349), 1, + ACTIONS(2667), 1, + anon_sym_LPAREN, + STATE(1514), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1522), 1, sym_string, - STATE(1542), 1, + STATE(1653), 1, sym__module, - ACTIONS(1009), 10, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3495), 1, + sym_call_type_arguments, + STATE(118), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79133,12 +87455,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79158,137 +87479,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2364] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - sym_this, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(490), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(2519), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3289), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3161), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [2490] = 15, + [2529] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(993), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1069), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2024), 1, + ACTIONS(2092), 1, anon_sym_QMARK_DOT, - ACTIONS(2473), 1, + ACTIONS(2576), 1, sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(1514), 1, sym_nested_identifier, - STATE(1442), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - ACTIONS(1009), 10, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(3461), 1, + sym_call_type_arguments, + STATE(2048), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79304,12 +87538,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79329,44 +87562,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2582] = 16, + [2632] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2032), 1, - anon_sym_COLON, - ACTIONS(2473), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2106), 1, + anon_sym_QMARK_DOT, + ACTIONS(2576), 1, sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, + STATE(1514), 1, sym_nested_identifier, - STATE(1442), 1, + STATE(1522), 1, + sym_string, + STATE(1653), 1, sym__module, - ACTIONS(1009), 9, - anon_sym_LPAREN, - anon_sym_RBRACK, + STATE(3513), 1, + sym_call_type_arguments, + STATE(1597), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79382,12 +87621,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79407,46 +87645,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2676] = 13, + [2735] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(2521), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - STATE(2303), 1, + STATE(1726), 1, sym_type_arguments, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79462,58 +87675,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [2764] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2528), 1, - anon_sym_EQ, - ACTIONS(2532), 1, - anon_sym_BANG, - ACTIONS(2534), 1, - anon_sym_in, - ACTIONS(2537), 1, - anon_sym_of, - ACTIONS(2539), 1, - anon_sym_COLON, - STATE(3024), 1, - sym_type_annotation, - STATE(3319), 1, - sym__initializer, - ACTIONS(2530), 3, + ACTIONS(621), 18, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(927), 10, 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, @@ -79522,49 +87693,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [2857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 23, + anon_sym_extends, + ACTIONS(623), 22, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -79586,81 +87717,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2543), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [2924] = 15, + [2816] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1411), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1376), 1, anon_sym_LPAREN, - ACTIONS(1414), 1, + ACTIONS(1379), 1, anon_sym_COLON, - ACTIONS(1417), 1, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1384), 1, + anon_sym_LT, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(1448), 1, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1400), 1, + anon_sym_QMARK, + ACTIONS(1415), 1, anon_sym_RBRACE, - ACTIONS(1470), 1, + ACTIONS(1421), 1, anon_sym_EQ, - ACTIONS(2545), 1, - sym_identifier, - STATE(3324), 1, + STATE(3588), 1, + sym_call_type_arguments, + STATE(3735), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1009), 10, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79676,9 +87777,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(706), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -79698,46 +87798,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3015] = 13, + [2915] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(2547), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(2549), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(1970), 1, anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_QMARK_DOT, + ACTIONS(2576), 1, + sym_identifier, + STATE(1514), 1, + sym_nested_identifier, + STATE(1522), 1, + sym_string, + STATE(1653), 1, + sym__module, + STATE(3649), 1, + sym_call_type_arguments, + STATE(1646), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79753,8 +87857,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(706), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -79765,7 +87870,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -79773,37 +87880,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3102] = 14, + anon_sym_instanceof, + [3018] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 1, anon_sym_QMARK_DOT, - ACTIONS(2521), 1, - anon_sym_LT, - ACTIONS(2547), 1, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(2556), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, anon_sym_DOT, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(2553), 2, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(3593), 1, + sym_call_type_arguments, + ACTIONS(2669), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1970), 4, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(1417), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(927), 10, + ACTIONS(741), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79811,8 +87925,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79828,7 +87941,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(706), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -79848,15 +87961,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3191] = 3, + [3115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 23, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(894), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(888), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(892), 20, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79865,9 +87995,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -79875,18 +88003,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2563), 36, + ACTIONS(904), 26, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - 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, @@ -79911,47 +88030,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [3258] = 3, + [3191] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 23, - anon_sym_STAR, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2678), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(965), 36, - anon_sym_as, + ACTIONS(2680), 1, anon_sym_LBRACE, + ACTIONS(2682), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2684), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2686), 1, + anon_sym_LT, + ACTIONS(2689), 1, anon_sym_DOT, + ACTIONS(2691), 1, + anon_sym_EQ_GT, + ACTIONS(2693), 1, anon_sym_QMARK_DOT, + ACTIONS(2695), 1, + anon_sym_LBRACE_PIPE, + STATE(3482), 1, + aux_sym_extends_clause_repeat1, + STATE(3655), 1, + sym_call_type_arguments, + STATE(3738), 1, + sym_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79967,24 +88089,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 23, + ACTIONS(625), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -80003,19 +88111,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2567), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [3291] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1382), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1388), 1, anon_sym_DOT, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, anon_sym_QMARK_DOT, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1456), 1, + anon_sym_COLON, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(2609), 1, + sym_identifier, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80031,52 +88165,69 @@ static 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(706), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3392] = 13, + [3385] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2475), 1, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2477), 1, + ACTIONS(1433), 1, + anon_sym_COLON, + ACTIONS(1435), 1, anon_sym_LT, - STATE(1268), 1, - sym_type_arguments, - STATE(1360), 1, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(2609), 1, + sym_identifier, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, sym_arguments, - ACTIONS(1901), 14, - anon_sym_as, + ACTIONS(741), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80092,8 +88243,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 21, + ACTIONS(706), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -80114,38 +88266,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3479] = 14, + anon_sym_instanceof, + [3479] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_BQUOTE, ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, anon_sym_extends, - ACTIONS(2501), 1, + ACTIONS(2586), 1, anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(2547), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2697), 1, anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(2553), 1, - anon_sym_COMMA, - ACTIONS(2569), 1, + ACTIONS(2703), 1, + anon_sym_RPAREN, + ACTIONS(2707), 1, anon_sym_DOT, - STATE(466), 1, + ACTIONS(2709), 1, + anon_sym_EQ_GT, + ACTIONS(2711), 1, + anon_sym_QMARK, + STATE(530), 1, sym_type_arguments, - ACTIONS(2558), 3, - anon_sym_GT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2636), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(927), 14, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2700), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -80153,8 +88314,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80170,12 +88330,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(625), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -80189,46 +88349,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3568] = 13, + [3581] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(2571), 1, + ACTIONS(1388), 1, anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 14, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1431), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1452), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(2609), 1, + sym_identifier, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80244,10 +88403,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(706), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -80255,7 +88416,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -80263,34 +88426,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3655] = 13, + anon_sym_instanceof, + [3675] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2477), 1, + ACTIONS(2066), 1, + anon_sym_extends, + ACTIONS(2586), 1, anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2714), 1, + anon_sym_COLON, + ACTIONS(2716), 1, anon_sym_DOT, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - STATE(1267), 1, + ACTIONS(2718), 1, + anon_sym_QMARK, + STATE(530), 1, sym_type_arguments, - STATE(1358), 1, - sym_arguments, - ACTIONS(2515), 14, - anon_sym_as, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2631), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, + ACTIONS(2636), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -80298,8 +88474,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80315,21 +88490,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 21, + ACTIONS(625), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -80337,44 +88509,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3742] = 15, + [3777] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1411), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(1414), 1, - anon_sym_COLON, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(2600), 1, + anon_sym_LT, + ACTIONS(2605), 1, + anon_sym_QMARK_DOT, + ACTIONS(2722), 1, anon_sym_DOT, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(1470), 1, + STATE(2649), 1, + sym_type_arguments, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 3, anon_sym_EQ, - ACTIONS(2545), 1, - sym_identifier, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1009), 10, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(621), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80390,21 +88566,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -80412,47 +88586,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3833] = 3, + [3869] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 23, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1078), 1, + sym_this, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + STATE(565), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(2575), 36, - anon_sym_as, - anon_sym_LBRACE, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(2724), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3734), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3688), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [3995] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2000), 1, + sym_type_arguments, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 14, + anon_sym_as, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80468,21 +88729,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 23, + ACTIONS(623), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -80504,19 +88753,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2441), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [4079] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + STATE(2000), 1, + sym_type_arguments, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80532,6 +88783,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(621), 16, + 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, anon_sym_BANG_EQ_EQ, @@ -80540,46 +88798,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [3967] = 17, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(623), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [4159] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(1091), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_extends, + ACTIONS(2586), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2726), 1, + anon_sym_COLON, + ACTIONS(2728), 1, anon_sym_DOT, - ACTIONS(1963), 1, - anon_sym_in, - ACTIONS(1966), 1, - anon_sym_of, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 8, - anon_sym_LPAREN, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2631), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2636), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80595,11 +88885,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 23, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -80608,9 +88897,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -80618,93 +88905,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4062] = 3, + [4259] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2586), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2709), 1, + anon_sym_EQ_GT, + ACTIONS(2730), 1, + anon_sym_EQ, + ACTIONS(2732), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(623), 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, - ACTIONS(2579), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 3, anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [4129] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(953), 1, - anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_LT, - ACTIONS(949), 8, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_implements, anon_sym_extends, - ACTIONS(958), 13, + ACTIONS(637), 10, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -80712,8 +88947,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(965), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80729,7 +88963,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(955), 21, + ACTIONS(625), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -80741,9 +88975,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -80751,44 +88983,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4204] = 15, + [4353] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1411), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(1414), 1, - anon_sym_COLON, - ACTIONS(1417), 1, + ACTIONS(2066), 1, + anon_sym_extends, + ACTIONS(2586), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(2700), 1, + anon_sym_COMMA, + ACTIONS(2703), 1, + anon_sym_RPAREN, + ACTIONS(2707), 1, anon_sym_DOT, - ACTIONS(1470), 1, - anon_sym_EQ, - ACTIONS(2545), 1, - sym_identifier, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_LT, + ACTIONS(2711), 1, anon_sym_QMARK, - ACTIONS(1009), 10, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(2734), 1, + anon_sym_EQ, + ACTIONS(2737), 1, + anon_sym_COLON, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2636), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80804,9 +89047,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(625), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -80816,9 +89058,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -80826,46 +89066,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4295] = 17, + [4457] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(995), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2586), 1, + anon_sym_LT, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2058), 1, - anon_sym_in, - ACTIONS(2061), 1, - anon_sym_of, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 8, - anon_sym_LPAREN, + ACTIONS(2739), 1, + anon_sym_EQ, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2743), 1, + anon_sym_DOT, + ACTIONS(2745), 1, + anon_sym_EQ_GT, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + STATE(3590), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(2695), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80881,11 +89124,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 23, + ACTIONS(625), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -80904,27 +89146,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4390] = 7, + [4555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_extends, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(955), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(953), 19, + ACTIONS(2534), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -80932,7 +89163,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -80940,14 +89173,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(965), 32, + ACTIONS(2536), 36, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -80973,46 +89210,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [4465] = 3, + [4622] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 23, - anon_sym_STAR, + ACTIONS(892), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(900), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2429), 36, - anon_sym_as, + ACTIONS(888), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_implements, + anon_sym_extends, + ACTIONS(897), 13, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(904), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81028,24 +89256,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [4532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2581), 23, + ACTIONS(894), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -81064,19 +89278,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2583), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [4697] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, anon_sym_LPAREN, + ACTIONS(2586), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2732), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 3, anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(637), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81092,35 +89335,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [4599] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(1753), 1, - anon_sym_extends, - ACTIONS(2585), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2510), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(953), 19, + ACTIONS(625), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -81136,68 +89355,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(965), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [4674] = 14, + [4790] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1411), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(1414), 1, - anon_sym_COLON, - ACTIONS(1417), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1448), 1, - anon_sym_RBRACE, - ACTIONS(1470), 1, - anon_sym_EQ, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(2626), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1009), 12, - sym__automatic_semicolon, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -81205,8 +89392,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81222,12 +89408,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 20, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -81243,28 +89430,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4762] = 10, + [4879] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(2588), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2747), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_DOT, - STATE(1662), 1, + ACTIONS(2752), 1, + anon_sym_QMARK_DOT, + STATE(2921), 1, sym_type_arguments, - ACTIONS(909), 15, - sym__automatic_semicolon, - anon_sym_as, + STATE(3465), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 4, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -81272,9 +89471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81290,11 +89487,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(911), 22, + ACTIONS(625), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -81303,9 +89499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -81313,33 +89507,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4842] = 13, + [4972] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2590), 1, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - STATE(1684), 1, - sym_type_arguments, - STATE(1863), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, sym_arguments, - ACTIONS(2515), 13, - sym__automatic_semicolon, + ACTIONS(741), 12, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -81347,8 +89544,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81364,7 +89560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 21, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -81386,36 +89582,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4928] = 13, + [5061] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(2501), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2586), 1, anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(2598), 1, + ACTIONS(2754), 1, anon_sym_DOT, - STATE(466), 1, + STATE(530), 1, sym_type_arguments, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(623), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(927), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 4, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -81423,8 +89623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81440,10 +89639,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(625), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -81459,128 +89659,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5014] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2600), 1, - sym_identifier, - ACTIONS(2602), 1, - sym_this, - ACTIONS(2604), 1, - anon_sym_asserts, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3672), 1, - sym_type_predicate, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2591), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [5140] = 14, + [5154] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_COLON, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2606), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(2608), 1, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, anon_sym_LPAREN, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(2611), 2, + ACTIONS(2586), 1, anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2756), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 3, anon_sym_QMARK, - ACTIONS(927), 12, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(621), 4, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -81588,8 +89701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81605,7 +89717,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 20, + ACTIONS(625), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -81616,9 +89728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -81626,59 +89736,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5228] = 12, + [5247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1069), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2617), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1357), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 20, + ACTIONS(2758), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -81690,7 +89753,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -81698,33 +89763,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5312] = 13, + ACTIONS(2760), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [5314] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1417), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2626), 1, anon_sym_LT, - STATE(1691), 1, - sym_type_arguments, - STATE(1853), 1, - sym_arguments, - ACTIONS(1901), 13, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2762), 2, sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -81732,8 +89838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81749,7 +89854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 21, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -81771,65 +89876,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5398] = 14, + [5405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1411), 1, - anon_sym_LPAREN, - ACTIONS(1414), 1, - anon_sym_COLON, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(1470), 1, - anon_sym_EQ, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1009), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 20, + ACTIONS(2764), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -81845,41 +89903,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5486] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(2766), 36, + anon_sym_as, + 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(1905), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2071), 1, anon_sym_QMARK_DOT, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 8, - anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(999), 15, + anon_sym_implements, + [5472] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2747), 1, + anon_sym_LT, + ACTIONS(2752), 1, + anon_sym_QMARK_DOT, + ACTIONS(2768), 1, + anon_sym_DOT, + STATE(2921), 1, + sym_type_arguments, + STATE(3465), 1, + sym_call_type_arguments, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(621), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81895,13 +89998,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(625), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -81909,9 +90009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -81919,32 +90017,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [5576] = 14, + [5565] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1414), 1, - anon_sym_COLON, - ACTIONS(2590), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2594), 1, + ACTIONS(1396), 1, anon_sym_EQ_GT, - ACTIONS(2596), 1, + ACTIONS(1398), 1, anon_sym_QMARK_DOT, - ACTIONS(2606), 1, - anon_sym_EQ, - ACTIONS(2608), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(2611), 2, + ACTIONS(1435), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(927), 12, + ACTIONS(1452), 1, + anon_sym_COLON, + ACTIONS(1482), 1, + anon_sym_EQ, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -81956,8 +90055,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81973,12 +90071,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 20, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -81994,28 +90093,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5664] = 7, + [5656] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1452), 1, + anon_sym_COLON, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(955), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 2, + ACTIONS(2645), 1, anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(949), 7, + ACTIONS(2653), 1, + anon_sym_EQ_GT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2770), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, sym__automatic_semicolon, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(953), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -82026,7 +90159,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82034,10 +90169,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, + [5747] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, anon_sym_QMARK_DOT, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + anon_sym_COLON, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1482), 1, + anon_sym_EQ, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82053,43 +90223,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [5738] = 13, + ACTIONS(706), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [5838] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2620), 1, + ACTIONS(900), 1, anon_sym_LT, - ACTIONS(2623), 1, - anon_sym_DOT, - ACTIONS(2625), 1, - anon_sym_QMARK_DOT, - STATE(2490), 1, - sym_type_arguments, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(888), 8, anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, anon_sym_extends, - ACTIONS(927), 10, + ACTIONS(897), 11, 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, @@ -82097,8 +90273,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(904), 17, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82114,7 +90290,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + anon_sym_BQUOTE, + ACTIONS(894), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -82126,7 +90303,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82134,31 +90313,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5824] = 14, + [5913] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_COLON, - ACTIONS(1448), 1, - anon_sym_RBRACE, - ACTIONS(2590), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(2594), 1, + ACTIONS(2653), 1, anon_sym_EQ_GT, - ACTIONS(2596), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(2606), 1, + ACTIONS(2770), 1, anon_sym_EQ, - ACTIONS(2608), 1, - anon_sym_LPAREN, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(2611), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(927), 12, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -82170,8 +90351,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82187,12 +90367,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 20, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -82208,129 +90389,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5912] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2627), 1, - sym_identifier, - ACTIONS(2629), 1, - anon_sym_typeof, - ACTIONS(2631), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_QMARK, - ACTIONS(2635), 1, - anon_sym_AMP, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2639), 1, - sym_this, - ACTIONS(2641), 1, - anon_sym_asserts, - ACTIONS(2643), 1, - anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3520), 1, - sym_type_parameters, - STATE(3672), 1, - sym_type_predicate, - STATE(3852), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3199), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [6038] = 13, + [6004] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(1396), 1, anon_sym_EQ_GT, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(1398), 1, anon_sym_QMARK_DOT, - ACTIONS(2645), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1970), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 13, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1958), 1, + anon_sym_EQ, + ACTIONS(1963), 1, + anon_sym_BQUOTE, + ACTIONS(2581), 1, + anon_sym_LPAREN, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 12, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -82338,8 +90426,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82355,10 +90442,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -82366,7 +90454,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82374,36 +90464,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6124] = 14, + [6093] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_extends, - ACTIONS(2501), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(2553), 1, - anon_sym_COMMA, - ACTIONS(2590), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2653), 1, anon_sym_EQ_GT, - ACTIONS(2596), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(2647), 1, + ACTIONS(2772), 1, anon_sym_EQ, - ACTIONS(2649), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(2558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 13, + ACTIONS(2774), 1, + anon_sym_LPAREN, + ACTIONS(2777), 1, + anon_sym_BQUOTE, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -82412,8 +90501,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82429,10 +90517,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -82440,7 +90529,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82448,35 +90539,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6212] = 13, + [6182] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(2590), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2653), 1, anon_sym_EQ_GT, - ACTIONS(2596), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(2647), 1, + ACTIONS(2770), 1, anon_sym_EQ, - ACTIONS(2651), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 13, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -82485,8 +90576,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82502,10 +90592,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -82513,7 +90604,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82521,41 +90614,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6298] = 15, + [6271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(892), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(904), 36, + anon_sym_as, + 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(1905), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2073), 1, anon_sym_QMARK_DOT, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 8, - anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(999), 15, + anon_sym_implements, + [6338] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(759), 1, + anon_sym_EQ, + ACTIONS(764), 1, + anon_sym_EQ_GT, + ACTIONS(1417), 1, + anon_sym_extends, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(1974), 1, + anon_sym_QMARK, + ACTIONS(2780), 1, + anon_sym_RPAREN, + STATE(3593), 1, + sym_call_type_arguments, + ACTIONS(710), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2672), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82571,23 +90739,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -82595,36 +90758,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6388] = 14, + [6437] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1411), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(1414), 1, - anon_sym_COLON, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(2586), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2784), 1, anon_sym_DOT, - ACTIONS(1470), 1, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 3, anon_sym_EQ, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1009), 12, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(621), 4, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -82632,8 +90798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82649,20 +90814,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 20, + ACTIONS(625), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -82670,127 +90834,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6476] = 33, + [6528] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, - anon_sym_STAR, - ACTIONS(2657), 1, - anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, - anon_sym_new, - ACTIONS(2667), 1, - anon_sym_QMARK, - ACTIONS(2669), 1, - anon_sym_AMP, - ACTIONS(2671), 1, - anon_sym_PIPE, - ACTIONS(2677), 1, - sym_number, - ACTIONS(2679), 1, - sym_this, - ACTIONS(2683), 1, - sym_readonly, - ACTIONS(2685), 1, - anon_sym_infer, - ACTIONS(2687), 1, - anon_sym_keyof, - ACTIONS(2689), 1, - anon_sym_LBRACE_PIPE, - STATE(1245), 1, - sym_nested_type_identifier, - STATE(1278), 1, - sym__tuple_type_body, - STATE(1355), 1, - sym_template_string, - STATE(3678), 1, - sym_type_parameters, - STATE(3695), 1, - sym_nested_identifier, - STATE(3883), 1, - sym_formal_parameters, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2681), 2, - sym_true, - sym_false, - STATE(1322), 2, - sym_string, - sym__number, - ACTIONS(2675), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1261), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(1277), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [6602] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2653), 1, anon_sym_EQ_GT, - ACTIONS(995), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(1069), 1, + ACTIONS(2770), 1, anon_sym_EQ, - ACTIONS(1357), 1, - anon_sym_extends, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_COMMA, - ACTIONS(2617), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1009), 14, + STATE(3508), 1, + sym_call_type_arguments, + ACTIONS(2786), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -82798,8 +90872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82815,11 +90888,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 19, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -82827,7 +90900,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82835,227 +90910,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6686] = 33, + [6619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, - anon_sym_DQUOTE, - ACTIONS(831), 1, - anon_sym_SQUOTE, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2691), 1, - sym_identifier, - ACTIONS(2693), 1, + ACTIONS(2788), 23, anon_sym_STAR, - ACTIONS(2695), 1, - anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(2699), 1, - anon_sym_LPAREN, - ACTIONS(2701), 1, - anon_sym_LBRACK, - ACTIONS(2703), 1, - anon_sym_new, - ACTIONS(2705), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2707), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(2709), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(2715), 1, - sym_number, - ACTIONS(2717), 1, - sym_this, - ACTIONS(2721), 1, - sym_readonly, - ACTIONS(2723), 1, - anon_sym_infer, - ACTIONS(2725), 1, - anon_sym_keyof, - ACTIONS(2727), 1, - anon_sym_LBRACE_PIPE, - STATE(1638), 1, - sym_nested_type_identifier, - STATE(1851), 1, - sym__tuple_type_body, - STATE(1941), 1, - sym_template_string, - STATE(3591), 1, - sym_type_parameters, - STATE(3730), 1, - sym_nested_identifier, - STATE(3978), 1, - sym_formal_parameters, - ACTIONS(2711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, - sym_true, - sym_false, - STATE(1787), 2, - sym_string, - sym__number, - ACTIONS(2713), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1892), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(1841), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [6812] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2729), 1, - sym_identifier, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(2733), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2790), 36, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2739), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_new, - ACTIONS(2743), 1, - anon_sym_QMARK, - ACTIONS(2745), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, - sym_number, - ACTIONS(2759), 1, - sym_this, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2765), 1, - anon_sym_asserts, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, - anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - STATE(2353), 1, - sym_nested_type_identifier, - STATE(2496), 1, - sym__tuple_type_body, - STATE(3141), 1, - sym_type_predicate, - STATE(3609), 1, - sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(4000), 1, - sym_formal_parameters, - ACTIONS(2749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2761), 2, - sym_true, - sym_false, - STATE(2488), 2, - sym_string, - sym__number, - ACTIONS(2751), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2544), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2456), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [6938] = 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [6686] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2024), 1, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, anon_sym_QMARK_DOT, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 8, + ACTIONS(1431), 1, anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1456), 1, + anon_sym_COLON, + ACTIONS(1482), 1, + anon_sym_EQ, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83071,12 +91028,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -83095,42 +91050,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7028] = 15, + [6777] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2075), 1, - anon_sym_QMARK_DOT, - ACTIONS(2473), 1, - sym_identifier, - STATE(1259), 1, - sym_string, - STATE(1260), 1, - sym_nested_identifier, - STATE(1442), 1, - sym__module, - ACTIONS(1009), 8, + ACTIONS(2792), 1, + anon_sym_EQ, + ACTIONS(2794), 1, anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83146,12 +91103,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(625), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -83170,318 +91125,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7118] = 33, + [6866] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(1917), 1, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2773), 1, - sym_identifier, - ACTIONS(2775), 1, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1926), 1, + anon_sym_in, + ACTIONS(2800), 1, + anon_sym_of, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 20, anon_sym_STAR, - ACTIONS(2777), 1, - anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, - anon_sym_LPAREN, - ACTIONS(2783), 1, - anon_sym_LBRACK, - ACTIONS(2785), 1, - anon_sym_new, - ACTIONS(2787), 1, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2789), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(2791), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(2797), 1, - sym_number, - ACTIONS(2799), 1, - sym_this, - ACTIONS(2803), 1, - sym_readonly, - ACTIONS(2805), 1, - anon_sym_infer, - ACTIONS(2807), 1, - anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - STATE(1563), 1, - sym_nested_type_identifier, - STATE(1594), 1, - sym__tuple_type_body, - STATE(1878), 1, - sym_template_string, - STATE(3447), 1, - sym_type_parameters, - STATE(3686), 1, - sym_nested_identifier, - STATE(3969), 1, - sym_formal_parameters, - ACTIONS(2793), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2801), 2, - sym_true, - sym_false, - STATE(1599), 2, - sym_string, - sym__number, - ACTIONS(2795), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1678), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(1593), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [7244] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(2802), 23, anon_sym_STAR, - ACTIONS(703), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(705), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(707), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2811), 1, - sym_identifier, - ACTIONS(2813), 1, + 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, + ACTIONS(2804), 36, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2819), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, - sym_number, - ACTIONS(2833), 1, - sym_this, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(2839), 1, - anon_sym_asserts, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, - sym__tuple_type_body, - STATE(2704), 1, - sym_type_predicate, - STATE(3641), 1, - sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, - sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, - sym_true, - sym_false, - STATE(2317), 2, - sym_string, - sym__number, - ACTIONS(2825), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2432), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2332), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [7370] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2841), 1, anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3126), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [7493] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2493), 1, - anon_sym_LT, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(2847), 1, - anon_sym_EQ_GT, - ACTIONS(2849), 1, anon_sym_QMARK_DOT, - STATE(1913), 1, - sym_type_arguments, - STATE(1931), 1, - sym_arguments, - ACTIONS(2515), 11, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(925), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83497,11 +91257,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 22, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [7026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2806), 23, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -83520,36 +91293,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7578] = 11, + ACTIONS(2808), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [7093] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(1532), 1, - anon_sym_COLON, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(1009), 11, + ACTIONS(1396), 1, + anon_sym_EQ_GT, + ACTIONS(1398), 1, + anon_sym_QMARK_DOT, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1482), 1, + anon_sym_EQ, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 12, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83565,12 +91383,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -83589,32 +91405,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7659] = 12, + [7182] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(703), 1, anon_sym_EQ, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(710), 1, + anon_sym_COMMA, + ACTIONS(717), 1, + anon_sym_COLON, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1417), 1, + anon_sym_extends, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2590), 1, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - STATE(1684), 1, - sym_type_arguments, - STATE(1863), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(1974), 1, + anon_sym_QMARK, + ACTIONS(2780), 1, + anon_sym_RPAREN, + STATE(3593), 1, + sym_call_type_arguments, + ACTIONS(2672), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1419), 2, + sym_template_string, sym_arguments, - ACTIONS(2515), 13, - sym__automatic_semicolon, + ACTIONS(741), 8, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -83622,8 +91451,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83639,21 +91467,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 21, + ACTIONS(706), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -83661,136 +91486,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7742] = 36, + [7283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2853), 1, - anon_sym_export, - ACTIONS(2855), 1, + ACTIONS(2514), 23, anon_sym_STAR, - ACTIONS(2857), 1, - anon_sym_COMMA, - ACTIONS(2859), 1, - anon_sym_RBRACE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2863), 1, - anon_sym_SEMI, - ACTIONS(2865), 1, - anon_sym_LBRACK, - ACTIONS(2867), 1, - anon_sym_async, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, - sym_number, - ACTIONS(2875), 1, - anon_sym_static, - ACTIONS(2881), 1, - sym_readonly, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3299), 1, - aux_sym_object_repeat1, - STATE(3478), 1, - sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(2877), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2879), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3292), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2851), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [7873] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(1357), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2617), 3, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_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(1009), 13, + 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, + ACTIONS(2516), 36, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83806,55 +91541,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [7954] = 13, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [7350] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2586), 1, anon_sym_LT, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(2885), 1, - anon_sym_EQ, - ACTIONS(2887), 1, + ACTIONS(2810), 1, anon_sym_DOT, - ACTIONS(2889), 1, - anon_sym_EQ_GT, - STATE(466), 1, + STATE(530), 1, sym_type_arguments, - ACTIONS(1970), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2558), 3, - anon_sym_GT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 3, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(927), 12, - sym__automatic_semicolon, + ACTIONS(621), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(637), 8, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -83862,8 +91592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83879,12 +91608,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(625), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -83898,127 +91627,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8039] = 32, + [7443] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2893), 1, - anon_sym_GT, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, - sym_true, - sym_false, - STATE(2671), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2974), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [8162] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(1970), 1, - anon_sym_extends, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2653), 1, + anon_sym_EQ_GT, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(2547), 1, + ACTIONS(2770), 1, anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(2901), 1, - anon_sym_COLON, - ACTIONS(2903), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(2553), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 10, + ACTIONS(2812), 1, + anon_sym_in, + ACTIONS(2815), 1, + anon_sym_of, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84026,8 +91667,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84043,10 +91683,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(625), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -84055,7 +91694,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84063,31 +91704,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8251] = 13, + [7536] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2678), 1, anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, + ACTIONS(2686), 1, anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2689), 1, anon_sym_DOT, - ACTIONS(2905), 1, + ACTIONS(2691), 1, anon_sym_EQ_GT, - STATE(1267), 1, + ACTIONS(2693), 1, + anon_sym_QMARK_DOT, + ACTIONS(2817), 1, + anon_sym_LBRACE, + STATE(3655), 1, + sym_call_type_arguments, + STATE(3738), 1, sym_type_arguments, - STATE(1358), 1, + ACTIONS(2819), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + STATE(1791), 2, + sym_template_string, sym_arguments, - ACTIONS(2515), 12, + ACTIONS(637), 8, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84095,9 +91744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84113,7 +91760,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 21, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -84135,135 +91782,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8336] = 32, + [7631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(2821), 23, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(573), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(575), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2907), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3126), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [8459] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2885), 1, - anon_sym_EQ, - ACTIONS(2889), 1, - anon_sym_EQ_GT, - ACTIONS(2909), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 12, - sym__automatic_semicolon, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2823), 36, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84279,53 +91837,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [8544] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_extends, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2553), 1, - anon_sym_COMMA, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2847), 1, - anon_sym_EQ_GT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(2911), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(2558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 11, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84334,69 +91845,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [8631] = 13, + anon_sym_implements, + [7698] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2475), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2477), 1, + ACTIONS(1456), 1, + anon_sym_COLON, + ACTIONS(2626), 1, anon_sym_LT, - STATE(1268), 1, - sym_type_arguments, - STATE(1360), 1, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2653), 1, + anon_sym_EQ_GT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2770), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, sym_arguments, - ACTIONS(1901), 12, + ACTIONS(637), 11, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84404,8 +91884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84421,7 +91900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 21, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -84443,122 +91922,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8716] = 32, + [7789] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(2586), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2915), 1, - sym_identifier, - ACTIONS(2917), 1, - anon_sym_typeof, - ACTIONS(2919), 1, - sym_jsx_identifier, - ACTIONS(2921), 1, - anon_sym_new, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2925), 1, - anon_sym_AMP, - ACTIONS(2927), 1, - anon_sym_PIPE, - ACTIONS(2929), 1, - anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3557), 1, - sym_type_parameters, - STATE(3696), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2721), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [8839] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1123), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2739), 1, + anon_sym_EQ, + ACTIONS(2743), 1, anon_sym_DOT, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_LT, - STATE(1268), 1, + ACTIONS(2745), 1, + anon_sym_EQ_GT, + STATE(530), 1, sym_type_arguments, - STATE(1360), 1, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, sym_arguments, - ACTIONS(1901), 12, - anon_sym_as, + ACTIONS(2819), 3, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_implements, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84566,9 +91961,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84584,7 +91977,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 21, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -84606,31 +91999,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8924] = 13, + [7882] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(727), 1, anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1940), 1, + anon_sym_EQ, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, anon_sym_DOT, - STATE(1267), 1, - sym_type_arguments, - STATE(1358), 1, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(2578), 1, + anon_sym_LPAREN, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, sym_arguments, - ACTIONS(2515), 12, + ACTIONS(741), 12, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -84639,8 +92036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84656,7 +92052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 21, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -84678,33 +92074,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9009] = 12, + [7971] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(759), 1, + anon_sym_EQ, + ACTIONS(764), 1, anon_sym_EQ_GT, - ACTIONS(2521), 1, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(2931), 1, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, anon_sym_DOT, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(911), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 4, - sym__automatic_semicolon, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(1974), 1, + anon_sym_QMARK, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(710), 3, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(927), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(741), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84712,8 +92113,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84729,19 +92129,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(706), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -84749,109 +92150,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9092] = 14, + [8063] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2905), 1, - anon_sym_EQ_GT, - ACTIONS(2933), 1, - anon_sym_EQ, - ACTIONS(2937), 1, - anon_sym_COMMA, - ACTIONS(2939), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - STATE(3078), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(2935), 2, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2837), 1, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2843), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2845), 1, anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, 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, - [9179] = 11, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3114), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8189] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(2003), 1, anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(2010), 1, anon_sym_DOT, - ACTIONS(1522), 1, - anon_sym_COLON, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(1009), 11, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(2014), 1, + anon_sym_EQ_GT, + ACTIONS(2016), 1, + anon_sym_QMARK_DOT, + ACTIONS(2018), 1, + anon_sym_BQUOTE, + ACTIONS(2597), 1, anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3675), 1, + sym_call_type_arguments, + STATE(1796), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 10, + anon_sym_as, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84867,12 +92294,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -84891,465 +92317,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [9260] = 9, + [8277] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [9337] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2847), 1, - anon_sym_EQ_GT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(2911), 1, - anon_sym_EQ, - ACTIONS(2935), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2941), 1, - anon_sym_LBRACE, - ACTIONS(2943), 1, - anon_sym_COMMA, - ACTIONS(2945), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2948), 1, - anon_sym_DOT, - STATE(3130), 1, - aux_sym_extends_clause_repeat1, - STATE(3335), 1, - sym_type_arguments, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [9426] = 36, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(1989), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2855), 1, - anon_sym_STAR, - ACTIONS(2857), 1, - anon_sym_COMMA, - ACTIONS(2861), 1, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2863), 1, - anon_sym_SEMI, - ACTIONS(2865), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, sym_number, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2952), 1, - anon_sym_export, - ACTIONS(2954), 1, - anon_sym_RBRACE, - ACTIONS(2956), 1, - anon_sym_async, - ACTIONS(2958), 1, - anon_sym_static, - ACTIONS(2964), 1, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, sym_readonly, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3367), 1, - aux_sym_object_repeat1, - STATE(3478), 1, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(1612), 1, + sym_template_string, + STATE(4168), 1, sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(2960), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2962), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, + STATE(4258), 1, + sym_nested_identifier, + STATE(4294), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3363), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2950), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [9557] = 13, + STATE(1602), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8403] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1335), 1, - anon_sym_EQ_GT, - ACTIONS(1337), 1, - anon_sym_QMARK_DOT, - ACTIONS(1947), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_DOT, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2493), 1, + ACTIONS(1987), 1, anon_sym_LT, - STATE(1920), 1, - sym_type_arguments, - STATE(1928), 1, - sym_arguments, - ACTIONS(1901), 11, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 22, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [9642] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(2966), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 12, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [9727] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(2968), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2909), 1, anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85364,154 +92503,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [9850] = 12, + [8529] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - anon_sym_extends, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_COMMA, - ACTIONS(2617), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1009), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [9933] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(2970), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2913), 1, anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85526,128 +92596,313 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [10056] = 36, + [8655] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, + anon_sym_STAR, ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, anon_sym_SQUOTE, ACTIONS(2855), 1, - anon_sym_STAR, + sym_number, ACTIONS(2857), 1, - anon_sym_COMMA, + sym_this, ACTIONS(2861), 1, - anon_sym_LPAREN, + sym_readonly, ACTIONS(2863), 1, - anon_sym_SEMI, + anon_sym_infer, ACTIONS(2865), 1, - anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2915), 1, + anon_sym_GT, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2873), 1, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3114), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8781] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, + anon_sym_typeof, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_new, + ACTIONS(2931), 1, + anon_sym_QMARK, + ACTIONS(2933), 1, + anon_sym_AMP, + ACTIONS(2935), 1, + anon_sym_PIPE, + ACTIONS(2941), 1, sym_number, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2974), 1, - anon_sym_export, - ACTIONS(2976), 1, - anon_sym_RBRACE, - ACTIONS(2978), 1, - anon_sym_async, - ACTIONS(2980), 1, - anon_sym_static, - ACTIONS(2986), 1, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, sym_readonly, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3415), 1, - aux_sym_object_repeat1, - STATE(3478), 1, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, + anon_sym_keyof, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(2125), 1, + sym_template_string, + STATE(4149), 1, sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(2982), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2984), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, + STATE(4203), 1, + sym_nested_identifier, + STATE(4428), 1, + sym_formal_parameters, + ACTIONS(2937), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3411), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2972), 10, - anon_sym_namespace, - anon_sym_type, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2207), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8907] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - anon_sym_declare, - anon_sym_module, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, + anon_sym_QMARK, + ACTIONS(2961), 1, + anon_sym_AMP, + ACTIONS(2963), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(1612), 1, + sym_template_string, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [10187] = 13, + STATE(1875), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [9033] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2843), 1, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2847), 1, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, anon_sym_EQ_GT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(2911), 1, + ACTIONS(2042), 1, anon_sym_EQ, - ACTIONS(2988), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 11, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, anon_sym_as, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -85655,9 +92910,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(925), 15, + anon_sym_implements, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85673,11 +92927,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(706), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -85685,7 +92939,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85693,42 +92949,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10272] = 9, + [9121] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(1069), 1, - anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1009), 15, + ACTIONS(2792), 1, + anon_sym_EQ, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -85737,60 +92984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [10349] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2990), 1, - anon_sym_DOT, - ACTIONS(2992), 1, - anon_sym_QMARK_DOT, - STATE(1837), 1, - sym_type_arguments, - ACTIONS(909), 13, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85806,12 +93000,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(911), 23, + ACTIONS(625), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -85830,83 +93022,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10428] = 32, + [9207] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(2969), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(2994), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2971), 1, + anon_sym_QMARK, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(1904), 1, + sym__tuple_type_body, + STATE(2125), 1, + sym_template_string, + STATE(4142), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4203), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(2945), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(1901), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2939), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(1942), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85921,49 +93115,43 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [10551] = 7, + [9333] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(2510), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2585), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1753), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(953), 20, - anon_sym_STAR, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2745), 1, + anon_sym_EQ_GT, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(2979), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 26, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85979,124 +93167,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10624] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(625), 21, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(617), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(619), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(2996), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, - sym_true, - sym_false, - STATE(2671), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2974), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [10747] = 7, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, + ACTIONS(2675), 1, anon_sym_LT, - ACTIONS(955), 2, + ACTIONS(894), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(949), 4, + ACTIONS(897), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(888), 7, sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(958), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(953), 20, + ACTIONS(892), 20, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -86117,7 +93229,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(965), 26, + ACTIONS(904), 26, anon_sym_as, anon_sym_LPAREN, anon_sym_QMARK_DOT, @@ -86144,269 +93256,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10820] = 32, + [9495] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(703), 1, + anon_sym_EQ, + ACTIONS(717), 1, + anon_sym_COLON, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(2998), 1, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(1974), 1, + anon_sym_QMARK, + STATE(3593), 1, + sym_call_type_arguments, + ACTIONS(710), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, + 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, - ACTIONS(2899), 2, - sym_true, - sym_false, - STATE(2671), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2974), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [10943] = 36, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9589] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2855), 1, anon_sym_STAR, - ACTIONS(2857), 1, - anon_sym_COMMA, - ACTIONS(2861), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2863), 1, - anon_sym_SEMI, - ACTIONS(2865), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, - sym_number, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3002), 1, - anon_sym_export, - ACTIONS(3004), 1, - anon_sym_RBRACE, - ACTIONS(3006), 1, - anon_sym_async, - ACTIONS(3008), 1, - anon_sym_static, - ACTIONS(3014), 1, - sym_readonly, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3400), 1, - aux_sym_object_repeat1, - STATE(3478), 1, - sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3010), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3012), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3418), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3000), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [11074] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(3016), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2981), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3126), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86421,178 +93426,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11197] = 36, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2855), 1, - anon_sym_STAR, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, - anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, - sym_number, - ACTIONS(3002), 1, - anon_sym_export, - ACTIONS(3006), 1, - anon_sym_async, - ACTIONS(3008), 1, - anon_sym_static, - ACTIONS(3014), 1, - sym_readonly, - ACTIONS(3018), 1, - anon_sym_COMMA, - ACTIONS(3020), 1, - anon_sym_RBRACE, - ACTIONS(3022), 1, - anon_sym_SEMI, - ACTIONS(3024), 1, - anon_sym_PIPE_RBRACE, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3400), 1, - aux_sym_object_repeat1, - STATE(3478), 1, - sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3010), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3012), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3418), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2702), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3000), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [11328] = 32, + [9715] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(653), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(655), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(657), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2983), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, + ACTIONS(2987), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, sym_number, - ACTIONS(3026), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3005), 1, + sym_this, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3011), 1, + anon_sym_asserts, + STATE(2592), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(2641), 1, + sym__tuple_type_body, + STATE(3116), 1, + sym_type_predicate, + STATE(4156), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4284), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(2733), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86607,83 +93519,159 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11451] = 32, + [9841] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(2025), 1, + anon_sym_EQ, + ACTIONS(2027), 1, + anon_sym_EQ_GT, + ACTIONS(2578), 1, + anon_sym_LPAREN, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(573), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(575), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + 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, + [9929] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(3028), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3013), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3126), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86698,83 +93686,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11574] = 32, + [10055] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(3030), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3015), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3075), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86789,98 +93779,229 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11697] = 32, + [10181] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2770), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [10267] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2678), 1, + anon_sym_EQ, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2691), 1, + anon_sym_EQ_GT, + ACTIONS(2693), 1, + anon_sym_QMARK_DOT, + ACTIONS(3017), 1, + anon_sym_DOT, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 22, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [10355] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3032), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2770), 1, + anon_sym_EQ, + ACTIONS(2812), 1, + anon_sym_in, + ACTIONS(2815), 1, + anon_sym_of, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 20, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(2899), 2, - sym_true, - sym_false, - STATE(2671), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2974), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [11820] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10445] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -86889,74 +94010,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, + ACTIONS(3019), 1, + sym_identifier, + ACTIONS(3021), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3023), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3034), 1, - anon_sym_GT, - STATE(483), 1, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3031), 1, + sym_this, + ACTIONS(3033), 1, + anon_sym_asserts, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4126), 1, + sym_type_predicate, + STATE(4427), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(3504), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86971,83 +94094,159 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11943] = 32, + [10571] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2691), 1, + anon_sym_EQ_GT, + ACTIONS(2693), 1, + anon_sym_QMARK_DOT, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3037), 1, + anon_sym_EQ, + ACTIONS(3039), 1, + anon_sym_LPAREN, + ACTIONS(3042), 1, + anon_sym_BQUOTE, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(573), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(575), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + 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, + [10659] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(3036), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3045), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3195), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87062,83 +94261,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12066] = 32, + [10785] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(3038), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3047), 1, anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87153,34 +94354,36 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12189] = 13, + [10911] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2571), 1, - anon_sym_DOT, - ACTIONS(2905), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(2933), 1, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1066), 1, anon_sym_EQ, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 12, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1970), 1, anon_sym_LPAREN, + ACTIONS(2050), 1, + anon_sym_COLON, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -87188,9 +94391,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87206,10 +94407,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -87217,7 +94419,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -87225,178 +94429,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12274] = 36, + [11001] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, + anon_sym_STAR, ACTIONS(2829), 1, - anon_sym_SQUOTE, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, ACTIONS(2853), 1, - anon_sym_export, + anon_sym_SQUOTE, ACTIONS(2855), 1, - anon_sym_STAR, + sym_number, ACTIONS(2857), 1, - anon_sym_COMMA, + sym_this, ACTIONS(2861), 1, - anon_sym_LPAREN, + sym_readonly, ACTIONS(2863), 1, - anon_sym_SEMI, + anon_sym_infer, ACTIONS(2865), 1, - anon_sym_LBRACK, + anon_sym_keyof, ACTIONS(2867), 1, - anon_sym_async, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3049), 1, + anon_sym_GT, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2873), 1, - sym_number, - ACTIONS(2875), 1, - anon_sym_static, - ACTIONS(2881), 1, - sym_readonly, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3040), 1, - anon_sym_RBRACE, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3299), 1, - aux_sym_object_repeat1, - STATE(3478), 1, - sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(2877), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2879), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3292), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2851), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [12405] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3042), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87411,174 +94522,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12528] = 32, + [11127] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, + ACTIONS(3057), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3044), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, - sym_true, - sym_false, - STATE(2671), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2974), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12651] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(3065), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(3075), 1, sym_number, - ACTIONS(3046), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, + anon_sym_keyof, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(1836), 1, + sym_template_string, + STATE(3943), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4248), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - ACTIONS(1919), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(2029), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87593,38 +94615,33 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12774] = 16, + [11253] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(1970), 1, - anon_sym_extends, - ACTIONS(2501), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(2008), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + anon_sym_DOT, + ACTIONS(2014), 1, + anon_sym_EQ_GT, + ACTIONS(2016), 1, anon_sym_QMARK_DOT, - ACTIONS(2547), 1, + ACTIONS(2046), 1, anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(3048), 1, - anon_sym_COLON, - ACTIONS(3050), 1, - anon_sym_DOT, - ACTIONS(3052), 1, - anon_sym_QMARK, - STATE(466), 1, - sym_type_arguments, - ACTIONS(2553), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(2595), 1, anon_sym_LPAREN, + STATE(3675), 1, + sym_call_type_arguments, + STATE(1796), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 10, + anon_sym_as, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -87632,8 +94649,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87649,18 +94666,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(706), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -87668,221 +94689,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12865] = 36, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2855), 1, - anon_sym_STAR, - ACTIONS(2857), 1, - anon_sym_COMMA, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2863), 1, - anon_sym_SEMI, - ACTIONS(2865), 1, - anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, - sym_number, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3002), 1, - anon_sym_export, - ACTIONS(3006), 1, - anon_sym_async, - ACTIONS(3008), 1, - anon_sym_static, - ACTIONS(3014), 1, - sym_readonly, - ACTIONS(3056), 1, - anon_sym_RBRACE, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3400), 1, - aux_sym_object_repeat1, - STATE(3478), 1, - sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3010), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3012), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3418), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3000), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [12996] = 32, + [11341] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(2586), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3058), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(3089), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3126), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13119] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1970), 1, anon_sym_extends, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2553), 1, - anon_sym_COMMA, - ACTIONS(2569), 1, - anon_sym_DOT, - ACTIONS(2905), 1, - anon_sym_EQ_GT, - ACTIONS(2933), 1, + ACTIONS(623), 4, anon_sym_EQ, - STATE(466), 1, - sym_type_arguments, - ACTIONS(2558), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(927), 12, + ACTIONS(637), 8, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -87890,9 +94729,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87908,7 +94745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(625), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -87927,129 +94764,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13206] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3060), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, - sym_true, - sym_false, - STATE(2671), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2974), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13329] = 16, + [11431] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(1970), 1, - anon_sym_extends, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2551), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(3062), 1, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(3068), 1, - anon_sym_RPAREN, - ACTIONS(3072), 1, + ACTIONS(1417), 1, + anon_sym_extends, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(3074), 1, - anon_sym_QMARK, - STATE(466), 1, - sym_type_arguments, - ACTIONS(2558), 2, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(3593), 1, + sym_call_type_arguments, + ACTIONS(2669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2672), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3065), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(927), 10, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -88057,8 +94805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88074,12 +94821,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, + ACTIONS(706), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -88093,36 +94841,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13420] = 11, + [11525] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, anon_sym_EQ_GT, - ACTIONS(1087), 1, + ACTIONS(727), 1, anon_sym_QMARK_DOT, + ACTIONS(1066), 1, + anon_sym_EQ, ACTIONS(1417), 1, + anon_sym_extends, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(1544), 1, - anon_sym_COLON, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(1009), 11, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1970), 1, anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3593), 1, + sym_call_type_arguments, + ACTIONS(2669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(2672), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88138,23 +94899,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 24, + ACTIONS(706), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -88162,84 +94918,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [13501] = 32, + [11619] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(3077), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3091), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3126), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88254,273 +95011,233 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13624] = 36, + [11745] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(1989), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2739), 1, + anon_sym_EQ, + ACTIONS(2745), 1, + anon_sym_EQ_GT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2855), 1, - anon_sym_STAR, - ACTIONS(2857), 1, anon_sym_COMMA, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2863), 1, - anon_sym_SEMI, - ACTIONS(2865), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [11833] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(764), 1, + anon_sym_EQ_GT, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + anon_sym_EQ, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(2873), 1, - sym_number, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3002), 1, - anon_sym_export, - ACTIONS(3006), 1, - anon_sym_async, - ACTIONS(3008), 1, - anon_sym_static, - ACTIONS(3014), 1, - sym_readonly, - ACTIONS(3079), 1, - anon_sym_RBRACE, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3400), 1, - aux_sym_object_repeat1, - STATE(3478), 1, - sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3010), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3012), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3418), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3000), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [13755] = 36, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11921] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2855), 1, anon_sym_STAR, - ACTIONS(2857), 1, - anon_sym_COMMA, - ACTIONS(2861), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2863), 1, - anon_sym_SEMI, - ACTIONS(2865), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, - sym_number, - ACTIONS(2883), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3002), 1, - anon_sym_export, - ACTIONS(3006), 1, - anon_sym_async, - ACTIONS(3008), 1, - anon_sym_static, - ACTIONS(3014), 1, - sym_readonly, - ACTIONS(3081), 1, - anon_sym_RBRACE, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3400), 1, - aux_sym_object_repeat1, - STATE(3478), 1, - sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3010), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3012), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3418), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3000), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [13886] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(3083), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3093), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3088), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88535,83 +95252,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14009] = 32, + [12047] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(3085), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3095), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3175), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88626,83 +95345,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14132] = 32, + [12173] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3099), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3087), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3101), 1, + anon_sym_QMARK, + ACTIONS(3103), 1, + anon_sym_AMP, + ACTIONS(3105), 1, + anon_sym_PIPE, + ACTIONS(3107), 1, + anon_sym_keyof, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(1612), 1, + sym_template_string, + STATE(4196), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4265), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2899), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(2230), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88717,354 +95438,159 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14255] = 32, + [12299] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3089), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2709), 1, + anon_sym_EQ_GT, + ACTIONS(2730), 1, + anon_sym_EQ, STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3177), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14378] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(573), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(575), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3091), 1, - anon_sym_RBRACK, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3126), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14501] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12387] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3109), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3111), 1, + anon_sym_STAR, + ACTIONS(3113), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, + ACTIONS(3115), 1, anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3093), 1, - anon_sym_GT, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3589), 1, - sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, - sym_true, - sym_false, - STATE(2671), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2974), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14624] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(3117), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3119), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, - anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3121), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3125), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3127), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + anon_sym_SQUOTE, + ACTIONS(3137), 1, + sym_number, + ACTIONS(3139), 1, + sym_this, + ACTIONS(3143), 1, + sym_readonly, + ACTIONS(3145), 1, + anon_sym_asserts, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(541), 1, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + STATE(2663), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(2857), 1, + sym__tuple_type_body, + STATE(3502), 1, + sym_type_predicate, + STATE(4176), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4215), 1, sym_nested_identifier, - STATE(3990), 1, + STATE(4281), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(563), 6, + STATE(2911), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89079,32 +95605,39 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14744] = 12, + [12513] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3109), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 3, + ACTIONS(2711), 1, + anon_sym_QMARK, + ACTIONS(2734), 1, + anon_sym_EQ, + ACTIONS(2737), 1, + anon_sym_COLON, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2700), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 10, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -89112,8 +95645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89129,19 +95661,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(625), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -89149,15 +95682,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14826] = 3, + [12607] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 23, - anon_sym_STAR, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -89176,17 +95755,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2429), 33, + [12693] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2772), 1, + anon_sym_EQ, + ACTIONS(2774), 1, + anon_sym_LPAREN, + ACTIONS(2777), 1, + anon_sym_BQUOTE, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89202,15 +95806,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14890] = 31, + ACTIONS(625), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [12779] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -89219,72 +95837,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3153), 1, + sym_identifier, + ACTIONS(3155), 1, sym_this, - STATE(483), 1, + ACTIONS(3157), 1, + anon_sym_asserts, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4126), 1, + sym_type_predicate, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2310), 6, + STATE(2959), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89299,146 +95921,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15010] = 7, + [12905] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(1753), 1, - anon_sym_extends, - ACTIONS(2585), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2510), 4, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(953), 19, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 29, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15082] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(3165), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(3167), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(3169), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(1612), 1, + sym_template_string, + STATE(3950), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4381), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3007), 6, + STATE(1751), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89453,170 +96014,161 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15202] = 31, + [13031] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2697), 1, + anon_sym_EQ, + ACTIONS(2709), 1, + anon_sym_EQ_GT, + ACTIONS(2711), 1, anon_sym_QMARK, - ACTIONS(573), 1, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(2700), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 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, - ACTIONS(575), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + 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, + [13123] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(486), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15322] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(3087), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(3171), 1, + anon_sym_typeof, + ACTIONS(3173), 1, + anon_sym_new, + ACTIONS(3175), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(3177), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(3179), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(3181), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(1836), 1, + sym_template_string, + STATE(4180), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4419), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(470), 6, + STATE(1728), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89631,81 +96183,161 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15442] = 31, + [13249] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3183), 1, + anon_sym_in, + ACTIONS(3185), 1, + anon_sym_COLON, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 20, anon_sym_STAR, - ACTIONS(489), 1, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(491), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(493), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + 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, + [13341] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3187), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3693), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3076), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89720,31 +96352,37 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15562] = 12, + [13467] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1121), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(1123), 1, + ACTIONS(631), 1, anon_sym_EQ_GT, - ACTIONS(1357), 1, - anon_sym_extends, - ACTIONS(1903), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2614), 1, + ACTIONS(2726), 1, + anon_sym_COLON, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3189), 2, anon_sym_COMMA, - ACTIONS(2617), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1009), 12, + anon_sym_RPAREN, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -89752,9 +96390,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(999), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89770,11 +96406,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 19, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -89782,7 +96418,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -89790,259 +96428,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15644] = 31, + [13559] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(764), 1, + anon_sym_EQ_GT, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3150), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15764] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(2035), 1, + anon_sym_EQ, + ACTIONS(2578), 1, + anon_sym_LPAREN, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(573), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(575), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3151), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15884] = 31, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13647] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(2775), 1, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2787), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(2789), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2791), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(2797), 1, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(2799), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(2803), 1, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(2805), 1, + ACTIONS(2863), 1, anon_sym_infer, - ACTIONS(2807), 1, + ACTIONS(2865), 1, anon_sym_keyof, - ACTIONS(2809), 1, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - STATE(1563), 1, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3192), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(1594), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3686), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3969), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2793), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2801), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(1599), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1731), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90057,298 +96595,114 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16004] = 31, + [13773] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2629), 1, - anon_sym_typeof, - ACTIONS(2631), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_QMARK, - ACTIONS(2635), 1, - anon_sym_AMP, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2643), 1, - anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3520), 1, - sym_type_parameters, - STATE(3852), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(470), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16124] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, ACTIONS(2629), 1, - anon_sym_typeof, - ACTIONS(2631), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_QMARK, - ACTIONS(2635), 1, - anon_sym_AMP, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2643), 1, - anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3520), 1, - sym_type_parameters, - STATE(3852), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(486), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16244] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(2709), 1, + anon_sym_EQ_GT, + ACTIONS(2794), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2629), 1, - anon_sym_typeof, - ACTIONS(2631), 1, - anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3194), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2635), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(2637), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(2643), 1, - anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3520), 1, - sym_type_parameters, - STATE(3852), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2787), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16364] = 13, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13861] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2847), 1, - anon_sym_EQ_GT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(2911), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(2945), 1, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2586), 1, anon_sym_LT, - ACTIONS(2948), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(3196), 1, anon_sym_DOT, - ACTIONS(3111), 1, - anon_sym_LBRACE, - STATE(3335), 1, + STATE(530), 1, sym_type_arguments, - ACTIONS(3113), 2, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 3, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(927), 10, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(623), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(637), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -90356,8 +96710,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90373,11 +96726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(625), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -90385,9 +96737,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -90395,81 +96745,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16448] = 31, + [13953] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(2775), 1, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2787), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(2789), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2791), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(2797), 1, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(2799), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(2803), 1, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(2805), 1, + ACTIONS(2863), 1, anon_sym_infer, - ACTIONS(2807), 1, + ACTIONS(2865), 1, anon_sym_keyof, - ACTIONS(2809), 1, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - STATE(1563), 1, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3198), 1, + anon_sym_GT, + STATE(2715), 1, sym_nested_type_identifier, - STATE(1594), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3686), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3969), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2793), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2801), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(1599), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1715), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90484,81 +96838,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16568] = 31, + [14079] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2775), 1, - anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3187), 1, + anon_sym_GT, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2787), 1, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(2789), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(2791), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(2797), 1, - sym_number, - ACTIONS(2799), 1, - sym_this, - ACTIONS(2803), 1, - sym_readonly, - ACTIONS(2805), 1, - anon_sym_infer, - ACTIONS(2807), 1, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - STATE(1563), 1, - sym_nested_type_identifier, - STATE(1594), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - STATE(3686), 1, - sym_nested_identifier, - STATE(3969), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(2793), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2801), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1599), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1659), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90573,31 +96929,34 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16688] = 13, + [14202] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(2487), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1435), 1, anon_sym_LT, - ACTIONS(2590), 1, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2596), 1, + ACTIONS(2058), 1, anon_sym_QMARK_DOT, - ACTIONS(2889), 1, - anon_sym_EQ_GT, - STATE(1684), 1, - sym_type_arguments, - STATE(1863), 1, + STATE(3588), 1, + sym_call_type_arguments, + STATE(1506), 2, + sym_template_string, sym_arguments, - ACTIONS(2515), 11, - sym__automatic_semicolon, + ACTIONS(741), 10, anon_sym_as, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -90605,8 +96964,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90622,7 +96980,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 21, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -90644,151 +97002,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16772] = 12, + [14289] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2493), 1, - anon_sym_LT, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - STATE(1913), 1, - sym_type_arguments, - STATE(1931), 1, - sym_arguments, - ACTIONS(2515), 11, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2513), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, 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, - [16854] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2775), 1, - anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, - anon_sym_new, - ACTIONS(2787), 1, - anon_sym_QMARK, - ACTIONS(2789), 1, - anon_sym_AMP, - ACTIONS(2791), 1, - anon_sym_PIPE, - ACTIONS(2797), 1, - sym_number, - ACTIONS(2799), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2803), 1, - sym_readonly, - ACTIONS(2805), 1, - anon_sym_infer, - ACTIONS(2807), 1, - anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - STATE(1563), 1, - sym_nested_type_identifier, - STATE(1594), 1, + ACTIONS(3212), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3686), 1, - sym_nested_identifier, - STATE(3969), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2793), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2801), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1599), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1590), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90803,7 +97093,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16974] = 31, + [14412] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -90812,72 +97102,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2783), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3115), 1, + ACTIONS(2564), 1, sym_this, - STATE(1663), 1, + ACTIONS(3214), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(3091), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90892,81 +97184,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17094] = 31, + [14535] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3216), 1, + sym_identifier, + ACTIONS(3218), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3220), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(3771), 1, + sym_type_parameter, + STATE(4071), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4498), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(497), 6, + STATE(3157), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90981,81 +97275,250 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17214] = 31, + [14658] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2794), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3194), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [14743] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_export, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3236), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3242), 1, + anon_sym_SEMI, + ACTIONS(3244), 1, + anon_sym_LBRACK, + ACTIONS(3246), 1, + anon_sym_async, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3254), 1, + anon_sym_static, + ACTIONS(3260), 1, + sym_readonly, + ACTIONS(3262), 1, + anon_sym_PIPE_RBRACE, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3901), 1, + aux_sym_object_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3256), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3258), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3910), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3165), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3230), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14874] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(3095), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2736), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91070,7 +97533,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17334] = 31, + [14997] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91079,72 +97542,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3049), 1, + anon_sym_GT, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2334), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91159,7 +97624,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17454] = 31, + [15120] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91168,72 +97633,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(3093), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(496), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91248,7 +97715,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17574] = 31, + [15243] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91257,72 +97724,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(3264), 1, + anon_sym_GT, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3258), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15366] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(3013), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(486), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91337,7 +97897,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17694] = 31, + [15489] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91346,72 +97906,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3266), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(470), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91426,7 +97988,102 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17814] = 31, + [15612] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_export, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3244), 1, + anon_sym_LBRACK, + ACTIONS(3246), 1, + anon_sym_async, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3254), 1, + anon_sym_static, + ACTIONS(3260), 1, + sym_readonly, + ACTIONS(3268), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, + anon_sym_RBRACE, + ACTIONS(3272), 1, + anon_sym_SEMI, + ACTIONS(3274), 1, + anon_sym_PIPE_RBRACE, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3901), 1, + aux_sym_object_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3256), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3258), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3910), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3137), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3230), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15743] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91435,72 +98092,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(573), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2897), 1, - sym_number, - ACTIONS(3117), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3276), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3245), 6, + STATE(3479), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(495), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91515,26 +98174,32 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17934] = 9, + [15866] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(1009), 14, - sym__automatic_semicolon, + ACTIONS(2739), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -91542,8 +98207,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + anon_sym_implements, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91559,11 +98224,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -91582,7 +98246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18010] = 31, + [15951] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91591,72 +98255,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3117), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(3121), 1, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(3123), 1, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, anon_sym_keyof, - STATE(483), 1, + ACTIONS(3278), 1, + anon_sym_GT, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3207), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(495), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91671,68 +98337,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2543), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18194] = 31, + [16074] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91741,72 +98346,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(3091), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(479), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91821,7 +98428,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18314] = 31, + [16197] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91830,72 +98437,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(2837), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - STATE(483), 1, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3746), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(496), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91910,7 +98519,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18434] = 31, + [16320] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2586), 1, + anon_sym_LT, + ACTIONS(2589), 1, + anon_sym_DOT, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + STATE(530), 1, + sym_type_arguments, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 3, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + [16409] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -91919,72 +98602,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3280), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2741), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91999,81 +98684,399 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18554] = 31, + [16532] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 1, + anon_sym_QMARK_DOT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + anon_sym_COLON, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 9, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [16621] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2678), 1, + anon_sym_EQ, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2693), 1, + anon_sym_QMARK_DOT, + ACTIONS(3017), 1, + anon_sym_DOT, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(573), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(575), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, + 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, + [16706] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_export, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3236), 1, + anon_sym_COMMA, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(3242), 1, + anon_sym_SEMI, + ACTIONS(3244), 1, + anon_sym_LBRACK, + ACTIONS(3246), 1, + anon_sym_async, + ACTIONS(3248), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3254), 1, + anon_sym_static, + ACTIONS(3260), 1, + sym_readonly, + ACTIONS(3262), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3282), 1, + anon_sym_RBRACE, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3901), 1, + aux_sym_object_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3256), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3258), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3910), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3165), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3230), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [16837] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3183), 1, + anon_sym_in, + ACTIONS(3284), 1, + anon_sym_COLON, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 9, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [16928] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3015), 1, + anon_sym_GT, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2591), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92088,7 +99091,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18674] = 31, + [17051] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -92097,72 +99100,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(3198), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - STATE(483), 1, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3746), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(497), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92177,7 +99182,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18794] = 31, + [17174] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -92186,72 +99191,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2663), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3131), 1, + ACTIONS(2564), 1, sym_this, - STATE(1296), 1, + ACTIONS(3286), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 6, + STATE(3693), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(3089), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92266,81 +99273,155 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18914] = 31, + [17297] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(2979), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, - ACTIONS(703), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(705), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(707), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(723), 1, + 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, + [17382] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(3288), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2499), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92355,81 +99436,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19034] = 31, + [17505] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(703), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(705), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(707), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(3290), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2457), 6, + STATE(3537), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92444,81 +99527,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19154] = 31, + [17628] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, - anon_sym_AMP, - ACTIONS(707), 1, - anon_sym_PIPE, - ACTIONS(723), 1, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(2909), 1, + anon_sym_GT, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2461), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92533,81 +99618,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19274] = 31, + [17751] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(703), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(705), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(707), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(3292), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2899), 6, + STATE(3627), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92622,7 +99709,102 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19394] = 31, + [17874] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3236), 1, + anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3242), 1, + anon_sym_SEMI, + ACTIONS(3244), 1, + anon_sym_LBRACK, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3262), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3296), 1, + anon_sym_export, + ACTIONS(3298), 1, + anon_sym_RBRACE, + ACTIONS(3300), 1, + anon_sym_async, + ACTIONS(3302), 1, + anon_sym_static, + ACTIONS(3308), 1, + sym_readonly, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3814), 1, + aux_sym_object_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3304), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3306), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3812), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3165), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3294), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18005] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -92631,72 +99813,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3310), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(476), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92711,7 +99895,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19514] = 31, + [18128] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -92720,72 +99904,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(2981), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2746), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92800,7 +99986,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19634] = 31, + [18251] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -92809,72 +99995,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3192), 1, + anon_sym_GT, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3166), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92889,81 +100077,149 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19754] = 31, + [18374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(2675), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(894), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(888), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(897), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(892), 20, anon_sym_STAR, - ACTIONS(2733), 1, - anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(904), 26, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2739), 1, - anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_new, - ACTIONS(2743), 1, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18447] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(2753), 1, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2755), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2757), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, - anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3139), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2353), 1, - sym_nested_type_identifier, - STATE(2496), 1, + ACTIONS(3312), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(4000), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2761), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2488), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2550), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92978,81 +100234,149 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19874] = 31, + [18570] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, + ACTIONS(897), 1, + anon_sym_DOT, + ACTIONS(2675), 3, + anon_sym_LT, anon_sym_AMP, - ACTIONS(493), 1, anon_sym_PIPE, + ACTIONS(3314), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(1774), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(892), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18643] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3317), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3201), 6, + STATE(3642), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93067,81 +100391,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19994] = 31, + [18766] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3218), 1, anon_sym_typeof, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(3220), 1, anon_sym_new, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4498), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3197), 6, + STATE(3255), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93156,81 +100482,155 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20114] = 31, + [18889] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3568), 1, - sym_type_parameters, - STATE(3693), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2730), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [18974] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3047), 1, + anon_sym_GT, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3190), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93245,7 +100645,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20234] = 31, + [19097] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -93254,72 +100654,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3319), 1, + sym_identifier, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3323), 1, + sym_jsx_identifier, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3329), 1, + anon_sym_AMP, + ACTIONS(3331), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4189), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3163), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [19220] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2911), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, + sym_type_parameters, + STATE(4498), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3174), 6, + STATE(3255), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93334,7 +100827,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20354] = 31, + [19343] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -93343,72 +100836,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1071), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(2915), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(3101), 1, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(3107), 1, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(3117), 1, - sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(541), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3217), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(495), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93423,68 +100918,193 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20474] = 3, + [19466] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 23, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3045), 1, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3206), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3208), 1, anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(2583), 33, - sym__automatic_semicolon, - anon_sym_as, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3258), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [19589] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3236), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3240), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(3242), 1, anon_sym_SEMI, + ACTIONS(3244), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20538] = 31, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3262), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3296), 1, + anon_sym_export, + ACTIONS(3300), 1, + anon_sym_async, + ACTIONS(3302), 1, + anon_sym_static, + ACTIONS(3308), 1, + sym_readonly, + ACTIONS(3335), 1, + anon_sym_RBRACE, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3814), 1, + aux_sym_object_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3304), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3306), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3812), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3165), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3294), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19720] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -93493,72 +101113,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1071), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, - anon_sym_typeof, - ACTIONS(3099), 1, - anon_sym_new, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(3103), 1, - anon_sym_AMP, - ACTIONS(3105), 1, - anon_sym_PIPE, - ACTIONS(3107), 1, - anon_sym_keyof, - STATE(483), 1, + ACTIONS(3337), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(541), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3990), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(496), 6, + STATE(3628), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93573,34 +101195,31 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20658] = 14, + [19843] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 1, - anon_sym_EQ, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - anon_sym_extends, - ACTIONS(1903), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(2693), 1, + anon_sym_QMARK_DOT, + ACTIONS(3017), 1, anon_sym_DOT, - ACTIONS(1993), 1, - anon_sym_QMARK, - ACTIONS(3141), 1, - anon_sym_RPAREN, - ACTIONS(980), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2617), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1009), 10, - anon_sym_as, + ACTIONS(3037), 1, + anon_sym_EQ, + ACTIONS(3039), 1, anon_sym_LPAREN, + ACTIONS(3042), 1, + anon_sym_BQUOTE, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, + anon_sym_as, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -93608,8 +101227,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93625,19 +101244,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 19, + ACTIONS(625), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -93645,7 +101267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20744] = 31, + [19928] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -93654,72 +101276,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1071), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2913), 1, + anon_sym_GT, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3210), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(541), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3990), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(497), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93734,7 +101358,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20864] = 31, + [20051] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -93743,72 +101367,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2739), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3145), 1, + ACTIONS(2564), 1, sym_this, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(2466), 1, + ACTIONS(3339), 1, + anon_sym_RBRACK, + STATE(567), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 6, + STATE(3532), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(3099), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93823,209 +101449,191 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20984] = 10, + [20174] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 1, - anon_sym_COLON, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(927), 13, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_export, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3236), 1, anon_sym_COMMA, + ACTIONS(3240), 1, anon_sym_LPAREN, + ACTIONS(3242), 1, anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [21062] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, + ACTIONS(3244), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1544), 1, - anon_sym_COLON, - ACTIONS(1009), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_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(3246), 1, + anon_sym_async, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21140] = 8, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3254), 1, + anon_sym_static, + ACTIONS(3260), 1, + sym_readonly, + ACTIONS(3262), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3341), 1, + anon_sym_RBRACE, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3901), 1, + aux_sym_object_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3256), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3258), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3910), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3165), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3230), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [20305] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2973), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2975), 1, anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - [21214] = 31, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1951), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [20425] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -94034,72 +101642,250 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3343), 1, sym_this, - ACTIONS(2891), 1, + STATE(1725), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3734), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3533), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [20545] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(2931), 1, + anon_sym_QMARK, + ACTIONS(2933), 1, + anon_sym_AMP, + ACTIONS(2935), 1, + anon_sym_PIPE, + ACTIONS(2941), 1, sym_number, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, + anon_sym_keyof, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4149), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4203), 1, + sym_nested_identifier, + STATE(4428), 1, sym_formal_parameters, - STATE(3860), 1, + ACTIONS(2937), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2180), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [20665] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, + anon_sym_STAR, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(3115), 1, + anon_sym_typeof, + ACTIONS(3117), 1, + anon_sym_LPAREN, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3121), 1, + anon_sym_new, + ACTIONS(3123), 1, + anon_sym_QMARK, + ACTIONS(3125), 1, + anon_sym_AMP, + ACTIONS(3127), 1, + anon_sym_PIPE, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + anon_sym_SQUOTE, + ACTIONS(3137), 1, + sym_number, + ACTIONS(3143), 1, + sym_readonly, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, + sym_this, + STATE(2663), 1, + sym_nested_type_identifier, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, + sym_type_parameters, + STATE(4215), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4281), 1, + sym_formal_parameters, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(3141), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2625), 6, + STATE(2842), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94114,10 +101900,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21334] = 3, + [20785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 23, + ACTIONS(2802), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -94141,7 +101927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2579), 33, + ACTIONS(2804), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -94175,81 +101961,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21398] = 31, + [20849] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, + ACTIONS(3111), 1, anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(3113), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(3115), 1, anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(3117), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(3119), 1, anon_sym_LBRACK, - ACTIONS(2667), 1, + ACTIONS(3121), 1, + anon_sym_new, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(2677), 1, + ACTIONS(3125), 1, + anon_sym_AMP, + ACTIONS(3127), 1, + anon_sym_PIPE, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + anon_sym_SQUOTE, + ACTIONS(3137), 1, sym_number, - ACTIONS(2683), 1, + ACTIONS(3143), 1, sym_readonly, - ACTIONS(2687), 1, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, anon_sym_keyof, - ACTIONS(2689), 1, + ACTIONS(3151), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3147), 1, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, sym_this, - STATE(1245), 1, + STATE(2663), 1, sym_nested_type_identifier, - STATE(1278), 1, + STATE(2857), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(4176), 1, sym_type_parameters, - STATE(3695), 1, + STATE(4215), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4281), 1, sym_formal_parameters, - ACTIONS(2673), 2, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2681), 2, + ACTIONS(3141), 2, sym_true, sym_false, - STATE(1322), 2, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3220), 6, + STATE(2845), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1290), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94264,81 +102050,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21518] = 31, + [20969] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, + anon_sym_STAR, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(3115), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(3117), 1, anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3123), 1, + anon_sym_QMARK, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3135), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3137), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3143), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3349), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2663), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4215), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3193), 6, + STATE(3712), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2846), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94353,7 +102139,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21638] = 31, + [21089] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -94370,64 +102156,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4313), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3178), 6, + STATE(3691), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94442,81 +102228,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21758] = 31, + [21209] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2653), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2655), 1, - anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2667), 1, - anon_sym_QMARK, - ACTIONS(2669), 1, - anon_sym_AMP, - ACTIONS(2671), 1, - anon_sym_PIPE, - ACTIONS(2677), 1, - sym_number, - ACTIONS(2679), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2683), 1, - sym_readonly, - ACTIONS(2685), 1, - anon_sym_infer, - ACTIONS(2687), 1, - anon_sym_keyof, - ACTIONS(2689), 1, - anon_sym_LBRACE_PIPE, - STATE(1245), 1, - sym_nested_type_identifier, - STATE(1278), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - STATE(3695), 1, - sym_nested_identifier, - STATE(3883), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2681), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1322), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1291), 6, + STATE(3685), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94531,81 +102317,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21878] = 31, + [21329] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(489), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(491), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2701), 1, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3149), 1, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, sym_this, - STATE(1896), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 6, + STATE(3682), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(3104), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94620,81 +102406,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21998] = 31, + [21449] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2629), 1, + ACTIONS(2923), 1, anon_sym_typeof, - ACTIONS(2631), 1, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(2931), 1, anon_sym_QMARK, - ACTIONS(2635), 1, + ACTIONS(2933), 1, anon_sym_AMP, - ACTIONS(2637), 1, + ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2643), 1, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4149), 1, sym_type_parameters, - STATE(3852), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4203), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4428), 1, + sym_formal_parameters, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2939), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3194), 6, + STATE(1949), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94709,144 +102495,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22118] = 5, + [21569] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 18, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(913), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(491), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(493), 1, 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, - [22186] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2653), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2655), 1, - anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2667), 1, - anon_sym_QMARK, - ACTIONS(2669), 1, - anon_sym_AMP, - ACTIONS(2671), 1, - anon_sym_PIPE, - ACTIONS(2677), 1, - sym_number, - ACTIONS(2679), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2683), 1, - sym_readonly, - ACTIONS(2685), 1, - anon_sym_infer, - ACTIONS(2687), 1, - anon_sym_keyof, - ACTIONS(2689), 1, - anon_sym_LBRACE_PIPE, - STATE(1245), 1, - sym_nested_type_identifier, - STATE(1278), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - STATE(3695), 1, - sym_nested_identifier, - STATE(3883), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2681), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1322), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1292), 6, + STATE(3681), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94861,81 +102584,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22306] = 31, + [21689] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(489), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(491), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4313), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2629), 6, + STATE(3676), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94950,7 +102673,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22426] = 31, + [21809] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -94967,64 +102690,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4313), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3168), 6, + STATE(3674), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95039,81 +102762,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22546] = 31, + [21929] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(489), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(491), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3079), 6, + STATE(3673), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95128,81 +102851,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22666] = 31, + [22049] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3210), 1, + anon_sym_keyof, + ACTIONS(3351), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3167), 6, + STATE(3715), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(553), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95217,81 +102940,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22786] = 31, + [22169] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, + anon_sym_new, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4427), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3164), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95306,81 +103029,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22906] = 31, + [22289] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, + anon_sym_new, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4427), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3163), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95395,81 +103118,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23026] = 31, + [22409] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3035), 1, + anon_sym_keyof, + ACTIONS(3351), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3160), 6, + STATE(3729), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(553), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95484,74 +103207,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23146] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(927), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [23222] = 31, + [22529] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -95560,72 +103216,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1231), 1, - sym_this, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2819), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(2306), 1, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 6, + STATE(3021), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(3077), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95640,81 +103296,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23342] = 31, + [22649] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4372), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3153), 6, + STATE(3477), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95729,7 +103385,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23462] = 31, + [22769] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -95746,64 +103402,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4313), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3147), 6, + STATE(3672), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95818,81 +103474,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23582] = 31, + [22889] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(2629), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, anon_sym_typeof, - ACTIONS(2631), 1, + ACTIONS(3220), 1, anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(3222), 1, anon_sym_QMARK, - ACTIONS(2635), 1, + ACTIONS(3224), 1, anon_sym_AMP, - ACTIONS(2637), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(2643), 1, + ACTIONS(3228), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, sym_type_parameters, - STATE(3852), 1, + STATE(4498), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(479), 6, + STATE(3081), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95907,81 +103563,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23702] = 31, + [23009] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(489), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(491), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3182), 6, + STATE(3671), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95996,81 +103652,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23822] = 31, + [23129] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(489), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(491), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4313), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2646), 6, + STATE(3670), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96085,81 +103741,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23942] = 31, + [23249] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2629), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(2631), 1, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2633), 1, - anon_sym_QMARK, - ACTIONS(2635), 1, - anon_sym_AMP, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2643), 1, - anon_sym_keyof, - STATE(483), 1, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3852), 1, + STATE(4313), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2789), 6, + STATE(3669), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96174,75 +103830,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24062] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(3151), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(927), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [24140] = 31, + [23369] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -96251,72 +103839,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, + anon_sym_new, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4427), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3066), 6, + STATE(3257), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96331,7 +103919,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24260] = 31, + [23489] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -96340,72 +103928,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, + anon_sym_new, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4427), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3090), 6, + STATE(547), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96420,7 +104008,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24380] = 31, + [23609] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -96429,72 +104017,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, + anon_sym_new, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4427), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3171), 6, + STATE(546), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96509,81 +104097,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24500] = 31, + [23729] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(2855), 1, sym_number, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2660), 6, + STATE(2935), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96598,81 +104186,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24620] = 31, + [23849] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4372), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2510), 6, + STATE(3489), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96687,146 +104275,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24740] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(955), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(949), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(953), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24812] = 31, + [23969] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(476), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96841,142 +104364,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24932] = 3, + [24089] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 23, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2563), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24996] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, + anon_sym_new, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4427), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2511), 6, + STATE(558), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96991,81 +104453,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25116] = 31, + [24209] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2775), 1, - anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, anon_sym_new, - ACTIONS(2787), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(2789), 1, + ACTIONS(3027), 1, anon_sym_AMP, - ACTIONS(2791), 1, + ACTIONS(3029), 1, anon_sym_PIPE, - ACTIONS(2797), 1, - sym_number, - ACTIONS(2799), 1, - sym_this, - ACTIONS(2803), 1, - sym_readonly, - ACTIONS(2805), 1, - anon_sym_infer, - ACTIONS(2807), 1, + ACTIONS(3035), 1, anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - STATE(1563), 1, - sym_nested_type_identifier, - STATE(1594), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4082), 1, sym_type_parameters, - STATE(3686), 1, - sym_nested_identifier, - STATE(3969), 1, + STATE(4427), 1, sym_formal_parameters, - ACTIONS(2793), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2801), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1599), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1730), 6, + STATE(3266), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97080,142 +104542,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2573), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2575), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25300] = 31, + [24329] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(479), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97230,7 +104631,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25420] = 31, + [24449] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -97239,72 +104640,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(476), 6, + STATE(3566), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97319,81 +104720,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25540] = 31, + [24569] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, anon_sym_typeof, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(3220), 1, anon_sym_new, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4498), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(470), 6, + STATE(2951), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97408,81 +104809,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25660] = 31, + [24689] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, anon_sym_typeof, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(3099), 1, anon_sym_new, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3101), 1, + anon_sym_QMARK, + ACTIONS(3103), 1, + anon_sym_AMP, + ACTIONS(3105), 1, + anon_sym_PIPE, + ACTIONS(3107), 1, + anon_sym_keyof, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4196), 1, sym_type_parameters, - STATE(3693), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4265), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(486), 6, + STATE(2218), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97497,7 +104898,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25780] = 31, + [24809] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -97506,72 +104907,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(3023), 1, + anon_sym_new, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3029), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4427), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3128), 6, + STATE(550), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97586,7 +104987,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25900] = 31, + [24929] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -97595,72 +104996,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3351), 1, sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2974), 6, + STATE(3734), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(553), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97675,7 +105076,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26020] = 31, + [25049] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -97684,72 +105085,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2629), 1, + ACTIONS(3021), 1, anon_sym_typeof, - ACTIONS(2631), 1, + ACTIONS(3023), 1, anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(2635), 1, + ACTIONS(3027), 1, anon_sym_AMP, - ACTIONS(2637), 1, + ACTIONS(3029), 1, anon_sym_PIPE, - ACTIONS(2643), 1, + ACTIONS(3035), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3852), 1, + STATE(4427), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(476), 6, + STATE(3272), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97764,81 +105165,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26140] = 31, + [25169] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, + anon_sym_typeof, + ACTIONS(3175), 1, + anon_sym_QMARK, + ACTIONS(3181), 1, + anon_sym_keyof, + ACTIONS(3365), 1, sym_this, - ACTIONS(3153), 1, - sym_identifier, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3002), 6, + STATE(3713), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1752), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97853,81 +105254,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26260] = 31, + [25289] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2516), 6, + STATE(3094), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97942,7 +105343,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26380] = 31, + [25409] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -97951,72 +105352,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3071), 6, + STATE(3661), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98031,81 +105432,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26500] = 31, + [25529] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3173), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3175), 1, + anon_sym_QMARK, + ACTIONS(3177), 1, + anon_sym_AMP, + ACTIONS(3179), 1, + anon_sym_PIPE, + ACTIONS(3181), 1, + anon_sym_keyof, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(4180), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4419), 1, + sym_formal_parameters, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2624), 6, + STATE(1740), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98120,7 +105521,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26620] = 31, + [25649] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -98129,72 +105530,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3614), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [25769] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, + anon_sym_typeof, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_new, + ACTIONS(2931), 1, + anon_sym_QMARK, + ACTIONS(2933), 1, + anon_sym_AMP, + ACTIONS(2935), 1, + anon_sym_PIPE, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, + anon_sym_keyof, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4149), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4428), 1, + sym_formal_parameters, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2939), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3102), 6, + STATE(1987), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98209,7 +105699,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26740] = 31, + [25889] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -98218,72 +105708,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2629), 1, + ACTIONS(3367), 1, anon_sym_typeof, - ACTIONS(2631), 1, + ACTIONS(3369), 1, anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(3371), 1, anon_sym_QMARK, - ACTIONS(2635), 1, + ACTIONS(3373), 1, anon_sym_AMP, - ACTIONS(2637), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(2643), 1, + ACTIONS(3377), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(4073), 1, sym_type_parameters, - STATE(3852), 1, + STATE(4275), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3116), 6, + STATE(2981), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98298,7 +105788,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26860] = 31, + [26009] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -98307,72 +105797,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3094), 6, + STATE(3199), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98387,81 +105877,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26980] = 31, + [26129] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, sym_this, - ACTIONS(2629), 1, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, anon_sym_typeof, - ACTIONS(2631), 1, + ACTIONS(3173), 1, anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(3175), 1, anon_sym_QMARK, - ACTIONS(2635), 1, + ACTIONS(3177), 1, anon_sym_AMP, - ACTIONS(2637), 1, + ACTIONS(3179), 1, anon_sym_PIPE, - ACTIONS(2643), 1, + ACTIONS(3181), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(4180), 1, sym_type_parameters, - STATE(3852), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4419), 1, + sym_formal_parameters, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2803), 6, + STATE(1730), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98476,146 +105966,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27100] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(949), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(958), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(955), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(953), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 29, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27172] = 31, + [26249] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(2775), 1, + ACTIONS(3053), 1, anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, - anon_sym_new, - ACTIONS(2787), 1, - anon_sym_QMARK, - ACTIONS(2789), 1, - anon_sym_AMP, - ACTIONS(2791), 1, - anon_sym_PIPE, - ACTIONS(2797), 1, + ACTIONS(3075), 1, sym_number, - ACTIONS(2799), 1, + ACTIONS(3077), 1, sym_this, - ACTIONS(2803), 1, + ACTIONS(3081), 1, sym_readonly, - ACTIONS(2805), 1, + ACTIONS(3083), 1, anon_sym_infer, - ACTIONS(2807), 1, - anon_sym_keyof, - ACTIONS(2809), 1, + ACTIONS(3087), 1, anon_sym_LBRACE_PIPE, - STATE(1563), 1, + ACTIONS(3171), 1, + anon_sym_typeof, + ACTIONS(3173), 1, + anon_sym_new, + ACTIONS(3175), 1, + anon_sym_QMARK, + ACTIONS(3177), 1, + anon_sym_AMP, + ACTIONS(3179), 1, + anon_sym_PIPE, + ACTIONS(3181), 1, + anon_sym_keyof, + STATE(1675), 1, sym_nested_type_identifier, - STATE(1594), 1, + STATE(1757), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(4180), 1, sym_type_parameters, - STATE(3686), 1, + STATE(4376), 1, sym_nested_identifier, - STATE(3969), 1, + STATE(4419), 1, sym_formal_parameters, - ACTIONS(2793), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2801), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(1599), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1660), 6, + STATE(1770), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98630,81 +106055,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27292] = 31, + [26369] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2629), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, anon_sym_typeof, - ACTIONS(2633), 1, + ACTIONS(3173), 1, + anon_sym_new, + ACTIONS(3175), 1, anon_sym_QMARK, - ACTIONS(2643), 1, + ACTIONS(3177), 1, + anon_sym_AMP, + ACTIONS(3179), 1, + anon_sym_PIPE, + ACTIONS(3181), 1, anon_sym_keyof, - ACTIONS(3117), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(4180), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4419), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3208), 6, + STATE(1705), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(495), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98719,81 +106144,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27412] = 31, + [26489] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3099), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3101), 1, + anon_sym_QMARK, + ACTIONS(3103), 1, + anon_sym_AMP, + ACTIONS(3105), 1, + anon_sym_PIPE, + ACTIONS(3107), 1, + anon_sym_keyof, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4196), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4265), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2899), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2686), 6, + STATE(1534), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98808,152 +106233,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27532] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(3155), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 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, - 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, - [27616] = 31, + [26609] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2457), 1, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, anon_sym_typeof, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(3173), 1, anon_sym_new, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3175), 1, + anon_sym_QMARK, + ACTIONS(3177), 1, + anon_sym_AMP, + ACTIONS(3179), 1, + anon_sym_PIPE, + ACTIONS(3181), 1, + anon_sym_keyof, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(4180), 1, sym_type_parameters, - STATE(3693), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4419), 1, + sym_formal_parameters, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(497), 6, + STATE(1704), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98968,81 +106322,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27736] = 31, + [26729] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3113), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3119), 1, + ACTIONS(3115), 1, anon_sym_typeof, + ACTIONS(3117), 1, + anon_sym_LPAREN, + ACTIONS(3119), 1, + anon_sym_LBRACK, ACTIONS(3121), 1, - anon_sym_QMARK, + anon_sym_new, ACTIONS(3123), 1, - anon_sym_keyof, + anon_sym_QMARK, ACTIONS(3125), 1, - anon_sym_new, - ACTIONS(3127), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3127), 1, anon_sym_PIPE, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + anon_sym_SQUOTE, + ACTIONS(3137), 1, + sym_number, + ACTIONS(3143), 1, + sym_readonly, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, + sym_this, + STATE(2663), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, sym_type_parameters, - STATE(3746), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4215), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4281), 1, + sym_formal_parameters, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2636), 6, + STATE(2946), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99057,81 +106411,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27856] = 31, + [26849] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, + anon_sym_new, + ACTIONS(3371), 1, + anon_sym_QMARK, + ACTIONS(3373), 1, + anon_sym_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4073), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4275), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(496), 6, + STATE(550), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99146,81 +106500,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27976] = 31, + [26969] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(985), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(3371), 1, + anon_sym_QMARK, + ACTIONS(3373), 1, + anon_sym_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4073), 1, + sym_type_parameters, + STATE(4275), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2975), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [27089] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3117), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, + anon_sym_new, + ACTIONS(3371), 1, + anon_sym_QMARK, + ACTIONS(3373), 1, + anon_sym_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4073), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4275), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3205), 6, + STATE(546), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(495), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99235,81 +106678,146 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28096] = 31, + [27209] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(900), 1, + anon_sym_LT, + ACTIONS(888), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(897), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(904), 17, + anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_BQUOTE, + ACTIONS(894), 21, anon_sym_STAR, - ACTIONS(703), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(705), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(707), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(723), 1, + 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, + [27281] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, + anon_sym_new, + ACTIONS(3371), 1, + anon_sym_QMARK, + ACTIONS(3373), 1, + anon_sym_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4073), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4275), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2819), 6, + STATE(547), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99324,81 +106832,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28216] = 31, + [27401] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(489), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(491), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3050), 6, + STATE(3668), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99413,7 +106921,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28336] = 31, + [27521] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -99422,72 +106930,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(479), 6, + STATE(3613), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99502,81 +107010,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28456] = 31, + [27641] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2693), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, - anon_sym_new, - ACTIONS(2705), 1, - anon_sym_QMARK, - ACTIONS(2707), 1, - anon_sym_AMP, - ACTIONS(2709), 1, - anon_sym_PIPE, - ACTIONS(2715), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2717), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2721), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2723), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2725), 1, - anon_sym_keyof, - ACTIONS(2727), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1638), 1, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(3099), 1, + anon_sym_new, + ACTIONS(3101), 1, + anon_sym_QMARK, + ACTIONS(3103), 1, + anon_sym_AMP, + ACTIONS(3105), 1, + anon_sym_PIPE, + ACTIONS(3107), 1, + anon_sym_keyof, + STATE(1459), 1, sym_nested_type_identifier, - STATE(1851), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(4196), 1, sym_type_parameters, - STATE(3730), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3978), 1, + STATE(4265), 1, sym_formal_parameters, - ACTIONS(2711), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1787), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1758), 6, + STATE(2179), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99591,81 +107099,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28576] = 31, + [27761] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, - anon_sym_DQUOTE, - ACTIONS(831), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(2693), 1, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2705), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(2707), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2709), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(2715), 1, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(2717), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(2721), 1, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(2723), 1, + ACTIONS(2863), 1, anon_sym_infer, - ACTIONS(2725), 1, + ACTIONS(2865), 1, anon_sym_keyof, - ACTIONS(2727), 1, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - STATE(1638), 1, + STATE(2715), 1, sym_nested_type_identifier, - STATE(1851), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3730), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3978), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2711), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(1787), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1772), 6, + STATE(2928), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99680,26 +107188,63 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28696] = 7, + [27881] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_extends, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(955), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 3, - anon_sym_COMMA, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2617), 1, + anon_sym_in, + ACTIONS(2620), 1, + anon_sym_of, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(953), 19, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -99707,7 +107252,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -99715,37 +107262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(965), 29, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28768] = 31, + [27971] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -99754,72 +107271,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2917), 1, + ACTIONS(3353), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(3363), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3696), 1, + STATE(4372), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2532), 6, + STATE(3528), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99834,7 +107351,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28888] = 31, + [28091] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -99843,72 +107360,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2917), 1, + ACTIONS(3353), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(3363), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3696), 1, + STATE(4372), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(476), 6, + STATE(3515), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99923,81 +107440,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29008] = 31, + [28211] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2693), 1, - anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2705), 1, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(2707), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(2709), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(2715), 1, - sym_number, - ACTIONS(2717), 1, - sym_this, - ACTIONS(2721), 1, - sym_readonly, - ACTIONS(2723), 1, - anon_sym_infer, - ACTIONS(2725), 1, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(2727), 1, - anon_sym_LBRACE_PIPE, - STATE(1638), 1, - sym_nested_type_identifier, - STATE(1851), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - STATE(3730), 1, - sym_nested_identifier, - STATE(3978), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(2711), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1787), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1756), 6, + STATE(3258), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100012,7 +107529,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29128] = 31, + [28331] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -100021,72 +107538,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2917), 1, + ACTIONS(3367), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(3369), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(3371), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(3373), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(3377), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(4073), 1, sym_type_parameters, - STATE(3696), 1, + STATE(4275), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2534), 6, + STATE(2967), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100101,81 +107618,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29248] = 31, + [28451] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, - anon_sym_AMP, - ACTIONS(707), 1, - anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3075), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3077), 1, sym_this, - STATE(2261), 1, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, + anon_sym_typeof, + ACTIONS(3173), 1, + anon_sym_new, + ACTIONS(3175), 1, + anon_sym_QMARK, + ACTIONS(3177), 1, + anon_sym_AMP, + ACTIONS(3179), 1, + anon_sym_PIPE, + ACTIONS(3181), 1, + anon_sym_keyof, + STATE(1675), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1757), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4180), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4376), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4419), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2343), 6, + STATE(1778), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100190,81 +107707,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29368] = 31, + [28571] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, - anon_sym_DQUOTE, - ACTIONS(831), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2691), 1, - sym_identifier, - ACTIONS(2693), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(2695), 1, - anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(2699), 1, - anon_sym_LPAREN, - ACTIONS(2701), 1, - anon_sym_LBRACK, - ACTIONS(2703), 1, - anon_sym_new, - ACTIONS(2705), 1, + ACTIONS(653), 1, anon_sym_QMARK, - ACTIONS(2707), 1, + ACTIONS(655), 1, anon_sym_AMP, - ACTIONS(2709), 1, + ACTIONS(657), 1, anon_sym_PIPE, - ACTIONS(2715), 1, - sym_number, - ACTIONS(2717), 1, - sym_this, - ACTIONS(2721), 1, - sym_readonly, - ACTIONS(2723), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(2725), 1, + ACTIONS(675), 1, anon_sym_keyof, - ACTIONS(2727), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - STATE(1638), 1, - sym_nested_type_identifier, - STATE(1851), 1, - sym__tuple_type_body, - STATE(3591), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, sym_type_parameters, - STATE(3730), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3978), 1, + STATE(4453), 1, sym_formal_parameters, - ACTIONS(2711), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(1787), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1790), 6, + STATE(3254), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100279,7 +107796,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29488] = 31, + [28691] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -100288,72 +107805,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, + anon_sym_new, + ACTIONS(3371), 1, + anon_sym_QMARK, + ACTIONS(3373), 1, + anon_sym_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4073), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4275), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3095), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100368,81 +107885,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29608] = 31, + [28811] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2775), 1, - anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, anon_sym_new, - ACTIONS(2787), 1, + ACTIONS(3371), 1, anon_sym_QMARK, - ACTIONS(2789), 1, + ACTIONS(3373), 1, anon_sym_AMP, - ACTIONS(2791), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(2797), 1, - sym_number, - ACTIONS(2799), 1, - sym_this, - ACTIONS(2803), 1, - sym_readonly, - ACTIONS(2805), 1, - anon_sym_infer, - ACTIONS(2807), 1, + ACTIONS(3377), 1, anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - STATE(1563), 1, - sym_nested_type_identifier, - STATE(1594), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4073), 1, sym_type_parameters, - STATE(3686), 1, - sym_nested_identifier, - STATE(3969), 1, + STATE(4275), 1, sym_formal_parameters, - ACTIONS(2793), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2801), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1599), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1729), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100457,81 +107974,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29728] = 31, + [28931] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2693), 1, - anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, - anon_sym_new, - ACTIONS(2705), 1, - anon_sym_QMARK, - ACTIONS(2707), 1, - anon_sym_AMP, - ACTIONS(2709), 1, - anon_sym_PIPE, - ACTIONS(2715), 1, - sym_number, - ACTIONS(2717), 1, + ACTIONS(3351), 1, sym_this, - ACTIONS(2721), 1, - sym_readonly, - ACTIONS(2723), 1, - anon_sym_infer, - ACTIONS(2725), 1, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3371), 1, + anon_sym_QMARK, + ACTIONS(3377), 1, anon_sym_keyof, - ACTIONS(2727), 1, - anon_sym_LBRACE_PIPE, - STATE(1638), 1, - sym_nested_type_identifier, - STATE(1851), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3730), 1, - sym_nested_identifier, - STATE(3978), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2711), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1787), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1822), 6, + STATE(3717), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(553), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100546,81 +108063,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29848] = 31, + [29051] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2693), 1, - anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(2705), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(2707), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(2709), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(2715), 1, - sym_number, - ACTIONS(2717), 1, - sym_this, - ACTIONS(2721), 1, - sym_readonly, - ACTIONS(2723), 1, - anon_sym_infer, - ACTIONS(2725), 1, + ACTIONS(3363), 1, anon_sym_keyof, - ACTIONS(2727), 1, - anon_sym_LBRACE_PIPE, - STATE(1638), 1, - sym_nested_type_identifier, - STATE(1851), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - STATE(3730), 1, - sym_nested_identifier, - STATE(3978), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(2711), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1787), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1823), 6, + STATE(3486), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100635,81 +108152,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29968] = 31, + [29171] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(2693), 1, + ACTIONS(3053), 1, anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, - anon_sym_new, - ACTIONS(2705), 1, - anon_sym_QMARK, - ACTIONS(2707), 1, - anon_sym_AMP, - ACTIONS(2709), 1, - anon_sym_PIPE, - ACTIONS(2715), 1, + ACTIONS(3075), 1, sym_number, - ACTIONS(2717), 1, + ACTIONS(3077), 1, sym_this, - ACTIONS(2721), 1, + ACTIONS(3081), 1, sym_readonly, - ACTIONS(2723), 1, + ACTIONS(3083), 1, anon_sym_infer, - ACTIONS(2725), 1, - anon_sym_keyof, - ACTIONS(2727), 1, + ACTIONS(3087), 1, anon_sym_LBRACE_PIPE, - STATE(1638), 1, + ACTIONS(3171), 1, + anon_sym_typeof, + ACTIONS(3173), 1, + anon_sym_new, + ACTIONS(3175), 1, + anon_sym_QMARK, + ACTIONS(3177), 1, + anon_sym_AMP, + ACTIONS(3179), 1, + anon_sym_PIPE, + ACTIONS(3181), 1, + anon_sym_keyof, + STATE(1675), 1, sym_nested_type_identifier, - STATE(1851), 1, + STATE(1757), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(4180), 1, sym_type_parameters, - STATE(3730), 1, + STATE(4376), 1, sym_nested_identifier, - STATE(3978), 1, + STATE(4419), 1, sym_formal_parameters, - ACTIONS(2711), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(1787), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1824), 6, + STATE(1763), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100724,7 +108241,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30088] = 31, + [29291] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -100733,72 +108250,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2917), 1, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(3210), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3696), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(479), 6, + STATE(3169), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100813,81 +108330,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30208] = 31, + [29411] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2773), 1, - sym_identifier, - ACTIONS(2775), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, + ACTIONS(2987), 1, anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2993), 1, anon_sym_new, - ACTIONS(2787), 1, - anon_sym_QMARK, - ACTIONS(2789), 1, - anon_sym_AMP, - ACTIONS(2791), 1, - anon_sym_PIPE, - ACTIONS(2797), 1, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, sym_number, - ACTIONS(2799), 1, - sym_this, - ACTIONS(2803), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(2805), 1, - anon_sym_infer, - ACTIONS(2807), 1, - anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - STATE(1563), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, sym_nested_type_identifier, - STATE(1594), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(4156), 1, sym_type_parameters, - STATE(3686), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3969), 1, + STATE(4453), 1, sym_formal_parameters, - ACTIONS(2793), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2801), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(1599), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1698), 6, + STATE(2733), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100902,217 +108419,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30328] = 10, + [29531] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1522), 1, - anon_sym_COLON, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(927), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [30406] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1522), 1, - anon_sym_COLON, - ACTIONS(1009), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3359), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [30484] = 31, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3569), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [29651] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(703), 1, + ACTIONS(653), 1, anon_sym_QMARK, - ACTIONS(705), 1, + ACTIONS(655), 1, anon_sym_AMP, - ACTIONS(707), 1, + ACTIONS(657), 1, anon_sym_PIPE, - ACTIONS(723), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(725), 1, + ACTIONS(675), 1, anon_sym_keyof, - ACTIONS(727), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(2987), 1, anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(2993), 1, anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(2837), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(3133), 1, + ACTIONS(3379), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3381), 1, sym_this, - STATE(2261), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4156), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4453), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2309), 6, + STATE(3372), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101127,210 +108597,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30604] = 3, + [29771] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, + anon_sym_typeof, + ACTIONS(3173), 1, + anon_sym_new, + ACTIONS(3175), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3177), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3179), 1, anon_sym_PIPE, + ACTIONS(3181), 1, + anon_sym_keyof, + STATE(1675), 1, + sym_nested_type_identifier, + STATE(1757), 1, + sym__tuple_type_body, + STATE(4180), 1, + sym_type_parameters, + STATE(4376), 1, + sym_nested_identifier, + STATE(4419), 1, + sym_formal_parameters, + ACTIONS(3071), 2, 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, - ACTIONS(965), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, + sym_string, + sym__number, + ACTIONS(3073), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1754), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1756), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [29891] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30668] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(3157), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(927), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [30746] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(703), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(705), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(707), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, - sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, - sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2311), 6, + STATE(3004), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101345,81 +108775,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30866] = 31, + [30011] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, - anon_sym_AMP, - ACTIONS(707), 1, - anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2857), 1, sym_this, - STATE(2261), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2297), 6, + STATE(2899), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101434,78 +108864,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30986] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_EQ_GT, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LT, - STATE(1691), 1, - sym_type_arguments, - STATE(1853), 1, - sym_arguments, - ACTIONS(1901), 11, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1899), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [31070] = 31, + [30131] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -101514,72 +108873,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2917), 1, + ACTIONS(3353), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(3363), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3696), 1, + STATE(4372), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(470), 6, + STATE(3462), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101594,7 +108953,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31190] = 31, + [30251] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -101603,72 +108962,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2891), 1, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4240), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2648), 6, + STATE(3136), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101683,81 +109042,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31310] = 31, + [30371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(2758), 23, anon_sym_STAR, - ACTIONS(703), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(705), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(707), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, + 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, + ACTIONS(2760), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2819), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [30435] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, - sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - STATE(2261), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(3099), 1, + anon_sym_new, + ACTIONS(3101), 1, + anon_sym_QMARK, + ACTIONS(3103), 1, + anon_sym_AMP, + ACTIONS(3105), 1, + anon_sym_PIPE, + ACTIONS(3107), 1, + anon_sym_keyof, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4196), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4265), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2917), 6, + STATE(1529), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101772,81 +109192,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31430] = 31, + [30555] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3171), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3173), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3175), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3177), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3179), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3181), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(541), 1, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(4180), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - STATE(3990), 1, + STATE(4419), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(564), 6, + STATE(1761), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101861,81 +109281,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31550] = 31, + [30675] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(1077), 1, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(490), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4498), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 6, + STATE(3157), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(3161), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101950,81 +109370,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31670] = 31, + [30795] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3095), 1, + ACTIONS(2917), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(2931), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(2933), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(541), 1, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4149), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4203), 1, sym_nested_identifier, - STATE(3990), 1, + STATE(4428), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2939), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(476), 6, + STATE(2190), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102039,81 +109459,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31790] = 31, + [30915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(2788), 23, anon_sym_STAR, - ACTIONS(703), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(705), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(707), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + 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, + ACTIONS(2790), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [30979] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(2923), 1, anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2925), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(2929), 1, anon_sym_new, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2931), 1, + anon_sym_QMARK, + ACTIONS(2933), 1, + anon_sym_AMP, + ACTIONS(2935), 1, + anon_sym_PIPE, + ACTIONS(2941), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2943), 1, sym_this, - STATE(2261), 1, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, + anon_sym_keyof, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1904), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4149), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4203), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4428), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2945), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1901), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2939), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 6, + STATE(1971), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102128,146 +109609,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31910] = 7, + [31099] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_LT, - ACTIONS(949), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(958), 13, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(965), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(955), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [31982] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2775), 1, - anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2787), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(2797), 1, - sym_number, - ACTIONS(2803), 1, - sym_readonly, - ACTIONS(2807), 1, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3159), 1, - sym_this, - STATE(1563), 1, - sym_nested_type_identifier, - STATE(1594), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - STATE(3686), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(2793), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2801), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1599), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3249), 6, + STATE(3521), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1658), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102282,81 +109698,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32102] = 31, + [31219] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(489), 1, - anon_sym_QMARK, - ACTIONS(491), 1, - anon_sym_AMP, - ACTIONS(493), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(523), 1, - anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_new, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3568), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3693), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3127), 6, + STATE(3609), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102371,7 +109787,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32222] = 31, + [31339] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -102380,72 +109796,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2917), 1, - anon_sym_typeof, - ACTIONS(2921), 1, - anon_sym_new, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2925), 1, - anon_sym_AMP, - ACTIONS(2927), 1, - anon_sym_PIPE, - ACTIONS(2929), 1, - anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3696), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(486), 6, + STATE(3610), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102460,81 +109876,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32342] = 31, + [31459] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(703), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(705), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(707), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2432), 6, + STATE(3611), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102549,7 +109965,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32462] = 31, + [31579] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -102558,72 +109974,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1071), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3200), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3210), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(541), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3990), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(479), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102638,81 +110054,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32582] = 31, + [31699] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3095), 1, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(541), 1, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3990), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(470), 6, + STATE(2951), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102727,81 +110143,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32702] = 31, + [31819] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(521), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3095), 1, + ACTIONS(3379), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3381), 1, + sym_this, + ACTIONS(3383), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3385), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3387), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3389), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3393), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(541), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4185), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3990), 1, + STATE(4371), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(486), 6, + STATE(2618), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102816,81 +110232,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32822] = 31, + [31939] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3095), 1, + ACTIONS(2917), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(2931), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(2933), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(541), 1, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4149), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4203), 1, sym_nested_identifier, - STATE(3990), 1, + STATE(4428), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2939), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(561), 6, + STATE(1951), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102905,7 +110321,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32942] = 31, + [32059] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -102914,72 +110330,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(497), 6, + STATE(2998), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102994,81 +110410,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33062] = 31, + [32179] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(707), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(2837), 1, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3228), 1, + anon_sym_keyof, + ACTIONS(3395), 1, sym_this, - STATE(2261), 1, + STATE(2715), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2823), 2, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2390), 6, + STATE(3813), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2931), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103083,151 +110499,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33182] = 12, + [32299] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, - anon_sym_EQ, - ACTIONS(1335), 1, - anon_sym_EQ_GT, - ACTIONS(1337), 1, - anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - anon_sym_extends, - ACTIONS(1947), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_COMMA, - ACTIONS(2617), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1009), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 20, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [33264] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(3363), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(496), 6, + STATE(3274), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103242,81 +110588,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33384] = 31, + [32419] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(2921), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, + ACTIONS(2923), 1, anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(2925), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(2929), 1, anon_sym_new, - ACTIONS(2743), 1, + ACTIONS(2931), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(2933), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(2935), 1, anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, + ACTIONS(2941), 1, sym_number, - ACTIONS(2763), 1, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, sym_readonly, - ACTIONS(2767), 1, + ACTIONS(2949), 1, anon_sym_infer, - ACTIONS(2769), 1, + ACTIONS(2951), 1, anon_sym_keyof, - ACTIONS(2771), 1, + ACTIONS(2953), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, + STATE(1715), 1, sym_nested_type_identifier, - STATE(2496), 1, + STATE(1904), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(4149), 1, sym_type_parameters, - STATE(3716), 1, + STATE(4203), 1, sym_nested_identifier, - STATE(4000), 1, + STATE(4428), 1, sym_formal_parameters, - ACTIONS(2749), 2, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2761), 2, + ACTIONS(2945), 2, sym_true, sym_false, - STATE(2488), 2, + STATE(1901), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(2939), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2498), 6, + STATE(2224), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103331,81 +110677,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33504] = 31, + [32539] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(521), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(3224), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(3228), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, + sym_type_parameters, + STATE(4498), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2924), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [32659] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(3117), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(495), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103420,81 +110855,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33624] = 31, + [32779] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, anon_sym_new, - ACTIONS(2743), 1, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, - sym_number, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, - sym_nested_type_identifier, - STATE(2496), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(4000), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(2749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2761), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2488), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2480), 6, + STATE(3007), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103509,81 +110944,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33744] = 31, + [32899] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(2837), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(3133), 1, + ACTIONS(3379), 1, sym_identifier, - ACTIONS(3161), 1, + ACTIONS(3383), 1, + anon_sym_typeof, + ACTIONS(3387), 1, + anon_sym_QMARK, + ACTIONS(3393), 1, + anon_sym_keyof, + ACTIONS(3397), 1, sym_this, - STATE(2261), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3239), 6, + STATE(3725), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2295), 14, + STATE(2645), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103598,81 +111033,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33864] = 31, + [33019] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(521), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, sym_this, - ACTIONS(2917), 1, + ACTIONS(3383), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(3385), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(3387), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(3389), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(3393), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4185), 1, sym_type_parameters, - STATE(3696), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4284), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4371), 1, + sym_formal_parameters, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2535), 6, + STATE(2646), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103687,81 +111122,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33984] = 31, + [33139] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_new, - ACTIONS(2743), 1, - anon_sym_QMARK, - ACTIONS(2745), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2753), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2755), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2757), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(2763), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, - anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, + ACTIONS(3379), 1, sym_identifier, - ACTIONS(3139), 1, + ACTIONS(3381), 1, sym_this, - STATE(2353), 1, + ACTIONS(3383), 1, + anon_sym_typeof, + ACTIONS(3385), 1, + anon_sym_new, + ACTIONS(3387), 1, + anon_sym_QMARK, + ACTIONS(3389), 1, + anon_sym_AMP, + ACTIONS(3391), 1, + anon_sym_PIPE, + ACTIONS(3393), 1, + anon_sym_keyof, + STATE(2592), 1, sym_nested_type_identifier, - STATE(2496), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(4185), 1, sym_type_parameters, - STATE(3716), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(4000), 1, + STATE(4371), 1, sym_formal_parameters, - ACTIONS(2749), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2761), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(2488), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2500), 6, + STATE(2647), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103776,81 +111211,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34104] = 31, + [33259] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_new, - ACTIONS(2743), 1, - anon_sym_QMARK, - ACTIONS(2745), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2753), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(2755), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(2757), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(2763), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(2767), 1, + ACTIONS(2863), 1, anon_sym_infer, - ACTIONS(2769), 1, - anon_sym_keyof, - ACTIONS(2771), 1, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, sym_nested_type_identifier, - STATE(2496), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(4071), 1, sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(4000), 1, + STATE(4498), 1, sym_formal_parameters, - ACTIONS(2749), 2, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2761), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2488), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2459), 6, + STATE(2923), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103865,7 +111300,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34224] = 31, + [33379] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -103874,72 +111309,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1071), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3353), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3363), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(541), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3598), 1, + STATE(3939), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3990), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(560), 6, + STATE(3547), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103954,81 +111389,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34344] = 31, + [33499] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2773), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2775), 1, - anon_sym_STAR, - ACTIONS(2777), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_typeof, - ACTIONS(2781), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(2787), 1, - anon_sym_QMARK, - ACTIONS(2789), 1, - anon_sym_AMP, - ACTIONS(2791), 1, - anon_sym_PIPE, - ACTIONS(2797), 1, - sym_number, - ACTIONS(2799), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2803), 1, - sym_readonly, - ACTIONS(2805), 1, - anon_sym_infer, - ACTIONS(2807), 1, - anon_sym_keyof, - ACTIONS(2809), 1, - anon_sym_LBRACE_PIPE, - STATE(1563), 1, - sym_nested_type_identifier, - STATE(1594), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3447), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - STATE(3686), 1, - sym_nested_identifier, - STATE(3969), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(2793), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2801), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1599), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2795), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1701), 6, + STATE(3666), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1593), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104043,81 +111478,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34464] = 31, + [33619] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(3099), 1, anon_sym_new, - ACTIONS(2743), 1, + ACTIONS(3101), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(3103), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(3105), 1, anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, - sym_number, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, + ACTIONS(3107), 1, anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2496), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(4196), 1, sym_type_parameters, - STATE(3716), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(4000), 1, + STATE(4265), 1, sym_formal_parameters, - ACTIONS(2749), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2761), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2488), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2449), 6, + STATE(1519), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104132,81 +111567,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34584] = 31, + [33739] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(3099), 1, anon_sym_new, - ACTIONS(2743), 1, + ACTIONS(3101), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(3103), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(3105), 1, anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, - sym_number, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, + ACTIONS(3107), 1, anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2496), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(4196), 1, sym_type_parameters, - STATE(3716), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(4000), 1, + STATE(4265), 1, sym_formal_parameters, - ACTIONS(2749), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2761), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2488), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2451), 6, + STATE(1518), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104221,259 +111656,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34704] = 31, + [33859] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(2733), 1, - anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, - anon_sym_LPAREN, - ACTIONS(2739), 1, - anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_new, - ACTIONS(2743), 1, - anon_sym_QMARK, - ACTIONS(2745), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, - sym_number, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, - anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, - sym_nested_type_identifier, - STATE(2496), 1, - sym__tuple_type_body, - STATE(3609), 1, - sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(4000), 1, - sym_formal_parameters, - ACTIONS(2749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2761), 2, - sym_true, - sym_false, - STATE(2488), 2, - sym_string, - sym__number, - ACTIONS(2751), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2495), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2456), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [34824] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(451), 1, anon_sym_STAR, ACTIONS(521), 1, anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3146), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [34944] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3136), 6, + STATE(547), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104488,81 +111745,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35064] = 31, + [33979] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(3115), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(3117), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3121), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(3123), 1, + anon_sym_QMARK, + ACTIONS(3125), 1, + anon_sym_AMP, + ACTIONS(3127), 1, + anon_sym_PIPE, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3135), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3137), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3143), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2663), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4215), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4281), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3142), 6, + STATE(2956), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104577,81 +111834,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35184] = 31, + [34099] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(3163), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(3099), 1, anon_sym_new, - ACTIONS(3167), 1, + ACTIONS(3101), 1, anon_sym_QMARK, - ACTIONS(3169), 1, + ACTIONS(3103), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3105), 1, anon_sym_PIPE, - ACTIONS(3173), 1, + ACTIONS(3107), 1, anon_sym_keyof, - STATE(2261), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(4196), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3762), 1, + STATE(4265), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2574), 6, + STATE(2216), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104666,33 +111923,36 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35304] = 13, + [34219] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 1, anon_sym_QMARK_DOT, - ACTIONS(2547), 1, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(3175), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1926), 1, + anon_sym_in, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(1970), 1, anon_sym_LPAREN, + ACTIONS(2800), 1, + anon_sym_of, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -104700,8 +111960,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(731), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104717,10 +111976,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, + ACTIONS(706), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -104729,7 +111987,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104737,7 +111997,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [35388] = 31, + [34309] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -104746,161 +112006,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3474), 1, - sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, - sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3070), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [35508] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(3210), 1, anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4194), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4240), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3165), 6, + STATE(546), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104915,44 +112086,44 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35628] = 3, + [34429] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 23, - anon_sym_STAR, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2567), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2812), 1, + anon_sym_in, + ACTIONS(2815), 1, + anon_sym_of, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104968,89 +112139,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35692] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, + ACTIONS(625), 20, anon_sym_STAR, - ACTIONS(703), 1, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(705), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(707), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + 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, + [34519] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2897), 1, sym_this, - STATE(2261), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4168), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4294), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2942), 6, + STATE(1576), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105065,7 +112249,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35812] = 31, + [34639] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -105074,72 +112258,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(573), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(591), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3399), 1, + sym_identifier, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3196), 6, + STATE(3278), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105154,81 +112338,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35932] = 31, + [34759] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2917), 1, + ACTIONS(3057), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(3065), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(1757), 1, + sym__tuple_type_body, + STATE(3943), 1, sym_type_parameters, - STATE(3696), 1, + STATE(4248), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4376), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2721), 6, + STATE(1730), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105243,81 +112427,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36052] = 31, + [34879] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2693), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2705), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2707), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2709), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2715), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2717), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2721), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2723), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2725), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2727), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1638), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(1851), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(4168), 1, sym_type_parameters, - STATE(3730), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3978), 1, + STATE(4294), 1, sym_formal_parameters, - ACTIONS(2711), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1787), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1916), 6, + STATE(1534), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105332,81 +112516,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36172] = 31, + [34999] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(831), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2693), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2705), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2707), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2709), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2715), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2717), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2721), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2723), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2725), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2727), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1638), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(1851), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3591), 1, + STATE(4168), 1, sym_type_parameters, - STATE(3730), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3978), 1, + STATE(4294), 1, sym_formal_parameters, - ACTIONS(2711), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1787), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1912), 6, + STATE(1582), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1841), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105421,81 +112605,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36292] = 31, + [35119] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(829), 1, - anon_sym_DQUOTE, - ACTIONS(831), 1, - anon_sym_SQUOTE, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(2693), 1, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2695), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2697), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2699), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2701), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(2715), 1, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(2721), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(2725), 1, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, anon_sym_keyof, - ACTIONS(2727), 1, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3177), 1, - sym_this, - STATE(1638), 1, + STATE(2715), 1, sym_nested_type_identifier, - STATE(1851), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3730), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2711), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(1787), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2713), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3216), 6, + STATE(2970), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1904), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105510,81 +112694,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36412] = 31, + [35239] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, - anon_sym_AMP, - ACTIONS(707), 1, - anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(3057), 1, anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(3063), 1, anon_sym_new, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3065), 1, + anon_sym_QMARK, + ACTIONS(3067), 1, + anon_sym_AMP, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3075), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3077), 1, sym_this, - STATE(2261), 1, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, + anon_sym_keyof, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1757), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(3943), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4248), 1, sym_formal_parameters, - ACTIONS(2823), 2, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2386), 6, + STATE(1740), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105599,81 +112783,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36532] = 31, + [35359] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2653), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(2655), 1, - anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(2667), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(2669), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(2671), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(2677), 1, - sym_number, - ACTIONS(2679), 1, - sym_this, - ACTIONS(2683), 1, - sym_readonly, - ACTIONS(2685), 1, - anon_sym_infer, - ACTIONS(2687), 1, + ACTIONS(3363), 1, anon_sym_keyof, - ACTIONS(2689), 1, - anon_sym_LBRACE_PIPE, - STATE(1245), 1, - sym_nested_type_identifier, - STATE(1278), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - STATE(3695), 1, - sym_nested_identifier, - STATE(3883), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2681), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(1322), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1328), 6, + STATE(550), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105688,81 +112872,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36652] = 31, + [35479] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, - anon_sym_QMARK, - ACTIONS(617), 1, - anon_sym_AMP, - ACTIONS(619), 1, - anon_sym_PIPE, - ACTIONS(639), 1, - anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2891), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2895), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2897), 1, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, sym_number, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4168), 1, sym_type_parameters, - STATE(3729), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1919), 2, + STATE(4294), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2899), 2, sym_true, sym_false, - STATE(2671), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2895), 6, + STATE(1529), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105777,81 +112961,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36772] = 31, + [35599] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2653), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(2655), 1, + ACTIONS(3053), 1, anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(3057), 1, anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, - anon_sym_new, - ACTIONS(2667), 1, + ACTIONS(3065), 1, anon_sym_QMARK, - ACTIONS(2669), 1, - anon_sym_AMP, - ACTIONS(2671), 1, - anon_sym_PIPE, - ACTIONS(2677), 1, + ACTIONS(3075), 1, sym_number, - ACTIONS(2679), 1, - sym_this, - ACTIONS(2683), 1, + ACTIONS(3081), 1, sym_readonly, - ACTIONS(2685), 1, - anon_sym_infer, - ACTIONS(2687), 1, + ACTIONS(3085), 1, anon_sym_keyof, - ACTIONS(2689), 1, + ACTIONS(3087), 1, anon_sym_LBRACE_PIPE, - STATE(1245), 1, + ACTIONS(3365), 1, + sym_this, + STATE(1675), 1, sym_nested_type_identifier, - STATE(1278), 1, + STATE(1757), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3695), 1, - sym_nested_identifier, - STATE(3883), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2673), 2, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2681), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(1322), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1320), 6, + STATE(3730), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(1752), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105866,7 +113050,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36892] = 31, + [35719] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -105875,72 +113059,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(615), 1, + ACTIONS(561), 1, anon_sym_QMARK, - ACTIONS(617), 1, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(619), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(639), 1, + ACTIONS(581), 1, anon_sym_keyof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1067), 1, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3401), 1, sym_this, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(2895), 1, - anon_sym_new, - ACTIONS(2897), 1, - sym_number, - STATE(483), 1, + STATE(1921), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3589), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3729), 1, + STATE(4316), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2899), 2, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2671), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2710), 6, + STATE(3734), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(3536), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105955,7 +113139,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37012] = 31, + [35839] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -105964,72 +113148,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(2629), 1, + ACTIONS(3021), 1, anon_sym_typeof, - ACTIONS(2631), 1, + ACTIONS(3023), 1, anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(2635), 1, + ACTIONS(3027), 1, anon_sym_AMP, - ACTIONS(2637), 1, + ACTIONS(3029), 1, anon_sym_PIPE, - ACTIONS(2643), 1, + ACTIONS(3035), 1, anon_sym_keyof, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3852), 1, + STATE(4427), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(496), 6, + STATE(3497), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106044,81 +113228,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37132] = 31, + [35959] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2917), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4168), 1, sym_type_parameters, - STATE(3696), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4294), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(497), 6, + STATE(1519), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106133,81 +113317,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37252] = 31, + [36079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(2534), 23, anon_sym_STAR, - ACTIONS(703), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(705), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(707), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + 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, + ACTIONS(2536), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36143] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2897), 1, sym_this, - STATE(2261), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4168), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4294), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2327), 6, + STATE(1518), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106222,81 +113467,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37372] = 31, + [36263] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2917), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2921), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2923), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2925), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2927), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3557), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4168), 1, sym_type_parameters, - STATE(3696), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4294), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(496), 6, + STATE(1584), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106311,146 +113556,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37492] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(1753), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2510), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(953), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 29, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [37564] = 31, + [36383] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2653), 1, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(2655), 1, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2667), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(2669), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2671), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(2677), 1, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2857), 1, sym_this, - ACTIONS(2683), 1, + ACTIONS(2861), 1, sym_readonly, - ACTIONS(2685), 1, + ACTIONS(2863), 1, anon_sym_infer, - ACTIONS(2687), 1, + ACTIONS(2865), 1, anon_sym_keyof, - ACTIONS(2689), 1, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - STATE(1245), 1, + STATE(2715), 1, sym_nested_type_identifier, - STATE(1278), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3695), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3883), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2673), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2681), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(1322), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1326), 6, + STATE(2914), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106465,81 +113645,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37684] = 31, + [36503] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2917), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2929), 1, - anon_sym_keyof, - ACTIONS(3117), 1, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4120), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3206), 6, + STATE(3664), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(495), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106554,81 +113734,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37804] = 31, + [36623] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + ACTIONS(3383), 1, + anon_sym_typeof, + ACTIONS(3385), 1, anon_sym_new, - ACTIONS(2667), 1, + ACTIONS(3387), 1, anon_sym_QMARK, - ACTIONS(2669), 1, + ACTIONS(3389), 1, anon_sym_AMP, - ACTIONS(2671), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(2677), 1, - sym_number, - ACTIONS(2679), 1, - sym_this, - ACTIONS(2683), 1, - sym_readonly, - ACTIONS(2685), 1, - anon_sym_infer, - ACTIONS(2687), 1, + ACTIONS(3393), 1, anon_sym_keyof, - ACTIONS(2689), 1, - anon_sym_LBRACE_PIPE, - STATE(1245), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(1278), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(4185), 1, sym_type_parameters, - STATE(3695), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3883), 1, + STATE(4371), 1, sym_formal_parameters, - ACTIONS(2673), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2681), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(1322), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1314), 6, + STATE(2829), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106643,81 +113823,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37924] = 31, + [36743] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(521), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(3383), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(3385), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(3387), 1, + anon_sym_QMARK, + ACTIONS(3389), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3393), 1, + anon_sym_keyof, + STATE(2592), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4185), 1, sym_type_parameters, - STATE(3746), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4284), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4371), 1, + sym_formal_parameters, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2559), 6, + STATE(2655), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106732,81 +113912,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38044] = 31, + [36863] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - anon_sym_SQUOTE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + ACTIONS(3383), 1, + anon_sym_typeof, + ACTIONS(3385), 1, anon_sym_new, - ACTIONS(2667), 1, + ACTIONS(3387), 1, anon_sym_QMARK, - ACTIONS(2669), 1, + ACTIONS(3389), 1, anon_sym_AMP, - ACTIONS(2671), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(2677), 1, - sym_number, - ACTIONS(2679), 1, - sym_this, - ACTIONS(2683), 1, - sym_readonly, - ACTIONS(2685), 1, - anon_sym_infer, - ACTIONS(2687), 1, + ACTIONS(3393), 1, anon_sym_keyof, - ACTIONS(2689), 1, - anon_sym_LBRACE_PIPE, - STATE(1245), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(1278), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(4185), 1, sym_type_parameters, - STATE(3695), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3883), 1, + STATE(4371), 1, sym_formal_parameters, - ACTIONS(2673), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2681), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(1322), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1309), 6, + STATE(2639), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106821,81 +114001,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38164] = 31, + [36983] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2653), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2655), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2667), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2669), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2671), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2677), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2683), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2685), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2687), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2689), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1245), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(1278), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(4168), 1, sym_type_parameters, - STATE(3695), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3883), 1, + STATE(4294), 1, sym_formal_parameters, - ACTIONS(2673), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2681), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1322), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1307), 6, + STATE(1480), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106910,81 +114090,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38284] = 31, + [37103] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(503), 1, anon_sym_DQUOTE, ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2653), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2655), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2657), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2661), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2667), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2669), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2671), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2677), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2683), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2685), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2687), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2689), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1245), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(1278), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3678), 1, + STATE(4168), 1, sym_type_parameters, - STATE(3695), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3883), 1, + STATE(4294), 1, sym_formal_parameters, - ACTIONS(2673), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2681), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1322), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2675), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1343), 6, + STATE(1479), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1277), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106999,114 +114179,25 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38404] = 31, + [37223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(2806), 23, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(3119), 1, - anon_sym_typeof, - ACTIONS(3121), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, - anon_sym_new, - ACTIONS(3127), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, - sym_nested_type_identifier, - STATE(3543), 1, - sym_type_parameters, - STATE(3746), 1, - sym_formal_parameters, - STATE(3860), 1, - sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(499), 2, - sym_string, - sym__number, - ACTIONS(1011), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(476), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(484), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [38524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -107115,7 +114206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2441), 33, + ACTIONS(2808), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -107149,151 +114240,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38588] = 12, + [37287] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2905), 1, - anon_sym_EQ_GT, - ACTIONS(2933), 1, - anon_sym_EQ, - ACTIONS(2939), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(3113), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(641), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [38670] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(727), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(2837), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(3133), 1, + ACTIONS(3379), 1, sym_identifier, - ACTIONS(3161), 1, + ACTIONS(3381), 1, sym_this, - ACTIONS(3163), 1, + ACTIONS(3383), 1, anon_sym_typeof, - ACTIONS(3167), 1, + ACTIONS(3385), 1, + anon_sym_new, + ACTIONS(3387), 1, anon_sym_QMARK, - ACTIONS(3173), 1, + ACTIONS(3389), 1, + anon_sym_AMP, + ACTIONS(3391), 1, + anon_sym_PIPE, + ACTIONS(3393), 1, anon_sym_keyof, - STATE(2261), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(4185), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4371), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3228), 6, + STATE(2632), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2295), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -107308,81 +114329,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38790] = 31, + [37407] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(723), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(727), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(2837), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(3133), 1, + ACTIONS(3379), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3381), 1, sym_this, - ACTIONS(3163), 1, + ACTIONS(3383), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(3385), 1, anon_sym_new, - ACTIONS(3167), 1, + ACTIONS(3387), 1, anon_sym_QMARK, - ACTIONS(3169), 1, + ACTIONS(3389), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3173), 1, + ACTIONS(3393), 1, anon_sym_keyof, - STATE(2261), 1, + STATE(2592), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2641), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(4185), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4284), 1, sym_nested_identifier, - STATE(3762), 1, + STATE(4371), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3007), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 6, + STATE(2830), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -107397,81 +114418,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38910] = 31, + [37527] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(3111), 1, + anon_sym_STAR, + ACTIONS(3113), 1, anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(3115), 1, + anon_sym_typeof, + ACTIONS(3117), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(3119), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(3121), 1, + anon_sym_new, + ACTIONS(3123), 1, + anon_sym_QMARK, + ACTIONS(3125), 1, + anon_sym_AMP, + ACTIONS(3127), 1, + anon_sym_PIPE, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3135), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3137), 1, sym_number, - ACTIONS(2837), 1, + ACTIONS(3143), 1, sym_readonly, - ACTIONS(3133), 1, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3347), 1, sym_this, - ACTIONS(3163), 1, - anon_sym_typeof, - ACTIONS(3165), 1, - anon_sym_new, - ACTIONS(3167), 1, - anon_sym_QMARK, - ACTIONS(3169), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_PIPE, - ACTIONS(3173), 1, - anon_sym_keyof, - STATE(2261), 1, + STATE(2663), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2857), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(4176), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4215), 1, sym_nested_identifier, - STATE(3762), 1, + STATE(4281), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3141), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2297), 6, + STATE(2819), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -107486,7 +114507,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39030] = 31, + [37647] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -107495,72 +114516,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - STATE(483), 1, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, + anon_sym_QMARK, + ACTIONS(3411), 1, + anon_sym_AMP, + ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(628), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(4158), 1, sym_type_parameters, - STATE(3860), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4343), 1, sym_formal_parameters, - ACTIONS(1021), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2333), 6, + STATE(635), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -107575,81 +114596,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39150] = 31, + [37767] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(3115), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(3117), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3121), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(3123), 1, + anon_sym_QMARK, + ACTIONS(3125), 1, + anon_sym_AMP, + ACTIONS(3127), 1, + anon_sym_PIPE, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3135), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3137), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3143), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2663), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4215), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4281), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2611), 6, + STATE(2817), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -107664,81 +114685,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39270] = 31, + [37887] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(641), 1, anon_sym_STAR, - ACTIONS(521), 1, + ACTIONS(673), 1, anon_sym_infer, - ACTIONS(525), 1, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3003), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3009), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(3383), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(3385), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(3387), 1, + anon_sym_QMARK, + ACTIONS(3389), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3393), 1, + anon_sym_keyof, + STATE(2592), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4185), 1, sym_type_parameters, - STATE(3746), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4284), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4371), 1, + sym_formal_parameters, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2997), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2560), 6, + STATE(2791), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2640), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -107753,150 +114774,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39390] = 11, + [38007] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1201), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_EQ_GT, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1357), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2617), 3, - anon_sym_GT, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(1009), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [39470] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - sym_this, - ACTIONS(2629), 1, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, anon_sym_typeof, - ACTIONS(2631), 1, - anon_sym_new, - ACTIONS(2633), 1, + ACTIONS(2959), 1, anon_sym_QMARK, - ACTIONS(2635), 1, - anon_sym_AMP, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2643), 1, + ACTIONS(2965), 1, anon_sym_keyof, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(3417), 1, + sym_this, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3520), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4143), 1, sym_type_parameters, - STATE(3852), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4316), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(497), 6, + STATE(3711), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1478), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -107911,81 +114863,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39590] = 31, + [38127] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, - sym_number, - ACTIONS(1067), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, - sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(2957), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(2959), 1, + anon_sym_QMARK, + ACTIONS(2961), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, sym_type_parameters, - STATE(3746), 1, - sym_formal_parameters, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(479), 6, + STATE(1479), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108000,81 +114952,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39710] = 31, + [38247] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_infer, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 1, - anon_sym_QMARK, - ACTIONS(573), 1, - anon_sym_AMP, - ACTIONS(575), 1, - anon_sym_PIPE, - ACTIONS(591), 1, - anon_sym_keyof, - ACTIONS(983), 1, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(3115), 1, anon_sym_typeof, - ACTIONS(985), 1, + ACTIONS(3117), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3121), 1, anon_sym_new, - ACTIONS(1013), 1, + ACTIONS(3123), 1, + anon_sym_QMARK, + ACTIONS(3125), 1, + anon_sym_AMP, + ACTIONS(3127), 1, + anon_sym_PIPE, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3135), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(3137), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(3143), 1, sym_readonly, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, sym_this, - STATE(483), 1, - sym__tuple_type_body, - STATE(2235), 1, + STATE(2663), 1, sym_nested_type_identifier, - STATE(3474), 1, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, sym_type_parameters, - STATE(3860), 1, + STATE(4215), 1, sym_nested_identifier, - STATE(3865), 1, + STATE(4281), 1, sym_formal_parameters, - ACTIONS(1021), 2, - sym_true, - sym_false, - ACTIONS(1919), 2, + ACTIONS(3129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(3131), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2857), 6, + STATE(2775), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(2815), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108089,81 +115041,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39830] = 31, + [38367] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(723), 1, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(727), 1, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, - sym_this, - ACTIONS(3163), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(3167), 1, - anon_sym_QMARK, - ACTIONS(3169), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_PIPE, - ACTIONS(3173), 1, - anon_sym_keyof, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3762), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2468), 6, + STATE(3662), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108178,81 +115130,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39950] = 31, + [38487] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(2733), 1, - anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, - anon_sym_LPAREN, - ACTIONS(2739), 1, - anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_new, - ACTIONS(2743), 1, + ACTIONS(489), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(491), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, - sym_number, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2767), 1, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(2769), 1, + ACTIONS(523), 1, anon_sym_keyof, - ACTIONS(2771), 1, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3139), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, sym_this, - STATE(2353), 1, - sym_nested_type_identifier, - STATE(2496), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(4000), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(2749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2761), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2488), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2471), 6, + STATE(3657), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108267,81 +115219,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40070] = 31, + [38607] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, - anon_sym_AMP, - ACTIONS(707), 1, - anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2857), 1, sym_this, - STATE(2261), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3812), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2378), 6, + STATE(2912), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108356,7 +115308,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40190] = 31, + [38727] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -108365,72 +115317,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(3021), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(3023), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3027), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3029), 1, anon_sym_PIPE, - STATE(483), 1, + ACTIONS(3035), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(2555), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(4082), 1, sym_type_parameters, - STATE(3746), 1, + STATE(4427), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(470), 6, + STATE(3643), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108445,81 +115397,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40310] = 31, + [38847] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, anon_sym_new, - ACTIONS(2743), 1, + ACTIONS(2959), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(2961), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, - sym_number, - ACTIONS(2763), 1, - sym_readonly, - ACTIONS(2767), 1, - anon_sym_infer, - ACTIONS(2769), 1, + ACTIONS(2965), 1, anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2496), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(4174), 1, sym_type_parameters, - STATE(3716), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(4000), 1, + STATE(4404), 1, sym_formal_parameters, - ACTIONS(2749), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2761), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2488), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2473), 6, + STATE(1480), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(1520), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108534,81 +115486,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40430] = 31, + [38967] = 31, ACTIONS(3), 1, sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, ACTIONS(521), 1, anon_sym_infer, - ACTIONS(573), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(563), 1, anon_sym_AMP, - ACTIONS(575), 1, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(997), 1, + ACTIONS(729), 1, anon_sym_new, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(2733), 1, - anon_sym_LBRACE, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(2737), 1, - anon_sym_LPAREN, - ACTIONS(2739), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_QMARK, - ACTIONS(2753), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2755), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2757), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2763), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(2769), 1, - anon_sym_keyof, - ACTIONS(2771), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3179), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(3351), 1, sym_this, - STATE(2353), 1, - sym_nested_type_identifier, - STATE(2496), 1, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3409), 1, + anon_sym_QMARK, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(3474), 1, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(3865), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2761), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2488), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3219), 6, + STATE(3708), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2474), 14, + STATE(553), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108623,7 +115575,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40550] = 31, + [39087] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -108632,72 +115584,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(3407), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(3409), 1, + anon_sym_QMARK, + ACTIONS(3411), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3413), 1, anon_sym_PIPE, - STATE(483), 1, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(628), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(4158), 1, sym_type_parameters, - STATE(3746), 1, + STATE(4343), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(486), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108712,76 +115664,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40670] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(3181), 1, - anon_sym_in, - ACTIONS(3184), 1, - anon_sym_of, - ACTIONS(927), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [40750] = 31, + [39207] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -108790,72 +115673,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1017), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1074), 1, sym_readonly, - ACTIONS(1917), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2459), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, + ACTIONS(2564), 1, sym_this, - ACTIONS(3119), 1, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, anon_sym_typeof, - ACTIONS(3121), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_keyof, - ACTIONS(3125), 1, + ACTIONS(3407), 1, anon_sym_new, - ACTIONS(3127), 1, + ACTIONS(3409), 1, + anon_sym_QMARK, + ACTIONS(3411), 1, anon_sym_AMP, - ACTIONS(3129), 1, + ACTIONS(3413), 1, anon_sym_PIPE, - STATE(483), 1, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(2235), 1, + STATE(628), 1, sym_nested_type_identifier, - STATE(3543), 1, + STATE(4158), 1, sym_type_parameters, - STATE(3746), 1, + STATE(4343), 1, sym_formal_parameters, - STATE(3860), 1, + STATE(4517), 1, sym_nested_identifier, - ACTIONS(1021), 2, + ACTIONS(753), 2, sym_true, sym_false, - ACTIONS(1919), 2, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(499), 2, + STATE(569), 2, sym_string, sym__number, - ACTIONS(1011), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2561), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(484), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -108870,150 +115753,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40870] = 11, + [39327] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1963), 1, - anon_sym_in, - ACTIONS(3186), 1, - anon_sym_of, - ACTIONS(1009), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(491), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(493), 1, 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, - [40950] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(723), 1, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(727), 1, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, - sym_this, - ACTIONS(3163), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, anon_sym_new, - ACTIONS(3167), 1, - anon_sym_QMARK, - ACTIONS(3169), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_PIPE, - ACTIONS(3173), 1, - anon_sym_keyof, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3762), 1, + STATE(4313), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2309), 6, + STATE(3656), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109028,81 +115842,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41070] = 31, + [39447] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, - anon_sym_AMP, - ACTIONS(707), 1, - anon_sym_PIPE, - ACTIONS(723), 1, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2366), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109117,81 +115931,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41190] = 31, + [39567] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, + anon_sym_STAR, ACTIONS(2829), 1, - anon_sym_SQUOTE, + anon_sym_LBRACE, ACTIONS(2831), 1, - sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, - sym_this, - ACTIONS(3163), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, anon_sym_new, - ACTIONS(3167), 1, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(3169), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(3173), 1, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, anon_sym_keyof, - STATE(2261), 1, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(4109), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(3762), 1, + STATE(4518), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2311), 6, + STATE(3114), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109206,81 +116020,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41310] = 31, + [39687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(2821), 23, anon_sym_STAR, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2823), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2819), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2827), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [39751] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, - sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(3135), 1, - sym_this, - ACTIONS(3163), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(3165), 1, - anon_sym_new, - ACTIONS(3167), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(3169), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_PIPE, - ACTIONS(3173), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2905), 1, anon_sym_keyof, - STATE(2261), 1, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3417), 1, + sym_this, + STATE(1459), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1517), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(4143), 1, sym_type_parameters, - STATE(3745), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(3762), 1, + STATE(4316), 1, sym_formal_parameters, - ACTIONS(2823), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1536), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2327), 6, + STATE(3710), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1478), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109295,81 +116170,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41430] = 31, + [39871] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, - anon_sym_STAR, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, - sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3135), 1, - sym_this, - ACTIONS(3163), 1, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_new, - ACTIONS(3167), 1, + ACTIONS(3065), 1, anon_sym_QMARK, - ACTIONS(3169), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3173), 1, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, anon_sym_keyof, - STATE(2261), 1, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(1757), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(3943), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3762), 1, + STATE(4248), 1, sym_formal_parameters, - ACTIONS(2823), 2, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2472), 6, + STATE(2035), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109384,81 +116259,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41550] = 31, + [39991] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(723), 1, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(727), 1, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - ACTIONS(3163), 1, + ACTIONS(3353), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(3167), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(3169), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(3173), 1, + ACTIONS(3363), 1, anon_sym_keyof, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3762), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2337), 6, + STATE(558), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109473,217 +116348,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41670] = 10, + [40111] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_EQ, - ACTIONS(1085), 1, - anon_sym_EQ_GT, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1532), 1, - anon_sym_COLON, - ACTIONS(1009), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [41748] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1532), 1, - anon_sym_COLON, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2594), 1, - anon_sym_EQ_GT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(927), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_typeof, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_new, + ACTIONS(3065), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3067), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3069), 1, anon_sym_PIPE, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, + anon_sym_keyof, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, + sym_nested_type_identifier, + STATE(1757), 1, + sym__tuple_type_body, + STATE(3943), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, 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, - [41826] = 31, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, + sym_string, + sym__number, + ACTIONS(3073), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1705), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1756), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [40231] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, anon_sym_STAR, - ACTIONS(2733), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, + ACTIONS(3057), 1, anon_sym_typeof, - ACTIONS(2737), 1, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2739), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(3063), 1, anon_sym_new, - ACTIONS(2743), 1, + ACTIONS(3065), 1, anon_sym_QMARK, - ACTIONS(2745), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(2747), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2755), 1, - anon_sym_SQUOTE, - ACTIONS(2757), 1, + ACTIONS(3075), 1, sym_number, - ACTIONS(2763), 1, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, sym_readonly, - ACTIONS(2767), 1, + ACTIONS(3083), 1, anon_sym_infer, - ACTIONS(2769), 1, + ACTIONS(3085), 1, anon_sym_keyof, - ACTIONS(2771), 1, + ACTIONS(3087), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3139), 1, - sym_this, - STATE(2353), 1, + STATE(1675), 1, sym_nested_type_identifier, - STATE(2496), 1, + STATE(1757), 1, sym__tuple_type_body, - STATE(3609), 1, + STATE(3943), 1, sym_type_parameters, - STATE(3716), 1, - sym_nested_identifier, - STATE(4000), 1, + STATE(4248), 1, sym_formal_parameters, - ACTIONS(2749), 2, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2761), 2, + ACTIONS(3079), 2, sym_true, sym_false, - STATE(2488), 2, + STATE(1746), 2, sym_string, sym__number, - ACTIONS(2751), 6, + ACTIONS(3073), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2584), 6, + STATE(1704), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2456), 14, + STATE(1756), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109698,81 +116526,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41946] = 31, + [40351] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(691), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(723), 1, + ACTIONS(521), 1, anon_sym_infer, - ACTIONS(727), 1, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, sym_this, - ACTIONS(3163), 1, + ACTIONS(3353), 1, anon_sym_typeof, - ACTIONS(3165), 1, + ACTIONS(3355), 1, anon_sym_new, - ACTIONS(3167), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - ACTIONS(3169), 1, + ACTIONS(3359), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(3173), 1, + ACTIONS(3363), 1, anon_sym_keyof, - STATE(2261), 1, - sym_nested_type_identifier, - STATE(2335), 1, + STATE(567), 1, sym__tuple_type_body, - STATE(3664), 1, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3762), 1, + STATE(4372), 1, sym_formal_parameters, - ACTIONS(2823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2835), 2, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, sym_true, sym_false, - STATE(2317), 2, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(743), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2475), 6, + STATE(546), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(570), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109787,152 +116615,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42066] = 13, + [40471] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(3188), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 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, - 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, - [42150] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(703), 1, - anon_sym_QMARK, - ACTIONS(705), 1, - anon_sym_AMP, - ACTIONS(707), 1, - anon_sym_PIPE, - ACTIONS(723), 1, - anon_sym_infer, - ACTIONS(725), 1, - anon_sym_keyof, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2813), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(2817), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2821), 1, - anon_sym_new, - ACTIONS(2827), 1, + ACTIONS(2851), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2855), 1, sym_number, - ACTIONS(2837), 1, - sym_readonly, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2857), 1, sym_this, - STATE(2261), 1, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, sym_nested_type_identifier, - STATE(2335), 1, + STATE(2874), 1, sym__tuple_type_body, - STATE(3641), 1, + STATE(4071), 1, sym_type_parameters, - STATE(3745), 1, - sym_nested_identifier, - STATE(3812), 1, + STATE(4498), 1, sym_formal_parameters, - ACTIONS(2823), 2, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2835), 2, + ACTIONS(2859), 2, sym_true, sym_false, - STATE(2317), 2, + STATE(2868), 2, sym_string, sym__number, - ACTIONS(2825), 6, + ACTIONS(2849), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2337), 6, + STATE(3113), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2332), 14, + STATE(2873), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -109947,886 +116704,1262 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42270] = 9, + [40591] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(1009), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2843), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2845), 1, anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, 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, - [42345] = 10, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2905), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [40711] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1069), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2001), 1, - anon_sym_COLON, - ACTIONS(1009), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(3099), 1, + anon_sym_new, + ACTIONS(3101), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3103), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3105), 1, anon_sym_PIPE, + ACTIONS(3107), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4196), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4265), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [42422] = 9, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1480), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [40831] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2905), 1, - anon_sym_EQ_GT, - ACTIONS(2933), 1, - anon_sym_EQ, - ACTIONS(927), 13, - anon_sym_as, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2879), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2961), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2963), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [42497] = 8, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1873), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [40951] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(927), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3224), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3226), 1, anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, + sym_type_parameters, + STATE(4498), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, 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, - [42570] = 11, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2912), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41071] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 1, - anon_sym_EQ, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1903), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(1993), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(3099), 1, + anon_sym_new, + ACTIONS(3101), 1, anon_sym_QMARK, - ACTIONS(980), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3103), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3105), 1, anon_sym_PIPE, + ACTIONS(3107), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4196), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4265), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [42649] = 11, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1479), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41191] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(3062), 1, - anon_sym_EQ, - ACTIONS(3074), 1, - anon_sym_QMARK, - ACTIONS(3065), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(3101), 1, + anon_sym_QMARK, + ACTIONS(3107), 1, + anon_sym_keyof, + ACTIONS(3417), 1, + sym_this, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4316), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [42728] = 5, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3722), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1478), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41311] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 17, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2835), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3224), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3226), 1, anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, + sym_type_parameters, + STATE(4498), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, 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, - [42795] = 11, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2914), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41431] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_COLON, - ACTIONS(927), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3359), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [42874] = 12, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3561), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41551] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1069), 1, - anon_sym_EQ, - ACTIONS(1357), 1, - anon_sym_extends, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2617), 3, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, anon_sym_QMARK, + ACTIONS(491), 1, anon_sym_AMP, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(1009), 10, - anon_sym_as, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 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_CARET, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [42955] = 10, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3654), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41671] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(3181), 1, - anon_sym_in, - ACTIONS(3184), 1, - anon_sym_of, - ACTIONS(927), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3419), 1, + sym_this, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(2837), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [43032] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3734), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3518), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41791] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_extends, - ACTIONS(2510), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(955), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(953), 20, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2875), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(2961), 1, + anon_sym_AMP, + ACTIONS(2963), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - ACTIONS(965), 27, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [43103] = 8, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1518), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41911] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, - anon_sym_LBRACE, - ACTIONS(953), 1, - anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_LT, - ACTIONS(949), 3, - anon_sym_COMMA, - anon_sym_extends, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, anon_sym_LBRACE_PIPE, - ACTIONS(958), 13, - anon_sym_as, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(965), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(955), 21, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3645), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42031] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(491), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(493), 1, anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [43176] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3641), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42151] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 1, - anon_sym_EQ, - ACTIONS(3181), 1, - anon_sym_in, - ACTIONS(3184), 1, - anon_sym_of, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(913), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [43247] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(1753), 1, - anon_sym_extends, - ACTIONS(2585), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2510), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(953), 20, + ACTIONS(2764), 23, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110834,7 +117967,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -110842,9 +117977,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(965), 27, + ACTIONS(2766), 33, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + 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, @@ -110869,3531 +118011,4478 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [43318] = 9, + [42335] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(1123), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(1009), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, + anon_sym_new, + ACTIONS(3371), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3373), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3375), 1, anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4073), 1, + sym_type_parameters, + STATE(4275), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [43393] = 9, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(558), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42455] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(927), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(491), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(493), 1, anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [43468] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3612), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42575] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(949), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(958), 2, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(955), 3, - anon_sym_GT, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, + anon_sym_QMARK, + ACTIONS(3165), 1, anon_sym_AMP, + ACTIONS(3167), 1, anon_sym_PIPE, - ACTIONS(953), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - ACTIONS(965), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [43539] = 9, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1479), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42695] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, - anon_sym_EQ, - ACTIONS(1335), 1, - anon_sym_EQ_GT, - ACTIONS(1337), 1, - anon_sym_QMARK_DOT, - ACTIONS(1947), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_DOT, - ACTIONS(1009), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 23, + ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3359), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [43614] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(547), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42815] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(1753), 1, - anon_sym_extends, - ACTIONS(2585), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2510), 3, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, anon_sym_AMP, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(953), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(965), 28, - anon_sym_as, - anon_sym_COMMA, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3277), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42935] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [43685] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2843), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(2847), 1, - anon_sym_EQ_GT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(2911), 1, - anon_sym_EQ, - ACTIONS(927), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, anon_sym_LBRACE_PIPE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 23, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3224), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3226), 1, anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, + sym_type_parameters, + STATE(4498), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, 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, - [43760] = 12, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3000), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43055] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2501), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(3194), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 4, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, anon_sym_AMP, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [43841] = 12, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3572), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43175] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(3062), 1, - anon_sym_EQ, - ACTIONS(3074), 1, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - ACTIONS(3196), 1, - anon_sym_COLON, - ACTIONS(3065), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2843), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2845), 1, anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, 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, - [43922] = 7, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2997), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43295] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(1753), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2510), 4, - anon_sym_LT, - anon_sym_GT, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(953), 19, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 28, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [43993] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - anon_sym_extends, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(955), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 3, - anon_sym_RPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(953), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3163), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3169), 1, + anon_sym_keyof, + ACTIONS(3417), 1, + sym_this, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4316), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - ACTIONS(965), 28, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [44064] = 7, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3716), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1478), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43415] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(958), 2, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(955), 3, - anon_sym_EQ, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, anon_sym_AMP, + ACTIONS(2845), 1, anon_sym_PIPE, - ACTIONS(949), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(953), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [44135] = 11, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2944), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43535] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(2551), 1, - anon_sym_EQ_GT, - ACTIONS(2901), 1, - anon_sym_COLON, - ACTIONS(3198), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3206), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3208), 1, anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [44214] = 12, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3033), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43655] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 1, - anon_sym_EQ, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(1993), 1, - anon_sym_QMARK, - ACTIONS(2011), 1, - anon_sym_COLON, - ACTIONS(980), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 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(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [44295] = 12, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(560), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43775] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1069), 1, - anon_sym_EQ, - ACTIONS(1357), 1, - anon_sym_extends, - ACTIONS(1903), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2617), 2, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, anon_sym_AMP, + ACTIONS(3361), 1, anon_sym_PIPE, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 20, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3559), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43895] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3329), 1, + anon_sym_AMP, + ACTIONS(3331), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [44376] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2996), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44015] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(958), 2, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(949), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(955), 3, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(3369), 1, + anon_sym_new, + ACTIONS(3371), 1, anon_sym_QMARK, + ACTIONS(3373), 1, anon_sym_AMP, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(953), 19, - 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_CARET, + ACTIONS(3377), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4073), 1, + sym_type_parameters, + STATE(4275), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [44446] = 5, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3130), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44135] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, - anon_sym_EQ, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 16, - anon_sym_as, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3359), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [44512] = 8, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(554), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44255] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(927), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(641), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(653), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(655), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(657), 1, anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, 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, - [44584] = 8, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2684), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44375] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2933), 1, - anon_sym_EQ, - ACTIONS(927), 13, - anon_sym_as, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, + anon_sym_STAR, + ACTIONS(3113), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3115), 1, + anon_sym_typeof, + ACTIONS(3117), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3121), 1, + anon_sym_new, + ACTIONS(3123), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3125), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3127), 1, anon_sym_PIPE, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + anon_sym_SQUOTE, + ACTIONS(3137), 1, + sym_number, + ACTIONS(3143), 1, + sym_readonly, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, + sym_this, + STATE(2663), 1, + sym_nested_type_identifier, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, + sym_type_parameters, + STATE(4215), 1, + sym_nested_identifier, + STATE(4281), 1, + sym_formal_parameters, + ACTIONS(3129), 2, 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, - [44656] = 11, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, + sym_string, + sym__number, + ACTIONS(3131), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2804), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2815), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44495] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3201), 1, - anon_sym_COLON, - ACTIONS(927), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2961), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2963), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [44734] = 4, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1519), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44615] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_COLON, - ACTIONS(2577), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, + anon_sym_QMARK, + ACTIONS(2961), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2963), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - ACTIONS(2579), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [44798] = 3, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1529), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44735] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 24, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3329), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3331), 1, anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(2543), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [44860] = 3, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44855] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 24, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3055), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3057), 1, + anon_sym_typeof, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_new, + ACTIONS(3065), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3067), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3069), 1, anon_sym_PIPE, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, + anon_sym_keyof, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, + sym_nested_type_identifier, + STATE(1757), 1, + sym__tuple_type_body, + STATE(3943), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, 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, - ACTIONS(2563), 30, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, + sym_string, + sym__number, + ACTIONS(3073), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1778), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1756), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44975] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [44922] = 10, + ACTIONS(3351), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3698), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(553), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45095] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2032), 1, - anon_sym_COLON, - ACTIONS(1009), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, + anon_sym_STAR, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_typeof, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_new, + ACTIONS(3065), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3067), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3069), 1, anon_sym_PIPE, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, + anon_sym_keyof, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, + sym_nested_type_identifier, + STATE(1757), 1, + sym__tuple_type_body, + STATE(3943), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, 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, - [44998] = 3, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, + sym_string, + sym__number, + ACTIONS(3073), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2066), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1756), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45215] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 24, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3411), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3413), 1, anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4158), 1, + sym_type_parameters, + STATE(4343), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(2583), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [45060] = 9, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(638), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45335] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2885), 1, - anon_sym_EQ, - ACTIONS(2889), 1, - anon_sym_EQ_GT, - ACTIONS(927), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3111), 1, + anon_sym_STAR, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(3115), 1, + anon_sym_typeof, + ACTIONS(3117), 1, + anon_sym_LPAREN, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3121), 1, + anon_sym_new, + ACTIONS(3123), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3125), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3127), 1, 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, - [45134] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(2827), 1, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3135), 1, anon_sym_SQUOTE, - ACTIONS(2855), 1, - anon_sym_STAR, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, - anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, + ACTIONS(3137), 1, sym_number, - ACTIONS(3207), 1, - anon_sym_export, - ACTIONS(3211), 1, - anon_sym_async, - ACTIONS(3213), 1, - anon_sym_static, - ACTIONS(3219), 1, + ACTIONS(3143), 1, sym_readonly, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, + sym_this, + STATE(2663), 1, + sym_nested_type_identifier, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3209), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3215), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3217), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, + STATE(4215), 1, + sym_nested_identifier, + STATE(4281), 1, + sym_formal_parameters, + ACTIONS(3129), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3626), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2700), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3205), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(3131), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [45254] = 6, + STATE(2799), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2815), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45455] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(2510), 2, - anon_sym_LBRACE, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2585), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(953), 22, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(965), 27, - anon_sym_as, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3165), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3167), 1, anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - ACTIONS(2567), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [45384] = 3, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1480), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45575] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 23, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, 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, - ACTIONS(2579), 31, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45446] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(2827), 1, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2855), 1, - anon_sym_STAR, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, - anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(2873), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3207), 1, - anon_sym_export, - ACTIONS(3211), 1, - anon_sym_async, - ACTIONS(3213), 1, - anon_sym_static, - ACTIONS(3219), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2197), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3209), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3215), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3217), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2257), 3, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3626), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2765), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3205), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [45566] = 3, - ACTIONS(3), 1, + STATE(2662), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45695] = 31, + ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 24, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2829), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3224), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3226), 1, anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, + sym_type_parameters, + STATE(4498), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, 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, - ACTIONS(2441), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [45628] = 3, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2899), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45815] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 24, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2875), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2579), 30, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2879), 1, anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - [45690] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_EQ_GT, - ACTIONS(1069), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_QMARK_DOT, - ACTIONS(1009), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2961), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2963), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [45764] = 5, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1881), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45935] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 16, - 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_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(913), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3359), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [45830] = 9, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3663), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46055] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 1, - anon_sym_QMARK_DOT, - ACTIONS(1201), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_EQ_GT, - ACTIONS(1417), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_DOT, - ACTIONS(1009), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2961), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2963), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [45904] = 6, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1534), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46175] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(2510), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2585), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(953), 22, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3165), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3167), 1, anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - ACTIONS(965), 27, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45972] = 3, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1769), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46295] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 24, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2829), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2843), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2845), 1, anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, 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, - ACTIONS(2429), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [46034] = 7, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2985), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46415] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_extends, - ACTIONS(2510), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(955), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(958), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - ACTIONS(953), 20, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46104] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 1, - anon_sym_EQ, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 15, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - ACTIONS(913), 23, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(2957), 1, + anon_sym_new, + ACTIONS(2959), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2961), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2963), 1, anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(4174), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4404), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [46170] = 10, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1882), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46535] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2001), 1, - anon_sym_COLON, - ACTIONS(1009), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [46246] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3396), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46655] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(1753), 1, - anon_sym_extends, - ACTIONS(2585), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2510), 4, - anon_sym_LT, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, anon_sym_QMARK, + ACTIONS(655), 1, anon_sym_AMP, + ACTIONS(657), 1, anon_sym_PIPE, - ACTIONS(953), 19, - 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_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, - ACTIONS(965), 26, - anon_sym_as, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46316] = 8, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2618), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46775] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(2911), 1, - anon_sym_EQ, - ACTIONS(927), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 23, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3111), 1, anon_sym_STAR, + ACTIONS(3113), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3115), 1, + anon_sym_typeof, + ACTIONS(3117), 1, + anon_sym_LPAREN, + ACTIONS(3119), 1, + anon_sym_LBRACK, + ACTIONS(3121), 1, + anon_sym_new, + ACTIONS(3123), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3125), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3127), 1, anon_sym_PIPE, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + anon_sym_SQUOTE, + ACTIONS(3137), 1, + sym_number, + ACTIONS(3143), 1, + sym_readonly, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, + sym_this, + STATE(2663), 1, + sym_nested_type_identifier, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, + sym_type_parameters, + STATE(4215), 1, + sym_nested_identifier, + STATE(4281), 1, + sym_formal_parameters, + ACTIONS(3129), 2, 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, - [46388] = 7, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, + sym_string, + sym__number, + ACTIONS(3131), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2796), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2815), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46895] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOT, - ACTIONS(1753), 1, - anon_sym_extends, - ACTIONS(2510), 3, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2585), 3, - anon_sym_COMMA, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(953), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3329), 1, + anon_sym_AMP, + ACTIONS(3331), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46458] = 3, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2995), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47015] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 24, + ACTIONS(641), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(653), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(655), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(657), 1, 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, - ACTIONS(965), 30, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, anon_sym_LPAREN, + ACTIONS(2991), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [46520] = 12, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2771), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47135] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_LT, - ACTIONS(2504), 1, - anon_sym_DOT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(909), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(911), 2, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [46600] = 7, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2959), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47255] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_extends, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(955), 3, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(958), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - ACTIONS(953), 19, - 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_CARET, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1078), 1, + sym_this, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + STATE(565), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46670] = 3, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3734), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3688), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47375] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 24, + ACTIONS(641), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(653), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(655), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(657), 1, 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, - ACTIONS(2575), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, anon_sym_LBRACE_PIPE, - [46732] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(958), 2, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(949), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(955), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(953), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46802] = 11, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2822), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47495] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_COLON, - ACTIONS(927), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(641), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(653), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(655), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(657), 1, anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, 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, - [46880] = 3, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2730), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47615] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2579), 31, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3111), 1, + anon_sym_STAR, + ACTIONS(3113), 1, + anon_sym_LBRACE, + ACTIONS(3115), 1, + anon_sym_typeof, + ACTIONS(3117), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46942] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(3119), 1, anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3181), 1, - anon_sym_in, - ACTIONS(3184), 1, - anon_sym_of, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3121), 1, + anon_sym_new, + ACTIONS(3123), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3125), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3127), 1, anon_sym_PIPE, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + anon_sym_SQUOTE, + ACTIONS(3137), 1, + sym_number, + ACTIONS(3143), 1, + sym_readonly, + ACTIONS(3147), 1, + anon_sym_infer, + ACTIONS(3149), 1, + anon_sym_keyof, + ACTIONS(3151), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, + sym_this, + STATE(2663), 1, + sym_nested_type_identifier, + STATE(2857), 1, + sym__tuple_type_body, + STATE(4176), 1, + sym_type_parameters, + STATE(4215), 1, + sym_nested_identifier, + STATE(4281), 1, + sym_formal_parameters, + ACTIONS(3129), 2, 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, - [47019] = 7, + ACTIONS(3141), 2, + sym_true, + sym_false, + STATE(2853), 2, + sym_string, + sym__number, + ACTIONS(3131), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2793), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2815), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47735] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, - anon_sym_LT, - ACTIONS(949), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(958), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(955), 4, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - ACTIONS(953), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2971), 1, + anon_sym_QMARK, + ACTIONS(2977), 1, + anon_sym_keyof, + ACTIONS(3421), 1, + sym_this, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4316), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - ACTIONS(965), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [47088] = 11, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3697), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1915), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47855] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(1963), 1, - anon_sym_in, - ACTIONS(3186), 1, - anon_sym_of, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(491), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(493), 1, anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [47165] = 8, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2858), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47975] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(2885), 1, - anon_sym_EQ, - ACTIONS(927), 12, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, + anon_sym_QMARK, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1916), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48095] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, + anon_sym_QMARK, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1919), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48215] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2973), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2975), 1, anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - [47236] = 11, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1899), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48335] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_QMARK_DOT, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(894), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 2, anon_sym_LBRACK, - ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2058), 1, - anon_sym_in, - ACTIONS(3221), 1, - anon_sym_of, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 21, + ACTIONS(888), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(892), 20, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -114402,9 +122491,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -114412,12 +122499,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [47313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 1, - anon_sym_EQ, - ACTIONS(925), 15, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114433,14 +122518,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(927), 15, - sym__automatic_semicolon, - 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, @@ -114449,111 +122526,655 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(913), 22, + [48407] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(491), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(493), 1, 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, - [47378] = 11, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48527] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2534), 1, - anon_sym_in, - ACTIONS(2537), 1, - anon_sym_of, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3329), 1, + anon_sym_AMP, + ACTIONS(3331), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(558), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48647] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(558), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48767] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(558), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48887] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2973), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2975), 1, anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - [47455] = 8, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1949), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49007] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, + anon_sym_typeof, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(2547), 1, + ACTIONS(2931), 1, + anon_sym_QMARK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2951), 1, + anon_sym_keyof, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3421), 1, + sym_this, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4316), 1, + sym_formal_parameters, + ACTIONS(2937), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3701), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1915), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49127] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2679), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49247] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(927), 12, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2605), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 10, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -114561,8 +123182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, + ACTIONS(635), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114578,11 +123198,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -114601,4979 +123220,6366 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [47526] = 10, + [49331] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3181), 1, - anon_sym_in, - ACTIONS(3184), 1, - anon_sym_of, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2973), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2975), 1, anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - [47600] = 7, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1971), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49451] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(2534), 1, - anon_sym_in, - ACTIONS(2537), 1, - anon_sym_of, - ACTIONS(927), 13, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3329), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3331), 1, anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [47668] = 9, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(546), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49571] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2075), 1, - anon_sym_QMARK_DOT, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [47740] = 9, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3475), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49691] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2073), 1, - anon_sym_QMARK_DOT, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, + anon_sym_typeof, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_new, + ACTIONS(2931), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2933), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2935), 1, anon_sym_PIPE, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, + anon_sym_keyof, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4149), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4428), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - [47812] = 7, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1916), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49811] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(3181), 1, - anon_sym_in, - ACTIONS(3184), 1, - anon_sym_of, - ACTIONS(927), 13, - anon_sym_as, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2923), 1, + anon_sym_typeof, + ACTIONS(2925), 1, anon_sym_LPAREN, + ACTIONS(2927), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2929), 1, + anon_sym_new, + ACTIONS(2931), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2933), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2935), 1, anon_sym_PIPE, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2951), 1, + anon_sym_keyof, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4149), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4428), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - [47880] = 9, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1919), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49931] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2071), 1, - anon_sym_QMARK_DOT, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2973), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2975), 1, anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, 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, - [47952] = 10, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1910), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50051] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2534), 1, - anon_sym_in, - ACTIONS(2537), 1, - anon_sym_of, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 21, + ACTIONS(641), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(653), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(655), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(657), 1, anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, 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, - [48026] = 9, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2632), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50171] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_EQ, - ACTIONS(1091), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_QMARK_DOT, - ACTIONS(1009), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(999), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(976), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(563), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(565), 1, anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [48098] = 8, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3473), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50291] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2625), 1, - anon_sym_QMARK_DOT, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2843), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2845), 1, anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, 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, - [48167] = 8, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2923), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50411] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3329), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3331), 1, anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [48236] = 8, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(547), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50531] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2992), 1, - anon_sym_QMARK_DOT, - ACTIONS(927), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [48305] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(923), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(927), 10, - anon_sym_as, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(925), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(913), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3329), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3331), 1, anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, 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, - [48374] = 12, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2994), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50651] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(3223), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3225), 1, + ACTIONS(3053), 1, anon_sym_STAR, - ACTIONS(3229), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(3470), 1, - sym_import_clause, - ACTIONS(3233), 2, - anon_sym_type, + ACTIONS(3057), 1, anon_sym_typeof, - STATE(3469), 2, - sym_string, - sym_import_require_clause, - STATE(3741), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(3227), 15, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_new, + ACTIONS(3065), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3067), 1, anon_sym_AMP, + ACTIONS(3069), 1, anon_sym_PIPE, + ACTIONS(3075), 1, + sym_number, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, + sym_readonly, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, + anon_sym_keyof, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, + sym_nested_type_identifier, + STATE(1757), 1, + sym__tuple_type_body, + STATE(3943), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3231), 22, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [48449] = 30, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, + sym_string, + sym__number, + ACTIONS(3073), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1754), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1756), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50771] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(3235), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(3237), 1, - anon_sym_default, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3241), 1, - anon_sym_as, - ACTIONS(3243), 1, - anon_sym_namespace, - ACTIONS(3247), 1, - anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, - anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, - anon_sym_declare, - ACTIONS(3267), 1, - anon_sym_module, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - STATE(2202), 1, - sym_decorator, - STATE(2874), 1, - sym_internal_module, - STATE(2875), 1, - sym_function_signature, - STATE(2879), 1, - sym__declaration, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(3092), 1, - sym_export_clause, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2880), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [48559] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - ACTIONS(2863), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2883), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2745), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [48665] = 30, + STATE(2898), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50891] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(3235), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(3237), 1, - anon_sym_default, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3241), 1, - anon_sym_as, - ACTIONS(3243), 1, - anon_sym_namespace, - ACTIONS(3247), 1, - anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, - anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, - anon_sym_declare, - ACTIONS(3267), 1, - anon_sym_module, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - STATE(2202), 1, - sym_decorator, - STATE(2874), 1, - sym_internal_module, - STATE(2875), 1, - sym_function_signature, - STATE(2879), 1, - sym__declaration, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(3092), 1, - sym_export_clause, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2880), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [48775] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3329), 1, + anon_sym_AMP, + ACTIONS(3331), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3293), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3295), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2644), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [48881] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + STATE(560), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51011] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(3423), 1, + sym_this, + STATE(1483), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3297), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3299), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2690), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [48987] = 28, + STATE(3734), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3503), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51131] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(3009), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, sym_type_parameters, - ACTIONS(3022), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3024), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2702), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [49093] = 30, + STATE(3222), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51251] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(3235), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(3237), 1, - anon_sym_default, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3241), 1, - anon_sym_as, - ACTIONS(3243), 1, - anon_sym_namespace, - ACTIONS(3247), 1, - anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, - anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, - anon_sym_declare, - ACTIONS(3267), 1, - anon_sym_module, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - STATE(2202), 1, - sym_decorator, - STATE(2874), 1, - sym_internal_module, - STATE(2875), 1, - sym_function_signature, - STATE(2879), 1, - sym__declaration, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(3092), 1, - sym_export_clause, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2880), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [49203] = 28, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3560), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51371] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3301), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3303), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2659), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [49309] = 28, + STATE(558), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51491] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2941), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, + anon_sym_QMARK, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3305), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3307), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2685), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [49415] = 30, + STATE(1987), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51611] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(3235), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(3237), 1, - anon_sym_default, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3241), 1, - anon_sym_as, - ACTIONS(3243), 1, - anon_sym_namespace, - ACTIONS(3247), 1, - anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, - anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, - anon_sym_declare, - ACTIONS(3267), 1, - anon_sym_module, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - STATE(2202), 1, - sym_decorator, - STATE(2874), 1, - sym_internal_module, - STATE(2875), 1, - sym_function_signature, - STATE(2879), 1, - sym__declaration, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(3092), 1, - sym_export_clause, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2880), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [49525] = 3, + ACTIONS(3329), 1, + anon_sym_AMP, + ACTIONS(3331), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, + sym_type_parameters, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(554), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51731] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1303), 15, + ACTIONS(641), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2639), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51851] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(655), 1, anon_sym_AMP, + ACTIONS(657), 1, anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1301), 32, - anon_sym_as, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2655), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51971] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2660), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52091] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(546), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52211] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(900), 1, + anon_sym_LT, + ACTIONS(888), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(897), 13, + anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49580] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(3235), 1, - anon_sym_STAR, - ACTIONS(3237), 1, - anon_sym_default, - ACTIONS(3241), 1, - anon_sym_as, - ACTIONS(3243), 1, - anon_sym_namespace, - ACTIONS(3247), 1, - anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, - anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, - anon_sym_declare, - ACTIONS(3267), 1, - anon_sym_module, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - ACTIONS(3309), 1, - anon_sym_EQ, - STATE(2202), 1, - sym_decorator, - STATE(2874), 1, - sym_internal_module, - STATE(2875), 1, - sym_function_signature, - STATE(2879), 1, - sym__declaration, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(3092), 1, - sym_export_clause, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2880), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [49687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 15, + ACTIONS(904), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(894), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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(1313), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49742] = 30, + [52283] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(3235), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(3237), 1, - anon_sym_default, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3241), 1, - anon_sym_as, - ACTIONS(3243), 1, - anon_sym_namespace, - ACTIONS(3247), 1, - anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, - anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, - anon_sym_declare, - ACTIONS(3267), 1, - anon_sym_module, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - STATE(2202), 1, - sym_decorator, - STATE(2874), 1, - sym_internal_module, - STATE(2875), 1, - sym_function_signature, - STATE(2879), 1, - sym__declaration, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(3092), 1, - sym_export_clause, - ACTIONS(3311), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3245), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2880), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [49851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(491), 1, anon_sym_AMP, + ACTIONS(493), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1283), 32, - anon_sym_as, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49906] = 3, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(547), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52403] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1305), 32, - anon_sym_as, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2835), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49961] = 3, + ACTIONS(3425), 1, + sym_this, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(2877), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3734), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3496), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52523] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2917), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_STAR, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2925), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2941), 1, + sym_number, + ACTIONS(2943), 1, + sym_this, + ACTIONS(2947), 1, + sym_readonly, + ACTIONS(2949), 1, + anon_sym_infer, + ACTIONS(2953), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(2969), 1, + anon_sym_new, + ACTIONS(2971), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2973), 1, anon_sym_AMP, + ACTIONS(2975), 1, anon_sym_PIPE, + ACTIONS(2977), 1, + anon_sym_keyof, + STATE(1715), 1, + sym_nested_type_identifier, + STATE(1904), 1, + sym__tuple_type_body, + STATE(4142), 1, + sym_type_parameters, + STATE(4203), 1, + sym_nested_identifier, + STATE(4398), 1, + sym_formal_parameters, + ACTIONS(2937), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1325), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [50016] = 3, + ACTIONS(2945), 2, + sym_true, + sym_false, + STATE(1901), 2, + sym_string, + sym__number, + ACTIONS(2939), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1841), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52643] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3411), 1, anon_sym_AMP, + ACTIONS(3413), 1, anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4158), 1, + sym_type_parameters, + STATE(4343), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1293), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [50071] = 3, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(639), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52763] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3411), 1, anon_sym_AMP, + ACTIONS(3413), 1, anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4158), 1, + sym_type_parameters, + STATE(4343), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1321), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [50126] = 3, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(547), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52883] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(491), 1, anon_sym_AMP, + ACTIONS(493), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1317), 32, - anon_sym_as, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [50181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1299), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1297), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [50236] = 3, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2897), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53003] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1287), 32, - anon_sym_as, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(2879), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + ACTIONS(2881), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [50291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1311), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3165), 1, anon_sym_AMP, + ACTIONS(3167), 1, anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1309), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [50346] = 27, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1518), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53123] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, + anon_sym_QMARK, + ACTIONS(3165), 1, + anon_sym_AMP, + ACTIONS(3167), 1, + anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3314), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [50448] = 27, + STATE(1519), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53243] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(3009), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3316), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [50550] = 27, + STATE(2852), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53363] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(3009), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3318), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [50652] = 27, + STATE(2838), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53483] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, + anon_sym_QMARK, + ACTIONS(3411), 1, + anon_sym_AMP, + ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4158), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3320), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4343), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [50754] = 27, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53603] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, + anon_sym_STAR, ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3218), 1, + anon_sym_typeof, + ACTIONS(3220), 1, + anon_sym_new, + ACTIONS(3222), 1, + anon_sym_QMARK, + ACTIONS(3224), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_keyof, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4071), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3322), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4498), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [50856] = 27, + STATE(3255), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53723] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3324), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [50958] = 27, + STATE(2669), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53843] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3326), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51060] = 27, + STATE(3667), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53963] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3328), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51162] = 27, + STATE(3008), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54083] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, + anon_sym_QMARK, + ACTIONS(3165), 1, + anon_sym_AMP, + ACTIONS(3167), 1, + anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3330), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51264] = 27, + STATE(1529), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54203] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3332), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51366] = 27, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54323] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3325), 1, + anon_sym_new, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3329), 1, + anon_sym_AMP, + ACTIONS(3331), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4189), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3334), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4224), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51468] = 27, + STATE(3163), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54443] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3333), 1, + anon_sym_keyof, + ACTIONS(3351), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3336), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51570] = 27, + STATE(3714), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(553), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(892), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2827), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(904), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [54627] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_typeof, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(3063), 1, + anon_sym_new, + ACTIONS(3065), 1, + anon_sym_QMARK, + ACTIONS(3067), 1, + anon_sym_AMP, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3075), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(3077), 1, + sym_this, + ACTIONS(3081), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(3083), 1, + anon_sym_infer, + ACTIONS(3085), 1, + anon_sym_keyof, + ACTIONS(3087), 1, + anon_sym_LBRACE_PIPE, + STATE(1675), 1, + sym_nested_type_identifier, + STATE(1757), 1, + sym__tuple_type_body, + STATE(3943), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3338), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4248), 1, + sym_formal_parameters, + STATE(4376), 1, + sym_nested_identifier, + ACTIONS(3071), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3079), 2, + sym_true, + sym_false, + STATE(1746), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(3073), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51672] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, + STATE(2084), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1756), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54747] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, + anon_sym_QMARK, + ACTIONS(3411), 1, + anon_sym_AMP, + ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4158), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3340), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4343), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51774] = 27, + STATE(546), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54867] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3342), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51876] = 27, + STATE(3009), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54987] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_AMP, + ACTIONS(3361), 1, + anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3344), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51978] = 27, + STATE(3623), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55107] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3346), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [52080] = 27, + STATE(3053), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55227] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, + anon_sym_QMARK, + ACTIONS(3411), 1, + anon_sym_AMP, + ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4158), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3348), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4343), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [52182] = 8, + STATE(558), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55347] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(911), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(913), 12, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [52245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3206), 1, anon_sym_AMP, + ACTIONS(3208), 1, anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1165), 31, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [52298] = 11, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3173), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55467] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - STATE(1267), 1, - sym_type_arguments, - STATE(1358), 1, - sym_arguments, - ACTIONS(2513), 13, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(2515), 24, - anon_sym_as, + ACTIONS(2875), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [52367] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - STATE(3058), 1, - sym_type_arguments, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3352), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3165), 1, anon_sym_AMP, + ACTIONS(3167), 1, anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3354), 25, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [52430] = 3, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1773), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55587] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 14, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3206), 1, anon_sym_AMP, + ACTIONS(3208), 1, anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1139), 31, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [52483] = 11, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3162), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55707] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - STATE(1267), 1, - sym_type_arguments, - STATE(1358), 1, - sym_arguments, - ACTIONS(2513), 13, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2515), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [52552] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2765), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [52650] = 5, + STATE(3689), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55827] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_DOT, - STATE(1295), 1, - sym_type_arguments, - ACTIONS(1981), 14, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1979), 28, - anon_sym_as, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [52706] = 26, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3690), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55947] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(491), 1, + anon_sym_AMP, + ACTIONS(493), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2642), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [52804] = 26, + STATE(560), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56067] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, + anon_sym_STAR, ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2658), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [52902] = 26, + STATE(2924), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56187] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2989), 1, anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(3009), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + ACTIONS(3383), 1, + anon_sym_typeof, + ACTIONS(3385), 1, + anon_sym_new, + ACTIONS(3387), 1, + anon_sym_QMARK, + ACTIONS(3389), 1, + anon_sym_AMP, + ACTIONS(3391), 1, + anon_sym_PIPE, + ACTIONS(3393), 1, + anon_sym_keyof, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4185), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4284), 1, + sym_nested_identifier, + STATE(4371), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2683), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [53000] = 26, + STATE(2901), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56307] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(505), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, + anon_sym_QMARK, + ACTIONS(3165), 1, + anon_sym_AMP, + ACTIONS(3167), 1, + anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2700), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [53098] = 10, + STATE(1534), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56427] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_LT, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - STATE(1267), 1, - sym_type_arguments, - STATE(1358), 1, - sym_arguments, - ACTIONS(2513), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2515), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53164] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, ACTIONS(2827), 1, - anon_sym_DQUOTE, + anon_sym_STAR, ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2861), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(2861), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3395), 1, + sym_this, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4143), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4316), 1, + sym_formal_parameters, + STATE(4499), 1, + sym_nested_identifier, + ACTIONS(2847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2756), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [53262] = 5, + STATE(3696), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2931), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56547] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1815), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1105), 12, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(489), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1107), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53318] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_extends, - ACTIONS(3366), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3369), 3, - anon_sym_GT, + ACTIONS(491), 1, anon_sym_AMP, + ACTIONS(493), 1, anon_sym_PIPE, - ACTIONS(3362), 12, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2562), 1, + anon_sym_new, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4120), 1, + sym_type_parameters, + STATE(4313), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3364), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53376] = 26, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(554), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56667] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2827), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(489), 1, + anon_sym_QMARK, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(523), 1, + anon_sym_keyof, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2869), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3275), 1, - anon_sym_export, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(3281), 1, - anon_sym_async, - ACTIONS(3283), 1, + ACTIONS(749), 1, sym_number, - ACTIONS(3285), 1, - anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, sym_readonly, - STATE(2194), 1, - sym_accessibility_modifier, - STATE(2202), 1, - sym_decorator, - STATE(2352), 1, - sym_formal_parameters, - STATE(2815), 1, - sym__call_signature, - STATE(3148), 1, - aux_sym_export_statement_repeat1, - STATE(3478), 1, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2556), 1, + anon_sym_typeof, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(3351), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, sym_type_parameters, - ACTIONS(3287), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2269), 3, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3039), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3273), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(743), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [53474] = 6, + STATE(3727), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(553), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56787] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_DOT, - ACTIONS(3372), 1, - anon_sym_LT, - STATE(1295), 1, - sym_type_arguments, - ACTIONS(1972), 13, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(3407), 1, + anon_sym_new, + ACTIONS(3409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3411), 1, anon_sym_AMP, + ACTIONS(3413), 1, anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(628), 1, + sym_nested_type_identifier, + STATE(4158), 1, + sym_type_parameters, + STATE(4343), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1970), 28, - 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [53532] = 5, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(632), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56907] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 1, - anon_sym_EQ, - ACTIONS(3375), 1, - sym__automatic_semicolon, - ACTIONS(1103), 14, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(3202), 1, + anon_sym_new, + ACTIONS(3204), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3206), 1, anon_sym_AMP, + ACTIONS(3208), 1, anon_sym_PIPE, + ACTIONS(3210), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4194), 1, + sym_type_parameters, + STATE(4240), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1101), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53588] = 5, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3131), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57027] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + ACTIONS(505), 1, + anon_sym_SQUOTE, + ACTIONS(1987), 1, anon_sym_LT, - STATE(1299), 1, - sym_type_arguments, - ACTIONS(2017), 13, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(3161), 1, + anon_sym_new, + ACTIONS(3163), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3165), 1, anon_sym_AMP, + ACTIONS(3167), 1, anon_sym_PIPE, + ACTIONS(3169), 1, + anon_sym_keyof, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(1517), 1, + sym__tuple_type_body, + STATE(3950), 1, + sym_type_parameters, + STATE(4258), 1, + sym_nested_identifier, + STATE(4381), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2015), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1536), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1774), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1520), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57147] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, + anon_sym_QMARK, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [53644] = 3, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2678), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57267] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3359), 1, anon_sym_AMP, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3382), 29, - anon_sym_as, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3637), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57387] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2835), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53696] = 4, + ACTIONS(2839), 1, + anon_sym_new, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2843), 1, + anon_sym_AMP, + ACTIONS(2845), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_DQUOTE, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + ACTIONS(2855), 1, + sym_number, + ACTIONS(2857), 1, + sym_this, + ACTIONS(2861), 1, + sym_readonly, + ACTIONS(2863), 1, + anon_sym_infer, + ACTIONS(2865), 1, + anon_sym_keyof, + ACTIONS(2867), 1, + anon_sym_LBRACE_PIPE, + STATE(2715), 1, + sym_nested_type_identifier, + STATE(2874), 1, + sym__tuple_type_body, + STATE(4109), 1, + sym_type_parameters, + STATE(4499), 1, + sym_nested_identifier, + STATE(4518), 1, + sym_formal_parameters, + ACTIONS(2847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2859), 2, + sym_true, + sym_false, + STATE(2868), 2, + sym_string, + sym__number, + ACTIONS(2849), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2865), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2873), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57507] = 31, ACTIONS(3), 1, sym_comment, - STATE(1299), 1, - sym_type_arguments, - ACTIONS(1845), 14, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3359), 1, anon_sym_AMP, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1843), 29, - anon_sym_as, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3683), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57627] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2991), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [53750] = 3, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2647), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57747] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2646), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 15, + ACTIONS(2514), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -119582,1638 +129588,2161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(3203), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2516), 33, + sym__automatic_semicolon, anon_sym_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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3388), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [53854] = 8, + [57931] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 24, - anon_sym_as, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(3355), 1, + anon_sym_new, + ACTIONS(3357), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3359), 1, anon_sym_AMP, + ACTIONS(3361), 1, anon_sym_PIPE, + ACTIONS(3363), 1, + anon_sym_keyof, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(3939), 1, + sym_type_parameters, + STATE(4372), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3392), 29, - anon_sym_as, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3638), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58051] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(563), 1, + anon_sym_AMP, + ACTIONS(565), 1, + anon_sym_PIPE, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2991), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53968] = 3, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3397), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4316), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3726), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2645), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58171] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3396), 29, - anon_sym_as, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1072), 1, + sym_this, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2991), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [54020] = 3, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(2650), 1, + sym__tuple_type_body, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3734), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3470), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58291] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3364), 29, - anon_sym_as, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(547), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58411] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(727), 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, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_in, + ACTIONS(3427), 1, + anon_sym_of, + STATE(3593), 1, + sym_call_type_arguments, + STATE(1419), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [54072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1105), 15, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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(1107), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [54124] = 3, + [58501] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 15, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_infer, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(561), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(563), 1, anon_sym_AMP, + ACTIONS(565), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3400), 29, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(581), 1, + anon_sym_keyof, + ACTIONS(713), 1, + anon_sym_typeof, + ACTIONS(729), 1, + anon_sym_new, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(749), 1, + sym_number, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1074), 1, + sym_readonly, + ACTIONS(1983), 1, + anon_sym_LPAREN, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2558), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + sym_this, + STATE(567), 1, + sym__tuple_type_body, + STATE(2555), 1, + sym_nested_type_identifier, + STATE(4143), 1, + sym_type_parameters, + STATE(4316), 1, + sym_formal_parameters, + STATE(4517), 1, + sym_nested_identifier, + ACTIONS(753), 2, + sym_true, + sym_false, + ACTIONS(1989), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(569), 2, + sym_string, + sym__number, + ACTIONS(743), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(546), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(570), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58621] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + anon_sym_STAR, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(655), 1, + anon_sym_AMP, + ACTIONS(657), 1, + anon_sym_PIPE, + ACTIONS(673), 1, + anon_sym_infer, + ACTIONS(675), 1, + anon_sym_keyof, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(2989), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_new, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3003), 1, + sym_number, + ACTIONS(3009), 1, + sym_readonly, + ACTIONS(3379), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_this, + STATE(2592), 1, + sym_nested_type_identifier, + STATE(2641), 1, + sym__tuple_type_body, + STATE(4156), 1, + sym_type_parameters, + STATE(4284), 1, + sym_nested_identifier, + STATE(4453), 1, + sym_formal_parameters, + ACTIONS(2995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + sym_true, + sym_false, + STATE(2635), 2, + sym_string, + sym__number, + ACTIONS(2997), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3413), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2640), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58741] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2772), 1, + anon_sym_EQ, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 17, + sym__automatic_semicolon, + anon_sym_as, 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [54176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1303), 15, + ACTIONS(625), 22, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1301), 28, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_QMARK_QMARK, + [58808] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(890), 1, anon_sym_LBRACE, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(900), 1, + anon_sym_LT, + ACTIONS(888), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(897), 11, + anon_sym_as, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [54227] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(904), 17, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_BQUOTE, + ACTIONS(894), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 7, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, 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, - ACTIONS(3404), 15, - 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, - [54306] = 26, + [58881] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2078), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + STATE(3586), 1, + sym_call_type_arguments, + STATE(1939), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3424), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_LBRACE, - STATE(1368), 1, - sym_statement_block, - ACTIONS(1095), 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1093), 27, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [58966] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1970), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2617), 1, + anon_sym_in, + ACTIONS(2620), 1, + anon_sym_of, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 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, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [54458] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_LBRACE, - ACTIONS(3444), 1, - anon_sym_DOT, - STATE(1368), 1, - sym_statement_block, - ACTIONS(1095), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1093), 26, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [59053] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3429), 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, + STATE(3459), 1, + sym_call_type_arguments, + STATE(2045), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [54515] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3450), 1, - anon_sym_AMP, - ACTIONS(3452), 1, - anon_sym_PIPE, - ACTIONS(3454), 1, - anon_sym_extends, - ACTIONS(3446), 12, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(3448), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [59138] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1947), 1, anon_sym_DOT, + ACTIONS(2092), 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, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(3461), 1, + sym_call_type_arguments, + STATE(2048), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [54572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 14, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1165), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [59223] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1947), 1, anon_sym_DOT, + ACTIONS(2132), 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, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(3675), 1, + sym_call_type_arguments, + STATE(1796), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [54623] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3456), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(3404), 18, - 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, - [54696] = 4, + [59308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, - sym__automatic_semicolon, - ACTIONS(1103), 14, + ACTIONS(888), 1, + anon_sym_extends, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(894), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(892), 20, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + 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, - ACTIONS(1101), 28, + anon_sym_QMARK_QMARK, + ACTIONS(904), 28, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [54749] = 25, + [59379] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2084), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + STATE(3568), 1, + sym_call_type_arguments, + STATE(2086), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_QMARK_QMARK, + [59464] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(890), 1, + anon_sym_LBRACE, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(900), 1, + anon_sym_LT, + ACTIONS(888), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(897), 13, + 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, - ACTIONS(3459), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [54844] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(904), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(894), 21, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_QMARK_QMARK, + [59537] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(2096), 1, + anon_sym_QMARK_DOT, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2667), 1, + anon_sym_LPAREN, + STATE(3495), 1, + sym_call_type_arguments, + STATE(118), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3461), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [54939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2475), 1, - anon_sym_LPAREN, - STATE(1427), 1, - sym_arguments, - ACTIONS(3463), 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(3465), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [59622] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(897), 2, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(894), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(888), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(892), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, 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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [54994] = 5, + [59693] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1431), 1, anon_sym_LPAREN, - STATE(1428), 1, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(2121), 1, + anon_sym_QMARK_DOT, + STATE(3527), 1, + sym_call_type_arguments, + STATE(1799), 2, + sym_template_string, sym_arguments, - ACTIONS(3467), 14, + ACTIONS(741), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(3469), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [59778] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3431), 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, + STATE(3648), 1, + sym_call_type_arguments, + STATE(1643), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [55049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1777), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [59863] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1431), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3433), 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, + STATE(3526), 1, + sym_call_type_arguments, + STATE(1804), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1357), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [59948] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1970), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 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, + ACTIONS(2812), 1, + anon_sym_in, + ACTIONS(2815), 1, + anon_sym_of, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55151] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_COMMA, - ACTIONS(3474), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_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_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [55214] = 25, + [60035] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + STATE(3592), 1, + sym_call_type_arguments, + STATE(1941), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3477), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [55309] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_COMMA, - ACTIONS(3482), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_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_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [55372] = 19, + [60120] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2106), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + STATE(3513), 1, + sym_call_type_arguments, + STATE(1597), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3408), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + ACTIONS(741), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3404), 10, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, - [55455] = 21, + [60205] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3437), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3408), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + STATE(3585), 1, + sym_call_type_arguments, + STATE(2038), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 9, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [55542] = 16, + [60290] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3456), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + STATE(3649), 1, + sym_call_type_arguments, + STATE(1646), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(741), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 9, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, 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, - ACTIONS(3404), 15, + anon_sym_QMARK_QMARK, + [60375] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, + anon_sym_LBRACK, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(2088), 1, + anon_sym_QMARK_DOT, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(3587), 1, + sym_call_type_arguments, + STATE(2039), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, 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, - [55619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3485), 1, - anon_sym_LBRACK, - ACTIONS(1839), 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1837), 28, + anon_sym_QMARK_QMARK, + [60460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2792), 1, + anon_sym_EQ, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 17, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 14, + ACTIONS(625), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121221,1556 +131750,1906 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1833), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [60527] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(1970), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3439), 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, + STATE(3514), 1, + sym_call_type_arguments, + STATE(1599), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55723] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3456), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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(3404), 19, - 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, anon_sym_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_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [55794] = 23, + [60612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(897), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3408), 1, - anon_sym_QMARK, - ACTIONS(3410), 1, + ACTIONS(1774), 1, + anon_sym_extends, + ACTIONS(3314), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2675), 3, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(892), 20, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_QMARK_QMARK, + ACTIONS(904), 28, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3404), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [55885] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60683] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(725), 1, + anon_sym_EQ_GT, + ACTIONS(1066), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_LT, + ACTIONS(1945), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2102), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_LPAREN, + STATE(3615), 1, + sym_call_type_arguments, + STATE(1733), 2, + sym_template_string, + sym_arguments, + ACTIONS(741), 8, anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(706), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3487), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [55980] = 25, + anon_sym_QMARK_QMARK, + [60768] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(897), 2, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + ACTIONS(888), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(894), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(892), 19, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_QMARK_QMARK, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + 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, - ACTIONS(3489), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [56075] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60838] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(633), 1, + anon_sym_QMARK_DOT, + ACTIONS(2098), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2667), 1, + anon_sym_LPAREN, + STATE(3480), 1, + sym_call_type_arguments, + STATE(121), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3491), 5, + anon_sym_QMARK_QMARK, + [60920] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3244), 1, + anon_sym_LBRACK, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3443), 1, + anon_sym_export, + ACTIONS(3447), 1, + anon_sym_async, + ACTIONS(3449), 1, + anon_sym_static, + ACTIONS(3455), 1, + sym_readonly, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3445), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [56170] = 25, + ACTIONS(3451), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3453), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3991), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3135), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3441), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [61040] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, + STATE(3592), 1, + sym_call_type_arguments, + STATE(1941), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3493), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [56265] = 3, + anon_sym_QMARK_QMARK, + [61122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 14, + ACTIONS(2758), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1813), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2760), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56316] = 25, + anon_sym_LBRACE_PIPE, + [61184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(2821), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(3436), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_QMARK_QMARK, + ACTIONS(2823), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3495), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [56411] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [61246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_DOT, - ACTIONS(911), 14, + ACTIONS(2788), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(909), 28, + anon_sym_QMARK_QMARK, + ACTIONS(2790), 31, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56464] = 3, + [61308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 14, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(894), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(888), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(892), 20, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + 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, - ACTIONS(909), 29, + anon_sym_QMARK_QMARK, + ACTIONS(904), 26, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56515] = 3, + [61378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 14, + ACTIONS(3457), 1, + anon_sym_COLON, + ACTIONS(2788), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1829), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2790), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56566] = 4, + [61442] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 1, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1873), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2626), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1871), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(2665), 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, + STATE(3604), 1, + sym_call_type_arguments, + STATE(1731), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1877), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1875), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [61524] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3429), 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, + STATE(3459), 1, + sym_call_type_arguments, + STATE(2045), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1879), 29, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [61606] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + anon_sym_extends, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(894), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 4, 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, + ACTIONS(892), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, 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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56721] = 3, + [61676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 14, + ACTIONS(2788), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1863), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2790), 31, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56772] = 25, + [61738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(3037), 1, + anon_sym_EQ, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 15, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3499), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [56867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(625), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1765), 29, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [61804] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + anon_sym_extends, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(894), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 4, 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, + ACTIONS(892), 19, + 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_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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56918] = 3, + [61874] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1859), 29, - 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, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3439), 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, + STATE(3514), 1, + sym_call_type_arguments, + STATE(1599), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1853), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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(1851), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_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_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57020] = 3, + [61956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 14, + ACTIONS(2788), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1843), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2790), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57071] = 3, + anon_sym_LBRACE_PIPE, + [62018] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1761), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 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, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 15, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1283), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [62100] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3437), 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, + STATE(3585), 1, + sym_call_type_arguments, + STATE(2038), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [57173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 15, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1293), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [62182] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(897), 1, + anon_sym_DOT, + ACTIONS(1774), 1, + anon_sym_extends, + ACTIONS(2675), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3314), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + ACTIONS(892), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, 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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [57224] = 3, + [62252] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3234), 1, + anon_sym_STAR, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3244), 1, + anon_sym_LBRACK, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3252), 1, + sym_number, + ACTIONS(3443), 1, + anon_sym_export, + ACTIONS(3447), 1, + anon_sym_async, + ACTIONS(3449), 1, + anon_sym_static, + ACTIONS(3455), 1, + sym_readonly, + STATE(2514), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3445), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3451), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3453), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3991), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3120), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3441), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [62372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 14, + ACTIONS(2534), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1789), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2536), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57275] = 3, + anon_sym_LBRACE_PIPE, + [62434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 14, + ACTIONS(2802), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1139), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2804), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57326] = 3, + anon_sym_LBRACE_PIPE, + [62496] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1797), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1431), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3433), 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, + STATE(3526), 1, + sym_call_type_arguments, + STATE(1804), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1809), 29, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [62578] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(897), 1, + anon_sym_DOT, + ACTIONS(1774), 1, + anon_sym_extends, + ACTIONS(3314), 3, 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, + ACTIONS(2675), 4, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(892), 19, + 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_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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57428] = 4, + [62648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, - anon_sym_DOT, - ACTIONS(1755), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1753), 28, + ACTIONS(3194), 1, + anon_sym_EQ, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 14, + ACTIONS(625), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122778,191 +133657,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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(1847), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_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_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57532] = 3, + [62714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 15, + ACTIONS(2514), 24, anon_sym_STAR, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1297), 28, - sym__automatic_semicolon, + anon_sym_QMARK_QMARK, + ACTIONS(2516), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [57583] = 3, + anon_sym_LBRACE_PIPE, + [62776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(2764), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1781), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2766), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57634] = 3, + anon_sym_LBRACE_PIPE, + [62838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1757), 29, + ACTIONS(2979), 1, + anon_sym_EQ, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [57685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 14, + ACTIONS(625), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122970,384 +133836,565 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1793), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [62904] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(897), 2, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(888), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(894), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(892), 19, + 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_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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57736] = 3, + [62974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 14, + ACTIONS(2806), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1855), 29, + anon_sym_QMARK_QMARK, + ACTIONS(2808), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57787] = 3, + anon_sym_LBRACE_PIPE, + [63036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 14, + ACTIONS(897), 1, + anon_sym_DOT, + ACTIONS(2675), 2, + anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(3314), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(892), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1801), 29, + anon_sym_QMARK_QMARK, + ACTIONS(904), 27, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57838] = 3, + [63104] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 14, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_QMARK_DOT, + STATE(3648), 1, + sym_call_type_arguments, + STATE(1643), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1817), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [63186] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2752), 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, + STATE(3465), 1, + sym_call_type_arguments, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(637), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1769), 29, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [63268] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(897), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(888), 3, 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_extends, + ACTIONS(894), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(892), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, 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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [57940] = 4, + [63338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1327), 14, + ACTIONS(892), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1325), 27, + anon_sym_QMARK_QMARK, + ACTIONS(904), 30, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [57993] = 3, + anon_sym_LBRACE_PIPE, + [63400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 14, + ACTIONS(897), 1, + anon_sym_DOT, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(3314), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(892), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1773), 29, + anon_sym_QMARK_QMARK, + ACTIONS(904), 27, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58044] = 3, + [63468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1825), 29, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 15, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 14, + ACTIONS(625), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123355,95 +134402,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1785), 29, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [63533] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(888), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_extends, + ACTIONS(897), 2, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(894), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(892), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, 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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58146] = 3, + [63602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1805), 29, + ACTIONS(2770), 1, + anon_sym_EQ, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 15, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 14, + ACTIONS(625), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123451,170 +134524,241 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1867), 29, + anon_sym_QMARK_QMARK, + [63667] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2770), 1, + anon_sym_EQ, + ACTIONS(2812), 1, + anon_sym_in, + ACTIONS(2815), 1, + anon_sym_of, + ACTIONS(637), 14, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(1883), 29, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [63736] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_LT, + ACTIONS(888), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_extends, + ACTIONS(897), 2, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(894), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(892), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, 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, + ACTIONS(904), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58299] = 12, + [63805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2730), 1, + anon_sym_EQ, + ACTIONS(637), 14, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3507), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 13, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_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, - ACTIONS(3505), 19, + anon_sym_QMARK_QMARK, + [63869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 1, + anon_sym_EQ, + ACTIONS(637), 14, anon_sym_as, + anon_sym_LBRACE, 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58368] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(911), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(913), 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123622,328 +134766,224 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 18, - anon_sym_as, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_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, + [63933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 1, + anon_sym_EQ, + ACTIONS(637), 13, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [58429] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 23, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3510), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [58524] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3450), 1, anon_sym_AMP, - ACTIONS(3452), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3454), 1, - anon_sym_extends, - ACTIONS(2052), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2050), 28, + anon_sym_QMARK_QMARK, + [63997] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(2812), 1, + anon_sym_in, + ACTIONS(2815), 1, + anon_sym_of, + ACTIONS(637), 11, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [58581] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3512), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [58676] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3450), 1, anon_sym_AMP, - ACTIONS(3452), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(2056), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2054), 29, + anon_sym_QMARK_QMARK, + [64063] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(2617), 1, + anon_sym_in, + ACTIONS(2620), 1, + anon_sym_of, + ACTIONS(637), 11, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58731] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(911), 14, + ACTIONS(635), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(625), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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(909), 26, - 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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_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_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [58788] = 3, + [64129] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 15, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3461), 1, + sym_identifier, + ACTIONS(3463), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3467), 1, + anon_sym_LBRACE, + STATE(3934), 1, + sym_import_clause, + ACTIONS(3471), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3958), 2, + sym_string, + sym_import_require_clause, + STATE(4385), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(3465), 15, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -123957,12 +134997,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1321), 28, + anon_sym_instanceof, + ACTIONS(3469), 22, sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -123980,90 +135018,290 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [58839] = 3, + [64204] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1325), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3242), 2, anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3262), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3165), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64310] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3493), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3495), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - [58890] = 3, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3056), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64416] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 15, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3497), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3499), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3111), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64522] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 3, anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(621), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(625), 11, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1317), 28, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124079,37 +135317,487 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [58941] = 13, + [64596] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3272), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3274), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3137), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64702] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3507), 1, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3503), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3096), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64808] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 12, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3505), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3507), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3034), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64914] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3509), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3511), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 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(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [65020] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1362), 1, + anon_sym_LBRACE, + ACTIONS(3513), 1, + anon_sym_STAR, + ACTIONS(3515), 1, + anon_sym_default, + ACTIONS(3517), 1, + anon_sym_EQ, + ACTIONS(3519), 1, + anon_sym_as, + ACTIONS(3521), 1, + anon_sym_namespace, + ACTIONS(3525), 1, + anon_sym_type, + ACTIONS(3527), 1, + anon_sym_import, + ACTIONS(3529), 1, + anon_sym_var, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(3533), 1, + anon_sym_const, + ACTIONS(3535), 1, + anon_sym_class, + ACTIONS(3537), 1, + anon_sym_async, + ACTIONS(3539), 1, + anon_sym_function, + ACTIONS(3541), 1, + anon_sym_abstract, + ACTIONS(3543), 1, + anon_sym_declare, + ACTIONS(3545), 1, + anon_sym_module, + ACTIONS(3547), 1, + anon_sym_interface, + ACTIONS(3549), 1, + anon_sym_enum, + STATE(2545), 1, + sym_decorator, + STATE(3243), 1, + sym_internal_module, + STATE(3249), 1, + sym_function_signature, + STATE(3267), 1, + sym__declaration, + STATE(3352), 1, + aux_sym_export_statement_repeat1, + STATE(3595), 1, + sym_export_clause, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3283), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [65130] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1362), 1, + anon_sym_LBRACE, + ACTIONS(3513), 1, + anon_sym_STAR, + ACTIONS(3515), 1, + anon_sym_default, + ACTIONS(3517), 1, + anon_sym_EQ, + ACTIONS(3519), 1, + anon_sym_as, + ACTIONS(3521), 1, + anon_sym_namespace, + ACTIONS(3525), 1, + anon_sym_type, + ACTIONS(3527), 1, + anon_sym_import, + ACTIONS(3529), 1, + anon_sym_var, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(3533), 1, + anon_sym_const, + ACTIONS(3535), 1, + anon_sym_class, + ACTIONS(3537), 1, + anon_sym_async, + ACTIONS(3539), 1, + anon_sym_function, + ACTIONS(3541), 1, + anon_sym_abstract, + ACTIONS(3543), 1, + anon_sym_declare, + ACTIONS(3545), 1, + anon_sym_module, + ACTIONS(3547), 1, + anon_sym_interface, + ACTIONS(3549), 1, + anon_sym_enum, + STATE(2545), 1, + sym_decorator, + STATE(3243), 1, + sym_internal_module, + STATE(3249), 1, + sym_function_signature, + STATE(3267), 1, + sym__declaration, + STATE(3352), 1, + aux_sym_export_statement_repeat1, + STATE(3595), 1, + sym_export_clause, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3283), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [65240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 15, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -124120,13 +135808,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 19, + ACTIONS(1310), 32, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124140,15 +135836,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59012] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - anon_sym_LT, - ACTIONS(951), 13, + ACTIONS(1308), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -124159,17 +135860,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 29, + ACTIONS(1306), 32, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124189,34 +135893,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [59065] = 13, + [65350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3507), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 12, + ACTIONS(1284), 15, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -124227,13 +135912,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 19, + ACTIONS(1282), 32, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124247,10 +135940,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59136] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 15, + ACTIONS(1280), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -124266,16 +135964,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1313), 28, - sym__automatic_semicolon, + ACTIONS(1278), 32, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124293,12 +135995,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [59187] = 3, + [65460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 15, + ACTIONS(1096), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1094), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -124314,15 +136019,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1305), 28, - sym__automatic_semicolon, + ACTIONS(1092), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_while, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -124341,152 +136048,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [59238] = 25, + [65517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1094), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3517), 5, + ACTIONS(1092), 32, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, - anon_sym_RBRACK, - [59333] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3356), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_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(3519), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [59428] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 15, + ACTIONS(1268), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -124502,16 +136121,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1309), 28, - sym__automatic_semicolon, + ACTIONS(1266), 32, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124529,82 +136152,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [59479] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3521), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [59574] = 3, + [65627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 15, + ACTIONS(1304), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -124620,16 +136173,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 28, - sym__automatic_semicolon, + ACTIONS(1302), 32, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124647,19 +136204,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [59625] = 6, + [65682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, - anon_sym_AMP, - ACTIONS(3452), 1, - anon_sym_PIPE, - ACTIONS(3454), 1, - anon_sym_extends, - ACTIONS(2046), 12, + ACTIONS(1272), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124667,21 +136219,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(2044), 28, + ACTIONS(1270), 32, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124700,17 +136257,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [59682] = 5, + anon_sym_extends, + [65737] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1823), 12, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1362), 1, + anon_sym_LBRACE, + ACTIONS(3513), 1, + anon_sym_STAR, + ACTIONS(3515), 1, + anon_sym_default, + ACTIONS(3519), 1, + anon_sym_as, + ACTIONS(3521), 1, + anon_sym_namespace, + ACTIONS(3525), 1, + anon_sym_type, + ACTIONS(3527), 1, + anon_sym_import, + ACTIONS(3529), 1, + anon_sym_var, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(3533), 1, + anon_sym_const, + ACTIONS(3535), 1, + anon_sym_class, + ACTIONS(3537), 1, + anon_sym_async, + ACTIONS(3539), 1, + anon_sym_function, + ACTIONS(3541), 1, + anon_sym_abstract, + ACTIONS(3543), 1, + anon_sym_declare, + ACTIONS(3545), 1, + anon_sym_module, + ACTIONS(3547), 1, + anon_sym_interface, + ACTIONS(3549), 1, + anon_sym_enum, + ACTIONS(3551), 1, + anon_sym_EQ, + STATE(2545), 1, + sym_decorator, + STATE(3243), 1, + sym_internal_module, + STATE(3249), 1, + sym_function_signature, + STATE(3267), 1, + sym__declaration, + STATE(3352), 1, + aux_sym_export_statement_repeat1, + STATE(3595), 1, + sym_export_clause, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3283), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [65844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124718,20 +136349,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1821), 27, + ACTIONS(1298), 32, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124750,42 +136387,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [59737] = 8, + anon_sym_extends, + [65899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(1863), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1865), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1292), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 24, + ACTIONS(1290), 32, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124803,34 +136439,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [59798] = 13, + anon_sym_extends, + [65954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(3527), 1, - anon_sym_in, - ACTIONS(3530), 1, - anon_sym_of, - STATE(3032), 1, - sym_type_annotation, - STATE(3321), 1, - sym__initializer, - ACTIONS(3525), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(913), 13, + ACTIONS(1288), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -124842,9 +136459,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(1286), 32, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124861,34 +136490,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59869] = 13, + anon_sym_implements, + anon_sym_extends, + [66009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(3532), 1, - anon_sym_EQ, - ACTIONS(3536), 1, - anon_sym_in, - ACTIONS(3539), 1, - anon_sym_of, - STATE(3034), 1, - sym_type_annotation, - STATE(3328), 1, - sym__initializer, - ACTIONS(3534), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(913), 13, + ACTIONS(1296), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -124900,9 +136511,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(1294), 32, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124919,87 +136542,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59940] = 25, + anon_sym_implements, + anon_sym_extends, + [66064] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1362), 1, + anon_sym_LBRACE, + ACTIONS(3513), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3541), 5, + ACTIONS(3515), 1, + anon_sym_default, + ACTIONS(3517), 1, + anon_sym_EQ, + ACTIONS(3519), 1, + anon_sym_as, + ACTIONS(3521), 1, + anon_sym_namespace, + ACTIONS(3525), 1, + anon_sym_type, + ACTIONS(3527), 1, + anon_sym_import, + ACTIONS(3529), 1, + anon_sym_var, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(3533), 1, + anon_sym_const, + ACTIONS(3535), 1, + anon_sym_class, + ACTIONS(3537), 1, + anon_sym_async, + ACTIONS(3539), 1, + anon_sym_function, + ACTIONS(3541), 1, + anon_sym_abstract, + ACTIONS(3543), 1, + anon_sym_declare, + ACTIONS(3545), 1, + anon_sym_module, + ACTIONS(3547), 1, + anon_sym_interface, + ACTIONS(3549), 1, + anon_sym_enum, + STATE(2545), 1, + sym_decorator, + STATE(3243), 1, + sym_internal_module, + STATE(3249), 1, + sym_function_signature, + STATE(3267), 1, + sym__declaration, + STATE(3352), 1, + aux_sym_export_statement_repeat1, + STATE(3595), 1, + sym_export_clause, + ACTIONS(3553), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3523), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - [60035] = 6, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3283), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [66173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - ACTIONS(3545), 1, - anon_sym_DOT, - STATE(1503), 1, - sym_statement_block, - ACTIONS(1095), 14, + ACTIONS(1276), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125013,16 +136642,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1093), 26, - sym__automatic_semicolon, + ACTIONS(1274), 32, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -125040,14 +136673,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60092] = 5, + anon_sym_implements, + anon_sym_extends, + [66228] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1503), 1, - sym_statement_block, - ACTIONS(1095), 14, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3556), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66330] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125062,16 +136777,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1093), 27, - sym__automatic_semicolon, + ACTIONS(621), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125089,17 +136803,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [60147] = 4, + anon_sym_implements, + anon_sym_extends, + [66392] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3558), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66494] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(3564), 1, + anon_sym_in, + ACTIONS(3567), 1, + anon_sym_of, + STATE(3264), 1, + sym_type_annotation, + STATE(3474), 1, + sym_call_type_arguments, + STATE(3880), 1, + sym__initializer, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(3562), 3, sym__automatic_semicolon, - ACTIONS(1163), 14, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(625), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -125110,18 +136929,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1161), 28, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125137,191 +136946,540 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60200] = 3, + [66578] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3551), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3569), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66680] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60250] = 19, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3571), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66782] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3573), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66884] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3553), 3, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 9, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3575), 2, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [60332] = 25, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66986] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3577), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67088] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67190] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3519), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3581), 2, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60426] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 14, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125336,7 +137494,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3448), 28, + ACTIONS(621), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -125365,293 +137523,277 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [60476] = 25, + anon_sym_extends, + [67350] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3517), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3583), 2, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60570] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67452] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3459), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60620] = 3, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3585), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67554] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3591), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60670] = 3, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3587), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67656] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3595), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + ACTIONS(2605), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2626), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 3, + anon_sym_EQ, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3599), 28, - anon_sym_as, + ACTIONS(621), 8, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 14, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(625), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3603), 28, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125667,63 +137809,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60820] = 3, + [67728] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3607), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3589), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67830] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2622), 1, anon_sym_COLON, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3609), 14, + ACTIONS(3591), 1, + anon_sym_EQ, + ACTIONS(3595), 1, + anon_sym_in, + ACTIONS(3598), 1, + anon_sym_of, + STATE(3263), 1, + sym_type_annotation, + STATE(3474), 1, + sym_call_type_arguments, + STATE(3887), 1, + sym__initializer, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(3593), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(625), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -125734,18 +137933,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3611), 28, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125761,107 +137950,629 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60920] = 28, + [67914] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(2943), 1, - anon_sym_COMMA, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3617), 1, - anon_sym_LBRACE, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3623), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3649), 1, - anon_sym_LBRACE_PIPE, - STATE(3120), 1, - sym_type_arguments, - STATE(3129), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3600), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68016] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61020] = 13, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3602), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68118] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3604), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68220] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3606), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68322] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3608), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68424] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3610), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68526] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3612), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68628] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3614), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68730] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3651), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 12, + ACTIONS(625), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -125873,12 +138584,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 18, - sym__automatic_semicolon, + ACTIONS(637), 23, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125892,10 +138605,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61090] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [68799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 14, + ACTIONS(1234), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125910,16 +138626,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1225), 28, + ACTIONS(1232), 31, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125938,72 +138656,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [61140] = 13, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [68852] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3651), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3505), 18, - sym__automatic_semicolon, - 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, - [61210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 14, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -126014,18 +138692,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1279), 28, + ACTIONS(637), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -126041,83 +138715,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - [61260] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3654), 1, - anon_sym_COMMA, - ACTIONS(3657), 1, - anon_sym_RBRACE, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61358] = 3, + [68921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(1224), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126132,7 +138734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 28, + ACTIONS(1222), 31, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -126142,6 +138744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_while, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -126161,11 +138764,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61408] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [68974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 14, + ACTIONS(1096), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1094), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126179,16 +138788,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1143), 28, + ACTIONS(1092), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126207,106 +138815,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [61458] = 25, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [69029] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(1808), 2, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3512), 4, + ACTIONS(1806), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 14, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(625), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3661), 28, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -126322,16 +138876,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61602] = 3, + [69101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3663), 14, + ACTIONS(3616), 1, + anon_sym_LT, + ACTIONS(3619), 1, + anon_sym_DOT, + STATE(1482), 1, + sym_type_arguments, + ACTIONS(2068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -126342,7 +138899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 28, + ACTIONS(2066), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -126352,7 +138909,6 @@ static 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, @@ -126371,79 +138927,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [61652] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3510), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61746] = 3, + anon_sym_extends, + [69159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 15, + ACTIONS(1086), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -126459,16 +138947,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3364), 27, - sym__automatic_semicolon, + ACTIONS(1088), 29, 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, @@ -126487,80 +138976,157 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61796] = 25, + anon_sym_implements, + [69211] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3142), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69309] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3541), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61890] = 3, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 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(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 14, + ACTIONS(3621), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126574,13 +139140,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3495), 28, + ACTIONS(3623), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -126603,11 +139170,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [61940] = 3, + [69459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 14, + ACTIONS(3625), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126621,13 +139189,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1187), 28, + ACTIONS(3627), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -126650,120 +139219,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [61990] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LT, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - STATE(1684), 1, - sym_type_arguments, - STATE(1863), 1, - sym_arguments, - ACTIONS(2513), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(2515), 21, - sym__automatic_semicolon, - 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_DASH_DASH, - anon_sym_BQUOTE, - [62056] = 11, + [69511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LT, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(3358), 1, + ACTIONS(1086), 1, anon_sym_EQ, - STATE(1684), 1, - sym_type_arguments, - STATE(1863), 1, - sym_arguments, - ACTIONS(2513), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(2515), 21, + ACTIONS(3629), 1, sym__automatic_semicolon, - 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_DASH_DASH, - anon_sym_BQUOTE, - [62122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 14, + ACTIONS(1084), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126778,7 +139241,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 28, + ACTIONS(1082), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -126807,14 +139270,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62172] = 3, + [69567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 14, + ACTIONS(3631), 1, + anon_sym_LT, + STATE(1488), 1, + sym_type_arguments, + ACTIONS(2127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -126825,7 +139291,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 28, + ACTIONS(2125), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -126854,11 +139320,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62222] = 3, + anon_sym_extends, + [69623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 14, + ACTIONS(3634), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126872,13 +139340,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3669), 28, + ACTIONS(3636), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -126901,57 +139370,158 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62272] = 3, + [69675] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3673), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [62322] = 3, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3052), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69773] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3029), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 14, + ACTIONS(3619), 1, + anon_sym_DOT, + STATE(1482), 1, + sym_type_arguments, + ACTIONS(2062), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126966,7 +139536,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3677), 28, + ACTIONS(2060), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -126976,7 +139546,6 @@ static 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, @@ -126995,36 +139564,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62372] = 3, + anon_sym_extends, + [69927] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 14, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3638), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3641), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(2125), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(625), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1249), 28, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127040,13 +139625,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [62422] = 3, + [70001] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3443), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [70099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1267), 14, + ACTIONS(3644), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127060,13 +139716,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 28, + ACTIONS(3646), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -127089,11 +139746,216 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62472] = 3, + [70151] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3093), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [70249] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3648), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3651), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(1908), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(625), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [70323] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3145), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [70421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 14, + ACTIONS(3654), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127107,13 +139969,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1221), 28, + ACTIONS(3656), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -127136,11 +139999,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62522] = 3, + [70473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 14, + ACTIONS(3658), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127154,13 +140018,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1211), 28, + ACTIONS(3457), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -127183,11 +140048,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62572] = 3, + [70525] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_new, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3475), 1, + anon_sym_export, + ACTIONS(3477), 1, + anon_sym_STAR, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_async, + ACTIONS(3483), 1, + sym_number, + ACTIONS(3485), 1, + anon_sym_static, + ACTIONS(3491), 1, + sym_readonly, + STATE(2517), 1, + sym_accessibility_modifier, + STATE(2545), 1, + sym_decorator, + STATE(2683), 1, + sym_formal_parameters, + STATE(3453), 1, + sym__call_signature, + STATE(3468), 1, + aux_sym_export_statement_repeat1, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(3487), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2585), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3135), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3473), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [70623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 14, + ACTIONS(3660), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127201,13 +140139,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 28, + ACTIONS(3662), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -127230,10 +140169,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62622] = 3, + [70675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3679), 14, + STATE(1488), 1, + sym_type_arguments, + ACTIONS(1894), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127248,7 +140189,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3681), 28, + ACTIONS(1892), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -127277,30 +140218,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62672] = 12, + anon_sym_extends, + [70729] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3651), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, + ACTIONS(2774), 1, + anon_sym_LPAREN, + ACTIONS(2777), 1, + anon_sym_BQUOTE, + ACTIONS(3664), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 13, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127314,7 +140255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 18, + ACTIONS(637), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -127333,10 +140274,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62740] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [70798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 14, + ACTIONS(1836), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127351,7 +140294,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3685), 28, + ACTIONS(1834), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -127380,25 +140323,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [62790] = 8, + anon_sym_extends, + [70849] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - STATE(3106), 1, - sym_type_arguments, - STATE(1308), 2, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3352), 14, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -127409,13 +140360,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3354), 22, - sym__automatic_semicolon, + ACTIONS(637), 20, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127431,226 +140381,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [62850] = 28, + [70918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(3668), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1856), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3687), 1, - anon_sym_RPAREN, - ACTIONS(3689), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - STATE(3771), 1, - sym_type_annotation, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1854), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62950] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3689), 1, - anon_sym_COLON, - ACTIONS(3691), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3800), 1, - sym_type_annotation, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63050] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3495), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63144] = 3, + anon_sym_implements, + anon_sym_extends, + [70971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 15, + ACTIONS(1862), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127664,16 +140448,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3382), 27, - sym__automatic_semicolon, + ACTIONS(1860), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127692,10 +140476,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63194] = 3, + anon_sym_implements, + anon_sym_extends, + [71022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 14, + ACTIONS(1882), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127710,7 +140496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3695), 28, + ACTIONS(1880), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -127739,12 +140525,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63244] = 3, + anon_sym_extends, + [71073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 15, + ACTIONS(1808), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127758,16 +140544,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3400), 27, - sym__automatic_semicolon, + ACTIONS(1806), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127786,10 +140572,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63294] = 3, + anon_sym_implements, + anon_sym_extends, + [71124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(1788), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127804,7 +140592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 28, + ACTIONS(1786), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -127833,81 +140621,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63344] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3697), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63438] = 3, + anon_sym_extends, + [71175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 15, + ACTIONS(1902), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127921,16 +140640,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3388), 27, - sym__automatic_semicolon, + ACTIONS(1900), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127949,10 +140668,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63488] = 3, + anon_sym_implements, + anon_sym_extends, + [71226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 14, + ACTIONS(1898), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127967,7 +140688,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3701), 28, + ACTIONS(1896), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -127996,10 +140717,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63538] = 3, + anon_sym_extends, + [71277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 14, + ACTIONS(1894), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128014,7 +140736,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3705), 28, + ACTIONS(1892), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128043,36 +140765,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63588] = 3, + anon_sym_extends, + [71328] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 14, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + STATE(3604), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1731), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(625), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3709), 28, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -128088,84 +140823,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [63638] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3689), 1, - anon_sym_COLON, - ACTIONS(3711), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3794), 1, - sym_type_annotation, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63738] = 3, + [71397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 14, + ACTIONS(1852), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128180,7 +140841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3715), 28, + ACTIONS(1850), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128209,12 +140870,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63788] = 3, + anon_sym_extends, + [71448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 15, + ACTIONS(1792), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128228,16 +140889,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 27, - sym__automatic_semicolon, + ACTIONS(1790), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -128256,10 +140917,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63838] = 3, + anon_sym_implements, + anon_sym_extends, + [71499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 14, + ACTIONS(623), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128274,7 +140937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1239), 28, + ACTIONS(621), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128303,10 +140966,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63888] = 3, + anon_sym_extends, + [71550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 14, + ACTIONS(1804), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128321,7 +140985,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 28, + ACTIONS(1802), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128350,14 +141014,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63938] = 3, + anon_sym_extends, + [71601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 14, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(890), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -128368,7 +141034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1117), 28, + ACTIONS(888), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128397,10 +141063,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [63988] = 3, + anon_sym_extends, + [71654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1195), 14, + ACTIONS(1800), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128415,7 +141082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1197), 28, + ACTIONS(1798), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128444,79 +141111,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [64038] = 25, + anon_sym_extends, + [71705] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3499), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3717), 14, + ACTIONS(623), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128531,16 +141139,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3719), 28, + ACTIONS(621), 24, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -128558,12 +141163,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [64182] = 3, + anon_sym_extends, + [71764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3721), 14, + ACTIONS(623), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128578,7 +141182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3723), 28, + ACTIONS(621), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128607,12 +141211,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [64232] = 3, + anon_sym_extends, + [71815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 15, + ACTIONS(1796), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128626,16 +141230,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3203), 27, - sym__automatic_semicolon, + ACTIONS(1794), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -128654,81 +141258,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64282] = 27, + anon_sym_implements, + anon_sym_extends, + [71866] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3673), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3725), 1, - anon_sym_COMMA, - ACTIONS(3728), 1, - anon_sym_RBRACE, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3489), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 20, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64380] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [71935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 15, + ACTIONS(1296), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -128744,15 +141336,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3392), 27, + ACTIONS(1294), 28, sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -128772,24 +141363,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64430] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3369), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3366), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(1829), 4, - sym__automatic_semicolon, - anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3362), 13, + [71986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2118), 1, + anon_sym_DOT, + ACTIONS(1776), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128797,14 +141379,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3364), 20, + ACTIONS(1774), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128822,10 +141412,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64486] = 3, + anon_sym_implements, + anon_sym_extends, + [72039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 14, + ACTIONS(1816), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128840,7 +141432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3732), 28, + ACTIONS(1814), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -128869,11 +141461,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [64536] = 3, + anon_sym_extends, + [72090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 14, + ACTIONS(1272), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128887,16 +141481,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3736), 28, + ACTIONS(1270), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -128915,224 +141508,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64586] = 25, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [72141] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2125), 1, + anon_sym_extends, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2700), 1, + anon_sym_COMMA, + ACTIONS(2711), 1, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + ACTIONS(2737), 1, + anon_sym_COLON, + ACTIONS(3675), 1, + anon_sym_EQ, + ACTIONS(3677), 1, + anon_sym_RPAREN, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3641), 2, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3553), 3, + ACTIONS(625), 10, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3521), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64680] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, + ACTIONS(637), 16, anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3689), 1, - anon_sym_COLON, - ACTIONS(3738), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3859), 1, - sym_type_annotation, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64780] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [72222] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3681), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3740), 1, - anon_sym_COMMA, - ACTIONS(3743), 1, - anon_sym_RBRACE, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3461), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 20, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64878] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [72291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 14, + ACTIONS(1284), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -129146,16 +141649,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3747), 28, + ACTIONS(1282), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -129174,15 +141676,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64928] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [72342] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 14, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(2655), 1, + anon_sym_QMARK_DOT, + ACTIONS(2774), 1, + anon_sym_LPAREN, + ACTIONS(2777), 1, + anon_sym_BQUOTE, + ACTIONS(3683), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -129193,18 +141714,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3751), 28, + ACTIONS(637), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -129220,12 +141735,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [64978] = 3, + [72411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(1224), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129240,7 +141753,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3755), 28, + ACTIONS(1222), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -129269,11 +141782,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65028] = 3, + anon_sym_extends, + [72462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 14, + ACTIONS(1276), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -129287,16 +141802,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1125), 28, + ACTIONS(1274), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -129315,11 +141829,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [65078] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [72513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 14, + ACTIONS(1848), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129334,7 +141849,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3521), 28, + ACTIONS(1846), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -129363,82 +141878,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65128] = 27, + anon_sym_extends, + [72564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2937), 1, - anon_sym_COMMA, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1840), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - STATE(3072), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3649), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1838), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65226] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [72615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 14, + ACTIONS(1312), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -129452,16 +141946,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3519), 28, + ACTIONS(1310), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -129480,11 +141973,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [65276] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [72666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 14, + ACTIONS(3629), 1, + sym__automatic_semicolon, + ACTIONS(1084), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129499,7 +141995,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3789), 28, + ACTIONS(1082), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -129528,84 +142024,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65326] = 25, + [72719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1304), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3477), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1302), 28, sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65420] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [72770] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 15, - anon_sym_STAR, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3685), 1, anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -129616,18 +142108,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3396), 27, - sym__automatic_semicolon, + ACTIONS(637), 20, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -129643,88 +142129,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65470] = 27, + [72839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1288), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3743), 1, - anon_sym_RBRACE, - ACTIONS(3791), 1, - anon_sym_COMMA, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1286), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65568] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [72890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(3687), 1, + anon_sym_LBRACE, + ACTIONS(3689), 1, anon_sym_DOT, - ACTIONS(913), 14, + STATE(1655), 1, + sym_statement_block, + ACTIONS(1100), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129739,15 +142201,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 25, + ACTIONS(1098), 26, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -129765,53 +142228,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65624] = 17, + [72947] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, + ACTIONS(3691), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3553), 3, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 7, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 14, + ACTIONS(637), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -129819,17 +142272,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65702] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [73016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 14, + ACTIONS(3693), 1, + sym__automatic_semicolon, + ACTIONS(1208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129844,7 +142305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1161), 28, + ACTIONS(1206), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -129873,10 +142334,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65752] = 3, + [73069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 14, + ACTIONS(1906), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129891,7 +142352,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 28, + ACTIONS(1904), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -129920,10 +142381,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65802] = 3, + anon_sym_extends, + [73120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 14, + ACTIONS(1832), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129938,7 +142400,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1275), 28, + ACTIONS(1830), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -129967,36 +142429,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65852] = 14, + anon_sym_extends, + [73171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3794), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + ACTIONS(1828), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -130007,28 +142448,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 17, - sym__automatic_semicolon, + ACTIONS(1826), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65924] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 14, + ACTIONS(3668), 1, + anon_sym_LBRACK, + ACTIONS(1914), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130043,7 +142498,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3517), 28, + ACTIONS(1912), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -130051,7 +142506,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -130072,23 +142526,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [65974] = 5, + anon_sym_extends, + [73275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1813), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1105), 13, + ACTIONS(1824), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130096,13 +142539,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1107), 20, + ACTIONS(1822), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -130121,10 +142573,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66028] = 3, + anon_sym_implements, + anon_sym_extends, + [73326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 14, + ACTIONS(3687), 1, + anon_sym_LBRACE, + STATE(1655), 1, + sym_statement_block, + ACTIONS(1100), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130139,9 +142597,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 28, + ACTIONS(1098), 27, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -130168,517 +142625,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [66078] = 25, + [73381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(3695), 1, + anon_sym_LBRACE, + ACTIONS(3697), 1, anon_sym_DOT, - ACTIONS(3555), 1, + STATE(1672), 1, + sym_statement_block, + ACTIONS(1100), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3459), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66172] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3493), 4, + ACTIONS(1098), 26, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66266] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2590), 1, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3491), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [66360] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3489), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66454] = 25, + anon_sym_BQUOTE, + [73438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1672), 1, + sym_statement_block, + ACTIONS(1100), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3487), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1098), 27, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66548] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3689), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3858), 1, - sym_type_annotation, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66648] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3408), 1, - anon_sym_QMARK, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [66738] = 13, + anon_sym_BQUOTE, + [73493] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3794), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, + ACTIONS(3699), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3408), 12, + ACTIONS(625), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -130690,7 +142762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 18, + ACTIONS(637), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -130709,205 +142781,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66808] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [73562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1878), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1876), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3461), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66902] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3794), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 9, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 14, - sym__automatic_semicolon, + ACTIONS(1888), 29, 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [66978] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2592), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3577), 1, anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3408), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 8, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [67064] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 14, + ACTIONS(1280), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130921,16 +142898,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3231), 28, + ACTIONS(1278), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -130949,15 +142925,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [67114] = 5, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [73715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - STATE(1662), 1, - sym_type_arguments, - ACTIONS(1981), 14, + ACTIONS(1874), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130972,14 +142945,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1979), 25, - sym__automatic_semicolon, + ACTIONS(1872), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130997,88 +142973,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [67167] = 26, + [73766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(1822), 2, anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + anon_sym_extends, + ACTIONS(1824), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1866), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3807), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1864), 27, + anon_sym_as, anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3461), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, + 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_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67262] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [73821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(1886), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131093,14 +143043,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 23, + ACTIONS(1884), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131117,18 +143071,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67319] = 7, + anon_sym_implements, + anon_sym_extends, + [73872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3811), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(1820), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131143,14 +143091,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 23, + ACTIONS(1818), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131167,157 +143119,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67376] = 27, + anon_sym_implements, + anon_sym_extends, + [73923] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2125), 1, + anon_sym_extends, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2711), 1, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + ACTIONS(3675), 1, + anon_sym_EQ, + ACTIONS(3677), 1, + anon_sym_RPAREN, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2700), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3641), 2, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3813), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3318), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(625), 10, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67473] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [74002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1844), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3815), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3221), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1842), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67570] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [74053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 1, - sym__automatic_semicolon, - ACTIONS(1101), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1105), 15, + ACTIONS(1870), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131331,12 +143249,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 23, + ACTIONS(1868), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -131355,88 +143277,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67623] = 17, + anon_sym_implements, + anon_sym_extends, + [74104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(1910), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 7, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 13, + ACTIONS(1908), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67700] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [74155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3471), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3474), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1883), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(913), 12, + ACTIONS(1300), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131444,13 +143340,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 18, + ACTIONS(1298), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131467,81 +143373,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67761] = 26, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [74206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1419), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3827), 1, - anon_sym_COMMA, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3424), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1417), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67856] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [74257] = 3, ACTIONS(3), 1, sym_comment, - STATE(1669), 1, - sym_type_arguments, - ACTIONS(1845), 14, + ACTIONS(1234), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131556,14 +143441,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 26, - sym__automatic_semicolon, + ACTIONS(1232), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -131582,169 +143469,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [67907] = 27, + [74308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1308), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3829), 1, - anon_sym_COMMA, - ACTIONS(3831), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3330), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68004] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 1, + ACTIONS(1306), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3833), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3287), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68101] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3479), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3482), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2015), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(913), 12, + [74359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1094), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131752,13 +143532,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 18, + ACTIONS(1092), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131775,26 +143565,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68162] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(1865), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1863), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(913), 12, + [74410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1812), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131803,13 +143579,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 18, + ACTIONS(1810), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131826,223 +143613,182 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68221] = 27, + anon_sym_implements, + anon_sym_extends, + [74461] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3691), 1, + anon_sym_EQ, + ACTIONS(3701), 1, + anon_sym_in, + ACTIONS(3704), 1, + anon_sym_of, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3835), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3386), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68318] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [74534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3837), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3499), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(621), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68413] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [74589] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3699), 1, + anon_sym_EQ, + ACTIONS(3706), 1, + anon_sym_in, + ACTIONS(3709), 1, + anon_sym_of, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3839), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3330), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68510] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [74662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1327), 14, + ACTIONS(1268), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -132056,9 +143802,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 25, + ACTIONS(1266), 28, sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -132082,23 +143829,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68561] = 8, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [74713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - STATE(3120), 1, - sym_type_arguments, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3352), 15, + ACTIONS(1292), 15, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -132112,10 +143850,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3354), 20, + ACTIONS(1290), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132132,80 +143877,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [68620] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3623), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3797), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3517), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68715] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [74764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 14, + ACTIONS(1204), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -132220,16 +143897,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1225), 27, - sym__automatic_semicolon, + ACTIONS(1202), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -132248,49 +143925,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68764] = 13, + anon_sym_implements, + [74814] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1908), 1, + anon_sym_extends, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3841), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3648), 1, + anon_sym_RPAREN, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3651), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 12, + ACTIONS(625), 11, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3505), 17, + ACTIONS(637), 18, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132304,103 +143982,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68833] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [74886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(3711), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3785), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3713), 28, + anon_sym_as, anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3519), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, + 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_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68928] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3841), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [74936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -132411,11 +144049,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 17, + ACTIONS(3717), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132429,169 +144074,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68997] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [74986] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2693), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3039), 1, + anon_sym_LPAREN, + ACTIONS(3042), 1, + anon_sym_BQUOTE, + ACTIONS(3719), 1, + anon_sym_EQ, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3512), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69090] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [75054] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2693), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3039), 1, + anon_sym_LPAREN, + ACTIONS(3042), 1, + anon_sym_BQUOTE, + ACTIONS(3721), 1, + anon_sym_EQ, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3510), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69183] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [75122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3841), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 13, + ACTIONS(3723), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -132602,9 +144214,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 17, + ACTIONS(3725), 25, 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_AMP_AMP, @@ -132620,104 +144236,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69250] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [75178] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3860), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3372), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3731), 23, + 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69347] = 12, + anon_sym_BQUOTE, + anon_sym_implements, + [75236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3862), 1, - anon_sym_LT, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 14, + ACTIONS(3735), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -132728,9 +144309,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 16, + ACTIONS(3737), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132744,379 +144334,306 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [69414] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [75286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3739), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3741), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69507] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [75336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3743), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3867), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3364), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3745), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69604] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [75386] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3753), 1, + anon_sym_COLON, + ACTIONS(3755), 1, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3750), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3553), 3, + ACTIONS(625), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3563), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3869), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69697] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [75460] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3623), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_EQ, + ACTIONS(3764), 1, + anon_sym_COLON, + ACTIONS(3766), 1, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3757), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3521), 2, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3761), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, + anon_sym_RPAREN, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3613), 3, + ACTIONS(625), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69792] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [75534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1270), 2, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + anon_sym_BQUOTE, + ACTIONS(3775), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3769), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3871), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3330), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3772), 19, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69889] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [75588] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2493), 1, - anon_sym_LT, - ACTIONS(2843), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(3358), 1, + ACTIONS(2711), 1, + anon_sym_QMARK, + ACTIONS(2737), 1, + anon_sym_COLON, + ACTIONS(3675), 1, anon_sym_EQ, - STATE(1913), 1, - sym_type_arguments, - STATE(1931), 1, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(2700), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1406), 2, + sym_template_string, sym_arguments, - ACTIONS(2513), 14, + ACTIONS(625), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -133124,9 +144641,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2515), 19, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -133142,32 +144658,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [69954] = 11, + [75662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(1310), 2, anon_sym_LPAREN, - ACTIONS(2493), 1, + anon_sym_BQUOTE, + ACTIONS(3783), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3777), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2843), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3780), 19, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(2849), 1, anon_sym_QMARK_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - STATE(1913), 1, - sym_type_arguments, - STATE(1931), 1, - sym_arguments, - ACTIONS(2513), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [75716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -133178,9 +144725,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2515), 19, + ACTIONS(3787), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -133197,498 +144753,364 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [70019] = 27, + anon_sym_implements, + [75766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(3792), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3789), 3, anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1850), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3660), 13, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3873), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3362), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3662), 20, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70116] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3660), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3829), 1, - anon_sym_COMMA, - ACTIONS(3875), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3330), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3662), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70213] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(890), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(888), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + 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, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70308] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [75922] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3623), 1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 13, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3665), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3731), 23, + anon_sym_as, anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3495), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70403] = 27, + anon_sym_BQUOTE, + anon_sym_implements, + [75982] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 13, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3881), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3244), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3731), 23, + 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70500] = 26, + anon_sym_BQUOTE, + anon_sym_implements, + [76042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(1096), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1094), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3883), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3541), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1092), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70595] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [76094] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(1806), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(1808), 2, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3885), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3330), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(625), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70692] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [76164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 14, + ACTIONS(3465), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133703,16 +145125,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1279), 27, - sym__automatic_semicolon, + ACTIONS(3469), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -133731,80 +145153,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70741] = 25, + anon_sym_implements, + [76214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3797), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3799), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3879), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70834] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [76264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, - sym__automatic_semicolon, - ACTIONS(1103), 14, + ACTIONS(3801), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133819,15 +145219,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1101), 26, + ACTIONS(3803), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -133846,176 +145247,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70885] = 26, + anon_sym_implements, + [76314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(3805), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3889), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 28, + anon_sym_as, anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3477), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, + 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_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70980] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [76364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3809), 1, + anon_sym_AMP, + ACTIONS(3811), 1, + anon_sym_PIPE, + ACTIONS(2152), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3891), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3298), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2150), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71077] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [76418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_extends, - ACTIONS(3366), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3369), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3362), 12, + ACTIONS(3625), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3364), 23, + ACTIONS(3627), 27, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -134034,350 +145391,266 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71132] = 25, + [76468] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3813), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3541), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71225] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [76536] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3815), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3521), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71318] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [76604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1216), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3519), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1218), 28, + 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, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71411] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [76654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1110), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1112), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3869), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71504] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [76704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3809), 1, + anon_sym_AMP, + ACTIONS(3811), 1, + anon_sym_PIPE, + ACTIONS(3817), 1, + anon_sym_extends, + ACTIONS(2136), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3517), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2134), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71597] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [76760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 14, + ACTIONS(1240), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134392,16 +145665,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1143), 27, - sym__automatic_semicolon, + ACTIONS(1242), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -134420,43 +145693,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71646] = 10, + anon_sym_implements, + [76810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LT, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - STATE(1684), 1, - sym_type_arguments, - STATE(1863), 1, - sym_arguments, - ACTIONS(2513), 13, + ACTIONS(3809), 1, + anon_sym_AMP, + ACTIONS(3811), 1, + anon_sym_PIPE, + ACTIONS(3817), 1, + anon_sym_extends, + ACTIONS(2156), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(2515), 21, - sym__automatic_semicolon, + ACTIONS(2154), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -134473,36 +145743,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71709] = 6, + anon_sym_implements, + [76866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3366), 1, - anon_sym_LBRACK, - ACTIONS(1829), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3369), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3362), 12, + ACTIONS(1250), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3364), 23, + ACTIONS(1252), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134522,516 +145790,435 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71764] = 27, + anon_sym_implements, + [76916] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2693), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3819), 1, + anon_sym_EQ, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3893), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - STATE(3362), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71861] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [76984] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2693), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3821), 1, + anon_sym_EQ, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3493), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71954] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [77052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(1816), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1814), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1086), 13, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1088), 20, + 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, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3491), 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [77106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 7, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3817), 3, + anon_sym_implements, + ACTIONS(3769), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3821), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3772), 21, + 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72047] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [77158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3823), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3489), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3825), 28, + 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, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72140] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [77208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3827), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3487), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3829), 28, + 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, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72233] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [77258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(625), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3827), 1, - anon_sym_COMMA, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3895), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72328] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [77308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1096), 1, + anon_sym_EQ_GT, + ACTIONS(1094), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3827), 1, - anon_sym_COMMA, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1092), 27, + 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_CARET, - ACTIONS(3897), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72423] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [77360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 3, + ACTIONS(3783), 7, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1815), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1105), 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3777), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1107), 23, - sym__automatic_semicolon, + ACTIONS(3780), 21, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -135050,79 +146237,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72476] = 26, + [77412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3587), 1, - anon_sym_LBRACE, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(1192), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3459), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1194), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72571] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [77462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 14, + ACTIONS(3831), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -135137,16 +146302,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1161), 27, - sym__automatic_semicolon, + ACTIONS(3833), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -135165,10 +146330,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72620] = 3, + anon_sym_implements, + [77512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 14, + ACTIONS(1274), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3841), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3835), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -135183,15 +146360,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1125), 27, - sym__automatic_semicolon, + ACTIONS(3838), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135210,13 +146380,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [72669] = 4, + [77566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, - sym__automatic_semicolon, - ACTIONS(1163), 14, + ACTIONS(3843), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -135231,15 +146398,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1161), 26, + ACTIONS(3845), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -135258,106 +146426,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72720] = 23, + anon_sym_implements, + [77616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1282), 2, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + anon_sym_BQUOTE, + ACTIONS(3853), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3847), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3408), 1, - anon_sym_QMARK, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3850), 19, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [77670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1178), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3404), 5, + ACTIONS(1180), 28, 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_QMARK_QMARK, - ACTIONS(3856), 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72809] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [77720] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3625), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3901), 1, + ACTIONS(3855), 1, + anon_sym_LPAREN, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, anon_sym_LT, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, + ACTIONS(3864), 1, + anon_sym_QMARK, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3408), 13, + ACTIONS(625), 12, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -135365,110 +146560,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 15, + ACTIONS(637), 19, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + 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_LBRACE_PIPE, - [72880] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3623), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, + [77790] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3809), 1, + anon_sym_AMP, + ACTIONS(3811), 1, + anon_sym_PIPE, + ACTIONS(3817), 1, + anon_sym_extends, + ACTIONS(3867), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 8, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 12, + ACTIONS(3869), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [72957] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [77846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3871), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -135479,11 +146648,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 17, + ACTIONS(3873), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -135497,415 +146673,338 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73026] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [77896] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3904), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3755), 1, + anon_sym_QMARK, + ACTIONS(3875), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3817), 3, + ACTIONS(3750), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(625), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3408), 9, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [77968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1140), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 13, + ACTIONS(1142), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73101] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3878), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3408), 2, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 7, + ACTIONS(3880), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [73186] = 19, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1158), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 3, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 8, + ACTIONS(1160), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [73267] = 25, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1130), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1132), 28, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73360] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3619), 1, + ACTIONS(3888), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3882), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 4, - anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 7, + ACTIONS(3885), 21, anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [73441] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, anon_sym_LPAREN, - ACTIONS(2843), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3623), 1, - anon_sym_LT, - ACTIONS(3625), 1, anon_sym_QMARK_DOT, - ACTIONS(3629), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_AMP, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 3, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [73526] = 12, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78220] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3907), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3766), 1, + anon_sym_QMARK, + ACTIONS(3890), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 13, + ACTIONS(3761), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(625), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -135913,10 +147012,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 17, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -135930,147 +147027,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [73593] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [78292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3899), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3893), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3495), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3896), 21, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73686] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3867), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3477), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3869), 28, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73779] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 14, + ACTIONS(3901), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136085,16 +147142,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1275), 27, - sym__automatic_semicolon, + ACTIONS(3903), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -136113,172 +147170,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73828] = 25, + anon_sym_implements, + [78444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3905), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3461), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3907), 28, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73921] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3909), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3459), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3911), 28, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74014] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3910), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [78544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -136289,297 +147283,297 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 16, + ACTIONS(3915), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_implements, - [74085] = 17, + [78594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3763), 1, - anon_sym_LT, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3777), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3759), 3, + ACTIONS(3923), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3917), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 7, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 13, + ACTIONS(3920), 21, 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_implements, - [74162] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1186), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3777), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 3, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_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(3404), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(890), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(888), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + 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_implements, - [74243] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78746] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3625), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3901), 1, - anon_sym_LT, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3647), 2, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, + ACTIONS(3925), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 10, - anon_sym_LBRACE, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 12, + ACTIONS(3927), 23, 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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [74318] = 21, + anon_sym_BQUOTE, + anon_sym_implements, + [78806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1306), 2, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + anon_sym_BQUOTE, + ACTIONS(3935), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3929), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, - anon_sym_AMP, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3408), 2, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3932), 19, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 7, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_implements, - [74403] = 13, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [78860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(1302), 2, anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3901), 1, - anon_sym_LT, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 13, - anon_sym_STAR, + anon_sym_BQUOTE, + ACTIONS(3888), 7, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3882), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -136590,9 +147584,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 16, + ACTIONS(3885), 19, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -136606,140 +147602,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [74472] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [78914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1290), 2, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3910), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3759), 3, + anon_sym_BQUOTE, + ACTIONS(3899), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3893), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 9, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 13, + ACTIONS(3896), 19, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [74547] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [78968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(1266), 2, anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3619), 1, + anon_sym_BQUOTE, + ACTIONS(3923), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3917), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3408), 2, - anon_sym_LBRACE, - anon_sym_QMARK, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3920), 19, + 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, - ACTIONS(3404), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74636] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - sym_regex_flags, - ACTIONS(3913), 16, + ACTIONS(3937), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -136753,8 +147720,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3915), 24, + ACTIONS(3939), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -136776,109 +147744,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74687] = 27, + anon_sym_implements, + [79072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3941), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3919), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - STATE(3392), 1, - aux_sym_array_repeat1, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3943), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74784] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(3634), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3636), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3825), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + anon_sym_BQUOTE, + [79172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 15, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -136889,50 +147862,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 16, + ACTIONS(3457), 27, + sym__automatic_semicolon, 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74855] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [79222] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3910), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + ACTIONS(2774), 1, + anon_sym_LPAREN, + ACTIONS(2777), 1, + anon_sym_BQUOTE, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3408), 12, + ACTIONS(625), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -136944,10 +147924,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 17, + ACTIONS(637), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -136961,358 +147943,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [74924] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79288] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3408), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3763), 1, - anon_sym_LT, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 5, + ACTIONS(637), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_implements, - ACTIONS(3781), 5, + 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, - [75013] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3945), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3487), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3781), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75106] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(3947), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, - anon_sym_LT, - ACTIONS(3765), 1, - anon_sym_QMARK, - ACTIONS(3767), 1, anon_sym_AMP_AMP, - ACTIONS(3773), 1, - anon_sym_AMP, - ACTIONS(3775), 1, - anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3489), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75199] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79404] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3765), 1, - anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(623), 2, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3491), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, + ACTIONS(621), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(625), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3771), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75292] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3949), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3493), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3951), 28, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75385] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3921), 1, - anon_sym_LT, - STATE(1662), 1, - sym_type_arguments, - ACTIONS(1972), 13, + ACTIONS(3953), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -137323,14 +148168,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1970), 25, - sym__automatic_semicolon, + ACTIONS(3955), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137348,18 +148196,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [75440] = 5, + anon_sym_implements, + [79572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LT, - STATE(1669), 1, - sym_type_arguments, - ACTIONS(2017), 13, + ACTIONS(3644), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -137370,13 +148216,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2015), 26, + ACTIONS(3646), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137396,239 +148244,125 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [75493] = 25, + [79622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3957), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3517), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3781), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75586] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(3959), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3459), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75679] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3961), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3461), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3963), 28, + 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, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75772] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79722] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3625), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3862), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3965), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 13, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -137640,9 +148374,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 16, + ACTIONS(637), 19, anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -137656,239 +148392,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [75841] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3967), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3519), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3969), 28, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75934] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3521), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3781), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76027] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(621), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, - anon_sym_LT, - ACTIONS(3765), 1, - anon_sym_QMARK, - ACTIONS(3767), 1, anon_sym_AMP_AMP, - ACTIONS(3773), 1, - anon_sym_AMP, - ACTIONS(3775), 1, - anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3541), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76120] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [79894] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3625), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3862), 1, - anon_sym_LT, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, + ACTIONS(3971), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 13, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -137900,9 +148526,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 16, + ACTIONS(637), 19, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -137916,448 +148544,262 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [76189] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(1148), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3927), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1146), 28, + anon_sym_as, anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3512), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, + 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_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76284] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [80012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(3853), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3847), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3929), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3487), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3850), 21, + 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, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76379] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [80064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3973), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3477), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3975), 28, + 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, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76472] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [80114] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(3977), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3931), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3510), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76567] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [80182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(3841), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3835), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3933), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76662] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(3838), 21, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_LT, - ACTIONS(3561), 1, anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_QMARK, - ACTIONS(3577), 1, anon_sym_AMP_AMP, - ACTIONS(3581), 1, - anon_sym_AMP, - ACTIONS(3583), 1, - anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3827), 1, - anon_sym_COMMA, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3935), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76757] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3907), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 12, + anon_sym_BQUOTE, + [80234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -138368,10 +148810,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 17, + ACTIONS(3981), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138385,34 +148835,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_implements, - [76826] = 13, + [80284] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2655), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3907), 1, - anon_sym_LT, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1205), 2, + ACTIONS(3983), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 12, + ACTIONS(625), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -138424,10 +148875,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 17, + ACTIONS(637), 19, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138441,694 +148893,456 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [76895] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [80352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3621), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3512), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3623), 27, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76988] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [80402] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2843), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3985), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3623), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3629), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3663), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3491), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77083] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [80470] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(2794), 1, + anon_sym_LPAREN, + ACTIONS(2797), 1, + anon_sym_BQUOTE, + ACTIONS(3987), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3495), 3, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77176] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [80538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(3935), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3929), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3869), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3569), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77269] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(3932), 21, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2843), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_as, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3623), 1, - anon_sym_LT, - ACTIONS(3625), 1, anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK, - ACTIONS(3629), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_STAR_STAR, - ACTIONS(3645), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3937), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3493), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3631), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3621), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77364] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [80590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1152), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1150), 28, + 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, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 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, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77457] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [80640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1208), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1206), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3869), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77550] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [80690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1230), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3559), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3567), 1, - anon_sym_STAR_STAR, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3577), 1, - anon_sym_AMP_AMP, - ACTIONS(3581), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3585), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3553), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3563), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3869), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3557), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3569), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77643] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [80740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1168), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3763), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3765), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3773), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_STAR_STAR, - ACTIONS(3783), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3769), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3510), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1170), 28, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3771), 3, + 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, - ACTIONS(3761), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77736] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [80790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1120), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3939), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1122), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77830] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [80840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 14, + ACTIONS(1086), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -139142,13 +149356,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 26, + ACTIONS(1088), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139168,154 +149384,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [77878] = 25, + [80890] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(3989), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3541), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + 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, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77970] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [80958] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(3991), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3967), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 19, + 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, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78062] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [81026] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1839), 14, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2711), 1, + anon_sym_QMARK, + ACTIONS(3675), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(2700), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(625), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -139323,15 +149537,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 25, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -139347,13 +149554,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [78112] = 3, + [81098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 14, + ACTIONS(3654), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -139367,13 +149573,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 26, + ACTIONS(3656), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139393,184 +149601,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [78160] = 25, + [81148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1260), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1262), 28, + 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, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78252] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [81198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(623), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(621), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78346] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [81256] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3507), 1, + ACTIONS(2626), 1, anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3503), 12, + ACTIONS(623), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(621), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(625), 10, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(3505), 16, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -139584,78 +149752,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78414] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1186), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3973), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78508] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [81372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 14, + ACTIONS(3993), 1, + sym__automatic_semicolon, + ACTIONS(1084), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139670,12 +149820,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 26, - sym__automatic_semicolon, + ACTIONS(1082), 26, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139696,11 +149847,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [78556] = 3, + [81423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 14, + ACTIONS(1208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139715,12 +149865,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 26, + ACTIONS(1206), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139741,15 +149893,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [78604] = 3, + [81472] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2693), 1, + anon_sym_QMARK_DOT, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3039), 1, + anon_sym_LPAREN, + ACTIONS(3042), 1, + anon_sym_BQUOTE, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -139760,16 +149928,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 26, - sym__automatic_semicolon, + ACTIONS(637), 18, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -139785,17 +149946,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [78652] = 5, + anon_sym_LBRACE_PIPE, + [81537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 1, + ACTIONS(3995), 1, sym__automatic_semicolon, - ACTIONS(1181), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1185), 14, + ACTIONS(1208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139810,10 +149967,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1187), 23, + ACTIONS(1206), 26, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139834,86 +149994,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78704] = 26, + [81588] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2125), 1, + anon_sym_extends, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3638), 2, anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_RBRACK, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(3641), 3, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3975), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(625), 10, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78798] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(1230), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139928,13 +150069,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 22, + ACTIONS(1228), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + 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, @@ -139951,14 +150097,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78854] = 3, + [81708] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1908), 1, + anon_sym_extends, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3648), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(3651), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(625), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81779] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 14, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_QMARK_DOT, + STATE(3465), 1, + sym_call_type_arguments, + ACTIONS(623), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(621), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(625), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, anon_sym_LT, + STATE(1720), 1, + sym_type_arguments, + ACTIONS(2127), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -139969,11 +150230,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 26, + ACTIONS(2125), 26, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -139996,22 +150257,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [78902] = 7, + [81899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(4000), 1, + anon_sym_LT, + ACTIONS(4003), 1, anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(3979), 1, - anon_sym_EQ, - ACTIONS(913), 14, + STATE(1726), 1, + sym_type_arguments, + ACTIONS(2068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -140022,13 +150280,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 22, + ACTIONS(2066), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -140045,415 +150305,427 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78958] = 26, + anon_sym_extends, + [81954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1090), 1, + sym__automatic_semicolon, + ACTIONS(1082), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1086), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3981), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1088), 23, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79052] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [82007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(4009), 1, + sym_regex_flags, + ACTIONS(4005), 16, + anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3983), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(4007), 24, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [79146] = 25, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [82058] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2605), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3521), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79238] = 26, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [82125] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2693), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3985), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - STATE(1205), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [82190] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_QMARK_DOT, + STATE(3465), 1, + sym_call_type_arguments, + STATE(2104), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(623), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(621), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(625), 10, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79332] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [82257] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2605), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_AMP_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(3965), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3519), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, + [82324] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3941), 3, + ACTIONS(1806), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1808), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(625), 10, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3953), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79424] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [82393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1148), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3517), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1146), 27, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79516] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [82442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 14, + ACTIONS(1204), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140468,12 +150740,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 26, + ACTIONS(1202), 27, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -140494,41 +150768,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [79564] = 8, + [82491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1152), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 21, + ACTIONS(1150), 27, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + 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, @@ -140545,571 +150814,381 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [79622] = 26, + [82540] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1908), 1, + anon_sym_extends, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3648), 2, anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_RBRACK, + ACTIONS(3651), 2, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3987), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(625), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79716] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [82611] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(1808), 2, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3989), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(1806), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(625), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79810] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [82680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1096), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1094), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3493), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1092), 24, + anon_sym_as, + 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, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79902] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [82731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(4003), 1, anon_sym_DOT, - ACTIONS(3555), 1, + STATE(1726), 1, + sym_type_arguments, + ACTIONS(2062), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3491), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 25, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79994] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [82784] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2125), 1, + anon_sym_extends, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + ACTIONS(3638), 2, anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_RBRACK, + ACTIONS(3641), 2, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3991), 1, - anon_sym_RBRACE, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3402), 3, + ACTIONS(625), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80088] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [82855] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3489), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3941), 3, + ACTIONS(621), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(623), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(625), 10, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3953), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80180] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [82922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + STATE(1720), 1, + sym_type_arguments, + ACTIONS(1894), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80272] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1892), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2590), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2592), 1, anon_sym_DOT, - ACTIONS(3408), 1, - anon_sym_QMARK, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, anon_sym_QMARK_DOT, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3949), 1, anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3404), 4, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80360] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3993), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + anon_sym_BQUOTE, + anon_sym_extends, + [82973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -141120,10 +151199,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 16, + ACTIONS(1306), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + 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, @@ -141137,136 +151222,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80428] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3993), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [83021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 9, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 12, + ACTIONS(1298), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + 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, - [80502] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [83069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1264), 1, + sym__automatic_semicolon, + ACTIONS(1256), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1260), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3996), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1262), 23, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80596] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [83121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 14, + ACTIONS(1878), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141281,11 +151336,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1305), 26, + ACTIONS(1876), 26, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -141308,358 +151363,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [80644] = 21, + [83169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1304), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3408), 2, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 6, + ACTIONS(1302), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [80728] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3998), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80822] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [83217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3945), 1, + ACTIONS(4011), 1, anon_sym_LT, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - STATE(3106), 1, + ACTIONS(4014), 1, + anon_sym_DOT, + STATE(2000), 1, sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3941), 3, + ACTIONS(2068), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3404), 7, - sym__automatic_semicolon, + ACTIONS(2066), 23, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [80902] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + anon_sym_LBRACK, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4000), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80996] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [83271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3408), 7, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3404), 12, + ACTIONS(1266), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + 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, - [81072] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [83319] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(4016), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3993), 1, + ACTIONS(4019), 1, + anon_sym_COLON, + ACTIONS(4021), 2, anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3408), 12, + anon_sym_QMARK, + ACTIONS(3658), 13, anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -141667,26 +151525,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 15, + ACTIONS(3457), 23, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81142] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [83373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 14, + ACTIONS(1114), 1, + sym__automatic_semicolon, + ACTIONS(1106), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1110), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141701,11 +151572,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1313), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1112), 23, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -141727,90 +151596,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [81190] = 25, + [83425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1824), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3459), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81282] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, - anon_sym_LT, - ACTIONS(4005), 1, - anon_sym_DOT, - STATE(1837), 1, - sym_type_arguments, - ACTIONS(1972), 14, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, @@ -141819,11 +151614,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1970), 23, + ACTIONS(1822), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141842,154 +151641,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [81336] = 25, + [83473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1828), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3461), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81428] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1826), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81522] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [83521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, - anon_sym_LT, - STATE(1810), 1, - sym_type_arguments, - ACTIONS(2017), 14, + ACTIONS(1832), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -142000,10 +151704,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2015), 24, + ACTIONS(1830), 26, + sym__automatic_semicolon, 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, @@ -142024,41 +151731,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [81574] = 8, + [83569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2118), 1, anon_sym_DOT, - ACTIONS(2015), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3482), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1776), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 21, + ACTIONS(1774), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -142075,40 +151776,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [81632] = 8, + anon_sym_extends, + [83619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(1883), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3474), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1312), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 21, + ACTIONS(1310), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -142125,23 +151821,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [81690] = 6, + anon_sym_extends, + [83667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4015), 1, - anon_sym_COLON, - ACTIONS(4017), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3384), 13, - anon_sym_STAR, + ACTIONS(1086), 1, anon_sym_EQ, + ACTIONS(3993), 1, + sym__automatic_semicolon, + ACTIONS(1084), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -142149,10 +151844,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3203), 23, - sym__automatic_semicolon, + ACTIONS(1082), 24, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -142173,10 +151869,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [81744] = 3, + [83719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 14, + ACTIONS(1836), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142191,11 +151887,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1317), 26, + ACTIONS(1834), 26, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -142218,77 +151914,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [81792] = 25, + [83767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1172), 1, + sym__automatic_semicolon, + ACTIONS(1164), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1168), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4020), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1170), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, + 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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81884] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [83819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 14, + ACTIONS(1840), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142303,11 +151979,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1321), 26, + ACTIONS(1838), 26, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -142330,15 +152006,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [81932] = 4, + [83867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1327), 15, + ACTIONS(4024), 1, + sym_regex_flags, + ACTIONS(4005), 16, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142352,10 +152027,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 23, - anon_sym_as, + anon_sym_instanceof, + ACTIONS(4007), 23, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142371,15 +152049,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [81982] = 3, + [83917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 14, + ACTIONS(1220), 1, + sym__automatic_semicolon, + ACTIONS(1212), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1216), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142394,11 +152075,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1309), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1218), 23, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -142420,18 +152099,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [82030] = 5, + [83969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1813), 3, + ACTIONS(1850), 1, + anon_sym_extends, + ACTIONS(3789), 2, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1105), 13, + ACTIONS(3792), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3660), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -142445,7 +152124,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 22, + ACTIONS(3662), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -142468,150 +152147,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [82082] = 26, + [84023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(4026), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + STATE(1969), 1, + sym_type_arguments, + ACTIONS(2127), 14, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4022), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82176] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(2125), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3477), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82268] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [84075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, - sym__automatic_semicolon, - ACTIONS(1191), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1195), 14, + ACTIONS(1848), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142626,9 +152212,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1197), 23, + ACTIONS(1846), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -142650,16 +152238,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [82320] = 5, + anon_sym_extends, + [84123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1119), 1, - sym__automatic_semicolon, - ACTIONS(1111), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1115), 14, + ACTIONS(4014), 1, + anon_sym_DOT, + STATE(2000), 1, + sym_type_arguments, + ACTIONS(2062), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142673,13 +152262,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1117), 23, + ACTIONS(2060), 23, 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, @@ -142697,11 +152284,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [82372] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [84175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 14, + STATE(1969), 1, + sym_type_arguments, + ACTIONS(1894), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142715,13 +152307,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 26, - sym__automatic_semicolon, + ACTIONS(1892), 24, 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, @@ -142742,79 +152331,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82420] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3495), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82512] = 4, + anon_sym_LBRACE_PIPE, + [84225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, - anon_sym_DOT, - ACTIONS(911), 14, + ACTIONS(1288), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142829,14 +152350,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(909), 25, + ACTIONS(1286), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142855,16 +152377,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82562] = 6, + [84273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(911), 14, + ACTIONS(1792), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142879,13 +152395,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(909), 23, + ACTIONS(1790), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -142903,10 +152422,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82616] = 3, + [84321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 14, + ACTIONS(1894), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142921,7 +152440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(909), 26, + ACTIONS(1892), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -142948,10 +152467,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82664] = 3, + [84369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 14, + ACTIONS(1272), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142966,11 +152485,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 26, + ACTIONS(1270), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -142993,13 +152512,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82712] = 4, + [84417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, + ACTIONS(1816), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1814), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(1873), 14, + anon_sym_extends, + ACTIONS(1086), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -143007,19 +152532,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1871), 25, - sym__automatic_semicolon, + ACTIONS(1088), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -143038,11 +152559,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [82762] = 3, + [84469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 14, + ACTIONS(1898), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143057,7 +152577,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 26, + ACTIONS(1896), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143084,10 +152604,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82810] = 3, + [84517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 14, + ACTIONS(1902), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143102,7 +152622,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 26, + ACTIONS(1900), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143129,10 +152649,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82858] = 3, + [84565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 14, + ACTIONS(1788), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143147,7 +152667,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1863), 26, + ACTIONS(1786), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143174,10 +152694,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82906] = 3, + [84613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 14, + ACTIONS(1808), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143192,7 +152712,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 26, + ACTIONS(1806), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143219,10 +152739,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [82954] = 3, + [84661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 14, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_extends, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143231,13 +152757,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1859), 26, + ACTIONS(3869), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143263,11 +152787,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [83002] = 3, + [84715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 14, + ACTIONS(1796), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143282,7 +152805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1851), 26, + ACTIONS(1794), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143309,78 +152832,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [83050] = 26, + [84763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1882), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4026), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1880), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83144] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [84811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 14, + ACTIONS(1284), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143395,7 +152895,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1283), 26, + ACTIONS(1282), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -143422,14 +152922,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [83192] = 3, + [84859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 14, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(890), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -143440,7 +152941,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 26, + ACTIONS(888), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143467,78 +152968,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [83240] = 26, + [84909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1276), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4028), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1274), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83334] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [84957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 14, + ACTIONS(1800), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143553,7 +153031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 26, + ACTIONS(1798), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143580,212 +153058,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [83382] = 25, + [85005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1804), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83474] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1802), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2590), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2592), 1, anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4030), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83566] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85053] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2605), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + STATE(3508), 1, + sym_call_type_arguments, + STATE(1503), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4032), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83660] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [85117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1303), 14, + ACTIONS(1890), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143800,11 +153174,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1301), 26, + ACTIONS(1888), 26, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -143827,109 +153201,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [83708] = 26, + [85165] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1244), 1, + sym__automatic_semicolon, + ACTIONS(1236), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1240), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4034), 1, - anon_sym_RBRACE, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1242), 23, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83802] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [85217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - anon_sym_extends, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(3479), 1, - anon_sym_COMMA, - ACTIONS(3482), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1812), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 21, + ACTIONS(1810), 26, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -143946,13 +153292,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [83862] = 4, + anon_sym_extends, + [85265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(913), 14, + ACTIONS(1862), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143967,10 +153311,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 24, + ACTIONS(1860), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -143992,41 +153337,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [83912] = 9, + anon_sym_extends, + [85313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, - anon_sym_extends, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(3471), 1, - anon_sym_COMMA, - ACTIONS(3474), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1086), 1, + anon_sym_EQ, + ACTIONS(4035), 1, + sym__automatic_semicolon, + ACTIONS(1084), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 21, - sym__automatic_semicolon, + ACTIONS(1082), 23, anon_sym_as, - anon_sym_RBRACE, + 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, @@ -144043,16 +153384,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [83972] = 6, + anon_sym_LBRACE_PIPE, + [85365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, - anon_sym_AMP, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4040), 1, - anon_sym_extends, - ACTIONS(3446), 12, + ACTIONS(1124), 1, + sym__automatic_semicolon, + ACTIONS(1116), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1120), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144061,15 +153402,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3448), 25, - sym__automatic_semicolon, + ACTIONS(1122), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -144091,10 +153432,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [84026] = 3, + [85417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 14, + ACTIONS(1254), 1, + sym__automatic_semicolon, + ACTIONS(1246), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1250), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144109,11 +153455,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1297), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1252), 23, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -144135,171 +153479,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [84074] = 26, + [85469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(1822), 2, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_extends, + ACTIONS(1824), 2, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4042), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, + ACTIONS(1866), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84168] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1864), 24, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3356), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4044), 1, - anon_sym_RBRACE, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84262] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(4046), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 12, + anon_sym_BQUOTE, + [85521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -144310,10 +153544,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 16, + ACTIONS(1417), 26, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144327,34 +153567,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84330] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(4046), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 12, + anon_sym_BQUOTE, + anon_sym_extends, + [85569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -144365,10 +153589,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 16, + ACTIONS(1908), 26, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144382,14 +153612,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84398] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - STATE(1917), 1, - sym_arguments, - ACTIONS(3463), 14, + ACTIONS(1886), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144404,11 +153634,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3465), 24, + ACTIONS(1884), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144429,15 +153660,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [84450] = 5, + anon_sym_extends, + [85665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, - sym__automatic_semicolon, - ACTIONS(1129), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1133), 14, + ACTIONS(1820), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144452,9 +153679,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 23, + ACTIONS(1818), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -144476,81 +153705,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [84502] = 25, + anon_sym_extends, + [85713] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3512), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3666), 1, + anon_sym_EQ, + ACTIONS(3701), 1, + anon_sym_in, + ACTIONS(3704), 1, + anon_sym_of, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, sym_template_string, sym_arguments, - ACTIONS(3941), 3, + ACTIONS(625), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3953), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + 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, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84594] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [85783] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 14, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_QMARK_DOT, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + anon_sym_EQ, + ACTIONS(3706), 1, + anon_sym_in, + ACTIONS(3709), 1, + anon_sym_of, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -144561,16 +153801,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1293), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - 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, @@ -144586,18 +153818,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [84642] = 5, + [85853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 1, - anon_sym_EQ, - ACTIONS(4049), 1, - sym__automatic_semicolon, - ACTIONS(1103), 15, + ACTIONS(4037), 1, + anon_sym_AMP, + ACTIONS(4039), 1, + anon_sym_PIPE, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(3867), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -144605,17 +153836,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1101), 23, + ACTIONS(3869), 25, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -144633,97 +153865,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [84694] = 25, + anon_sym_implements, + [85907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(4043), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1856), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3510), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1854), 25, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84786] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2493), 1, - anon_sym_LT, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - STATE(1913), 1, - sym_type_arguments, - STATE(1931), 1, - sym_arguments, - ACTIONS(2513), 14, + ACTIONS(1094), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -144734,9 +153930,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2515), 19, + ACTIONS(1092), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + 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, @@ -144753,15 +153956,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [84848] = 5, + anon_sym_extends, + [86005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - STATE(1918), 1, - sym_arguments, - ACTIONS(3467), 14, + ACTIONS(1844), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144776,11 +153975,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 24, + ACTIONS(1842), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144801,33 +154001,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [84900] = 12, + anon_sym_extends, + [86053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(4046), 1, - anon_sym_LT, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3503), 13, + ACTIONS(1196), 1, + sym__automatic_semicolon, + ACTIONS(1188), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1192), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -144838,10 +154025,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 16, - sym__automatic_semicolon, + ACTIONS(1194), 23, 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, @@ -144855,44 +154046,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84966] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [86105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(4043), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3074), 1, - anon_sym_QMARK, - ACTIONS(4051), 1, - anon_sym_EQ, - ACTIONS(4053), 1, - anon_sym_RPAREN, - ACTIONS(3065), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3482), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1914), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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(927), 18, + ACTIONS(1912), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144909,14 +154094,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85032] = 5, + anon_sym_extends, + [86155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 1, - anon_sym_EQ, - ACTIONS(3887), 1, - sym__automatic_semicolon, - ACTIONS(1103), 14, + ACTIONS(1906), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144931,7 +154113,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1101), 24, + ACTIONS(1904), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -144956,40 +154139,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85084] = 8, + anon_sym_extends, + [86203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(1863), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1865), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1852), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 21, + ACTIONS(1850), 26, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -145006,83 +154184,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85142] = 25, + anon_sym_extends, + [86251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(1296), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3947), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3957), 1, anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1294), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 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, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85234] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [86299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, - anon_sym_DOT, - STATE(1837), 1, - sym_type_arguments, - ACTIONS(1981), 15, + ACTIONS(623), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145096,11 +154248,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1979), 23, + ACTIONS(621), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145119,15 +154275,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [85286] = 5, + [86347] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4038), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(2056), 12, + ACTIONS(2152), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145140,7 +154295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2054), 26, + ACTIONS(2150), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -145167,10 +154322,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [85338] = 3, + [86399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 14, + ACTIONS(623), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145185,7 +154340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1867), 26, + ACTIONS(621), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -145212,10 +154367,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [85386] = 3, + [86447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 14, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_extends, + ACTIONS(2136), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145224,13 +154385,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1757), 26, + ACTIONS(2134), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -145256,11 +154415,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85434] = 3, + [86501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 14, + ACTIONS(1182), 1, + sym__automatic_semicolon, + ACTIONS(1174), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1178), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145275,11 +154438,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 26, - sym__automatic_semicolon, + ACTIONS(1180), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -145301,78 +154462,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85482] = 25, + [86553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP_AMP, - ACTIONS(3955), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_STAR_STAR, - ACTIONS(3965), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3571), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3951), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3959), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4059), 2, + ACTIONS(1144), 1, sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3953), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3943), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3963), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 14, + ACTIONS(1136), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1140), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145387,11 +154485,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1785), 26, - sym__automatic_semicolon, + ACTIONS(1142), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -145413,83 +154509,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85622] = 25, + [86605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1096), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1094), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3743), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1092), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_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, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85714] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [86655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, - sym__automatic_semicolon, - ACTIONS(1233), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1237), 14, + ACTIONS(1870), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145504,9 +154573,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1239), 23, + ACTIONS(1868), 26, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -145528,14 +154599,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85766] = 4, + anon_sym_extends, + [86703] = 3, ACTIONS(3), 1, sym_comment, - STATE(1810), 1, - sym_type_arguments, - ACTIONS(1845), 15, + ACTIONS(1816), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145549,10 +154618,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 24, + ACTIONS(1814), 26, + sym__automatic_semicolon, 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, @@ -145573,83 +154645,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [85816] = 25, + [86751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(4037), 1, + anon_sym_AMP, + ACTIONS(4039), 1, + anon_sym_PIPE, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(2156), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3657), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2154), 25, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85908] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [86805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 1, - sym__automatic_semicolon, - ACTIONS(1171), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1175), 14, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_extends, + ACTIONS(2156), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145658,15 +154711,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1177), 23, + ACTIONS(2154), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -145688,145 +154741,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85960] = 26, + [86859] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_in, + ACTIONS(3567), 1, + anon_sym_of, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4061), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86054] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [86929] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1970), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2591), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3428), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3595), 1, + anon_sym_in, + ACTIONS(3598), 1, + anon_sym_of, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1406), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3728), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86146] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [86999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 14, + ACTIONS(4037), 1, + anon_sym_AMP, + ACTIONS(4039), 1, + anon_sym_PIPE, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(2136), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145835,20 +154871,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1769), 26, - sym__automatic_semicolon, + ACTIONS(2134), 25, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -145866,84 +154900,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [86194] = 26, + anon_sym_implements, + [87053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(4037), 1, + anon_sym_AMP, + ACTIONS(4039), 1, + anon_sym_PIPE, + ACTIONS(2152), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4063), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2150), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86288] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + anon_sym_extends, + [87105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 1, - sym_regex_flags, - ACTIONS(3913), 16, + ACTIONS(1162), 1, + sym__automatic_semicolon, + ACTIONS(1154), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1158), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145957,11 +154971,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3915), 23, - sym__automatic_semicolon, + ACTIONS(1160), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -145979,18 +154991,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86338] = 5, + [87157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1261), 1, + ACTIONS(1134), 1, sym__automatic_semicolon, - ACTIONS(1253), 2, + ACTIONS(1126), 2, anon_sym_else, anon_sym_while, - ACTIONS(1257), 14, + ACTIONS(1130), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146005,7 +155018,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 23, + ACTIONS(1132), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -146029,16 +155042,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86390] = 6, + [87209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, - anon_sym_AMP, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4040), 1, - anon_sym_extends, - ACTIONS(2052), 12, + ACTIONS(1292), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146047,15 +155054,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(2050), 25, + ACTIONS(1290), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -146077,36 +155086,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86444] = 6, + anon_sym_extends, + [87257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3366), 1, - anon_sym_LBRACK, - ACTIONS(1829), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3369), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3362), 12, + ACTIONS(1874), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3364), 22, + ACTIONS(1872), 26, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -146125,10 +155131,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86498] = 3, + anon_sym_extends, + [87305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 14, + ACTIONS(1280), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146143,11 +155150,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 26, + ACTIONS(1278), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -146170,16 +155177,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [86546] = 5, + [87353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1823), 12, + ACTIONS(1260), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146188,17 +155189,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1821), 24, + ACTIONS(1262), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -146217,15 +155221,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86598] = 4, + [87400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - anon_sym_LT, - ACTIONS(951), 13, + ACTIONS(1266), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3923), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3917), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -146236,13 +155247,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 26, - sym__automatic_semicolon, + ACTIONS(3920), 19, 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, @@ -146261,224 +155267,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [86648] = 26, + [87451] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4047), 1, + anon_sym_RBRACE, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1883), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [87534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3410), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4067), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1306), 24, + anon_sym_as, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86742] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [87581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(1304), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4069), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86836] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4071), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 1, - sym__automatic_semicolon, - ACTIONS(1151), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1155), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -146490,11 +155392,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 23, + ACTIONS(1302), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146514,11 +155415,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86982] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [87628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 14, + ACTIONS(1300), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146532,13 +155436,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 26, - sym__automatic_semicolon, + ACTIONS(1298), 24, 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, @@ -146559,10 +155460,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [87030] = 3, + anon_sym_LBRACE_PIPE, + [87675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(3823), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146577,7 +155479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 26, + ACTIONS(3825), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -146603,12 +155505,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [87078] = 3, + [87722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 14, + ACTIONS(1292), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146622,13 +155524,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 26, - sym__automatic_semicolon, + ACTIONS(1290), 24, 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, @@ -146649,81 +155548,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [87126] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4073), 1, - anon_sym_RPAREN, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87220] = 4, + anon_sym_LBRACE_PIPE, + [87769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, - anon_sym_DOT, - ACTIONS(1755), 14, + ACTIONS(1268), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146737,14 +155568,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 25, - sym__automatic_semicolon, + ACTIONS(1266), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146763,16 +155592,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [87270] = 6, + anon_sym_LBRACE_PIPE, + [87816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, - anon_sym_AMP, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4040), 1, - anon_sym_extends, - ACTIONS(2046), 12, + ACTIONS(3827), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146781,11 +155605,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(2044), 25, + ACTIONS(3829), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -146811,14 +155637,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87324] = 3, + [87863] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 14, + ACTIONS(633), 1, + anon_sym_QMARK_DOT, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2667), 1, + anon_sym_LPAREN, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3480), 1, + sym_call_type_arguments, + STATE(121), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -146829,16 +155673,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 26, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -146854,13 +155690,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [87372] = 3, + [87928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(1284), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146874,13 +155709,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1781), 26, - sym__automatic_semicolon, + ACTIONS(1282), 24, 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, @@ -146901,11 +155733,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [87420] = 3, + anon_sym_LBRACE_PIPE, + [87975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 14, + ACTIONS(1280), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146919,13 +155753,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 26, - sym__automatic_semicolon, + ACTIONS(1278), 24, 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, @@ -146946,83 +155777,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [87468] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3410), 1, - anon_sym_LT, - ACTIONS(3416), 1, - anon_sym_STAR_STAR, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_QMARK, - ACTIONS(3430), 1, - anon_sym_AMP_AMP, - ACTIONS(3434), 1, - anon_sym_AMP, - ACTIONS(3436), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4075), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3402), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3426), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3438), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87562] = 5, + anon_sym_LBRACE_PIPE, + [88022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - sym__automatic_semicolon, - ACTIONS(1205), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1209), 14, + ACTIONS(1250), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147037,9 +155796,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1211), 23, + ACTIONS(1252), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -147061,15 +155822,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87614] = 5, + [88069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, - sym__automatic_semicolon, - ACTIONS(1215), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1219), 14, + ACTIONS(1240), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147084,9 +155840,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1221), 23, + ACTIONS(1242), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -147108,25 +155866,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87666] = 8, + [88116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2625), 1, - anon_sym_QMARK_DOT, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(909), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(913), 12, + ACTIONS(1110), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147135,13 +155878,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 18, + ACTIONS(1112), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147158,11 +155910,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87724] = 3, + [88163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 14, + ACTIONS(1276), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147176,13 +155929,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 26, - sym__automatic_semicolon, + ACTIONS(1274), 24, 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, @@ -147203,34 +155953,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [87772] = 5, + anon_sym_LBRACE_PIPE, + [88210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1815), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1105), 13, + ACTIONS(1216), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1107), 21, + ACTIONS(1218), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -147249,16 +155998,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [87824] = 5, + [88257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 1, - sym__automatic_semicolon, - ACTIONS(1263), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1267), 14, + ACTIONS(3831), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147273,9 +156016,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 23, + ACTIONS(3833), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -147297,15 +156042,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87876] = 5, + [88304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1274), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3841), 4, sym__automatic_semicolon, - ACTIONS(1243), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1247), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3835), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147320,11 +156068,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1249), 23, + ACTIONS(3838), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147343,21 +156088,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [87928] = 6, + [88355] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_extends, - ACTIONS(3366), 2, - anon_sym_RPAREN, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_RBRACE, + ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(3369), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3362), 13, + ACTIONS(4067), 1, + anon_sym_async, + ACTIONS(4069), 1, + sym_number, + ACTIONS(4071), 1, + anon_sym_static, + ACTIONS(4077), 1, + sym_readonly, + STATE(2519), 1, + sym_accessibility_modifier, + STATE(3704), 1, + aux_sym_object_repeat1, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(4073), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4075), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2896), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3748), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4061), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147365,15 +156163,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3364), 22, + ACTIONS(3845), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -147392,24 +156195,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87982] = 9, + [88487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_EQ, - ACTIONS(4077), 1, - anon_sym_in, - ACTIONS(4080), 1, - anon_sym_of, - ACTIONS(913), 13, + ACTIONS(3805), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -147421,12 +156213,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 21, + ACTIONS(3807), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147443,24 +156239,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88042] = 9, + [88534] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(2596), 1, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, anon_sym_QMARK_DOT, - ACTIONS(3979), 1, - anon_sym_EQ, - ACTIONS(4082), 1, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, anon_sym_in, - ACTIONS(4085), 1, - anon_sym_of, - ACTIONS(913), 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4083), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [88615] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3853), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3847), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -147472,12 +156326,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 21, - sym__automatic_semicolon, + ACTIONS(3850), 19, 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, @@ -147493,34 +156346,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [88102] = 6, + [88666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1850), 1, anon_sym_extends, - ACTIONS(3366), 2, + ACTIONS(3789), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3369), 3, - anon_sym_GT, + anon_sym_RBRACK, + ACTIONS(3792), 3, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3362), 13, + ACTIONS(3660), 12, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3364), 21, + ACTIONS(3662), 20, anon_sym_as, anon_sym_LPAREN, anon_sym_DOT, @@ -147541,33 +156393,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [88156] = 3, + [88719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 14, + ACTIONS(1816), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1814), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1086), 12, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1855), 26, - sym__automatic_semicolon, + ACTIONS(1088), 20, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -147586,11 +156439,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [88204] = 3, + [88770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 14, + ACTIONS(3801), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147605,7 +156457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 26, + ACTIONS(3803), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -147631,40 +156483,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [88252] = 8, + [88817] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(2596), 1, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, anon_sym_QMARK_DOT, - ACTIONS(2015), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3482), 3, - anon_sym_GT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, anon_sym_AMP, + ACTIONS(4101), 1, anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4113), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [88898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3797), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 20, + ACTIONS(3799), 25, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147681,19 +156588,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88309] = 7, + [88945] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + ACTIONS(4115), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1845), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [89028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1816), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1814), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1086), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147701,18 +156671,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 21, - sym__automatic_semicolon, + ACTIONS(1088), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147729,58 +156696,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88364] = 6, + [89079] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2596), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(913), 14, - anon_sym_STAR, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, anon_sym_AMP, + ACTIONS(4135), 1, anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 22, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4121), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - [88417] = 3, + [89160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 14, + ACTIONS(3654), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147794,13 +156777,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 25, - sym__automatic_semicolon, + ACTIONS(3656), 23, 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, @@ -147820,116 +156800,139 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88464] = 7, + anon_sym_LBRACE_PIPE, + [89207] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(4089), 1, - anon_sym_EQ, - ACTIONS(913), 14, - anon_sym_STAR, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, anon_sym_AMP, + ACTIONS(4135), 1, anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 21, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4145), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_implements, - [88519] = 9, + [89288] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - anon_sym_extends, - ACTIONS(2843), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2849), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3479), 1, - anon_sym_COMMA, - ACTIONS(3482), 3, - anon_sym_GT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, anon_sym_AMP, + ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(913), 12, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 19, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4147), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [88578] = 4, + [89369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 1, - sym_regex_flags, - ACTIONS(3913), 17, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(890), 14, anon_sym_STAR, - anon_sym_as, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -147940,8 +156943,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3915), 21, + ACTIONS(888), 24, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -147959,15 +156962,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [88627] = 3, + [89418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 14, + ACTIONS(3644), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147981,13 +156988,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3677), 25, - sym__automatic_semicolon, + ACTIONS(3646), 23, 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, @@ -148007,11 +157011,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88674] = 3, + anon_sym_LBRACE_PIPE, + [89465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 15, + ACTIONS(3634), 16, anon_sym_STAR, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -148026,7 +157032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 24, + ACTIONS(3636), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -148049,59 +157055,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [88721] = 6, + [89512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, - anon_sym_AMP, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4097), 1, - anon_sym_extends, - ACTIONS(2052), 13, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(2050), 23, + ACTIONS(3927), 19, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [88774] = 3, + [89571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 15, + ACTIONS(2118), 1, + anon_sym_DOT, + ACTIONS(1776), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -148117,12 +157127,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 24, + ACTIONS(1774), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148142,56 +157151,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [88821] = 5, + [89620] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, - anon_sym_AMP, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(2056), 13, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_BQUOTE, + [89685] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3925), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2054), 24, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 11, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [89754] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3927), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [88872] = 3, + [89827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 14, + ACTIONS(3901), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148206,7 +157334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3673), 25, + ACTIONS(3903), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -148232,39 +157360,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88919] = 9, + [89874] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, - anon_sym_extends, - ACTIONS(2843), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2849), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3471), 1, - anon_sym_COMMA, - ACTIONS(3474), 3, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, + anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(913), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_BQUOTE, + [89937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3905), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 19, + ACTIONS(3907), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148281,23 +157456,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [88978] = 7, + [89984] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3439), 1, + anon_sym_QMARK_DOT, + ACTIONS(3685), 1, anon_sym_EQ, - ACTIONS(913), 14, + STATE(3514), 1, + sym_call_type_arguments, + STATE(1599), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -148308,11 +157492,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 21, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148328,16 +157509,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [89033] = 3, + [90049] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3679), 14, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3439), 1, + anon_sym_QMARK_DOT, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3514), 1, + sym_call_type_arguments, + STATE(1599), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -148348,16 +157545,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3681), 25, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148373,73 +157562,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [89080] = 21, + [90114] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(3925), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, anon_sym_STAR, - ACTIONS(4107), 1, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 8, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4109), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [90191] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4112), 1, - anon_sym_async, - ACTIONS(4115), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4118), 1, - anon_sym_DQUOTE, - ACTIONS(4121), 1, - anon_sym_SQUOTE, - ACTIONS(4124), 1, - sym_number, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4149), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [90272] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, ACTIONS(4127), 1, - anon_sym_AT, - ACTIONS(4130), 1, - anon_sym_static, + anon_sym_AMP_AMP, ACTIONS(4133), 1, - anon_sym_abstract, - ACTIONS(4142), 1, - sym_readonly, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4136), 2, - anon_sym_get, - anon_sym_set, - STATE(1763), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4139), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4101), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [89163] = 3, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4151), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [90353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 14, + ACTIONS(3785), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148454,7 +157761,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 25, + ACTIONS(3787), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -148480,22 +157787,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [89210] = 8, + [90400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(1863), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(1865), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 12, + ACTIONS(3878), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148504,15 +157799,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 20, + ACTIONS(3880), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148529,54 +157831,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [89267] = 3, + [90447] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 14, - anon_sym_STAR, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, anon_sym_AMP, + ACTIONS(4101), 1, anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3732), 25, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3880), 6, sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [90528] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4153), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - [89314] = 3, + [90609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 14, + ACTIONS(3867), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148591,7 +157971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1239), 25, + ACTIONS(3869), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -148617,12 +157997,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [89361] = 3, + [90656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 15, + ACTIONS(1310), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3783), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3777), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -148636,10 +158023,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1139), 24, + ACTIONS(3780), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148658,25 +158043,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [89408] = 8, + [90707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(909), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 12, + ACTIONS(1270), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3775), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3769), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148685,15 +158063,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 20, + ACTIONS(3772), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148709,13 +158089,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [89465] = 3, + [90758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 15, + ACTIONS(3937), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -148729,10 +158107,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1867), 24, + ACTIONS(3939), 25, + sym__automatic_semicolon, 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, @@ -148752,75 +158133,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [89512] = 22, + [90805] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4147), 1, - anon_sym_RBRACE, - ACTIONS(4149), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4153), 1, - sym_number, - ACTIONS(4155), 1, - anon_sym_static, - ACTIONS(4161), 1, - sym_readonly, - STATE(2200), 1, - sym_accessibility_modifier, - STATE(3400), 1, - aux_sym_object_repeat1, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4159), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2575), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3418), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4145), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [89597] = 3, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4155), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [90886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 15, + ACTIONS(4157), 1, + anon_sym_AMP, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(2152), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -148830,13 +158211,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1805), 24, + ACTIONS(2150), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -148861,73 +158240,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [89644] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4165), 1, - anon_sym_RBRACE, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1818), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [89727] = 3, + [90937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 15, + ACTIONS(3658), 16, anon_sym_STAR, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -148942,7 +158260,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1785), 24, + ACTIONS(3457), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -148965,83 +158283,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [89774] = 25, + [90984] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4179), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, sym_template_string, sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 15, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149052,13 +158320,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 24, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -149074,37 +158337,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [89912] = 5, + [91049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1813), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1105), 12, + ACTIONS(1086), 16, anon_sym_STAR, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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(1107), 20, + ACTIONS(1088), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -149123,10 +158380,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [89963] = 3, + anon_sym_LBRACE_PIPE, + [91096] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + ACTIONS(4161), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1883), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [91179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 15, + ACTIONS(1312), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -149142,7 +158462,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 24, + ACTIONS(1310), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -149167,10 +158487,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [90010] = 3, + [91226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 15, + ACTIONS(4163), 1, + sym__automatic_semicolon, + ACTIONS(1208), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -149186,7 +158508,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1165), 24, + ACTIONS(1206), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -149209,23 +158531,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [90057] = 6, + [91275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_extends, - ACTIONS(3369), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3366), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3362), 13, + ACTIONS(3621), 16, anon_sym_STAR, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149233,13 +158546,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3364), 20, + ACTIONS(3623), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -149258,10 +158575,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90110] = 3, + anon_sym_LBRACE_PIPE, + [91322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 14, + ACTIONS(3735), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149276,7 +158594,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 25, + ACTIONS(3737), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -149302,11 +158620,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90157] = 3, + [91369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 14, + ACTIONS(3625), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149320,13 +158640,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1249), 25, - sym__automatic_semicolon, + ACTIONS(3627), 23, 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, @@ -149346,38 +158663,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90204] = 8, + anon_sym_LBRACE_PIPE, + [91416] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2849), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 12, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 19, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -149393,12 +158717,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90261] = 3, + [91481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 14, + ACTIONS(1306), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3935), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149413,13 +158743,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1117), 25, - sym__automatic_semicolon, + ACTIONS(3932), 19, 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, @@ -149438,19 +158763,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [90308] = 6, + [91532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2992), 1, - anon_sym_QMARK_DOT, - ACTIONS(911), 15, + ACTIONS(1302), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3888), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3882), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149464,10 +158789,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(909), 21, + ACTIONS(3885), 19, anon_sym_as, - 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, @@ -149483,13 +158809,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90361] = 3, + [91583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1195), 14, + ACTIONS(1290), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3899), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3893), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149504,13 +158835,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1197), 25, - sym__automatic_semicolon, + ACTIONS(3896), 19, 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, @@ -149529,13 +158855,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [90408] = 3, + [91634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 15, + ACTIONS(3945), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149549,10 +158873,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 24, + ACTIONS(3947), 25, + sym__automatic_semicolon, 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, @@ -149572,65 +158899,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90455] = 5, + [91681] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1823), 13, + ACTIONS(4045), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1821), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + ACTIONS(4165), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1883), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [91764] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, anon_sym_QMARK_DOT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3951), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90506] = 4, + [91845] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(1755), 15, + ACTIONS(3429), 1, + anon_sym_QMARK_DOT, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3459), 1, + sym_call_type_arguments, + STATE(2045), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149641,12 +159058,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 23, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -149662,18 +159075,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90555] = 3, + [91910] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3429), 1, + anon_sym_QMARK_DOT, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3459), 1, + sym_call_type_arguments, + STATE(2045), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149684,13 +159111,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 24, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -149706,15 +159128,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90602] = 3, + [91975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 15, + ACTIONS(3949), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149728,10 +159146,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 24, + ACTIONS(3951), 25, + sym__automatic_semicolon, 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, @@ -149751,18 +159172,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90649] = 4, + [92022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - anon_sym_LT, - ACTIONS(951), 14, + ACTIONS(3715), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149773,10 +159190,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 24, + ACTIONS(3717), 25, + sym__automatic_semicolon, 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, @@ -149796,108 +159216,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90698] = 5, + [92069] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1813), 4, - anon_sym_COMMA, + ACTIONS(2645), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1105), 13, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1107), 20, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2651), 1, anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3717), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_BQUOTE, - [90749] = 8, + [92150] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2849), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(1863), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1865), 3, - anon_sym_GT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, anon_sym_AMP, + ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(913), 12, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 19, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3717), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90806] = 3, + [92231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1267), 14, + ACTIONS(1272), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149911,13 +159357,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 25, - sym__automatic_semicolon, + ACTIONS(1270), 24, 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, @@ -149937,11 +159380,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90853] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [92278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 14, + ACTIONS(3660), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149955,13 +159402,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1221), 25, - sym__automatic_semicolon, + ACTIONS(3662), 23, 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, @@ -149981,10 +159425,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90900] = 3, + anon_sym_LBRACE_PIPE, + [92325] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 14, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149999,16 +159453,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1211), 25, + ACTIONS(3731), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -150022,15 +159473,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90947] = 3, + [92380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 15, - anon_sym_STAR, + ACTIONS(4167), 1, anon_sym_LBRACE, + STATE(2073), 1, + sym_statement_block, + ACTIONS(1100), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150044,7 +159496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 24, + ACTIONS(1098), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -150067,14 +159519,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [90994] = 3, + [92431] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 15, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3880), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [92512] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 1, anon_sym_LBRACE, + ACTIONS(4169), 1, + anon_sym_DOT, + STATE(2073), 1, + sym_statement_block, + ACTIONS(1100), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150088,12 +159605,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 24, + ACTIONS(1098), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150111,20 +159627,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [91041] = 7, + [92565] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3955), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [92646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3953), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150139,12 +159707,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 21, + ACTIONS(3955), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -150161,10 +159733,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91096] = 3, + [92693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 14, + ACTIONS(3957), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150179,7 +159751,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 25, + ACTIONS(3959), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -150205,23 +159777,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91143] = 9, + [92740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_RPAREN, - ACTIONS(3474), 2, + ACTIONS(4171), 1, anon_sym_AMP, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(913), 12, + ACTIONS(4175), 1, + anon_sym_extends, + ACTIONS(2156), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150234,11 +159799,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, + ACTIONS(2154), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -150255,10 +159824,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91202] = 3, + [92793] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + ACTIONS(4177), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1856), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [92876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 14, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_extends, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150267,19 +159904,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3801), 25, - sym__automatic_semicolon, + ACTIONS(3869), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150299,54 +159933,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91249] = 3, + [92929] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 14, - anon_sym_STAR, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, anon_sym_AMP, + ACTIONS(4101), 1, anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3495), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3963), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_BQUOTE, - [91296] = 3, + [93010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 14, + ACTIONS(3961), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150361,7 +160012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3517), 25, + ACTIONS(3963), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -150387,76 +160038,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91343] = 25, + [93057] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(4119), 1, anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + ACTIONS(4125), 1, anon_sym_QMARK, - ACTIONS(3848), 1, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(3852), 1, + ACTIONS(4133), 1, anon_sym_AMP, - ACTIONS(3854), 1, + ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(3858), 1, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, anon_sym_QMARK_QMARK, - ACTIONS(4181), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, + ACTIONS(4129), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3844), 4, + ACTIONS(4123), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91434] = 3, + ACTIONS(3943), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [93138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 15, + ACTIONS(1804), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -150472,7 +160118,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 24, + ACTIONS(1802), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -150497,10 +160143,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [91481] = 3, + [93185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 14, + ACTIONS(3967), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150515,7 +160161,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3709), 25, + ACTIONS(3969), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -150541,13 +160187,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91528] = 3, + [93232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 16, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_extends, + ACTIONS(2136), 12, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150555,16 +160205,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3382), 23, + ACTIONS(2134), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150584,13 +160234,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [91575] = 3, + [93285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 15, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(2152), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150598,16 +160250,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1761), 24, + ACTIONS(2150), 25, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150628,99 +160280,289 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [91622] = 25, + [93336] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(4182), 1, + anon_sym_STAR, + ACTIONS(4185), 1, + anon_sym_RBRACE, + ACTIONS(4187), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(4190), 1, + anon_sym_async, + ACTIONS(4193), 1, + anon_sym_DASH, + ACTIONS(4196), 1, + anon_sym_DQUOTE, + ACTIONS(4199), 1, + anon_sym_SQUOTE, + ACTIONS(4202), 1, + sym_number, + ACTIONS(4205), 1, + anon_sym_AT, + ACTIONS(4208), 1, + anon_sym_static, + ACTIONS(4211), 1, + anon_sym_abstract, + ACTIONS(4220), 1, + sym_readonly, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4214), 2, + anon_sym_get, + anon_sym_set, + STATE(1883), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4217), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4179), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [93419] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(4119), 1, anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + ACTIONS(4125), 1, anon_sym_QMARK, - ACTIONS(3848), 1, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(3852), 1, + ACTIONS(4133), 1, anon_sym_AMP, - ACTIONS(3854), 1, + ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(3858), 1, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, anon_sym_QMARK_QMARK, - ACTIONS(4183), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, + ACTIONS(4129), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3844), 4, + ACTIONS(4123), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91713] = 3, + ACTIONS(3963), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [93500] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, anon_sym_AMP, + ACTIONS(4135), 1, anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1283), 24, - anon_sym_as, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3955), 6, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [93581] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3951), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [93662] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(633), 1, + anon_sym_QMARK_DOT, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2667), 1, + anon_sym_LPAREN, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3480), 1, + sym_call_type_arguments, + STATE(121), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(637), 16, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -150736,16 +160578,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [91760] = 3, + [93727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 16, + ACTIONS(1192), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150759,10 +160596,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3392), 23, + ACTIONS(1194), 25, + sym__automatic_semicolon, 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, @@ -150782,11 +160622,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [91807] = 3, + [93774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 14, + ACTIONS(1178), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150801,7 +160640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3705), 25, + ACTIONS(1180), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -150827,12 +160666,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91854] = 3, + [93821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 15, + ACTIONS(1140), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150846,10 +160684,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 24, + ACTIONS(1142), 25, + sym__automatic_semicolon, 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, @@ -150869,14 +160710,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [91901] = 3, + [93868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 16, + ACTIONS(1800), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -150891,7 +160729,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3396), 23, + ACTIONS(1798), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -150914,13 +160752,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [91948] = 3, + [93915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 15, + ACTIONS(1158), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150934,10 +160772,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1305), 24, + ACTIONS(1160), 25, + sym__automatic_semicolon, 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, @@ -150957,74 +160798,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [91995] = 21, + [93962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - ACTIONS(4185), 1, - anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1763), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 15, + ACTIONS(1094), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151040,7 +160817,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1313), 24, + ACTIONS(1092), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -151065,10 +160842,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [92125] = 3, + [94009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 15, + ACTIONS(1796), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151084,7 +160861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 24, + ACTIONS(1794), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -151109,10 +160886,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [92172] = 3, + [94056] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3927), 20, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [94113] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4121), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [94194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3717), 14, + ACTIONS(1130), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151127,7 +161014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3719), 25, + ACTIONS(1132), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -151153,10 +161040,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [92219] = 3, + [94241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 15, + ACTIONS(1812), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151172,7 +161059,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1781), 24, + ACTIONS(1810), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -151197,10 +161084,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [92266] = 3, + [94288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 15, + ACTIONS(4157), 1, + anon_sym_AMP, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(4223), 1, + anon_sym_extends, + ACTIONS(2156), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151210,13 +161103,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1847), 24, + ACTIONS(2154), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -151239,18 +161130,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [92313] = 6, + [94341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, - anon_sym_AMP, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4097), 1, - anon_sym_extends, - ACTIONS(2046), 13, + ACTIONS(1419), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151260,11 +161144,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(2044), 23, + ACTIONS(1417), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -151287,12 +161173,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [92366] = 3, + [94388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 14, + ACTIONS(1910), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151306,13 +161194,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3701), 25, - sym__automatic_semicolon, + ACTIONS(1908), 24, 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, @@ -151332,10 +161217,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [92413] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [94435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 15, + ACTIONS(4225), 1, + anon_sym_LBRACK, + ACTIONS(1914), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151351,11 +161240,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1317), 24, + ACTIONS(1912), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151376,74 +161264,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [92460] = 21, + [94484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, + ACTIONS(1850), 1, + anon_sym_extends, + ACTIONS(3792), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3789), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - ACTIONS(4187), 1, - anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1763), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1323), 15, + anon_sym_RBRACK, + ACTIONS(3660), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151451,17 +161286,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1321), 24, + ACTIONS(3662), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151480,30 +161311,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [92590] = 9, + [94537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(4189), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_COLON, - ACTIONS(4194), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(913), 12, + ACTIONS(1906), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -151511,11 +161330,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, - sym__automatic_semicolon, + ACTIONS(1904), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -151532,85 +161353,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [92649] = 25, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [94584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3743), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3697), 1, - anon_sym_RBRACE, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3745), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [92740] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [94631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(4197), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(4035), 1, + sym__automatic_semicolon, + ACTIONS(1084), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151624,12 +161420,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 21, - sym__automatic_semicolon, + ACTIONS(1082), 23, 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, @@ -151646,20 +161443,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [92795] = 7, + anon_sym_LBRACE_PIPE, + [94680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(2849), 1, + ACTIONS(4089), 1, anon_sym_QMARK_DOT, - ACTIONS(4199), 1, - anon_sym_EQ, - ACTIONS(913), 15, + ACTIONS(3723), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151673,10 +161468,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, + ACTIONS(3725), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -151693,19 +161491,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [92850] = 7, + [94733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(2849), 1, - anon_sym_QMARK_DOT, - ACTIONS(4201), 1, - anon_sym_EQ, - ACTIONS(913), 15, + ACTIONS(1288), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151721,10 +161510,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, + ACTIONS(1286), 24, anon_sym_as, 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, @@ -151741,75 +161533,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [92905] = 22, + [94780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(1816), 15, anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1989), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4153), 1, - sym_number, - ACTIONS(4205), 1, - anon_sym_RBRACE, - ACTIONS(4207), 1, - anon_sym_async, - ACTIONS(4209), 1, - anon_sym_static, - ACTIONS(4215), 1, - sym_readonly, - STATE(2200), 1, - sym_accessibility_modifier, - STATE(3415), 1, - aux_sym_object_repeat1, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(4211), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4213), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2575), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3411), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4203), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3721), 14, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151823,13 +161554,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3723), 25, - sym__automatic_semicolon, + ACTIONS(1814), 24, 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, @@ -151849,10 +161577,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93037] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [94827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 15, + ACTIONS(4157), 1, + anon_sym_AMP, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(4223), 1, + anon_sym_extends, + ACTIONS(2136), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151862,13 +161598,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1809), 24, + ACTIONS(2134), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -151891,12 +161625,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [93084] = 3, + [94880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 15, + ACTIONS(623), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151912,7 +161645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 24, + ACTIONS(621), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -151937,58 +161670,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [93131] = 22, + [94927] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1013), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(4153), 1, - sym_number, - ACTIONS(4219), 1, - anon_sym_RBRACE, - ACTIONS(4221), 1, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4049), 1, anon_sym_async, - ACTIONS(4223), 1, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, anon_sym_static, - ACTIONS(4229), 1, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, sym_readonly, - STATE(2200), 1, + ACTIONS(4227), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, sym_accessibility_modifier, - STATE(3247), 1, - aux_sym_object_repeat1, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(4225), 2, + ACTIONS(4057), 2, anon_sym_get, anon_sym_set, - ACTIONS(4227), 3, + STATE(1883), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2575), 3, + STATE(2579), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3246), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4217), 11, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -152000,12 +161732,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93216] = 3, + [95010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 16, + ACTIONS(623), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -152020,7 +161751,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3203), 23, + ACTIONS(621), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -152043,11 +161774,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [93263] = 3, + [95057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 15, + ACTIONS(1852), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -152063,7 +161795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 24, + ACTIONS(1850), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -152088,12 +161820,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [93310] = 4, + [95104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4225), 1, anon_sym_LBRACK, - ACTIONS(1839), 15, + ACTIONS(1856), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -152109,7 +161841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 23, + ACTIONS(1854), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -152133,77 +161865,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [93359] = 25, + [95153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4233), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3609), 14, + ACTIONS(1862), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152217,13 +161884,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3611), 25, - sym__automatic_semicolon, + ACTIONS(1860), 24, 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, @@ -152243,74 +161907,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93497] = 22, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [95200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(1224), 15, anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1989), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4153), 1, - sym_number, - ACTIONS(4237), 1, - anon_sym_RBRACE, - ACTIONS(4239), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_static, - ACTIONS(4247), 1, - sym_readonly, - STATE(2200), 1, - sym_accessibility_modifier, - STATE(3367), 1, - aux_sym_object_repeat1, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(4243), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4245), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2575), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3363), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4235), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [93582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3605), 14, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152324,13 +161928,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 25, - sym__automatic_semicolon, + ACTIONS(1222), 24, 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, @@ -152350,12 +161951,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93629] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [95247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 16, + ACTIONS(1234), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -152370,7 +161972,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 23, + ACTIONS(1232), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -152393,13 +161995,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [93676] = 4, + [95294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 1, - sym__automatic_semicolon, - ACTIONS(1163), 15, + ACTIONS(1882), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -152415,7 +162016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1161), 23, + ACTIONS(1880), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -152438,13 +162039,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [93725] = 3, + [95341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 16, + ACTIONS(1808), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -152459,7 +162060,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3388), 23, + ACTIONS(1806), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -152482,12 +162083,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [93772] = 3, + [95388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 14, + ACTIONS(1902), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152501,13 +162104,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3669), 25, - sym__automatic_semicolon, + ACTIONS(1900), 24, 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, @@ -152527,11 +162127,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93819] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [95435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 14, + ACTIONS(1898), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152545,13 +162148,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3603), 25, - sym__automatic_semicolon, + ACTIONS(1896), 24, 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, @@ -152571,15 +162171,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93866] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [95482] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3437), 1, + anon_sym_QMARK_DOT, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3585), 1, + sym_call_type_arguments, + STATE(2038), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -152590,13 +162209,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 24, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -152612,13 +162226,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [93913] = 3, + [95547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 15, + ACTIONS(1894), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -152634,7 +162245,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 24, + ACTIONS(1892), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -152659,10 +162270,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [93960] = 3, + [95594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 14, + ACTIONS(3913), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152677,7 +162288,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3599), 25, + ACTIONS(3915), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -152703,82 +162314,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94007] = 25, + [95641] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3437), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4251), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3585), 1, + sym_call_type_arguments, + STATE(2038), 2, sym_template_string, sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 16, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -152789,13 +162350,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3400), 23, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -152811,12 +162367,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [94145] = 3, + [95706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 14, + ACTIONS(3941), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152831,7 +162385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3789), 25, + ACTIONS(3943), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -152857,12 +162411,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94192] = 3, + [95753] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4145), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [95834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1303), 15, + ACTIONS(3973), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152876,10 +162490,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1301), 24, + ACTIONS(3975), 25, + sym__automatic_semicolon, 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, @@ -152899,13 +162516,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [94239] = 3, + [95881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 14, + ACTIONS(4009), 1, + sym_regex_flags, + ACTIONS(4005), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152919,13 +162537,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3231), 25, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_instanceof, + anon_sym_implements, + ACTIONS(4007), 21, + 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, @@ -152941,14 +162558,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94286] = 3, + [95930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 14, + ACTIONS(3739), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152963,7 +162579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3519), 25, + ACTIONS(3741), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -152989,54 +162605,318 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94333] = 3, + [95977] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 15, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + ACTIONS(4229), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1912), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [96060] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 1, anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1968), 1, anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_LBRACK, + ACTIONS(4069), 1, + sym_number, + ACTIONS(4233), 1, + anon_sym_RBRACE, + ACTIONS(4235), 1, + anon_sym_async, + ACTIONS(4237), 1, + anon_sym_static, + ACTIONS(4243), 1, + sym_readonly, + STATE(2519), 1, + sym_accessibility_modifier, + STATE(3790), 1, + aux_sym_object_repeat1, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(4239), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4241), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2896), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3792), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4231), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [96145] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4123), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4083), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [96226] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, anon_sym_AMP, + ACTIONS(4101), 1, anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1297), 24, - anon_sym_as, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3943), 6, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [96307] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4127), 1, anon_sym_AMP_AMP, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4129), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4117), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4131), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4123), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4113), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [94380] = 3, + [96388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 15, + ACTIONS(1296), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -153052,7 +162932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 24, + ACTIONS(1294), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -153077,10 +162957,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [94427] = 3, + [96435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 15, + ACTIONS(1848), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -153096,7 +162976,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1293), 24, + ACTIONS(1846), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -153121,10 +163001,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [94474] = 3, + [96482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 14, + ACTIONS(3841), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3835), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153139,13 +163024,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3591), 25, - sym__automatic_semicolon, + ACTIONS(3838), 21, 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, @@ -153165,12 +163046,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94521] = 3, + [96531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 16, + ACTIONS(1840), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -153185,7 +163065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3364), 23, + ACTIONS(1838), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -153208,11 +163088,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [94568] = 3, + [96578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 14, + ACTIONS(3853), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3847), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153227,13 +163113,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3521), 25, - sym__automatic_semicolon, + ACTIONS(3850), 21, 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, @@ -153253,15 +163135,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94615] = 5, + [96627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_LBRACE, - STATE(1999), 1, - sym_statement_block, - ACTIONS(1095), 14, + ACTIONS(4157), 1, + anon_sym_AMP, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(4223), 1, + anon_sym_extends, + ACTIONS(3867), 13, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -153269,13 +163154,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1093), 23, + ACTIONS(3869), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -153299,39 +163182,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [94666] = 8, + [96680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(1883), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3474), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(1836), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 20, - sym__automatic_semicolon, + ACTIONS(1834), 24, 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, @@ -153348,16 +163224,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94723] = 4, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [96727] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, - anon_sym_EQ_GT, - ACTIONS(1327), 14, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3604), 1, + sym_call_type_arguments, + STATE(1731), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -153368,15 +163262,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 24, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -153392,38 +163279,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [94772] = 6, + [96792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_extends, - ACTIONS(3366), 3, - anon_sym_COMMA, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3369), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3362), 12, - anon_sym_STAR, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(3685), 1, anon_sym_EQ, + STATE(3604), 1, + sym_call_type_arguments, + STATE(1731), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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(3364), 20, + ACTIONS(637), 16, 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, @@ -153439,13 +163332,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [94825] = 3, + [96857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 15, + ACTIONS(3979), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -153459,10 +163350,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1309), 24, + ACTIONS(3981), 25, + sym__automatic_semicolon, 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, @@ -153482,32 +163376,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [94872] = 9, + [96904] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(3074), 1, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, anon_sym_QMARK, - ACTIONS(4051), 1, - anon_sym_EQ, - ACTIONS(3065), 3, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4147), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(913), 13, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [96985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -153515,9 +163455,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(637), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -153534,141 +163481,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94931] = 22, + [97032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(1832), 15, anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1989), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4153), 1, - sym_number, - ACTIONS(4257), 1, - anon_sym_RBRACE, - ACTIONS(4259), 1, - anon_sym_async, - ACTIONS(4261), 1, - anon_sym_static, - ACTIONS(4267), 1, - sym_readonly, - STATE(2200), 1, - sym_accessibility_modifier, - STATE(3299), 1, - aux_sym_object_repeat1, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(4263), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4265), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2575), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3292), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4255), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [95016] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4269), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1830), 24, + anon_sym_as, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95107] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [97079] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 14, - anon_sym_STAR, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -153681,43 +163555,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3459), 25, + ACTIONS(3927), 19, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [95154] = 6, + [97138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_LBRACE, - ACTIONS(4271), 1, - anon_sym_DOT, - STATE(1999), 1, - sym_statement_block, - ACTIONS(1095), 14, + ACTIONS(1828), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -153731,11 +163594,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1093), 22, + ACTIONS(1826), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153753,93 +163617,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [95207] = 21, + [97185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - ACTIONS(4273), 1, - anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1887), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [95290] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(4275), 1, - anon_sym_EQ, - ACTIONS(4281), 1, - anon_sym_QMARK, - ACTIONS(4278), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(913), 13, + ACTIONS(1824), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -153847,9 +163638,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(1822), 24, anon_sym_as, + 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, @@ -153866,150 +163661,230 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [95349] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [97232] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 14, - anon_sym_STAR, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3448), 25, + ACTIONS(3927), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [95396] = 3, + [97297] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 14, - anon_sym_STAR, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 3, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3685), 25, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 11, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [97366] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3927), 10, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [95443] = 9, + [97439] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(4284), 1, - anon_sym_EQ, - ACTIONS(4290), 1, - anon_sym_QMARK, - ACTIONS(4287), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(913), 13, - anon_sym_STAR, + ACTIONS(4085), 1, anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3927), 16, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [95502] = 3, + [97502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 15, + ACTIONS(3711), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -154023,10 +163898,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 24, + ACTIONS(3713), 25, + sym__automatic_semicolon, 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, @@ -154046,56 +163924,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95549] = 3, + [97549] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(3925), 1, + anon_sym_QMARK, + ACTIONS(4085), 1, anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [97626] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, anon_sym_AMP, + ACTIONS(4101), 1, anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1851), 24, - anon_sym_as, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4149), 6, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [97707] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, anon_sym_QMARK_DOT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4151), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95596] = 3, + [97788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 15, + ACTIONS(1878), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -154111,7 +164124,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 24, + ACTIONS(1876), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -154136,78 +164149,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [95643] = 25, + [97835] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3433), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3526), 1, + sym_call_type_arguments, + STATE(1804), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4293), 1, - anon_sym_COLON, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95734] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [97900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_DOT, - ACTIONS(911), 15, + ACTIONS(1890), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -154223,11 +164221,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(909), 23, + ACTIONS(1888), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154247,119 +164246,118 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [95783] = 21, + [97947] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(4163), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - ACTIONS(4297), 1, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4153), 6, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1914), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [95866] = 21, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [98028] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2871), 1, + ACTIONS(3250), 1, anon_sym_DASH, - ACTIONS(3279), 1, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(4163), 1, + ACTIONS(4045), 1, anon_sym_STAR, - ACTIONS(4167), 1, + ACTIONS(4049), 1, anon_sym_async, - ACTIONS(4169), 1, + ACTIONS(4051), 1, sym_number, - ACTIONS(4171), 1, + ACTIONS(4053), 1, anon_sym_static, - ACTIONS(4173), 1, + ACTIONS(4055), 1, anon_sym_abstract, - ACTIONS(4177), 1, + ACTIONS(4059), 1, sym_readonly, - ACTIONS(4299), 1, + ACTIONS(4245), 1, anon_sym_RBRACE, - STATE(2165), 1, + STATE(2463), 1, sym_method_definition, - STATE(2189), 1, + STATE(2512), 1, sym_accessibility_modifier, - ACTIONS(4175), 2, + ACTIONS(4057), 2, anon_sym_get, anon_sym_set, - STATE(1763), 2, + STATE(1883), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(3289), 3, + ACTIONS(3489), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2249), 3, + STATE(2579), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3417), 4, + STATE(3732), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3273), 11, + ACTIONS(3473), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -154371,12 +164369,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [95949] = 3, + [98111] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 14, - anon_sym_STAR, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -154389,16 +164397,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3661), 25, + ACTIONS(3731), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -154412,13 +164417,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [95996] = 3, + [98168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3663), 14, + ACTIONS(3871), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154433,7 +164436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 25, + ACTIONS(3873), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -154459,15 +164462,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [96043] = 3, + [98215] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_QMARK_DOT, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3648), 1, + sym_call_type_arguments, + STATE(1643), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, @@ -154477,16 +164498,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1187), 25, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -154502,12 +164515,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [96090] = 3, + [98280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 14, + ACTIONS(1792), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -154521,13 +164534,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3595), 25, - sym__automatic_semicolon, + ACTIONS(1790), 24, 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, @@ -154547,36 +164557,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [96137] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [98327] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, - anon_sym_AMP, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4097), 1, - anon_sym_extends, - ACTIONS(3446), 13, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_QMARK_DOT, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3648), 1, + sym_call_type_arguments, + STATE(1643), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3448), 23, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -154592,13 +164612,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [96190] = 3, + [98392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 14, + ACTIONS(1874), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -154612,13 +164631,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 25, - sym__automatic_semicolon, + ACTIONS(1872), 24, 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, @@ -154638,14 +164654,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [96237] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [98439] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_QMARK_DOT, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3526), 1, + sym_call_type_arguments, + STATE(1804), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -154656,16 +164692,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 25, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -154681,58 +164709,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [96284] = 21, + [98504] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_LBRACK, + ACTIONS(4069), 1, + sym_number, + ACTIONS(4249), 1, + anon_sym_RBRACE, + ACTIONS(4251), 1, + anon_sym_async, + ACTIONS(4253), 1, + anon_sym_static, + ACTIONS(4259), 1, + sym_readonly, + STATE(2519), 1, + sym_accessibility_modifier, + STATE(3796), 1, + aux_sym_object_repeat1, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(4255), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4257), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2896), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3782), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4247), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [98589] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2871), 1, + ACTIONS(3250), 1, anon_sym_DASH, - ACTIONS(3279), 1, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(4163), 1, + ACTIONS(4045), 1, anon_sym_STAR, - ACTIONS(4167), 1, + ACTIONS(4049), 1, anon_sym_async, - ACTIONS(4169), 1, + ACTIONS(4051), 1, sym_number, - ACTIONS(4171), 1, + ACTIONS(4053), 1, anon_sym_static, - ACTIONS(4173), 1, + ACTIONS(4055), 1, anon_sym_abstract, - ACTIONS(4177), 1, + ACTIONS(4059), 1, sym_readonly, - ACTIONS(4301), 1, + ACTIONS(4261), 1, anon_sym_RBRACE, - STATE(2165), 1, + STATE(2463), 1, sym_method_definition, - STATE(2189), 1, + STATE(2512), 1, sym_accessibility_modifier, - ACTIONS(4175), 2, + ACTIONS(4057), 2, anon_sym_get, anon_sym_set, - STATE(1763), 2, + STATE(1965), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(3289), 3, + ACTIONS(3489), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2249), 3, + STATE(2579), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3417), 4, + STATE(3732), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3273), 11, + ACTIONS(3473), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -154744,12 +164834,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [96367] = 3, + [98672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 15, + ACTIONS(3465), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -154763,10 +164852,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1859), 24, + ACTIONS(3469), 25, + sym__automatic_semicolon, 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, @@ -154786,59 +164878,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [96414] = 21, + [98719] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, + ACTIONS(4069), 1, sym_number, - ACTIONS(4171), 1, + ACTIONS(4265), 1, + anon_sym_RBRACE, + ACTIONS(4267), 1, + anon_sym_async, + ACTIONS(4269), 1, anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, + ACTIONS(4275), 1, sym_readonly, - ACTIONS(4303), 1, - anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, + STATE(2519), 1, sym_accessibility_modifier, - ACTIONS(4175), 2, + STATE(3814), 1, + aux_sym_object_repeat1, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(4271), 2, anon_sym_get, anon_sym_set, - STATE(1895), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, + ACTIONS(4273), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2249), 3, + STATE(2896), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, + STATE(3812), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4263), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -154850,12 +164941,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [96497] = 3, + [98804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 15, + ACTIONS(1168), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -154869,10 +164959,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(909), 24, + ACTIONS(1170), 25, + sym__automatic_semicolon, 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, @@ -154892,141 +164985,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [96544] = 25, + [98851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(1822), 2, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + anon_sym_extends, + ACTIONS(1824), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1866), 13, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4305), 1, - anon_sym_RBRACK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1864), 22, + 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_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [96635] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - ACTIONS(4307), 1, - anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1827), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [96718] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [98902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 14, + ACTIONS(1886), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -155040,13 +165050,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3736), 25, - sym__automatic_semicolon, + ACTIONS(1884), 24, 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, @@ -155066,12 +165073,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [96765] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [98949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 15, + ACTIONS(1120), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -155085,10 +165093,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 24, + ACTIONS(1122), 25, + sym__automatic_semicolon, 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, @@ -155108,20 +165119,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [96812] = 7, + [98996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(3909), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155136,12 +165137,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 21, + ACTIONS(3911), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155158,17 +165163,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [96867] = 4, + [99043] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1873), 15, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_QMARK_DOT, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3465), 1, + sym_call_type_arguments, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -155179,12 +165199,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 23, + ACTIONS(637), 16, 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, @@ -155200,96 +165216,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [96916] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - ACTIONS(4309), 1, - anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1763), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [96999] = 10, + [99108] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3074), 1, - anon_sym_QMARK, - ACTIONS(3196), 1, - anon_sym_COLON, - ACTIONS(4051), 1, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_QMARK_DOT, + ACTIONS(3666), 1, anon_sym_EQ, - ACTIONS(3065), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(913), 13, + STATE(3465), 1, + sym_call_type_arguments, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -155297,9 +165252,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155315,32 +165269,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97060] = 10, + [99173] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2651), 1, anon_sym_DOT, - ACTIONS(4275), 1, - anon_sym_EQ, - ACTIONS(4281), 1, - anon_sym_QMARK, - ACTIONS(4311), 1, - anon_sym_COLON, - ACTIONS(4278), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(913), 13, - anon_sym_STAR, + ACTIONS(4085), 1, anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -155348,9 +165297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3731), 20, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155364,15 +165317,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97121] = 4, + [99230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4049), 1, - sym__automatic_semicolon, - ACTIONS(1103), 15, + ACTIONS(1820), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -155388,7 +165337,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1101), 23, + ACTIONS(1818), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -155411,77 +165360,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [97170] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(2871), 1, - anon_sym_DASH, - ACTIONS(3279), 1, - anon_sym_LBRACK, - ACTIONS(4163), 1, - anon_sym_STAR, - ACTIONS(4167), 1, - anon_sym_async, - ACTIONS(4169), 1, - sym_number, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_abstract, - ACTIONS(4177), 1, - sym_readonly, - ACTIONS(4313), 1, - anon_sym_RBRACE, - STATE(2165), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - STATE(1905), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3289), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2249), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3417), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3273), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [97253] = 4, + [99277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4277), 1, sym_regex_flags, - ACTIONS(3913), 17, + ACTIONS(4005), 17, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -155496,9 +165385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_instanceof, - anon_sym_implements, - ACTIONS(3915), 21, - anon_sym_LBRACE, + ACTIONS(4007), 21, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -155519,31 +165406,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97302] = 10, + anon_sym_LBRACE_PIPE, + [99326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(4284), 1, - anon_sym_EQ, - ACTIONS(4290), 1, - anon_sym_QMARK, - ACTIONS(4315), 1, - anon_sym_COLON, - ACTIONS(4287), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(913), 13, + ACTIONS(1844), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -155551,9 +165426,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(1842), 24, anon_sym_as, + 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, @@ -155570,12 +165449,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97363] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [99373] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4081), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4091), 1, + anon_sym_QMARK, + ACTIONS(4093), 1, + anon_sym_AMP_AMP, + ACTIONS(4099), 1, + anon_sym_AMP, + ACTIONS(4101), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4109), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4095), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4103), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4097), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4087), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4107), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4155), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [99454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 15, + ACTIONS(3775), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3769), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -155589,9 +165535,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 24, + ACTIONS(3772), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -155612,16 +165557,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [97410] = 5, + [99503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(3783), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3777), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3780), 21, + anon_sym_as, anon_sym_LPAREN, - STATE(1990), 1, - sym_arguments, - ACTIONS(3463), 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [99552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -155637,9 +165621,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3465), 22, + ACTIONS(1868), 24, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155659,58 +165644,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [97461] = 21, + [99599] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(2871), 1, + ACTIONS(3250), 1, anon_sym_DASH, - ACTIONS(3279), 1, + ACTIONS(3479), 1, anon_sym_LBRACK, - ACTIONS(4163), 1, + ACTIONS(4045), 1, anon_sym_STAR, - ACTIONS(4167), 1, + ACTIONS(4049), 1, anon_sym_async, - ACTIONS(4169), 1, + ACTIONS(4051), 1, sym_number, - ACTIONS(4171), 1, + ACTIONS(4053), 1, anon_sym_static, - ACTIONS(4173), 1, + ACTIONS(4055), 1, anon_sym_abstract, - ACTIONS(4177), 1, + ACTIONS(4059), 1, sym_readonly, - ACTIONS(4317), 1, + ACTIONS(4279), 1, anon_sym_RBRACE, - STATE(2165), 1, + STATE(2463), 1, sym_method_definition, - STATE(2189), 1, + STATE(2512), 1, sym_accessibility_modifier, - ACTIONS(4175), 2, + ACTIONS(4057), 2, anon_sym_get, anon_sym_set, - STATE(1763), 2, + STATE(1883), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(3289), 3, + ACTIONS(3489), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2249), 3, + STATE(2579), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3417), 4, + STATE(3732), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3273), 11, + ACTIONS(3473), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -155722,14 +165708,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [97544] = 3, + [99682] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3666), 1, + anon_sym_EQ, + STATE(3592), 1, + sym_call_type_arguments, + STATE(1941), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -155740,16 +165744,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3695), 25, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155765,16 +165761,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97591] = 3, + [99747] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3685), 1, + anon_sym_EQ, + STATE(3592), 1, + sym_call_type_arguments, + STATE(1941), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -155785,13 +165797,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 24, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -155807,13 +165814,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [97638] = 3, + [99812] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + ACTIONS(4281), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1992), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [99895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 14, + ACTIONS(3935), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155828,13 +165899,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3747), 25, - sym__automatic_semicolon, + ACTIONS(3932), 21, 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, @@ -155854,10 +165921,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97685] = 3, + [99944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 14, + ACTIONS(3888), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3882), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155872,13 +165944,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3751), 25, - sym__automatic_semicolon, + ACTIONS(3885), 21, 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, @@ -155898,10 +165966,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97732] = 3, + [99993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(3899), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3893), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155916,13 +165989,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3755), 25, - sym__automatic_semicolon, + ACTIONS(3896), 21, 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, @@ -155942,16 +166011,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97779] = 5, + [100042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_LPAREN, - STATE(1993), 1, - sym_arguments, - ACTIONS(3467), 15, + ACTIONS(3923), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3917), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -155965,9 +166034,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 22, + ACTIONS(3920), 21, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155987,11 +166056,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97830] = 3, + [100091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 15, + ACTIONS(1788), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156007,7 +166075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1863), 24, + ACTIONS(1786), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156032,14 +166100,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [97877] = 3, + [100138] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 14, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_LBRACK, + ACTIONS(4069), 1, + sym_number, + ACTIONS(4285), 1, + anon_sym_RBRACE, + ACTIONS(4287), 1, + anon_sym_async, + ACTIONS(4289), 1, + anon_sym_static, + ACTIONS(4295), 1, + sym_readonly, + STATE(2519), 1, + sym_accessibility_modifier, + STATE(3901), 1, + aux_sym_object_repeat1, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(4291), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4293), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2896), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3910), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4283), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [100223] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DASH, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_STAR, + ACTIONS(4049), 1, + anon_sym_async, + ACTIONS(4051), 1, + sym_number, + ACTIONS(4053), 1, + anon_sym_static, + ACTIONS(4055), 1, + anon_sym_abstract, + ACTIONS(4059), 1, + sym_readonly, + ACTIONS(4297), 1, + anon_sym_RBRACE, + STATE(2463), 1, + sym_method_definition, + STATE(2512), 1, + sym_accessibility_modifier, + ACTIONS(4057), 2, + anon_sym_get, + anon_sym_set, + STATE(1782), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3489), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3732), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3473), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [100306] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_QMARK_DOT, + STATE(3526), 1, + sym_call_type_arguments, + STATE(1804), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -156050,16 +166259,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3715), 25, - sym__automatic_semicolon, + ACTIONS(637), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -156075,20 +166276,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97924] = 7, + [100368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, + ACTIONS(3017), 1, anon_sym_DOT, - ACTIONS(2526), 1, + ACTIONS(4299), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(3723), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -156102,10 +166301,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, + ACTIONS(3725), 20, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156123,10 +166321,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97978] = 3, + anon_sym_LBRACE_PIPE, + [100420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 15, + ACTIONS(3967), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156142,7 +166341,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3709), 23, + ACTIONS(3969), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156166,10 +166365,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98024] = 3, + [100466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 15, + ACTIONS(3961), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156185,7 +166384,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 23, + ACTIONS(3963), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156209,53 +166408,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98070] = 3, + [100512] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3679), 15, - anon_sym_STAR, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3961), 1, anon_sym_LBRACE, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4309), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, anon_sym_AMP, + ACTIONS(4319), 1, anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3681), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3963), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98116] = 3, + [100594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 15, + ACTIONS(3957), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156271,7 +166488,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3603), 23, + ACTIONS(3959), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156295,10 +166512,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98162] = 3, + [100640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 15, + ACTIONS(3953), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156314,7 +166531,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3599), 23, + ACTIONS(3955), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156338,53 +166555,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98208] = 3, + [100686] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 15, - anon_sym_STAR, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3953), 1, anon_sym_LBRACE, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4309), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, anon_sym_AMP, + ACTIONS(4319), 1, anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1177), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3955), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98254] = 3, + [100768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 15, + ACTIONS(3949), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156400,7 +166635,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3595), 23, + ACTIONS(3951), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156424,101 +166659,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98300] = 3, + [100814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 15, - anon_sym_STAR, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3949), 1, anon_sym_LBRACE, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4309), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, anon_sym_AMP, + ACTIONS(4319), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3591), 23, - anon_sym_as, - 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, + ACTIONS(4323), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4327), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3951), 4, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98346] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(1863), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1865), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4307), 5, 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, - ACTIONS(927), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4325), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [98402] = 3, + [100896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 15, + ACTIONS(3945), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156534,7 +166739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 23, + ACTIONS(3947), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156558,179 +166763,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98448] = 24, + [100942] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, + ACTIONS(4337), 1, anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4319), 1, - anon_sym_LPAREN, - ACTIONS(4321), 1, - anon_sym_BQUOTE, - STATE(3122), 1, - sym_type_arguments, - ACTIONS(3418), 2, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3823), 2, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(130), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(4331), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3844), 4, + ACTIONS(3925), 8, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, + ACTIONS(3927), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, - [98536] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_LBRACK, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [98602] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(4339), 2, - anon_sym_get, - anon_sym_set, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [98666] = 3, + anon_sym_BQUOTE, + anon_sym_implements, + [101006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 15, + ACTIONS(1120), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -156746,7 +166834,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3695), 23, + ACTIONS(1122), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -156770,278 +166858,349 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [98712] = 3, + [101052] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 3, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3459), 23, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 10, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_implements, + [101120] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3927), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98758] = 14, + anon_sym_implements, + [101192] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - ACTIONS(4341), 1, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4343), 1, + ACTIONS(4069), 1, + sym_number, + ACTIONS(4349), 1, + anon_sym_async, + ACTIONS(4351), 1, + anon_sym_static, + ACTIONS(4357), 1, sym_readonly, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, + STATE(2519), 1, + sym_accessibility_modifier, + STATE(4438), 1, + sym_array, + STATE(4440), 1, + sym_object, + ACTIONS(3445), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4353), 2, anon_sym_get, anon_sym_set, - STATE(2265), 3, + ACTIONS(4355), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2896), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, + STATE(3991), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4347), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, 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, - [98826] = 24, + [101272] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(3017), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(4299), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(4305), 1, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, + ACTIONS(4311), 1, anon_sym_AMP_AMP, - ACTIONS(3852), 1, + ACTIONS(4317), 1, anon_sym_AMP, - ACTIONS(3854), 1, + ACTIONS(4319), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3058), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(3925), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(4313), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(1205), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + ACTIONS(4315), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3844), 4, + ACTIONS(4307), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, + ACTIONS(4325), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98914] = 3, + ACTIONS(3927), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [101348] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3448), 23, + ACTIONS(3927), 15, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98960] = 24, + anon_sym_implements, + [101410] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(4119), 1, anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, + ACTIONS(4337), 1, anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, + ACTIONS(4343), 1, anon_sym_AMP_AMP, - ACTIONS(3852), 1, + ACTIONS(4345), 1, anon_sym_AMP, - ACTIONS(3854), 1, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, anon_sym_PIPE, - ACTIONS(3858), 1, + ACTIONS(4365), 1, anon_sym_QMARK_QMARK, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3418), 2, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3823), 2, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(4331), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3844), 4, + ACTIONS(4147), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99048] = 3, + [101490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 15, + ACTIONS(3905), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -157057,7 +167216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1161), 23, + ACTIONS(3907), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -157081,10 +167240,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [99094] = 3, + [101536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 15, + ACTIONS(3901), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -157100,7 +167259,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3705), 23, + ACTIONS(3903), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -157124,15 +167283,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [99140] = 3, + [101582] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + STATE(3592), 1, + sym_call_type_arguments, + STATE(1941), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -157143,13 +167317,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1249), 23, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -157165,273 +167334,254 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99186] = 3, + [101644] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1267), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3925), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, anon_sym_AMP, + ACTIONS(4363), 1, anon_sym_PIPE, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1269), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3927), 7, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99232] = 3, + anon_sym_implements, + [101720] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3495), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1219), 15, - anon_sym_STAR, + ACTIONS(4149), 5, anon_sym_LBRACE, - anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1221), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101800] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2629), 1, anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4145), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99324] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4343), 1, - sym_readonly, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [99392] = 24, + [101880] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(4119), 1, anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, + ACTIONS(4337), 1, anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, + ACTIONS(4343), 1, anon_sym_AMP_AMP, - ACTIONS(3852), 1, + ACTIONS(4345), 1, anon_sym_AMP, - ACTIONS(3854), 1, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, anon_sym_PIPE, - ACTIONS(3858), 1, + ACTIONS(4365), 1, anon_sym_QMARK_QMARK, - ACTIONS(4345), 1, - anon_sym_LPAREN, - ACTIONS(4347), 1, - anon_sym_BQUOTE, - STATE(3052), 1, - sym_type_arguments, - ACTIONS(3418), 2, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3823), 2, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(1679), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(4331), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3844), 4, + ACTIONS(4121), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99480] = 9, + [101960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3471), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3474), 2, + ACTIONS(4367), 1, anon_sym_AMP, + ACTIONS(4369), 1, anon_sym_PIPE, - ACTIONS(913), 12, + ACTIONS(4371), 1, + anon_sym_extends, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157444,9 +167594,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3869), 23, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -157462,54 +167618,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [99538] = 3, + [102012] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 15, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 4, anon_sym_LBRACE, - anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4307), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [102080] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 9, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1211), 23, + ACTIONS(3927), 14, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [99584] = 3, + [102144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 15, + ACTIONS(3937), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -157525,7 +167743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1125), 23, + ACTIONS(3939), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -157549,13 +167767,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [99630] = 3, + [102190] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 15, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 14, anon_sym_STAR, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -157568,36 +167798,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1239), 23, + ACTIONS(3927), 17, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [99676] = 3, + [102248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 15, + ACTIONS(1312), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -157611,7 +167834,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 23, + ACTIONS(1310), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -157634,13 +167858,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99722] = 3, + anon_sym_extends, + [102294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 15, + ACTIONS(4367), 1, + anon_sym_AMP, + ACTIONS(4369), 1, + anon_sym_PIPE, + ACTIONS(4371), 1, + anon_sym_extends, + ACTIONS(2156), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -157648,16 +167877,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3551), 23, + ACTIONS(2154), 23, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -157676,17 +167905,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [102346] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4373), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4147), 4, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [99768] = 3, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102428] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 15, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3439), 1, + anon_sym_QMARK_DOT, + STATE(3514), 1, + sym_call_type_arguments, + STATE(1599), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -157697,13 +168000,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 23, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -157719,67 +168017,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99814] = 13, + [102490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_LBRACK, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4375), 1, + anon_sym_LBRACE, + ACTIONS(1282), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [99880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 15, + anon_sym_BQUOTE, + ACTIONS(3853), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3847), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -157793,10 +168043,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1117), 23, + ACTIONS(3850), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -157815,26 +168063,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99926] = 9, + [102542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3479), 2, + ACTIONS(4377), 1, + anon_sym_LBRACE, + ACTIONS(1274), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3841), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3482), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 12, + anon_sym_LBRACE_PIPE, + ACTIONS(3835), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157843,13 +168083,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(927), 18, + ACTIONS(3838), 19, 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, @@ -157865,78 +168109,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [99984] = 24, + [102594] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3406), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3561), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4337), 1, anon_sym_STAR_STAR, - ACTIONS(3846), 1, - anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, - anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3418), 2, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1145), 15, + ACTIONS(3925), 13, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -157949,34 +168139,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1143), 23, + ACTIONS(3927), 18, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100118] = 3, + anon_sym_implements, + [102652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3663), 15, + ACTIONS(1250), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -157992,7 +168177,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 23, + ACTIONS(1252), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -158016,19 +168201,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [100164] = 7, + [102698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(4349), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(1240), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -158042,11 +168220,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, - sym__automatic_semicolon, + ACTIONS(1242), 23, 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, @@ -158063,19 +168243,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [100218] = 7, + anon_sym_LBRACE_PIPE, + [102744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_DOT, - ACTIONS(2596), 1, - anon_sym_QMARK_DOT, - ACTIONS(4351), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(1110), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -158089,11 +168263,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, - sym__automatic_semicolon, + ACTIONS(1112), 23, 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, @@ -158110,10 +168286,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [100272] = 3, + anon_sym_LBRACE_PIPE, + [102790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 15, + ACTIONS(1216), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -158129,7 +168306,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3669), 23, + ACTIONS(1218), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -158153,38 +168330,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [100318] = 8, + [102836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(909), 3, + ACTIONS(4375), 1, + anon_sym_LBRACE, + ACTIONS(3853), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(911), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(913), 11, + anon_sym_LBRACE_PIPE, + ACTIONS(3847), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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(927), 18, + ACTIONS(3850), 21, 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, @@ -158201,12 +168375,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [100374] = 3, + [102886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 15, + ACTIONS(1096), 1, + anon_sym_COLON, + ACTIONS(1094), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -158220,12 +168395,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3736), 23, + ACTIONS(1092), 23, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158243,77 +168418,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100420] = 24, + anon_sym_extends, + [102934] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3406), 1, + ACTIONS(3795), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(4381), 1, anon_sym_as, - ACTIONS(3819), 1, - anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + ACTIONS(4385), 1, anon_sym_QMARK, - ACTIONS(3848), 1, + ACTIONS(4387), 1, anon_sym_AMP_AMP, - ACTIONS(3852), 1, + ACTIONS(4393), 1, anon_sym_AMP, - ACTIONS(3854), 1, + ACTIONS(4395), 1, anon_sym_PIPE, - ACTIONS(3858), 1, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, anon_sym_QMARK_QMARK, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(3418), 2, + ACTIONS(3733), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3850), 2, + ACTIONS(4389), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(1308), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3821), 3, + ACTIONS(4391), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3844), 4, + ACTIONS(3963), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3856), 5, + ACTIONS(4401), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100508] = 3, + [103014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 15, - anon_sym_STAR, + ACTIONS(4377), 1, anon_sym_LBRACE, + ACTIONS(3841), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3835), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -158327,9 +168502,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3231), 23, + ACTIONS(3838), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -158350,144 +168524,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100554] = 3, + [103064] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1195), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1197), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3717), 15, - anon_sym_STAR, + ACTIONS(4151), 5, anon_sym_LBRACE, - anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3719), 23, - anon_sym_as, - 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, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100646] = 7, + [103144] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2526), 1, + ACTIONS(3727), 1, anon_sym_QMARK_DOT, - ACTIONS(3811), 1, - anon_sym_EQ, - ACTIONS(913), 14, - anon_sym_STAR, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, anon_sym_AMP, + ACTIONS(4395), 1, anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 20, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3955), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [100700] = 3, + [103224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3721), 15, + ACTIONS(3785), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -158503,7 +168663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3723), 23, + ACTIONS(3787), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -158527,166 +168687,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [100746] = 3, + [103270] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4153), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100792] = 20, + [103350] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4153), 1, - sym_number, - ACTIONS(4355), 1, - anon_sym_async, - ACTIONS(4357), 1, - anon_sym_static, - ACTIONS(4363), 1, - sym_readonly, - STATE(2200), 1, - sym_accessibility_modifier, - STATE(3690), 1, - sym_array, - STATE(3708), 1, - sym_object, - ACTIONS(3209), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4359), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4361), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2575), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3626), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4353), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [100872] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, + anon_sym_STAR_STAR, ACTIONS(4327), 1, - anon_sym_LBRACK, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_QMARK_QMARK, + ACTIONS(4405), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4113), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [100938] = 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 15, + ACTIONS(1204), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -158702,7 +168827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1187), 23, + ACTIONS(1202), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -158726,148 +168851,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [100984] = 6, + [103478] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(3017), 1, anon_sym_DOT, - ACTIONS(2849), 1, + ACTIONS(4299), 1, anon_sym_QMARK_DOT, - ACTIONS(913), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4309), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, anon_sym_AMP, + ACTIONS(4319), 1, anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4407), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 20, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4083), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [101036] = 3, + [103560] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3609), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3611), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4361), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4155), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [101082] = 9, + [103640] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(3471), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3474), 3, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, anon_sym_AMP, + ACTIONS(4395), 1, anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, 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, - ACTIONS(927), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4391), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4113), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101140] = 3, + [103720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 15, + ACTIONS(3735), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -158883,7 +169051,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 23, + ACTIONS(3737), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -158907,96 +169075,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [101186] = 3, + [103766] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, anon_sym_AMP, + ACTIONS(4395), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3732), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4083), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [101232] = 3, + [103846] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, anon_sym_AMP, + ACTIONS(4395), 1, anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3661), 23, - anon_sym_as, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3951), 5, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103926] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_DOT, + ACTIONS(4299), 1, anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4145), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [101278] = 3, + [104008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 15, + ACTIONS(3979), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159012,7 +169275,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3715), 23, + ACTIONS(3981), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159036,92 +169299,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [101324] = 14, + [104054] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - ACTIONS(4341), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4343), 1, - sym_readonly, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2626), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [101392] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(1865), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1863), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(913), 12, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_QMARK_DOT, + STATE(3465), 1, + sym_call_type_arguments, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 18, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159137,66 +169350,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101448] = 13, + [104116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_LBRACK, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4411), 1, + anon_sym_LBRACE, + ACTIONS(1266), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [101514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 15, + anon_sym_BQUOTE, + ACTIONS(3923), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3917), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -159210,10 +169376,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3701), 23, + ACTIONS(3920), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -159232,14 +169396,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [101560] = 3, + [104168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 15, + ACTIONS(1198), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(625), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -159253,10 +169417,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3747), 23, + ACTIONS(637), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -159275,93 +169440,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [101606] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(4339), 2, - anon_sym_get, - anon_sym_set, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [101670] = 9, + [104216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_extends, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3479), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3482), 3, - anon_sym_QMARK, + ACTIONS(4367), 1, anon_sym_AMP, + ACTIONS(4369), 1, anon_sym_PIPE, - ACTIONS(913), 11, + ACTIONS(4371), 1, + anon_sym_extends, + ACTIONS(2136), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(2134), 23, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159377,11 +169486,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101728] = 3, + [104268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 15, + ACTIONS(1192), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159397,7 +169505,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3751), 23, + ACTIONS(1194), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159421,10 +169529,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [101774] = 3, + [104314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 15, + ACTIONS(1178), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159440,7 +169548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3755), 23, + ACTIONS(1180), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159464,10 +169572,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [101820] = 3, + [104360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 15, + ACTIONS(1140), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159483,7 +169591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1225), 23, + ACTIONS(1142), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159507,64 +169615,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [101866] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4343), 1, - sym_readonly, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [101934] = 3, + [104406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 15, + ACTIONS(1158), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159580,7 +169634,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3521), 23, + ACTIONS(1160), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159604,62 +169658,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [101980] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(4339), 2, - anon_sym_get, - anon_sym_set, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [102044] = 3, + [104452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 15, + ACTIONS(1130), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159675,7 +169677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1279), 23, + ACTIONS(1132), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159699,10 +169701,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [102090] = 3, + [104498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 15, + ACTIONS(625), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159718,7 +169720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1275), 23, + ACTIONS(637), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159742,10 +169744,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [102136] = 3, + [104544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 15, + ACTIONS(1230), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159761,7 +169763,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3685), 23, + ACTIONS(1228), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159785,10 +169787,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [102182] = 3, + [104590] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3943), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104670] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4083), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 15, + ACTIONS(1148), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159804,7 +169926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3677), 23, + ACTIONS(1146), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159828,12 +169950,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [102228] = 3, + [104796] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 15, - anon_sym_STAR, + ACTIONS(4411), 1, anon_sym_LBRACE, + ACTIONS(3923), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3917), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -159847,9 +169973,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3673), 23, + ACTIONS(3920), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -159870,63 +169995,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [102274] = 12, + [104846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, + ACTIONS(4413), 1, + anon_sym_LBRACE, + ACTIONS(3899), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3893), 14, anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(4339), 2, - anon_sym_get, - anon_sym_set, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [102338] = 3, + 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(3896), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [104896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 15, + ACTIONS(1168), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159942,7 +170059,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 23, + ACTIONS(1170), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -159966,10 +170083,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [102384] = 3, + [104942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 15, + ACTIONS(1260), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -159985,7 +170102,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3517), 23, + ACTIONS(1262), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -160009,79 +170126,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [102430] = 24, + [104988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(4413), 1, + anon_sym_LBRACE, + ACTIONS(1290), 2, anon_sym_LPAREN, - ACTIONS(2843), 1, - anon_sym_LBRACK, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3406), 1, + anon_sym_BQUOTE, + ACTIONS(3899), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3893), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_as, - ACTIONS(3625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3819), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3825), 1, - anon_sym_STAR_STAR, - ACTIONS(3846), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3848), 1, - anon_sym_AMP_AMP, - ACTIONS(3852), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3854), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_QMARK_QMARK, - STATE(3120), 1, - sym_type_arguments, - ACTIONS(3418), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3896), 19, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1860), 2, - sym_template_string, - sym_arguments, - ACTIONS(3817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3821), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3844), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3856), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102518] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [105040] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + STATE(3655), 1, + sym_call_type_arguments, + STATE(1791), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -160092,13 +170206,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3789), 23, + ACTIONS(637), 16, anon_sym_as, - 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, @@ -160114,14 +170223,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [102564] = 3, + [105102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 15, - anon_sym_STAR, + ACTIONS(4415), 1, anon_sym_LBRACE, + ACTIONS(1302), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3888), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3882), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -160135,10 +170249,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3519), 23, + ACTIONS(3885), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160157,40 +170269,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [102610] = 9, + [105154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - ACTIONS(3527), 1, - anon_sym_in, - ACTIONS(3530), 1, - anon_sym_of, - ACTIONS(913), 13, + ACTIONS(4367), 1, + anon_sym_AMP, + ACTIONS(4369), 1, + anon_sym_PIPE, + ACTIONS(2152), 12, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(927), 18, + ACTIONS(2150), 24, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160206,68 +170313,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [102667] = 12, + anon_sym_extends, + [105204] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, ACTIONS(4337), 1, - sym_number, - ACTIONS(3311), 2, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4113), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4339), 2, - anon_sym_get, - anon_sym_set, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [102730] = 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(913), 14, + ACTIONS(1276), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160282,11 +170392,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 20, + ACTIONS(1274), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160303,175 +170416,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [102781] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(3233), 1, - aux_sym_object_repeat1, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [102840] = 14, + anon_sym_extends, + [105330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4343), 1, - sym_readonly, - ACTIONS(3311), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 7, - sym__automatic_semicolon, + ACTIONS(4417), 1, + anon_sym_LBRACE, + ACTIONS(1306), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [102907] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(3394), 1, - aux_sym_object_repeat1, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_BQUOTE, + ACTIONS(3935), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [102966] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - ACTIONS(3536), 1, - anon_sym_in, - ACTIONS(3539), 1, - anon_sym_of, - ACTIONS(913), 13, + anon_sym_LBRACE_PIPE, + ACTIONS(3929), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -160483,9 +170443,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3932), 19, 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, @@ -160501,74 +170463,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [103023] = 10, + [105382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(3325), 1, - aux_sym_object_repeat1, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [103082] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - ACTIONS(4077), 1, - anon_sym_in, - ACTIONS(4080), 1, - anon_sym_of, - ACTIONS(913), 13, + ACTIONS(3871), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -160580,9 +170482,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3873), 23, anon_sym_as, + 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, @@ -160599,76 +170505,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [103139] = 13, + anon_sym_LBRACE_PIPE, + [105428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_LBRACK, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - ACTIONS(3311), 2, + ACTIONS(4415), 1, + anon_sym_LBRACE, + ACTIONS(3888), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [103204] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - ACTIONS(4082), 1, - anon_sym_in, - ACTIONS(4085), 1, - anon_sym_of, - ACTIONS(913), 13, + anon_sym_LBRACE_PIPE, + ACTIONS(3882), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -160680,9 +170529,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3885), 21, 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, @@ -160699,178 +170551,532 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [103261] = 12, + [105478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4365), 1, + ACTIONS(3465), 15, anon_sym_STAR, - ACTIONS(4367), 1, - anon_sym_async, - ACTIONS(4369), 1, - sym_number, - ACTIONS(4371), 1, - anon_sym_abstract, - ACTIONS(4373), 2, - anon_sym_get, - anon_sym_set, - STATE(2252), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3469), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [105524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 1, + anon_sym_LBRACE, + ACTIONS(3935), 2, anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3929), 14, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3932), 21, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [105574] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 14, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [103324] = 12, + 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(3731), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [105630] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4327), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4375), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 14, anon_sym_STAR, - ACTIONS(4377), 1, - anon_sym_async, - ACTIONS(4379), 1, - sym_number, - ACTIONS(4381), 1, - anon_sym_abstract, - ACTIONS(4383), 2, - anon_sym_get, - anon_sym_set, - STATE(2246), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3731), 18, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [105686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 14, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1286), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [105732] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3951), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105812] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, anon_sym_QMARK, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [103387] = 10, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3955), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105892] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, ACTIONS(4337), 1, - sym_number, - STATE(3324), 1, - aux_sym_object_repeat1, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3963), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3739), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [103446] = 10, + 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(3741), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [106018] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3429), 1, + anon_sym_QMARK_DOT, + STATE(3459), 1, + sym_call_type_arguments, + STATE(2045), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [106080] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4385), 1, + ACTIONS(4419), 1, anon_sym_STAR, - ACTIONS(4387), 1, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4425), 1, sym_number, - ACTIONS(4389), 2, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(4427), 2, anon_sym_get, anon_sym_set, - STATE(2613), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 9, + ACTIONS(3523), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -160880,7 +171086,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, + ACTIONS(1778), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160898,357 +171104,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [103504] = 10, + [106144] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - ACTIONS(3311), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2626), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [103562] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4391), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_QMARK_DOT, + STATE(3648), 1, + sym_call_type_arguments, + STATE(1643), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, - ACTIONS(4393), 1, - sym_number, - ACTIONS(4395), 2, - anon_sym_get, - anon_sym_set, - STATE(2616), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [103620] = 11, + 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(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [106206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4397), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3729), 15, anon_sym_STAR, - ACTIONS(4399), 1, - anon_sym_async, - ACTIONS(4401), 1, - sym_number, - ACTIONS(4403), 2, - anon_sym_get, - anon_sym_set, - STATE(2256), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [103680] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4397), 1, - anon_sym_STAR, - ACTIONS(4399), 1, - anon_sym_async, - ACTIONS(4401), 1, - sym_number, - ACTIONS(4405), 1, - sym_readonly, - ACTIONS(4403), 2, - anon_sym_get, - anon_sym_set, - STATE(2256), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + 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(3731), 18, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [103742] = 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [106260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4365), 1, + ACTIONS(1280), 14, anon_sym_STAR, - ACTIONS(4407), 1, - sym_number, - ACTIONS(4409), 2, - anon_sym_get, - anon_sym_set, - STATE(2737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [103800] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(4413), 1, - sym_number, - ACTIONS(4415), 2, - anon_sym_get, - anon_sym_set, - STATE(2730), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [103858] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4417), 1, - anon_sym_STAR, - ACTIONS(4419), 1, - sym_number, - ACTIONS(4421), 2, - anon_sym_get, - anon_sym_set, - STATE(2731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, + 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(1278), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [103916] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, anon_sym_DOT, - ACTIONS(2526), 1, anon_sym_QMARK_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - ACTIONS(913), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [106306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161263,9 +171263,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(1282), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, + 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, @@ -161282,79 +171287,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [103968] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4423), 1, - anon_sym_STAR, - ACTIONS(4425), 1, - sym_number, - ACTIONS(4427), 2, - anon_sym_get, - anon_sym_set, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [104026] = 12, + anon_sym_extends, + [106352] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4423), 1, + ACTIONS(4419), 1, anon_sym_STAR, + ACTIONS(4421), 1, + anon_sym_EQ, ACTIONS(4429), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4431), 1, + anon_sym_async, + ACTIONS(4433), 1, sym_number, - ACTIONS(4435), 1, + ACTIONS(4437), 1, sym_readonly, - ACTIONS(4433), 2, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(4435), 2, anon_sym_get, anon_sym_set, - STATE(2255), 3, + STATE(2590), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 9, + ACTIONS(3523), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -161364,7 +171326,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, + ACTIONS(3473), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161380,115 +171342,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [104088] = 10, + [106420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4437), 1, - anon_sym_STAR, ACTIONS(4439), 1, - sym_number, - ACTIONS(4441), 2, - anon_sym_get, - anon_sym_set, - STATE(2601), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [104146] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4423), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_async, - ACTIONS(4431), 1, - sym_number, - ACTIONS(4433), 2, - anon_sym_get, - anon_sym_set, - STATE(2255), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_LBRACE, + ACTIONS(3783), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [104206] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - ACTIONS(913), 14, + anon_sym_LBRACE_PIPE, + ACTIONS(3777), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161503,9 +171365,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3780), 21, 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, @@ -161522,67 +171387,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [104258] = 11, + [106470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4385), 1, - anon_sym_STAR, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - sym_number, - ACTIONS(4447), 2, - anon_sym_get, - anon_sym_set, - STATE(2260), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(4441), 1, + anon_sym_LBRACE, + ACTIONS(3775), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [104318] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2992), 1, - anon_sym_QMARK_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - ACTIONS(913), 14, + anon_sym_LBRACE_PIPE, + ACTIONS(3769), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161597,9 +171410,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3772), 21, 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, @@ -161616,351 +171432,288 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [104370] = 7, + [106520] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, + ACTIONS(3017), 1, anon_sym_DOT, - ACTIONS(2992), 1, + ACTIONS(4299), 1, anon_sym_QMARK_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - ACTIONS(913), 14, - anon_sym_STAR, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4309), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, anon_sym_AMP, + ACTIONS(4319), 1, anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4443), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(927), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4155), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [104422] = 10, + [106602] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4397), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4445), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, anon_sym_STAR, - ACTIONS(4449), 1, - sym_number, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(2693), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4121), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [104480] = 4, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106684] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 5, - anon_sym_STAR, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3245), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1939), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [104526] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4453), 1, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, anon_sym_STAR, - ACTIONS(4455), 1, - sym_number, - ACTIONS(4457), 2, - anon_sym_get, - anon_sym_set, - STATE(2706), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3880), 5, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [104584] = 12, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4375), 1, + ACTIONS(3973), 15, anon_sym_STAR, - ACTIONS(4377), 1, - anon_sym_async, - ACTIONS(4379), 1, - sym_number, - ACTIONS(4459), 1, - sym_readonly, - ACTIONS(4383), 2, - anon_sym_get, - anon_sym_set, - STATE(2246), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3273), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [104646] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4417), 1, - anon_sym_STAR, - ACTIONS(4461), 1, - anon_sym_async, - ACTIONS(4463), 1, - sym_number, - ACTIONS(4465), 2, - anon_sym_get, - anon_sym_set, - STATE(2248), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, + 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(3975), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [104706] = 12, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [106810] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, + ACTIONS(633), 1, + anon_sym_QMARK_DOT, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4453), 1, - anon_sym_STAR, - ACTIONS(4467), 1, - anon_sym_async, - ACTIONS(4469), 1, - sym_number, - ACTIONS(4473), 1, - sym_readonly, - ACTIONS(4471), 2, - anon_sym_get, - anon_sym_set, - STATE(2262), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2626), 1, anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2667), 1, + anon_sym_LPAREN, + STATE(3480), 1, + sym_call_type_arguments, + STATE(121), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [104768] = 7, + 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(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [106872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2625), 1, - anon_sym_QMARK_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(3711), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -161974,9 +171727,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3713), 23, anon_sym_as, + 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, @@ -161993,263 +171750,291 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [104820] = 10, + anon_sym_LBRACE_PIPE, + [106918] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4375), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3941), 1, + anon_sym_LBRACE, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, anon_sym_STAR, - ACTIONS(4475), 1, - sym_number, - ACTIONS(4477), 2, - anon_sym_get, - anon_sym_set, - STATE(2729), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3943), 4, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [104878] = 11, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4327), 1, - anon_sym_LBRACK, - ACTIONS(4453), 1, + ACTIONS(3941), 15, anon_sym_STAR, - ACTIONS(4467), 1, - anon_sym_async, - ACTIONS(4469), 1, - sym_number, - ACTIONS(4471), 2, - anon_sym_get, - anon_sym_set, - STATE(2262), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [104938] = 10, + 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(3943), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [107046] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4479), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, anon_sym_STAR, - ACTIONS(4481), 1, - sym_number, - ACTIONS(4483), 2, - anon_sym_get, - anon_sym_set, - STATE(2600), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4121), 5, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [104996] = 11, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4437), 1, + ACTIONS(1094), 14, anon_sym_STAR, - ACTIONS(4485), 1, - anon_sym_async, - ACTIONS(4487), 1, - sym_number, - ACTIONS(4489), 2, - anon_sym_get, - anon_sym_set, - STATE(2268), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [105056] = 11, + 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(1092), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [107172] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4365), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, anon_sym_STAR, - ACTIONS(4367), 1, - anon_sym_async, - ACTIONS(4369), 1, - sym_number, - ACTIONS(4373), 2, - anon_sym_get, - anon_sym_set, - STATE(2252), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4155), 5, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [105116] = 7, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107252] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(923), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, + ACTIONS(3017), 1, anon_sym_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - ACTIONS(913), 14, - anon_sym_STAR, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, anon_sym_BANG, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -162262,8 +172047,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3927), 18, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162278,44 +172064,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [105168] = 12, + anon_sym_LBRACE_PIPE, + [107308] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4365), 1, + ACTIONS(4419), 1, anon_sym_STAR, - ACTIONS(4367), 1, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, anon_sym_async, - ACTIONS(4369), 1, + ACTIONS(4433), 1, sym_number, - ACTIONS(4491), 1, - sym_readonly, - ACTIONS(4373), 2, + ACTIONS(4447), 1, + anon_sym_LBRACK, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(4435), 2, anon_sym_get, anon_sym_set, - STATE(2252), 3, + STATE(2590), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 9, + ACTIONS(3523), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3273), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162331,19 +172118,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105230] = 7, + sym_readonly, + [107374] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, + ACTIONS(3017), 1, anon_sym_DOT, - ACTIONS(2625), 1, + ACTIONS(4299), 1, anon_sym_QMARK_DOT, - ACTIONS(3358), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 3, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [107446] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3943), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3805), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -162357,9 +172254,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3807), 23, anon_sym_as, + 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, @@ -162376,19 +172277,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [105282] = 7, + anon_sym_LBRACE_PIPE, + [107572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(923), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(3350), 1, - anon_sym_EQ, - ACTIONS(913), 14, + ACTIONS(3801), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -162402,9 +172297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3803), 23, anon_sym_as, + 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, @@ -162421,739 +172320,774 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [105334] = 8, + anon_sym_LBRACE_PIPE, + [107618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4393), 1, - sym_number, - STATE(2616), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3867), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [105387] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, + 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(3869), 23, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(1893), 1, - sym_readonly, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - ACTIONS(4495), 1, - anon_sym_RBRACE, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [105456] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4499), 1, - anon_sym_RPAREN, - ACTIONS(4501), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [105529] = 8, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [107664] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, - sym_number, - STATE(2600), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_LBRACE, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3880), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [105582] = 15, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(3878), 15, anon_sym_STAR, - ACTIONS(4505), 1, - anon_sym_RBRACE, - STATE(3416), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [105649] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + 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(3880), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4507), 1, - anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [105722] = 6, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [107792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(1941), 5, + ACTIONS(1308), 14, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1939), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [105771] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, + 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(1306), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(1893), 1, - sym_readonly, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - ACTIONS(4505), 1, - anon_sym_RBRACE, - STATE(3416), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [105840] = 8, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [107838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4509), 1, - sym_number, - STATE(2684), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3797), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [105893] = 14, + 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(3799), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [107884] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - ACTIONS(4505), 1, - anon_sym_RBRACE, - STATE(3416), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2626), 1, anon_sym_LT, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + STATE(3604), 1, + sym_call_type_arguments, + STATE(1731), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [105958] = 8, + 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(637), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [107946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4511), 1, - sym_number, - STATE(2421), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(1304), 14, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3273), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [106011] = 15, + 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(1302), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [107992] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(4439), 1, + anon_sym_LBRACE, + ACTIONS(1310), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3783), 2, anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3777), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3780), 19, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(4493), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [108044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 14, anon_sym_STAR, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1298), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [108090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [106078] = 18, + 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(3845), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, + ACTIONS(3831), 15, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(4501), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3833), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4513), 1, - anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [106151] = 6, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(1941), 5, + ACTIONS(1296), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1294), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3245), 9, - sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [108228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 1, + anon_sym_LBRACE, + ACTIONS(1270), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3775), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3769), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3772), 19, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [108280] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 11, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 14, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3743), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1939), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [106200] = 16, + 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(3745), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(1186), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1184), 23, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1013), 1, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108434] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(1893), 1, - sym_readonly, - ACTIONS(4325), 1, + ACTIONS(4419), 1, + anon_sym_STAR, + ACTIONS(4421), 1, anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - STATE(3233), 1, + ACTIONS(4425), 1, + sym_number, + STATE(3735), 1, aux_sym_object_repeat1, - ACTIONS(1891), 2, + ACTIONS(4427), 2, anon_sym_get, anon_sym_set, - STATE(2751), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 4, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -163166,401 +173100,255 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106269] = 18, + sym_readonly, + [108498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, + ACTIONS(890), 15, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(4501), 1, - anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4515), 1, - anon_sym_class, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3352), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [106342] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(1941), 5, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1939), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [106391] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(561), 1, - anon_sym_RPAREN, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + 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(888), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - STATE(2122), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3412), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [106464] = 14, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108544] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, anon_sym_STAR, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3880), 5, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [106529] = 8, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108624] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, - sym_number, - STATE(2737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [106582] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(1893), 1, - sym_readonly, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, anon_sym_STAR, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4145), 5, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [106651] = 18, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, + ACTIONS(1208), 15, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(4501), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1206), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4517), 1, - anon_sym_RPAREN, - STATE(2111), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3271), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [106724] = 14, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108750] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, + ACTIONS(4419), 1, + anon_sym_STAR, + ACTIONS(4421), 1, anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(4429), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - STATE(3394), 1, + ACTIONS(4431), 1, + anon_sym_async, + ACTIONS(4433), 1, + sym_number, + ACTIONS(4437), 1, + sym_readonly, + STATE(3735), 1, aux_sym_object_repeat1, - ACTIONS(1891), 2, + ACTIONS(4435), 2, anon_sym_get, anon_sym_set, - STATE(2751), 3, + STATE(2590), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 4, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -163573,18 +173361,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [106789] = 6, + [108818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2625), 1, - anon_sym_QMARK_DOT, - ACTIONS(913), 14, + ACTIONS(3715), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -163598,9 +173380,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3717), 23, anon_sym_as, + 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, @@ -163617,183 +173403,138 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [106838] = 18, + anon_sym_LBRACE_PIPE, + [108864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, + ACTIONS(3827), 15, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(4501), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3829), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4519), 1, - anon_sym_RPAREN, - STATE(2109), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3390), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [106911] = 18, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [108910] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4521), 1, - anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [106984] = 14, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(3715), 1, + anon_sym_LBRACE, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3717), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108992] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(1448), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, + ACTIONS(4419), 1, + anon_sym_STAR, + ACTIONS(4421), 1, anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(4431), 1, + anon_sym_async, + ACTIONS(4433), 1, + sym_number, + ACTIONS(4447), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - STATE(3324), 1, + STATE(3735), 1, aux_sym_object_repeat1, - ACTIONS(1891), 2, + ACTIONS(4435), 2, anon_sym_get, anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [107049] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - sym_number, - STATE(2706), 3, + STATE(2590), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 9, + ACTIONS(3523), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -163803,15 +173544,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, + ACTIONS(3473), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163823,548 +173561,676 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107102] = 16, + [109058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1448), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(1893), 1, - sym_readonly, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(3823), 15, anon_sym_STAR, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [107171] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4523), 1, - sym_number, - STATE(2711), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, + 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(3825), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [107224] = 8, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [109104] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - sym_number, - STATE(2409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3717), 5, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3273), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [107277] = 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 1, - anon_sym_LPAREN, - ACTIONS(4533), 1, - anon_sym_DOT, - STATE(2135), 1, - sym_arguments, - ACTIONS(4529), 10, + ACTIONS(1152), 15, anon_sym_STAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4527), 22, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [107326] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1150), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [109230] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4439), 1, - sym_number, - STATE(2601), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4147), 5, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [107379] = 8, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4425), 1, - sym_number, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3927), 18, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [107432] = 18, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [109368] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4535), 1, - anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [107505] = 8, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [109432] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4449), 1, - sym_number, - STATE(2693), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 10, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [107558] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [109500] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4419), 1, - sym_number, - STATE(2731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, anon_sym_BANG, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 9, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [109572] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, + anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [107611] = 15, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [109634] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(3925), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 7, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1448), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [109710] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, anon_sym_STAR, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4149), 5, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [107678] = 18, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109790] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4537), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4151), 5, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [107751] = 6, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109870] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(2517), 1, + ACTIONS(2626), 1, + anon_sym_LT, + ACTIONS(2629), 1, anon_sym_DOT, - ACTIONS(2992), 1, + ACTIONS(3437), 1, anon_sym_QMARK_DOT, - ACTIONS(913), 14, + STATE(3585), 1, + sym_call_type_arguments, + STATE(2038), 2, + sym_template_string, + sym_arguments, + ACTIONS(625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -164375,9 +174241,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(637), 16, anon_sym_as, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -164393,371 +174258,426 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [107800] = 6, + [109932] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(1941), 5, - anon_sym_STAR, + ACTIONS(2624), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4381), 1, + anon_sym_as, + ACTIONS(4385), 1, + anon_sym_QMARK, + ACTIONS(4387), 1, + anon_sym_AMP_AMP, + ACTIONS(4393), 1, + anon_sym_AMP, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4389), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4391), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4153), 5, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4383), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1939), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [107849] = 18, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4401), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110012] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4539), 1, - anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [107922] = 14, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_as, + ACTIONS(4337), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_AMP_AMP, + ACTIONS(4345), 1, + anon_sym_AMP, + ACTIONS(4359), 1, + anon_sym_QMARK, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4361), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4331), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4333), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3717), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4339), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4341), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(1272), 14, anon_sym_STAR, - ACTIONS(4495), 1, - anon_sym_RBRACE, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [107987] = 18, + 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(1270), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [110138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(1268), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1266), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4541), 1, - anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [108060] = 8, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [110184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4387), 1, - sym_number, - STATE(2613), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4449), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4149), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [108113] = 15, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(1292), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1290), 24, + sym__call_type_arguments_closing_bracket, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4493), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [110312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 15, anon_sym_STAR, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [108180] = 15, + 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(3911), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [110358] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4309), 1, + anon_sym_QMARK, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4451), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, anon_sym_STAR, - ACTIONS(4495), 1, - anon_sym_RBRACE, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4153), 4, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [108247] = 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_LBRACK, - ACTIONS(923), 1, - anon_sym_QMARK_DOT, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(913), 14, + ACTIONS(3913), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -164771,9 +174691,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(927), 18, + ACTIONS(3915), 23, anon_sym_as, + 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, @@ -164790,662 +174714,947 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [108296] = 8, + anon_sym_LBRACE_PIPE, + [110486] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2684), 1, anon_sym_LBRACK, - ACTIONS(4475), 1, - sym_number, - STATE(2729), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4305), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(4309), 1, anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [108349] = 18, + ACTIONS(4311), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 1, + anon_sym_AMP, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_STAR_STAR, + ACTIONS(4327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4453), 1, + anon_sym_LBRACE, + ACTIONS(4313), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4315), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4151), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4307), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4325), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110568] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - ACTIONS(4543), 1, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4113), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [108422] = 8, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110647] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, - sym_number, - STATE(2730), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 9, - sym__automatic_semicolon, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4485), 1, anon_sym_COMMA, + ACTIONS(4488), 1, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4151), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [108475] = 12, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110730] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(3925), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 6, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1448), 1, anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [110805] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, anon_sym_LBRACK, - STATE(3324), 1, - aux_sym_object_repeat1, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [108535] = 17, + 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(3927), 17, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [110862] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3300), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [108605] = 3, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4512), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 11, + ACTIONS(4514), 1, + anon_sym_AMP, + ACTIONS(4516), 1, + anon_sym_PIPE, + ACTIONS(4518), 1, + anon_sym_extends, + ACTIONS(2136), 12, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4545), 23, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2134), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [108647] = 17, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [110992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, + ACTIONS(4520), 1, + anon_sym_AMP, + ACTIONS(4522), 1, + anon_sym_PIPE, + ACTIONS(2152), 13, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(4501), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2150), 22, + anon_sym_as, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3380), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [108717] = 12, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [111041] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2624), 1, anon_sym_LBRACK, - ACTIONS(4505), 1, - anon_sym_RBRACE, - STATE(3416), 1, - aux_sym_object_repeat1, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4530), 1, + anon_sym_RPAREN, + ACTIONS(4534), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(4536), 1, anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [108777] = 12, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + STATE(4230), 1, + sym_type_annotation, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111126] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(4495), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4155), 4, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3325), 1, - aux_sym_object_repeat1, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [108837] = 12, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111205] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, anon_sym_STAR, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4549), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4083), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [108897] = 14, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111284] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(1893), 1, - sym_readonly, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4549), 2, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4556), 1, anon_sym_COMMA, + ACTIONS(4559), 1, anon_sym_RBRACE, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [108961] = 17, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111367] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - STATE(2121), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3583), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [109031] = 6, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4559), 1, + anon_sym_RBRACE, + ACTIONS(4561), 1, + anon_sym_COMMA, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4147), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111450] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(3311), 2, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 9, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1941), 5, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [111517] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_COLON, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4564), 1, + anon_sym_RPAREN, + STATE(4255), 1, + sym_type_annotation, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111602] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3245), 7, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4121), 4, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4490), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1939), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [109079] = 12, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111681] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, + ACTIONS(4421), 1, anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - STATE(3233), 1, + ACTIONS(4425), 1, + sym_number, + STATE(3735), 1, aux_sym_object_repeat1, - STATE(2751), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 4, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -165465,44 +175674,15862 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109139] = 13, + [111740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, + ACTIONS(4520), 1, + anon_sym_AMP, + ACTIONS(4522), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_extends, + ACTIONS(2136), 13, anon_sym_STAR, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4549), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2751), 3, - sym_string, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2134), 21, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [111791] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 14, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + 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, + [111852] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4151), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111931] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4153), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112010] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4153), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112089] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 14, + sym__automatic_semicolon, + 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, + [112152] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4568), 1, + anon_sym_COMMA, + ACTIONS(4571), 1, + anon_sym_RBRACE, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4149), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112235] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_COLON, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4573), 1, + anon_sym_RPAREN, + STATE(4338), 1, + sym_type_annotation, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112320] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4155), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112399] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4151), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112478] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4083), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112557] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4121), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112636] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4149), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112715] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4145), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112794] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + STATE(3591), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112877] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_COLON, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4601), 1, + anon_sym_RPAREN, + STATE(4441), 1, + sym_type_annotation, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112962] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_STAR, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4425), 1, + sym_number, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4427), 2, + anon_sym_get, + anon_sym_set, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [113025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 1, + anon_sym_AMP, + ACTIONS(4522), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_extends, + ACTIONS(3867), 13, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3869), 21, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [113076] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_STAR, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4431), 1, + anon_sym_async, + ACTIONS(4433), 1, + sym_number, + ACTIONS(4437), 1, + sym_readonly, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4435), 2, + anon_sym_get, + anon_sym_set, + STATE(2590), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [113143] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4145), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113222] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4149), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113301] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(3925), 1, + anon_sym_QMARK, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 6, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [113376] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_STAR, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_async, + ACTIONS(4433), 1, + sym_number, + ACTIONS(4447), 1, + anon_sym_LBRACK, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4435), 2, + anon_sym_get, + anon_sym_set, + STATE(2590), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [113441] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_COLON, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4603), 1, + anon_sym_RPAREN, + STATE(4323), 1, + sym_type_annotation, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113526] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 1, + anon_sym_COMMA, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4577), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4609), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + STATE(3490), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113611] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4147), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_AMP, + ACTIONS(4516), 1, + anon_sym_PIPE, + ACTIONS(4518), 1, + anon_sym_extends, + ACTIONS(2156), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2154), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [113741] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4633), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_AMP, + ACTIONS(4516), 1, + anon_sym_PIPE, + ACTIONS(2152), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2150), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_extends, + [113871] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 14, + sym__automatic_semicolon, + 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, + [113932] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4447), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_STAR, + ACTIONS(4637), 1, + anon_sym_async, + ACTIONS(4639), 1, + sym_number, + ACTIONS(4641), 1, + anon_sym_abstract, + ACTIONS(4643), 2, + anon_sym_get, + anon_sym_set, + STATE(2570), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [113995] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4425), 1, + sym_number, + STATE(3852), 1, + aux_sym_object_repeat1, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [114054] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4147), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114133] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [114204] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 1, + anon_sym_AMP, + ACTIONS(4522), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_extends, + ACTIONS(2156), 13, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2154), 21, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [114255] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [114322] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3927), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + 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, + [114379] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR, + ACTIONS(4647), 1, + anon_sym_async, + ACTIONS(4649), 1, + sym_number, + ACTIONS(4651), 1, + anon_sym_abstract, + ACTIONS(4653), 2, + anon_sym_get, + anon_sym_set, + STATE(2569), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [114442] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [114513] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4113), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114592] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_AMP, + ACTIONS(4516), 1, + anon_sym_PIPE, + ACTIONS(4518), 1, + anon_sym_extends, + ACTIONS(3867), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3869), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [114643] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 14, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + 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, + [114706] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4655), 1, + anon_sym_RBRACK, + STATE(3802), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114788] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4657), 1, + anon_sym_STAR, + ACTIONS(4659), 1, + sym_number, + ACTIONS(4661), 2, + anon_sym_get, + anon_sym_set, + STATE(3106), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [114846] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4121), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114924] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4663), 1, + anon_sym_STAR, + ACTIONS(4665), 1, + anon_sym_async, + ACTIONS(4667), 1, + sym_number, + ACTIONS(4669), 2, + anon_sym_get, + anon_sym_set, + STATE(2583), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [114984] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(3523), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1916), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [115030] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4145), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115108] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 13, + 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_implements, + [115170] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4671), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115252] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4673), 1, + anon_sym_STAR, + ACTIONS(4675), 1, + sym_number, + ACTIONS(4677), 2, + anon_sym_get, + anon_sym_set, + STATE(3098), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [115310] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4679), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115388] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4681), 1, + anon_sym_STAR, + ACTIONS(4683), 1, + anon_sym_async, + ACTIONS(4685), 1, + sym_number, + ACTIONS(4687), 2, + anon_sym_get, + anon_sym_set, + STATE(2584), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [115448] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4689), 1, + anon_sym_RBRACK, + STATE(3824), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115530] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4663), 1, + anon_sym_STAR, + ACTIONS(4665), 1, + anon_sym_async, + ACTIONS(4667), 1, + sym_number, + ACTIONS(4691), 1, + sym_readonly, + ACTIONS(4669), 2, + anon_sym_get, + anon_sym_set, + STATE(2583), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [115592] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4693), 1, + anon_sym_RBRACK, + STATE(3802), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115674] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4695), 1, + anon_sym_STAR, + ACTIONS(4697), 1, + anon_sym_async, + ACTIONS(4699), 1, + sym_number, + ACTIONS(4703), 1, + sym_readonly, + ACTIONS(4701), 2, + anon_sym_get, + anon_sym_set, + STATE(2593), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [115736] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4405), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4113), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115816] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4407), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4083), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115896] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4083), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115974] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4705), 1, + anon_sym_STAR, + ACTIONS(4707), 1, + sym_number, + ACTIONS(4709), 2, + anon_sym_get, + anon_sym_set, + STATE(3156), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [116032] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4711), 1, + anon_sym_STAR, + ACTIONS(4713), 1, + sym_number, + ACTIONS(4715), 2, + anon_sym_get, + anon_sym_set, + STATE(3149), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [116090] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4717), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RBRACK, + STATE(3859), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116172] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4721), 1, + anon_sym_STAR, + ACTIONS(4723), 1, + sym_number, + ACTIONS(4725), 2, + anon_sym_get, + anon_sym_set, + STATE(3104), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [116230] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR, + ACTIONS(4647), 1, + anon_sym_async, + ACTIONS(4649), 1, + sym_number, + ACTIONS(4727), 1, + sym_readonly, + ACTIONS(4653), 2, + anon_sym_get, + anon_sym_set, + STATE(2569), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [116292] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4679), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116370] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4729), 1, + anon_sym_RBRACK, + STATE(3859), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116452] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4425), 1, + sym_number, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [116510] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4145), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116588] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4731), 1, + anon_sym_LBRACE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4733), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116668] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4735), 1, + anon_sym_COMMA, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4737), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116748] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 8, + 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_implements, + [116814] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 13, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [116876] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4679), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116954] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [117020] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4739), 1, + anon_sym_STAR, + ACTIONS(4741), 1, + anon_sym_async, + ACTIONS(4743), 1, + sym_number, + ACTIONS(4745), 2, + anon_sym_get, + anon_sym_set, + STATE(2580), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [117080] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [117150] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 13, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [117210] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4447), 1, + anon_sym_LBRACK, + ACTIONS(4711), 1, + anon_sym_STAR, + ACTIONS(4747), 1, + anon_sym_async, + ACTIONS(4749), 1, + sym_number, + ACTIONS(4751), 2, + anon_sym_get, + anon_sym_set, + STATE(2589), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [117270] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4753), 1, + anon_sym_RPAREN, + STATE(3777), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117352] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4147), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117430] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(3925), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3927), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117504] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4445), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4121), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117584] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4739), 1, + anon_sym_STAR, + ACTIONS(4755), 1, + sym_number, + ACTIONS(4757), 2, + anon_sym_get, + anon_sym_set, + STATE(3141), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [117642] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117720] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3927), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_implements, + [117776] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117854] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4695), 1, + anon_sym_STAR, + ACTIONS(4759), 1, + sym_number, + ACTIONS(4761), 2, + anon_sym_get, + anon_sym_set, + STATE(3050), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [117912] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4121), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117990] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4113), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118068] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4147), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118146] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3927), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [118202] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4717), 1, + anon_sym_COMMA, + ACTIONS(4763), 1, + anon_sym_RBRACK, + STATE(3859), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118284] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 7, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [118354] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 13, + 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_implements, + [118414] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(3925), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3927), 5, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_implements, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118488] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118566] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4695), 1, + anon_sym_STAR, + ACTIONS(4697), 1, + anon_sym_async, + ACTIONS(4699), 1, + sym_number, + ACTIONS(4701), 2, + anon_sym_get, + anon_sym_set, + STATE(2593), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [118626] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118704] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118782] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118860] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4155), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118938] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4765), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119016] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4679), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119094] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4443), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119174] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4735), 1, + anon_sym_COMMA, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4767), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119254] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4663), 1, + anon_sym_STAR, + ACTIONS(4769), 1, + sym_number, + ACTIONS(4771), 2, + anon_sym_get, + anon_sym_set, + STATE(3091), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [119312] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4773), 1, + anon_sym_RPAREN, + STATE(3773), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119394] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4735), 1, + anon_sym_COMMA, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119474] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_STAR, + ACTIONS(4637), 1, + anon_sym_async, + ACTIONS(4639), 1, + sym_number, + ACTIONS(4777), 1, + sym_readonly, + ACTIONS(4643), 2, + anon_sym_get, + anon_sym_set, + STATE(2570), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [119536] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4145), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119616] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4779), 1, + anon_sym_RBRACK, + STATE(3752), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119698] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR, + ACTIONS(4647), 1, + anon_sym_async, + ACTIONS(4649), 1, + sym_number, + ACTIONS(4653), 2, + anon_sym_get, + anon_sym_set, + STATE(2569), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [119758] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4083), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119836] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR, + ACTIONS(4781), 1, + sym_number, + ACTIONS(4783), 2, + anon_sym_get, + anon_sym_set, + STATE(3048), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [119894] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4711), 1, + anon_sym_STAR, + ACTIONS(4747), 1, + anon_sym_async, + ACTIONS(4749), 1, + sym_number, + ACTIONS(4785), 1, + sym_readonly, + ACTIONS(4751), 2, + anon_sym_get, + anon_sym_set, + STATE(2589), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [119956] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4733), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120034] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4787), 1, + anon_sym_RPAREN, + STATE(3744), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120116] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4681), 1, + anon_sym_STAR, + ACTIONS(4789), 1, + sym_number, + ACTIONS(4791), 2, + anon_sym_get, + anon_sym_set, + STATE(3103), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [120174] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4155), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120252] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4373), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4147), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120332] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3925), 14, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3927), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_LBRACE_PIPE, + [120388] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 9, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 12, + anon_sym_as, + 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_LBRACE_PIPE, + [120450] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 4, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [120516] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 3, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3927), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [120586] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3925), 11, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3927), 12, + anon_sym_as, + 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_LBRACE_PIPE, + [120646] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(3925), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3927), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120720] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4149), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120800] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4453), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4151), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120880] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4793), 1, + anon_sym_RBRACK, + STATE(3859), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120962] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOT, + ACTIONS(4299), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_BANG, + ACTIONS(4451), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(4613), 1, + anon_sym_QMARK, + ACTIONS(4615), 1, + anon_sym_AMP_AMP, + ACTIONS(4621), 1, + anon_sym_AMP, + ACTIONS(4623), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_STAR_STAR, + ACTIONS(4631), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4153), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4329), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4617), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4625), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4619), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4611), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4629), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121042] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4795), 1, + anon_sym_RBRACK, + STATE(3859), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121124] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4735), 1, + anon_sym_COMMA, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4633), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121204] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4797), 1, + anon_sym_RPAREN, + STATE(3786), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121286] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP_AMP, + ACTIONS(4589), 1, + anon_sym_AMP, + ACTIONS(4591), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4113), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4587), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4579), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121364] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4799), 1, + anon_sym_RPAREN, + STATE(3866), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121446] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4801), 1, + anon_sym_RBRACK, + STATE(3707), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121528] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_STAR, + ACTIONS(4803), 1, + sym_number, + ACTIONS(4805), 2, + anon_sym_get, + anon_sym_set, + STATE(3170), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [121586] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4807), 1, + anon_sym_RPAREN, + STATE(3915), 1, + aux_sym_array_repeat1, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121668] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4679), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121746] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4657), 1, + anon_sym_STAR, + ACTIONS(4809), 1, + anon_sym_async, + ACTIONS(4811), 1, + sym_number, + ACTIONS(4813), 2, + anon_sym_get, + anon_sym_set, + STATE(2577), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [121806] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4817), 1, + anon_sym_RPAREN, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [121879] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [121944] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122023] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + sym_number, + STATE(2770), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [122076] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4831), 1, + sym_number, + STATE(3127), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [122129] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4781), 1, + sym_number, + STATE(3048), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [122182] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4833), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4839), 1, + anon_sym_LPAREN, + ACTIONS(4841), 1, + anon_sym_DOT, + STATE(2452), 1, + sym_arguments, + ACTIONS(4837), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4835), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [122308] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4843), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122387] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4675), 1, + sym_number, + STATE(3098), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [122440] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4845), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [122513] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4847), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122592] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4849), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122671] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4851), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [122744] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3755), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [122811] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4853), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [122939] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + sym_number, + STATE(3141), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [122992] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(1784), 1, + sym_readonly, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3755), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [123061] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4855), 1, + anon_sym_RBRACE, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123140] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3755), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [123205] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4857), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123284] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4859), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [123412] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123491] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4863), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123568] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4865), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123647] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4867), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [123720] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, + sym_number, + STATE(3156), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [123773] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4713), 1, + sym_number, + STATE(3149), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [123826] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4869), 1, + anon_sym_RPAREN, + STATE(2439), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3892), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [123899] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4871), 1, + anon_sym_RBRACE, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123978] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4873), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [124051] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(593), 1, + anon_sym_RPAREN, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + STATE(2422), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3702), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [124124] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124203] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4759), 1, + sym_number, + STATE(3050), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [124256] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4877), 1, + anon_sym_RPAREN, + STATE(2441), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3709), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [124329] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4879), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [124402] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4881), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124481] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4883), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124560] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4885), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124639] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4887), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124718] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3850), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [124785] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4889), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124864] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4891), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124943] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4893), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [125016] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4895), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125095] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4897), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125174] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4899), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125253] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4901), 1, + sym_number, + STATE(2714), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3473), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [125306] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4903), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125385] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + sym_number, + STATE(3010), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [125438] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4907), 1, + anon_sym_RBRACE, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125517] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4909), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125594] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4765), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125671] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(4911), 1, + anon_sym_RBRACE, + STATE(3810), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [125738] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(1784), 1, + sym_readonly, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3850), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [125807] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125884] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4915), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125963] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4917), 1, + anon_sym_RPAREN, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126042] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(1784), 1, + sym_readonly, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(4911), 1, + anon_sym_RBRACE, + STATE(3810), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [126111] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + anon_sym_COMMA, + ACTIONS(4921), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126190] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + sym_number, + STATE(3104), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [126243] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(4911), 1, + anon_sym_RBRACE, + STATE(3810), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [126308] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [126373] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4789), 1, + sym_number, + STATE(3103), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [126426] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3850), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [126491] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4769), 1, + sym_number, + STATE(3091), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [126544] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(1784), 1, + sym_readonly, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [126613] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4923), 1, + anon_sym_class, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3825), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [126686] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4633), 1, + anon_sym_COLON, + ACTIONS(4919), 1, + anon_sym_COMMA, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126765] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [126832] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4925), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126911] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4559), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126988] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4927), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127067] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4571), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127144] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4488), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127221] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [127288] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4929), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [127361] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4659), 1, + sym_number, + STATE(3106), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [127414] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + sym_number, + STATE(3170), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [127467] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(1784), 1, + sym_readonly, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [127536] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_DOT, + ACTIONS(4085), 1, + anon_sym_BANG, + ACTIONS(4089), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_as, + ACTIONS(4492), 1, + anon_sym_QMARK, + ACTIONS(4494), 1, + anon_sym_AMP_AMP, + ACTIONS(4500), 1, + anon_sym_AMP, + ACTIONS(4502), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_STAR_STAR, + ACTIONS(4510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4111), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4496), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4931), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4498), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4490), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4508), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127613] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + ACTIONS(4933), 1, + anon_sym_RPAREN, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [127686] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(3852), 1, + aux_sym_object_repeat1, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [127746] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4935), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127822] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4937), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127898] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4179), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [127968] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4939), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128044] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4941), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128120] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [128180] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3825), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [128250] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4911), 1, + anon_sym_RBRACE, + STATE(3810), 1, + aux_sym_object_repeat1, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [128310] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + STATE(3850), 1, + aux_sym_object_repeat1, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [128370] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4943), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128446] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + STATE(2418), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3972), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [128516] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4945), 1, + anon_sym_RBRACK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128592] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4947), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128668] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [128730] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4951), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128806] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4953), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128882] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(1784), 1, + sym_readonly, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [128946] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [129006] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4955), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(3523), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [129130] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + STATE(3755), 1, + aux_sym_object_repeat1, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [129190] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4957), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4961), 11, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4959), 23, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [129308] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3718), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [129378] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_QMARK, + ACTIONS(4538), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_AMP, + ACTIONS(4546), 1, + anon_sym_PIPE, + ACTIONS(4550), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4963), 1, + anon_sym_COLON, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4532), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129454] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, + sym_readonly, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + STATE(2546), 1, + sym_accessibility_modifier, + STATE(2940), 1, + sym__parameter_name, + STATE(3288), 1, + sym_object, + STATE(3290), 1, + sym_array, + STATE(3578), 1, + sym__rest_identifier, + ACTIONS(4815), 2, + sym_identifier, + sym_this, + ACTIONS(1993), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3822), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1979), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [129524] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_QMARK_DOT, + ACTIONS(3795), 1, + anon_sym_BANG, + ACTIONS(4457), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_AMP_AMP, + ACTIONS(4469), 1, + anon_sym_AMP, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_STAR_STAR, + ACTIONS(4479), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3733), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4455), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4467), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4459), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4477), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129597] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1366), 1, + anon_sym_type, + ACTIONS(1368), 1, + anon_sym_import, + ACTIONS(1370), 1, + anon_sym_var, + ACTIONS(1372), 1, + anon_sym_let, + ACTIONS(1374), 1, + anon_sym_const, + ACTIONS(1390), 1, + anon_sym_class, + ACTIONS(1392), 1, + anon_sym_async, + ACTIONS(1394), 1, + anon_sym_function, + ACTIONS(1403), 1, + anon_sym_abstract, + ACTIONS(1409), 1, + anon_sym_interface, + ACTIONS(1411), 1, + anon_sym_enum, + ACTIONS(1425), 1, + anon_sym_global, + ACTIONS(1429), 1, + anon_sym_namespace, + ACTIONS(1438), 1, + anon_sym_declare, + ACTIONS(1484), 1, + anon_sym_module, + STATE(707), 1, + sym__declaration, + STATE(722), 1, + sym_internal_module, + STATE(2545), 1, + sym_decorator, + STATE(3361), 1, + aux_sym_export_statement_repeat1, + STATE(672), 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, + [129676] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [129731] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1366), 1, + anon_sym_type, + ACTIONS(1368), 1, + anon_sym_import, + ACTIONS(1370), 1, + anon_sym_var, + ACTIONS(1372), 1, + anon_sym_let, + ACTIONS(1374), 1, + anon_sym_const, + ACTIONS(1390), 1, + anon_sym_class, + ACTIONS(1392), 1, + anon_sym_async, + ACTIONS(1394), 1, + anon_sym_function, + ACTIONS(1403), 1, + anon_sym_abstract, + ACTIONS(1409), 1, + anon_sym_interface, + ACTIONS(1411), 1, + anon_sym_enum, + ACTIONS(1429), 1, + anon_sym_namespace, + ACTIONS(1438), 1, + anon_sym_declare, + ACTIONS(1440), 1, + anon_sym_module, + ACTIONS(4965), 1, + anon_sym_default, + STATE(704), 1, + sym__declaration, + STATE(722), 1, + sym_internal_module, + STATE(2545), 1, + sym_decorator, + STATE(3361), 1, + aux_sym_export_statement_repeat1, + STATE(672), 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, + [129810] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1360), 1, + anon_sym_namespace, + ACTIONS(1366), 1, + anon_sym_type, + ACTIONS(1368), 1, + anon_sym_import, + ACTIONS(1370), 1, + anon_sym_var, + ACTIONS(1372), 1, + anon_sym_let, + ACTIONS(1374), 1, + anon_sym_const, + ACTIONS(1390), 1, + anon_sym_class, + ACTIONS(1392), 1, + anon_sym_async, + ACTIONS(1394), 1, + anon_sym_function, + ACTIONS(1403), 1, + anon_sym_abstract, + ACTIONS(1405), 1, + anon_sym_declare, + ACTIONS(1407), 1, + anon_sym_module, + ACTIONS(1409), 1, + anon_sym_interface, + ACTIONS(1411), 1, + anon_sym_enum, + ACTIONS(4965), 1, + anon_sym_default, + STATE(704), 1, + sym__declaration, + STATE(722), 1, + sym_internal_module, + STATE(2545), 1, + sym_decorator, + STATE(3361), 1, + aux_sym_export_statement_repeat1, + STATE(672), 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, + [129889] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1360), 1, + anon_sym_namespace, + ACTIONS(1366), 1, + anon_sym_type, + ACTIONS(1368), 1, + anon_sym_import, + ACTIONS(1370), 1, + anon_sym_var, + ACTIONS(1372), 1, + anon_sym_let, + ACTIONS(1374), 1, + anon_sym_const, + ACTIONS(1390), 1, + anon_sym_class, + ACTIONS(1392), 1, + anon_sym_async, + ACTIONS(1394), 1, + anon_sym_function, + ACTIONS(1403), 1, + anon_sym_abstract, + ACTIONS(1407), 1, + anon_sym_module, + ACTIONS(1409), 1, + anon_sym_interface, + ACTIONS(1411), 1, + anon_sym_enum, + ACTIONS(1454), 1, + anon_sym_declare, + ACTIONS(4965), 1, + anon_sym_default, + STATE(704), 1, + sym__declaration, + STATE(722), 1, + sym_internal_module, + STATE(2545), 1, + sym_decorator, + STATE(3361), 1, + aux_sym_export_statement_repeat1, + STATE(672), 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, + [129968] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3521), 1, + anon_sym_namespace, + ACTIONS(3525), 1, + anon_sym_type, + ACTIONS(3527), 1, + anon_sym_import, + ACTIONS(3529), 1, + anon_sym_var, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(3533), 1, + anon_sym_const, + ACTIONS(3535), 1, + anon_sym_class, + ACTIONS(3537), 1, + anon_sym_async, + ACTIONS(3539), 1, + anon_sym_function, + ACTIONS(3541), 1, + anon_sym_abstract, + ACTIONS(3543), 1, + anon_sym_declare, + ACTIONS(3547), 1, + anon_sym_interface, + ACTIONS(3549), 1, + anon_sym_enum, + ACTIONS(4967), 1, + anon_sym_module, + ACTIONS(4969), 1, + anon_sym_global, + STATE(2545), 1, + sym_decorator, + STATE(3198), 1, + sym__declaration, + STATE(3243), 1, + sym_internal_module, + STATE(3352), 1, + aux_sym_export_statement_repeat1, + STATE(3283), 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, + [130047] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3521), 1, + anon_sym_namespace, + ACTIONS(3525), 1, + anon_sym_type, + ACTIONS(3527), 1, + anon_sym_import, + ACTIONS(3529), 1, + anon_sym_var, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(3533), 1, + anon_sym_const, + ACTIONS(3535), 1, + anon_sym_class, + ACTIONS(3537), 1, + anon_sym_async, + ACTIONS(3539), 1, + anon_sym_function, + ACTIONS(3541), 1, + anon_sym_abstract, + ACTIONS(3543), 1, + anon_sym_declare, + ACTIONS(3545), 1, + anon_sym_module, + ACTIONS(3547), 1, + anon_sym_interface, + ACTIONS(3549), 1, + anon_sym_enum, + ACTIONS(4971), 1, + anon_sym_default, + STATE(2545), 1, + sym_decorator, + STATE(3243), 1, + sym_internal_module, + STATE(3352), 1, + aux_sym_export_statement_repeat1, + STATE(3422), 1, + sym__declaration, + STATE(3283), 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, + [130126] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1360), 1, + anon_sym_namespace, + ACTIONS(1366), 1, + anon_sym_type, + ACTIONS(1368), 1, + anon_sym_import, + ACTIONS(1370), 1, + anon_sym_var, + ACTIONS(1372), 1, + anon_sym_let, + ACTIONS(1374), 1, + anon_sym_const, + ACTIONS(1390), 1, + anon_sym_class, + ACTIONS(1392), 1, + anon_sym_async, + ACTIONS(1394), 1, + anon_sym_function, + ACTIONS(1403), 1, + anon_sym_abstract, + ACTIONS(1405), 1, + anon_sym_declare, + ACTIONS(1409), 1, + anon_sym_interface, + ACTIONS(1411), 1, + anon_sym_enum, + ACTIONS(1423), 1, + anon_sym_module, + ACTIONS(1425), 1, + anon_sym_global, + STATE(707), 1, + sym__declaration, + STATE(722), 1, + sym_internal_module, + STATE(2545), 1, + sym_decorator, + STATE(3361), 1, + aux_sym_export_statement_repeat1, + STATE(672), 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, + [130205] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1360), 1, + anon_sym_namespace, + ACTIONS(1366), 1, + anon_sym_type, + ACTIONS(1368), 1, + anon_sym_import, + ACTIONS(1370), 1, + anon_sym_var, + ACTIONS(1372), 1, + anon_sym_let, + ACTIONS(1374), 1, + anon_sym_const, + ACTIONS(1390), 1, + anon_sym_class, + ACTIONS(1392), 1, + anon_sym_async, + ACTIONS(1394), 1, + anon_sym_function, + ACTIONS(1403), 1, + anon_sym_abstract, + ACTIONS(1409), 1, + anon_sym_interface, + ACTIONS(1411), 1, + anon_sym_enum, + ACTIONS(1425), 1, + anon_sym_global, + ACTIONS(1454), 1, + anon_sym_declare, + ACTIONS(1490), 1, + anon_sym_module, + STATE(707), 1, + sym__declaration, + STATE(722), 1, + sym_internal_module, + STATE(2545), 1, + sym_decorator, + STATE(3361), 1, + aux_sym_export_statement_repeat1, + STATE(672), 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, + [130284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4975), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4973), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130324] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4911), 1, + anon_sym_RBRACE, + STATE(3810), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [130374] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [130424] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3755), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [130474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1296), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1092), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1094), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130554] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [130604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1288), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4837), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4835), 22, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130684] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3850), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [130734] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1918), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(1916), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [130779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4981), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4979), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4977), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4985), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4983), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4989), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4987), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130895] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4991), 1, + anon_sym_STAR, + ACTIONS(4993), 1, + anon_sym_async, + ACTIONS(4995), 1, + sym_number, + ACTIONS(4997), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [130949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5001), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4999), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [130987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5005), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5003), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5009), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5007), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5013), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5011), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5017), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5015), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1208), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131177] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4991), 1, + anon_sym_STAR, + ACTIONS(4995), 1, + sym_number, + ACTIONS(4997), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [131229] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5019), 1, + anon_sym_EQ_GT, + ACTIONS(5021), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3115), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [131279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5025), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5023), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5029), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5027), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5031), 1, + sym__automatic_semicolon, + ACTIONS(1206), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1208), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131395] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + sym_number, + ACTIONS(5037), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [131447] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 1, + sym__automatic_semicolon, + ACTIONS(1082), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1084), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131487] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, + sym_number, + ACTIONS(5041), 1, + anon_sym_STAR, + ACTIONS(5043), 1, + anon_sym_async, + ACTIONS(5047), 1, + sym_readonly, + ACTIONS(5045), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3115), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [131543] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, + sym_number, + ACTIONS(5041), 1, + anon_sym_STAR, + ACTIONS(5043), 1, + anon_sym_async, + ACTIONS(5045), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3115), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [131597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5051), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5049), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5055), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5053), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1184), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1186), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5059), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(5057), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + 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, + sym_readonly, + [131749] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, + sym_number, + ACTIONS(5041), 1, + anon_sym_STAR, + ACTIONS(5045), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3115), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [131801] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4675), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3098), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [131848] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3115), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [131895] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + STATE(3399), 1, + sym_array, + STATE(3400), 1, + sym_object, + ACTIONS(5061), 2, + sym_identifier, + sym_this, + ACTIONS(2724), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(5063), 18, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [131942] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4759), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3050), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [131989] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5065), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3171), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [132036] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3104), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [132083] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5067), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3026), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [132130] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3016), 3, + sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3245), 4, + ACTIONS(1778), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [132177] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5071), 1, + sym_number, + ACTIONS(3523), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 16, + STATE(3109), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -165514,35 +191541,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109201] = 12, + [132224] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - STATE(3394), 1, - aux_sym_object_repeat1, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, + ACTIONS(4755), 1, + sym_number, + ACTIONS(3523), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 19, + STATE(3141), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -165562,480 +191580,182 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109261] = 17, + [132271] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3514), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, + ACTIONS(4707), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3156), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [109331] = 17, + sym_readonly, + [132318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(569), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4503), 1, - sym_readonly, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - STATE(2226), 1, - sym_accessibility_modifier, - STATE(2595), 1, - sym__parameter_name, - STATE(3028), 1, - sym_array, - STATE(3029), 1, - sym_object, - STATE(3133), 1, - sym__rest_identifier, - ACTIONS(4497), 2, - sym_identifier, - sym_this, - ACTIONS(1923), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3352), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1911), 14, + ACTIONS(5035), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [109401] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1395), 1, - anon_sym_namespace, - ACTIONS(1401), 1, - anon_sym_type, - ACTIONS(1403), 1, - anon_sym_import, - ACTIONS(1405), 1, - anon_sym_var, - ACTIONS(1407), 1, - anon_sym_let, - ACTIONS(1409), 1, - anon_sym_const, - ACTIONS(1424), 1, - anon_sym_class, - ACTIONS(1426), 1, - anon_sym_async, - ACTIONS(1428), 1, - anon_sym_function, - ACTIONS(1430), 1, - anon_sym_abstract, - ACTIONS(1432), 1, - anon_sym_declare, - ACTIONS(1434), 1, - anon_sym_module, - ACTIONS(1436), 1, - anon_sym_interface, - ACTIONS(1438), 1, - anon_sym_enum, - ACTIONS(4551), 1, - anon_sym_default, - STATE(624), 1, - sym__declaration, - STATE(656), 1, - sym_internal_module, - STATE(2202), 1, - sym_decorator, - STATE(2832), 1, - aux_sym_export_statement_repeat1, - STATE(623), 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, - [109480] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1401), 1, - anon_sym_type, - ACTIONS(1403), 1, - anon_sym_import, - ACTIONS(1405), 1, - anon_sym_var, - ACTIONS(1407), 1, - anon_sym_let, - ACTIONS(1409), 1, - anon_sym_const, - ACTIONS(1424), 1, - anon_sym_class, - ACTIONS(1426), 1, - anon_sym_async, - ACTIONS(1428), 1, - anon_sym_function, - ACTIONS(1430), 1, - anon_sym_abstract, - ACTIONS(1436), 1, - anon_sym_interface, - ACTIONS(1438), 1, - anon_sym_enum, - ACTIONS(1474), 1, - anon_sym_global, - ACTIONS(1520), 1, - anon_sym_namespace, - ACTIONS(1524), 1, - anon_sym_declare, - ACTIONS(1690), 1, - anon_sym_module, - STATE(639), 1, - sym__declaration, - STATE(656), 1, - sym_internal_module, - STATE(2202), 1, - sym_decorator, - STATE(2832), 1, - aux_sym_export_statement_repeat1, - STATE(623), 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, - [109559] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1401), 1, - anon_sym_type, - ACTIONS(1403), 1, - anon_sym_import, - ACTIONS(1405), 1, - anon_sym_var, - ACTIONS(1407), 1, - anon_sym_let, - ACTIONS(1409), 1, - anon_sym_const, - ACTIONS(1424), 1, - anon_sym_class, - ACTIONS(1426), 1, - anon_sym_async, - ACTIONS(1428), 1, - anon_sym_function, - ACTIONS(1430), 1, - anon_sym_abstract, - ACTIONS(1436), 1, - anon_sym_interface, - ACTIONS(1438), 1, - anon_sym_enum, - ACTIONS(1520), 1, - anon_sym_namespace, - ACTIONS(1524), 1, - anon_sym_declare, - ACTIONS(1526), 1, - anon_sym_module, - ACTIONS(4551), 1, - anon_sym_default, - STATE(624), 1, - sym__declaration, - STATE(656), 1, - sym_internal_module, - STATE(2202), 1, - sym_decorator, - STATE(2832), 1, - aux_sym_export_statement_repeat1, - STATE(623), 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, - [109638] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(3243), 1, - anon_sym_namespace, - ACTIONS(3247), 1, - anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, - anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, - anon_sym_declare, - ACTIONS(3267), 1, - anon_sym_module, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - ACTIONS(4553), 1, - anon_sym_default, - STATE(2202), 1, - sym_decorator, - STATE(2840), 1, - sym__declaration, - STATE(2874), 1, - sym_internal_module, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(2880), 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, - [109717] = 22, + sym_readonly, + [132365] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(3243), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4769), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3091), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, anon_sym_namespace, - ACTIONS(3247), 1, anon_sym_type, - ACTIONS(3249), 1, - anon_sym_import, - ACTIONS(3251), 1, - anon_sym_var, - ACTIONS(3253), 1, - anon_sym_let, - ACTIONS(3255), 1, - anon_sym_const, - ACTIONS(3257), 1, - anon_sym_class, - ACTIONS(3259), 1, anon_sym_async, - ACTIONS(3261), 1, - anon_sym_function, - ACTIONS(3263), 1, - anon_sym_abstract, - ACTIONS(3265), 1, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(3269), 1, - anon_sym_interface, - ACTIONS(3271), 1, - anon_sym_enum, - ACTIONS(4555), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, - ACTIONS(4557), 1, - anon_sym_global, - STATE(2202), 1, - sym_decorator, - STATE(2871), 1, - sym__declaration, - STATE(2874), 1, - sym_internal_module, - STATE(2906), 1, - aux_sym_export_statement_repeat1, - STATE(2880), 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, - [109796] = 22, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [132412] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1395), 1, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + STATE(3273), 1, + sym_object, + STATE(3275), 1, + sym_array, + ACTIONS(1966), 2, + sym_identifier, + sym_this, + ACTIONS(717), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(699), 18, + anon_sym_export, anon_sym_namespace, - ACTIONS(1401), 1, anon_sym_type, - ACTIONS(1403), 1, - anon_sym_import, - ACTIONS(1405), 1, - anon_sym_var, - ACTIONS(1407), 1, - anon_sym_let, - ACTIONS(1409), 1, - anon_sym_const, - ACTIONS(1424), 1, - anon_sym_class, - ACTIONS(1426), 1, anon_sym_async, - ACTIONS(1428), 1, - anon_sym_function, - ACTIONS(1430), 1, - anon_sym_abstract, - ACTIONS(1432), 1, + anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(1436), 1, - anon_sym_interface, - ACTIONS(1438), 1, - anon_sym_enum, - ACTIONS(1472), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, - ACTIONS(1474), 1, - anon_sym_global, - STATE(639), 1, - sym__declaration, - STATE(656), 1, - sym_internal_module, - STATE(2202), 1, - sym_decorator, - STATE(2832), 1, - aux_sym_export_statement_repeat1, - STATE(623), 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, - [109875] = 10, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [132459] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4549), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3245), 4, + ACTIONS(4781), 1, + sym_number, + ACTIONS(3523), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 19, + STATE(3048), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -166055,143 +191775,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109930] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1395), 1, - anon_sym_namespace, - ACTIONS(1401), 1, - anon_sym_type, - ACTIONS(1403), 1, - anon_sym_import, - ACTIONS(1405), 1, - anon_sym_var, - ACTIONS(1407), 1, - anon_sym_let, - ACTIONS(1409), 1, - anon_sym_const, - ACTIONS(1424), 1, - anon_sym_class, - ACTIONS(1426), 1, - anon_sym_async, - ACTIONS(1428), 1, - anon_sym_function, - ACTIONS(1430), 1, - anon_sym_abstract, - ACTIONS(1436), 1, - anon_sym_interface, - ACTIONS(1438), 1, - anon_sym_enum, - ACTIONS(1474), 1, - anon_sym_global, - ACTIONS(1546), 1, - anon_sym_declare, - ACTIONS(1676), 1, - anon_sym_module, - STATE(639), 1, - sym__declaration, - STATE(656), 1, - sym_internal_module, - STATE(2202), 1, - sym_decorator, - STATE(2832), 1, - aux_sym_export_statement_repeat1, - STATE(623), 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, - [110009] = 22, + [132506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1395), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4659), 1, + sym_number, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3106), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, + anon_sym_export, anon_sym_namespace, - ACTIONS(1401), 1, anon_sym_type, - ACTIONS(1403), 1, - anon_sym_import, - ACTIONS(1405), 1, - anon_sym_var, - ACTIONS(1407), 1, - anon_sym_let, - ACTIONS(1409), 1, - anon_sym_const, - ACTIONS(1424), 1, - anon_sym_class, - ACTIONS(1426), 1, anon_sym_async, - ACTIONS(1428), 1, - anon_sym_function, - ACTIONS(1430), 1, - anon_sym_abstract, - ACTIONS(1434), 1, - anon_sym_module, - ACTIONS(1436), 1, - anon_sym_interface, - ACTIONS(1438), 1, - anon_sym_enum, - ACTIONS(1546), 1, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(4551), 1, - anon_sym_default, - STATE(624), 1, - sym__declaration, - STATE(656), 1, - sym_internal_module, - STATE(2202), 1, - sym_decorator, - STATE(2832), 1, - aux_sym_export_statement_repeat1, - STATE(623), 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, - [110088] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1941), 5, - anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [132553] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4789), 1, sym_number, - ACTIONS(1939), 19, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3103), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -166211,30 +191853,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110138] = 3, + [132600] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4529), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4995), 1, sym_number, - anon_sym_AT, - ACTIONS(4527), 22, + ACTIONS(3523), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166248,30 +191892,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110178] = 3, + [132647] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1309), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5073), 1, + anon_sym_RBRACE, + ACTIONS(5075), 1, sym_number, - anon_sym_AT, - ACTIONS(1311), 22, + STATE(3996), 1, + sym_enum_assignment, + STATE(3629), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166285,30 +191931,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110218] = 3, + [132695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4561), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5075), 1, sym_number, - anon_sym_AT, - ACTIONS(4559), 22, + ACTIONS(5077), 1, + anon_sym_RBRACE, + STATE(3996), 1, + sym_enum_assignment, + STATE(3629), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166322,28 +191970,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110258] = 3, + [132743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 10, + ACTIONS(4185), 8, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1327), 22, + ACTIONS(5079), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, anon_sym_abstract, anon_sym_get, @@ -166359,30 +192003,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110298] = 3, + [132779] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1283), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5081), 1, + anon_sym_RBRACE, + ACTIONS(5083), 1, sym_number, - anon_sym_AT, - ACTIONS(1285), 22, + STATE(3828), 1, + sym_enum_assignment, + STATE(3336), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166396,29 +192042,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110338] = 8, + [132827] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1448), 1, - anon_sym_RBRACE, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1941), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5085), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, sym_number, - ACTIONS(1939), 19, + STATE(3840), 1, + sym_enum_assignment, + STATE(3346), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -166438,29 +192081,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110388] = 8, + [132875] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1941), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5075), 1, sym_number, - ACTIONS(1939), 19, + ACTIONS(5089), 1, + anon_sym_RBRACE, + STATE(3996), 1, + sym_enum_assignment, + STATE(3629), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -166480,29 +192120,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110438] = 8, + [132923] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4495), 1, - anon_sym_RBRACE, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1941), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5075), 1, sym_number, - ACTIONS(1939), 19, + ACTIONS(5091), 1, + anon_sym_RBRACE, + STATE(3996), 1, + sym_enum_assignment, + STATE(3629), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -166522,35 +192159,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110488] = 8, + [132971] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4505), 1, - anon_sym_RBRACE, - STATE(3416), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1941), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2999), 1, anon_sym_DQUOTE, + ACTIONS(3001), 1, anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_STAR, + ACTIONS(4637), 1, + anon_sym_async, + ACTIONS(4639), 1, sym_number, - ACTIONS(1939), 19, + ACTIONS(5093), 1, + anon_sym_static, + ACTIONS(5095), 1, + anon_sym_abstract, + ACTIONS(5097), 1, + sym_readonly, + ACTIONS(4643), 2, + anon_sym_get, + anon_sym_set, + STATE(2570), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3473), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [133027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5103), 1, + anon_sym_AT, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + ACTIONS(5101), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + ACTIONS(5099), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166564,34 +192238,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110538] = 6, + [133069] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4549), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1941), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2999), 1, anon_sym_DQUOTE, + ACTIONS(3001), 1, anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4431), 1, + anon_sym_async, + ACTIONS(4433), 1, sym_number, - ACTIONS(1939), 19, + ACTIONS(4437), 1, + sym_readonly, + ACTIONS(5106), 1, + anon_sym_static, + ACTIONS(4435), 2, + anon_sym_get, + anon_sym_set, + STATE(2590), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3473), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166602,32 +192279,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [110583] = 10, + [133122] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4429), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, + ACTIONS(5108), 1, anon_sym_STAR, - ACTIONS(4565), 1, + ACTIONS(5110), 1, sym_number, - ACTIONS(4567), 2, + ACTIONS(5114), 1, + sym_readonly, + ACTIONS(5112), 2, anon_sym_get, anon_sym_set, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2670), 3, + STATE(2573), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 17, + ACTIONS(3473), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -166644,29 +192318,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [110635] = 3, + [133171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1918), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4569), 20, + ACTIONS(717), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1916), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166680,30 +192351,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110673] = 3, + [133208] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(2999), 1, anon_sym_DQUOTE, + ACTIONS(3001), 1, anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(4711), 1, + anon_sym_STAR, + ACTIONS(4747), 1, + anon_sym_async, + ACTIONS(4749), 1, sym_number, - anon_sym_AT, - ACTIONS(4573), 20, + ACTIONS(4785), 1, + sym_readonly, + ACTIONS(5116), 1, + anon_sym_static, + ACTIONS(4751), 2, + anon_sym_get, + anon_sym_set, + STATE(2589), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3473), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166714,29 +192392,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [110711] = 3, + [133261] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5075), 1, sym_number, - anon_sym_AT, - ACTIONS(4577), 20, + STATE(3996), 1, + sym_enum_assignment, + STATE(3629), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166750,30 +192429,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110749] = 3, + [133306] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + sym_number, + ACTIONS(1780), 1, + anon_sym_async, + ACTIONS(1784), 1, + sym_readonly, + ACTIONS(4423), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(4823), 1, + anon_sym_STAR, + ACTIONS(5118), 1, + anon_sym_static, + ACTIONS(1782), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [133359] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, anon_sym_DQUOTE, + ACTIONS(3001), 1, anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_LBRACK, + ACTIONS(5120), 1, + anon_sym_STAR, + ACTIONS(5122), 1, sym_number, - anon_sym_AT, - ACTIONS(4581), 20, + ACTIONS(5126), 1, + sym_readonly, + ACTIONS(5124), 2, + anon_sym_get, + anon_sym_set, + STATE(2576), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3473), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166784,29 +192509,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [110787] = 3, + [133408] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(1636), 1, sym_number, - anon_sym_AT, - ACTIONS(1145), 20, + ACTIONS(4423), 1, + anon_sym_LBRACK, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166820,40 +192544,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110825] = 12, + [133450] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4585), 1, - anon_sym_STAR, - ACTIONS(4587), 1, - anon_sym_async, - ACTIONS(4589), 1, + ACTIONS(5065), 1, sym_number, - ACTIONS(4593), 1, - sym_readonly, - ACTIONS(4591), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2665), 3, + STATE(3171), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 15, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166864,38 +192578,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [110881] = 11, + sym_readonly, + [133492] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4429), 1, anon_sym_LBRACK, - ACTIONS(4585), 1, - anon_sym_STAR, - ACTIONS(4587), 1, - anon_sym_async, - ACTIONS(4589), 1, + ACTIONS(4901), 1, sym_number, - ACTIONS(4591), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2665), 3, + STATE(2714), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 16, + ACTIONS(3473), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166907,29 +192614,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110935] = 4, + [133534] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - sym__automatic_semicolon, - ACTIONS(1161), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4769), 1, sym_number, - anon_sym_AT, - ACTIONS(1163), 20, + STATE(3091), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166943,28 +192649,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110975] = 3, + [133576] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, sym_number, - anon_sym_AT, - ACTIONS(4597), 20, + STATE(3141), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -166978,37 +192684,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111013] = 10, + [133618] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4585), 1, - anon_sym_STAR, - ACTIONS(4589), 1, + ACTIONS(4803), 1, sym_number, - ACTIONS(4591), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2665), 3, + STATE(3170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 17, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167020,28 +192719,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111065] = 9, + [133660] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4589), 1, + ACTIONS(5035), 1, sym_number, - ACTIONS(4601), 1, - anon_sym_EQ_GT, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2665), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -167061,28 +192754,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111115] = 3, + [133702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4605), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, sym_number, - anon_sym_AT, - ACTIONS(4603), 20, + STATE(3016), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167096,29 +192789,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111153] = 4, + [133744] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 1, - sym__automatic_semicolon, - ACTIONS(1101), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4789), 1, sym_number, - anon_sym_AT, - ACTIONS(1103), 20, + STATE(3103), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167132,38 +192824,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111193] = 11, + [133786] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_STAR, - ACTIONS(4565), 1, + ACTIONS(4723), 1, sym_number, - ACTIONS(4609), 1, - anon_sym_async, - ACTIONS(4567), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2670), 3, + STATE(3104), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 16, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167175,28 +192859,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111247] = 3, + [133828] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5071), 1, sym_number, - anon_sym_AT, - ACTIONS(4611), 20, + STATE(3109), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167210,28 +192894,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111285] = 3, + [133870] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, sym_number, - anon_sym_AT, - ACTIONS(4615), 20, + STATE(3010), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167245,28 +192929,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111323] = 3, + [133912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4759), 1, sym_number, - anon_sym_AT, - ACTIONS(4619), 20, + STATE(3050), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167280,37 +192964,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111361] = 10, + [133954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4623), 1, - anon_sym_STAR, - ACTIONS(4625), 1, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4425), 1, sym_number, - ACTIONS(4627), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2703), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 17, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167322,28 +192999,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111413] = 3, + [133996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4995), 1, sym_number, - anon_sym_AT, - ACTIONS(4629), 20, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167357,28 +193034,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111451] = 3, + [134038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, sym_number, - anon_sym_AT, - ACTIONS(4633), 20, + STATE(3115), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167392,28 +193069,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111489] = 3, + [134080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1161), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(5067), 1, sym_number, - anon_sym_AT, - ACTIONS(1163), 20, + STATE(3026), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167427,29 +193104,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111527] = 4, + [134122] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4639), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4659), 1, sym_number, - anon_sym_AT, - ACTIONS(4637), 20, + STATE(3106), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167463,28 +193139,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111567] = 3, + [134164] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(745), 1, anon_sym_DQUOTE, + ACTIONS(747), 1, anon_sym_SQUOTE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + ACTIONS(4675), 1, sym_number, - anon_sym_AT, - ACTIONS(4643), 20, + STATE(3098), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167498,26 +193174,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111605] = 8, + [134206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(3001), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4429), 1, anon_sym_LBRACK, - ACTIONS(4449), 1, + ACTIONS(4829), 1, sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2693), 3, + STATE(2770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(3473), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -167537,26 +193209,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111652] = 8, + [134248] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4589), 1, + ACTIONS(4781), 1, sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2665), 3, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -167576,26 +193244,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111699] = 8, + [134290] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4647), 1, + ACTIONS(4713), 1, sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2599), 3, + STATE(3149), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -167615,26 +193279,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111746] = 8, + [134332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, + ACTIONS(4831), 1, sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2600), 3, + STATE(3127), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -167654,26 +193314,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111793] = 8, + [134374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(1015), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - ACTIONS(4439), 1, + ACTIONS(4707), 1, sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2601), 3, + STATE(3156), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(1778), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -167693,32 +193349,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111840] = 8, + [134416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(5130), 4, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4565), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2670), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_AT, + ACTIONS(5128), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -167732,31 +193380,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111887] = 8, + [134450] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2730), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(5132), 1, + sym_readonly, + STATE(3273), 1, + sym_object, + STATE(3275), 1, + sym_array, + ACTIONS(1966), 2, + sym_identifier, + sym_this, + ACTIONS(699), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -167770,32 +193414,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [111934] = 8, + [134492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4419), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, + ACTIONS(5134), 1, + sym_identifier, + STATE(4287), 1, + sym_mapped_type_clause, + ACTIONS(5136), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -167810,2374 +193440,2083 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111981] = 8, + [134522] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_EQ, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5144), 1, + anon_sym_COMMA, + ACTIONS(5146), 1, + anon_sym_COLON, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5150), 1, + anon_sym_GT, + ACTIONS(5153), 1, + anon_sym_SLASH, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5159), 1, + anon_sym_extends, + STATE(2725), 1, + sym_type_arguments, + STATE(2726), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3617), 1, + sym_constraint, + STATE(4056), 1, + sym_default_type, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134578] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_EQ, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5144), 1, + anon_sym_COMMA, + ACTIONS(5146), 1, + anon_sym_COLON, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5150), 1, + anon_sym_GT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5159), 1, + anon_sym_extends, + ACTIONS(5161), 1, + anon_sym_SLASH, + STATE(2755), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2756), 1, + sym_type_arguments, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3617), 1, + sym_constraint, + STATE(4056), 1, + sym_default_type, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134634] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_EQ, + ACTIONS(5163), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, + ACTIONS(2060), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134666] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_EQ, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5144), 1, + anon_sym_COMMA, + ACTIONS(5146), 1, + anon_sym_COLON, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5150), 1, + anon_sym_GT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5159), 1, + anon_sym_extends, + ACTIONS(5167), 1, + anon_sym_SLASH, + STATE(2704), 1, + sym_type_arguments, + STATE(2754), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3617), 1, + sym_constraint, + STATE(4056), 1, + sym_default_type, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2068), 1, + anon_sym_EQ, + ACTIONS(5163), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, + ACTIONS(2066), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(1774), 1, + anon_sym_LT, + ACTIONS(888), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1894), 1, + anon_sym_EQ, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(531), 1, + sym_type_arguments, + ACTIONS(1892), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_EQ, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(531), 1, + sym_type_arguments, + ACTIONS(2125), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_PIPE, + ACTIONS(1232), 15, + 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_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [134863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1222), 15, + 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_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [134887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(623), 1, + anon_sym_EQ, + ACTIONS(5169), 1, + anon_sym_DOT, + ACTIONS(621), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [134934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5173), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [134955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [134976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5177), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [134997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5179), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [135018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5181), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [135039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [135060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5185), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [135081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5187), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [135102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, - anon_sym_LBRACK, - STATE(3040), 1, - sym_object, - STATE(3043), 1, - sym_array, - ACTIONS(1987), 2, - sym_identifier, - sym_this, - ACTIONS(2011), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(969), 18, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112028] = 8, + ACTIONS(5189), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [135123] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5195), 1, + anon_sym_BANG, + ACTIONS(5197), 1, anon_sym_QMARK, - STATE(2677), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112075] = 8, + STATE(2683), 1, + sym_formal_parameters, + STATE(3301), 1, + sym_type_annotation, + STATE(3326), 1, + sym__call_signature, + STATE(3794), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5193), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135165] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4393), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5201), 1, + anon_sym_BANG, + ACTIONS(5203), 1, anon_sym_QMARK, - STATE(2616), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112122] = 8, + STATE(2683), 1, + sym_formal_parameters, + STATE(3261), 1, + sym__call_signature, + STATE(3369), 1, + sym_type_annotation, + STATE(3890), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5199), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4651), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, + ACTIONS(2068), 1, + anon_sym_PIPE, + ACTIONS(5205), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(2633), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112169] = 8, + ACTIONS(5207), 1, + anon_sym_DOT, + ACTIONS(5209), 1, + anon_sym_is, + STATE(2649), 1, + sym_type_arguments, + ACTIONS(2066), 9, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [135237] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(2068), 1, + anon_sym_PIPE, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5207), 1, + anon_sym_DOT, + STATE(2649), 1, + sym_type_arguments, + ACTIONS(2066), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4653), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [135265] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5195), 1, + anon_sym_BANG, + ACTIONS(5211), 1, anon_sym_QMARK, - STATE(2680), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112216] = 8, + STATE(2683), 1, + sym_formal_parameters, + STATE(3301), 1, + sym_type_annotation, + STATE(3794), 1, + sym__initializer, + STATE(3808), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5193), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 1, + ACTIONS(2062), 1, + anon_sym_PIPE, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5207), 1, + anon_sym_DOT, + STATE(2649), 1, + sym_type_arguments, + ACTIONS(2060), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(4501), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(2851), 1, - sym_object, - STATE(2970), 1, - sym_array, - ACTIONS(4655), 2, - sym_identifier, - sym_this, - ACTIONS(2519), 5, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [135335] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 1, anon_sym_EQ, + ACTIONS(5144), 1, + anon_sym_GT, + ACTIONS(5213), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5216), 1, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4657), 18, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112263] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4425), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, + ACTIONS(5218), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_extends, + STATE(2921), 1, + sym_type_arguments, + STATE(3617), 1, + sym_constraint, + STATE(4056), 1, + sym_default_type, + ACTIONS(2066), 4, + sym__call_type_arguments_closing_bracket, anon_sym_LBRACK, - ACTIONS(4407), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112357] = 8, + anon_sym_AMP, + anon_sym_PIPE, + [135375] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4387), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5201), 1, + anon_sym_BANG, + ACTIONS(5225), 1, anon_sym_QMARK, - STATE(2613), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112404] = 8, + STATE(2683), 1, + sym_formal_parameters, + STATE(3369), 1, + sym_type_annotation, + STATE(3890), 1, + sym__initializer, + STATE(3924), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5199), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135417] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4625), 1, - sym_number, - ACTIONS(3245), 3, - anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5229), 1, + anon_sym_BANG, + ACTIONS(5231), 1, anon_sym_QMARK, - STATE(2703), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112451] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4659), 1, - anon_sym_RBRACE, - ACTIONS(4661), 1, - sym_number, - STATE(3554), 1, - sym_enum_assignment, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112499] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4661), 1, - sym_number, - ACTIONS(4663), 1, - anon_sym_RBRACE, - STATE(3554), 1, - sym_enum_assignment, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112547] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4669), 1, - anon_sym_AT, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - ACTIONS(4667), 3, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - ACTIONS(4665), 22, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [112589] = 9, + STATE(2683), 1, + sym_formal_parameters, + STATE(3194), 1, + sym__call_signature, + STATE(3224), 1, + sym_type_annotation, + STATE(3844), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5227), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135459] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4672), 1, - anon_sym_RBRACE, - ACTIONS(4674), 1, - sym_number, - STATE(3366), 1, - sym_enum_assignment, - STATE(3025), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(2068), 1, + anon_sym_extends, + ACTIONS(5163), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_DOT, + ACTIONS(5237), 1, + anon_sym_GT, + STATE(530), 1, + sym_type_arguments, + ACTIONS(5233), 2, + anon_sym_SLASH, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112637] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, + ACTIONS(5235), 2, + anon_sym_LBRACE, + sym_jsx_identifier, + ACTIONS(2066), 5, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4375), 1, - anon_sym_STAR, - ACTIONS(4377), 1, - anon_sym_async, - ACTIONS(4379), 1, - sym_number, - ACTIONS(4676), 1, - anon_sym_static, - ACTIONS(4678), 1, - anon_sym_abstract, - ACTIONS(4680), 1, - sym_readonly, - ACTIONS(4383), 2, - anon_sym_get, - anon_sym_set, - STATE(2246), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3273), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [112693] = 9, + anon_sym_AMP, + anon_sym_PIPE, + [135493] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4661), 1, - sym_number, - ACTIONS(4682), 1, - anon_sym_RBRACE, - STATE(3554), 1, - sym_enum_assignment, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112741] = 9, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5242), 1, + anon_sym_BANG, + ACTIONS(5244), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3359), 1, + sym_type_annotation, + STATE(3362), 1, + sym__call_signature, + STATE(3864), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5240), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135535] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4661), 1, - sym_number, - ACTIONS(4684), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5250), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3348), 1, + sym__call_signature, + STATE(3420), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5246), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3554), 1, - sym_enum_assignment, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112789] = 9, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135570] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4686), 1, - anon_sym_RBRACE, - ACTIONS(4688), 1, - sym_number, - STATE(3263), 1, - sym_enum_assignment, - STATE(2922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(5138), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112837] = 3, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(5254), 1, + anon_sym_GT, + ACTIONS(5256), 1, + anon_sym_SLASH, + STATE(2717), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2719), 1, + sym_type_arguments, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [135611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 8, - anon_sym_STAR, + ACTIONS(890), 1, + anon_sym_PIPE, + ACTIONS(1774), 1, + anon_sym_LT, + ACTIONS(888), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4690), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [112873] = 12, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [135634] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4453), 1, - anon_sym_STAR, - ACTIONS(4467), 1, - anon_sym_async, - ACTIONS(4469), 1, - sym_number, - ACTIONS(4473), 1, - sym_readonly, - ACTIONS(4692), 1, - anon_sym_static, - ACTIONS(4471), 2, - anon_sym_get, - anon_sym_set, - STATE(2262), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3273), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [112926] = 8, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5260), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(2953), 1, + sym__call_signature, + STATE(3216), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5258), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135669] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4661), 1, - sym_number, - STATE(3554), 1, - sym_enum_assignment, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [112971] = 4, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5262), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(2965), 1, + sym__call_signature, + STATE(3420), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5246), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135704] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2011), 5, - anon_sym_EQ, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5266), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3308), 1, + sym_type_annotation, + STATE(3311), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5264), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135739] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, anon_sym_COLON, + ACTIONS(5270), 1, anon_sym_QMARK, - ACTIONS(1939), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113008] = 12, + STATE(2683), 1, + sym_formal_parameters, + STATE(2867), 1, + sym__call_signature, + STATE(3308), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5264), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4323), 1, - anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_async, - ACTIONS(4331), 1, - sym_number, - ACTIONS(4341), 1, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(5205), 1, + anon_sym_LT, + STATE(2653), 1, + sym_type_arguments, + ACTIONS(1892), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4343), 1, - sym_readonly, - ACTIONS(4694), 1, - anon_sym_static, - ACTIONS(4333), 2, - anon_sym_get, - anon_sym_set, - STATE(2265), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3273), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [113061] = 10, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [135799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, + ACTIONS(888), 1, + anon_sym_DOT, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1774), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4696), 1, - anon_sym_STAR, - ACTIONS(4698), 1, - sym_number, - ACTIONS(4702), 1, - sym_readonly, - ACTIONS(4700), 2, - anon_sym_get, - anon_sym_set, - STATE(2254), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - [113110] = 10, + anon_sym_LT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [135822] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4704), 1, - anon_sym_STAR, - ACTIONS(4706), 1, - sym_number, - ACTIONS(4710), 1, - sym_readonly, - ACTIONS(4708), 2, - anon_sym_get, - anon_sym_set, - STATE(2250), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3273), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - [113159] = 12, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5274), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3434), 1, + sym__call_signature, + STATE(3444), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5272), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135857] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(1889), 1, - anon_sym_async, - ACTIONS(1893), 1, - sym_readonly, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4493), 1, - anon_sym_STAR, - ACTIONS(4712), 1, - anon_sym_static, - ACTIONS(1891), 2, - anon_sym_get, - anon_sym_set, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [113212] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5276), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(2926), 1, + sym__call_signature, + STATE(3444), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5272), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135892] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, - sym_number, - STATE(2665), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(5138), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113254] = 3, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(5254), 1, + anon_sym_GT, + ACTIONS(5278), 1, + anon_sym_SLASH, + STATE(2736), 1, + sym_type_arguments, + STATE(2737), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [135933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 4, + ACTIONS(2127), 1, + anon_sym_PIPE, + ACTIONS(5205), 1, + anon_sym_LT, + STATE(2653), 1, + sym_type_arguments, + ACTIONS(2125), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_AT, - ACTIONS(4714), 22, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [113288] = 7, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [135958] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4653), 1, - sym_number, - STATE(2680), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113330] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5280), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3216), 1, + sym_type_annotation, + STATE(3229), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5258), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135993] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4651), 1, - sym_number, - STATE(2633), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113372] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(3360), 1, + sym_type_annotation, + STATE(3377), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5282), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136025] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, - sym_number, - STATE(2677), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(5138), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113414] = 7, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_SLASH, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5254), 1, + anon_sym_GT, + STATE(2725), 1, + sym_type_arguments, + STATE(2726), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136063] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4523), 1, - sym_number, - STATE(2711), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113456] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(2968), 1, + sym__call_signature, + STATE(3360), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5282), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136095] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4509), 1, - sym_number, - STATE(2684), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113498] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(2683), 1, + sym_formal_parameters, + STATE(3298), 1, + sym_type_annotation, + STATE(3332), 1, + sym__call_signature, + STATE(3798), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5284), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136131] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4387), 1, - sym_number, - STATE(2613), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113540] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(3215), 1, + sym_type_annotation, + STATE(3242), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5286), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136163] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4407), 1, - sym_number, - STATE(2737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(5138), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113582] = 7, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5167), 1, + anon_sym_SLASH, + ACTIONS(5254), 1, + anon_sym_GT, + STATE(2704), 1, + sym_type_arguments, + STATE(2754), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136201] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4393), 1, - sym_number, - STATE(2616), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113624] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(2683), 1, + sym_formal_parameters, + STATE(3191), 1, + sym_type_annotation, + STATE(3196), 1, + sym__call_signature, + STATE(3807), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5288), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136237] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4475), 1, - sym_number, - STATE(2729), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113666] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(2964), 1, + sym__call_signature, + STATE(3385), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5290), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136269] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(3333), 1, + sym__call_signature, + STATE(3385), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5290), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136301] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, + ACTIONS(2066), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5292), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [136327] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - sym_number, - STATE(2409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3273), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(5138), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113708] = 7, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_SLASH, + ACTIONS(5254), 1, + anon_sym_GT, + STATE(2755), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2756), 1, + sym_type_arguments, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136365] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - sym_number, - STATE(2730), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113750] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(2927), 1, + sym__call_signature, + STATE(3433), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5294), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(623), 1, + anon_sym_PIPE, + ACTIONS(5296), 1, + anon_sym_DOT, + ACTIONS(621), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4419), 1, - sym_number, - STATE(2731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113792] = 7, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [136419] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4625), 1, - sym_number, - STATE(2703), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113834] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(2683), 1, + sym_formal_parameters, + STATE(3191), 1, + sym_type_annotation, + STATE(3788), 1, + sym__call_signature, + STATE(3807), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5288), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136455] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - sym_number, - STATE(2603), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(5138), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113876] = 7, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5254), 1, + anon_sym_GT, + ACTIONS(5278), 1, + anon_sym_SLASH, + STATE(2736), 1, + sym_type_arguments, + STATE(2737), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136493] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(1749), 1, - sym_number, - ACTIONS(4335), 1, - anon_sym_LBRACK, - STATE(2751), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + ACTIONS(5138), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113918] = 7, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_LT, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5254), 1, + anon_sym_GT, + ACTIONS(5256), 1, + anon_sym_SLASH, + STATE(2717), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2719), 1, + sym_type_arguments, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136531] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(5163), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_DOT, + ACTIONS(5298), 1, + anon_sym_RPAREN, + STATE(530), 1, + sym_type_arguments, + ACTIONS(2066), 4, anon_sym_LBRACK, - ACTIONS(4425), 1, - sym_number, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [113960] = 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(2737), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [136559] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(4341), 1, - anon_sym_LBRACK, - ACTIONS(4511), 1, - sym_number, - STATE(2421), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3273), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114002] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(2683), 1, + sym_formal_parameters, + STATE(3386), 1, + sym_type_annotation, + STATE(3436), 1, + sym__call_signature, + STATE(3911), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5301), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136595] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - sym_number, - STATE(2693), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114044] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(2683), 1, + sym_formal_parameters, + STATE(3298), 1, + sym_type_annotation, + STATE(3798), 1, + sym__initializer, + STATE(3809), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5284), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(5303), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_is, + STATE(2782), 1, + sym_type_arguments, + ACTIONS(2066), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4481), 1, - sym_number, - STATE(2600), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114086] = 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [136657] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - sym_number, - STATE(2706), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114128] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(3433), 1, + sym_type_annotation, + STATE(3439), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5294), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136689] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4439), 1, - sym_number, - STATE(2601), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114170] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(2683), 1, + sym_formal_parameters, + STATE(2952), 1, + sym__call_signature, + STATE(3215), 1, + sym_type_annotation, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5286), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136721] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - sym_number, - STATE(2670), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114212] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(2683), 1, + sym_formal_parameters, + STATE(3382), 1, + sym_type_annotation, + STATE(3383), 1, + sym__call_signature, + STATE(3920), 1, + sym__initializer, + STATE(3967), 1, + sym_type_parameters, + ACTIONS(5309), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(4335), 1, + ACTIONS(1886), 1, + anon_sym_PIPE, + ACTIONS(1884), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4647), 1, - sym_number, - STATE(2599), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1887), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114254] = 8, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [136776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 1, + ACTIONS(1844), 1, + anon_sym_PIPE, + ACTIONS(1842), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(4501), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4718), 1, - sym_readonly, - STATE(3040), 1, - sym_object, - STATE(3043), 1, - sym_array, - ACTIONS(1987), 2, - sym_identifier, - sym_this, - ACTIONS(969), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [114296] = 4, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [136795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, - sym_identifier, - STATE(3884), 1, - sym_mapped_type_clause, - ACTIONS(4722), 18, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [114326] = 18, + ACTIONS(1812), 1, + anon_sym_PIPE, + ACTIONS(1810), 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, + [136814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4726), 1, + ACTIONS(4421), 1, anon_sym_EQ, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4730), 1, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4732), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4734), 1, anon_sym_LT, - ACTIONS(4736), 1, - anon_sym_GT, - ACTIONS(4739), 1, - anon_sym_SLASH, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4745), 1, - anon_sym_extends, - STATE(2433), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2434), 1, - sym_type_arguments, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3061), 1, - sym_constraint, - STATE(3475), 1, - sym_default_type, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [114382] = 18, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [136835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4726), 1, + ACTIONS(4019), 11, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4730), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4734), 1, anon_sym_LT, - ACTIONS(4736), 1, - anon_sym_GT, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4745), 1, - anon_sym_extends, - ACTIONS(4747), 1, - anon_sym_SLASH, - STATE(2380), 1, - sym_type_arguments, - STATE(2443), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3061), 1, - sym_constraint, - STATE(3475), 1, - sym_default_type, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [114438] = 6, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [136852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, + ACTIONS(1804), 1, + anon_sym_PIPE, + ACTIONS(1802), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4749), 1, - anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1979), 14, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [114470] = 18, + anon_sym_PIPE_RBRACE, + [136871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4726), 1, + ACTIONS(1800), 1, + anon_sym_PIPE, + ACTIONS(1798), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(4730), 1, anon_sym_COMMA, - ACTIONS(4732), 1, - anon_sym_COLON, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(4736), 1, - anon_sym_GT, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4745), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - ACTIONS(4753), 1, - anon_sym_SLASH, - STATE(2396), 1, - sym_type_arguments, - STATE(2397), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3061), 1, - sym_constraint, - STATE(3475), 1, - sym_default_type, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [114526] = 6, + anon_sym_PIPE_RBRACE, + [136890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 1, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1794), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4749), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [136909] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5303), 1, anon_sym_LT, - ACTIONS(4751), 1, + ACTIONS(5305), 1, anon_sym_DOT, - STATE(466), 1, + STATE(2782), 1, sym_type_arguments, - ACTIONS(1970), 14, + ACTIONS(2060), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [114558] = 4, + [136932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, - anon_sym_EQ, - ACTIONS(1753), 1, - anon_sym_LT, - ACTIONS(949), 15, + ACTIONS(2127), 1, + anon_sym_PIPE, + ACTIONS(5209), 1, + anon_sym_is, + ACTIONS(2125), 9, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [114585] = 5, + anon_sym_PIPE_RBRACE, + [136953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(4421), 1, anon_sym_EQ, - ACTIONS(4749), 1, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(465), 1, - sym_type_arguments, - ACTIONS(1843), 14, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [136974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 1, + anon_sym_PIPE, + ACTIONS(1868), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [136993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1820), 1, anon_sym_PIPE, + ACTIONS(1818), 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, - [114614] = 5, + anon_sym_PIPE_RBRACE, + [137012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(1824), 1, + anon_sym_PIPE, + ACTIONS(1822), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(1864), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4749), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5303), 1, anon_sym_LT, - STATE(465), 1, + ACTIONS(5305), 1, + anon_sym_DOT, + STATE(2782), 1, sym_type_arguments, - ACTIONS(2015), 14, + ACTIONS(2066), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [114643] = 3, + [137056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(1874), 1, anon_sym_PIPE, - ACTIONS(1139), 15, + ACTIONS(1872), 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_LBRACK, - anon_sym_LT, - anon_sym_QMARK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114667] = 3, + [137075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1165), 15, + ACTIONS(1888), 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_LBRACK, - anon_sym_LT, - anon_sym_QMARK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114691] = 4, + [137094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(1878), 1, + anon_sym_PIPE, + ACTIONS(1876), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4755), 1, - anon_sym_DOT, - ACTIONS(909), 14, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, anon_sym_PIPE, + ACTIONS(1908), 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, - [114717] = 2, + anon_sym_PIPE_RBRACE, + [137132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [114738] = 2, + ACTIONS(1419), 1, + anon_sym_PIPE, + ACTIONS(1417), 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, + [137151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [114759] = 2, + ACTIONS(3523), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [137168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [114780] = 2, + ACTIONS(1824), 1, + anon_sym_PIPE, + ACTIONS(1822), 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, + [137187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [114801] = 2, + ACTIONS(1828), 1, + anon_sym_PIPE, + ACTIONS(1826), 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, + [137206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4765), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [114822] = 2, + ACTIONS(1914), 1, + anon_sym_PIPE, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(1912), 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, + [137227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [114843] = 7, + ACTIONS(1906), 1, + anon_sym_PIPE, + ACTIONS(1904), 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, + [137246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 1, + ACTIONS(1816), 1, anon_sym_PIPE, - ACTIONS(4769), 1, - anon_sym_LT, - ACTIONS(4771), 1, - anon_sym_DOT, - ACTIONS(4773), 1, - anon_sym_is, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(1970), 9, + ACTIONS(1814), 10, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -170186,159 +195525,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114873] = 13, + [137265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - ACTIONS(4779), 1, - anon_sym_BANG, - ACTIONS(4781), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2813), 1, - sym__call_signature, - STATE(2824), 1, - sym_type_annotation, - STATE(3312), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4777), 3, + ACTIONS(623), 1, + anon_sym_PIPE, + ACTIONS(621), 10, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [114915] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1972), 1, - anon_sym_extends, - ACTIONS(4749), 1, - anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - ACTIONS(4787), 1, - anon_sym_GT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(4783), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4785), 2, - anon_sym_LBRACE, - sym_jsx_identifier, - ACTIONS(1970), 5, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - [114949] = 13, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - ACTIONS(4792), 1, - anon_sym_BANG, - ACTIONS(4794), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2804), 1, - sym__call_signature, - STATE(2818), 1, - sym_type_annotation, - STATE(3354), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4790), 3, + ACTIONS(1852), 1, + anon_sym_PIPE, + ACTIONS(1850), 10, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [114991] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, anon_sym_EQ, - ACTIONS(4798), 1, - anon_sym_BANG, - ACTIONS(4800), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2828), 1, - sym_type_annotation, - STATE(2830), 1, - sym__call_signature, - STATE(3315), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4796), 3, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [115033] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - ACTIONS(4804), 1, - anon_sym_BANG, - ACTIONS(4806), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2884), 1, - sym_type_annotation, - STATE(3302), 1, - sym__call_signature, - STATE(3373), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4802), 3, + ACTIONS(1856), 1, + anon_sym_PIPE, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(1854), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [115075] = 6, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, + ACTIONS(1862), 1, anon_sym_PIPE, - ACTIONS(4769), 1, - anon_sym_LT, - ACTIONS(4771), 1, - anon_sym_DOT, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(1979), 10, + ACTIONS(1860), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -170349,47 +195590,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115103] = 13, + [137343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - ACTIONS(4804), 1, - anon_sym_BANG, - ACTIONS(4808), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2836), 1, - sym__call_signature, - STATE(2884), 1, - sym_type_annotation, - STATE(3373), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4802), 3, + ACTIONS(1882), 1, + anon_sym_PIPE, + ACTIONS(1880), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [115145] = 6, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 1, + ACTIONS(1808), 1, anon_sym_PIPE, - ACTIONS(4769), 1, - anon_sym_LT, - ACTIONS(4771), 1, - anon_sym_DOT, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(1970), 10, + ACTIONS(1806), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -170400,118 +195622,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115173] = 13, + [137381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - ACTIONS(4779), 1, - anon_sym_BANG, - ACTIONS(4810), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2824), 1, - sym_type_annotation, - STATE(3312), 1, - sym__initializer, - STATE(3351), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4777), 3, + ACTIONS(1788), 1, + anon_sym_PIPE, + ACTIONS(1786), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [115215] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(4816), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2505), 1, - sym__call_signature, - STATE(2861), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4812), 5, + ACTIONS(1902), 1, + anon_sym_PIPE, + ACTIONS(1900), 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, - [115250] = 10, + [137419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(4818), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2837), 1, - sym__call_signature, - STATE(2861), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4812), 5, + ACTIONS(1898), 1, + anon_sym_PIPE, + ACTIONS(1896), 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, - [115285] = 10, + [137438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, - anon_sym_COLON, - ACTIONS(4824), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2555), 1, - sym__call_signature, - STATE(2989), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4820), 5, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1892), 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, - [115320] = 4, + [137457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, + ACTIONS(1792), 1, anon_sym_PIPE, - ACTIONS(1753), 1, - anon_sym_LT, - ACTIONS(949), 11, + ACTIONS(1790), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -170519,73 +195699,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115343] = 13, + [137476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4734), 1, + ACTIONS(2714), 1, + anon_sym_COLON, + ACTIONS(5163), 1, anon_sym_LT, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4743), 1, + ACTIONS(5165), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(4828), 1, - anon_sym_GT, - ACTIONS(4830), 1, - anon_sym_SLASH, - STATE(2408), 1, + ACTIONS(5313), 1, + anon_sym_QMARK, + STATE(530), 1, sym_type_arguments, - STATE(2415), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [115384] = 10, + ACTIONS(2066), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(4834), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2967), 1, - sym_type_annotation, - STATE(2979), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4832), 5, + ACTIONS(1832), 1, + anon_sym_PIPE, + ACTIONS(1830), 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, - [115419] = 5, + [137522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(1836), 1, anon_sym_PIPE, - ACTIONS(4769), 1, - anon_sym_LT, - STATE(2314), 1, - sym_type_arguments, - ACTIONS(2015), 10, + ACTIONS(1834), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -170596,1731 +195754,2210 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115444] = 10, + [137541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(4838), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2999), 1, - sym__call_signature, - STATE(3031), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4836), 5, + ACTIONS(1848), 1, + anon_sym_PIPE, + ACTIONS(1846), 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, - [115479] = 11, + [137560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(1840), 1, + anon_sym_PIPE, + ACTIONS(1838), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4749), 1, - anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - ACTIONS(4843), 1, - anon_sym_COLON, - ACTIONS(4845), 1, - anon_sym_extends, - STATE(466), 1, - sym_type_arguments, - STATE(3061), 1, - sym_constraint, - STATE(3475), 1, - sym_default_type, - ACTIONS(4840), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(1970), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - [115516] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137579] = 7, + ACTIONS(5316), 1, anon_sym_LBRACE, - ACTIONS(4734), 1, + ACTIONS(5318), 1, anon_sym_LT, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(4828), 1, - anon_sym_GT, - ACTIONS(4848), 1, - anon_sym_SLASH, - STATE(2382), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2440), 1, - sym_type_arguments, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, + ACTIONS(5320), 1, + sym_jsx_text, + ACTIONS(5322), 1, + sym_comment, + STATE(2032), 1, + sym_jsx_closing_element, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2728), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [115557] = 10, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [137605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(4850), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2514), 1, - sym__call_signature, - STATE(3031), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4836), 5, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, + anon_sym_PIPE, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(2154), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [115592] = 5, + [137627] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_LT, + ACTIONS(5332), 1, + sym_jsx_text, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(3897), 1, + sym_jsx_closing_element, + STATE(2670), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [137653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4769), 1, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(2134), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + [137675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5303), 1, anon_sym_LT, - STATE(2314), 1, + STATE(2774), 1, sym_type_arguments, - ACTIONS(1843), 10, + ACTIONS(2125), 8, 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, - [115617] = 4, + [137695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, + ACTIONS(1774), 1, + anon_sym_LT, + ACTIONS(888), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1755), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1753), 11, + anon_sym_extends, + [137713] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5340), 1, + sym_identifier, + ACTIONS(5342), 1, + anon_sym_LBRACE, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + STATE(1590), 1, + sym_class_body, + STATE(2884), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(3951), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [137747] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LBRACE, + STATE(2151), 1, + sym_class_body, + STATE(2918), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4173), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [137781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + anon_sym_DOT, + ACTIONS(1774), 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_LT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [115640] = 10, + [137799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5218), 1, anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, + ACTIONS(5220), 1, + anon_sym_DOT, + STATE(2921), 1, + sym_type_arguments, + ACTIONS(2060), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(2150), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + [137841] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, + sym_jsx_text, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_LT, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(3912), 1, + sym_jsx_closing_element, + STATE(2728), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [137867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 1, anon_sym_COLON, - ACTIONS(4852), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2507), 1, - sym__call_signature, - STATE(2967), 1, - sym_type_annotation, - STATE(3478), 1, + ACTIONS(5163), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_DOT, + STATE(530), 1, + sym_type_arguments, + ACTIONS(2066), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137891] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5352), 1, + sym_identifier, + ACTIONS(5354), 1, + anon_sym_LBRACE, + STATE(1786), 1, + sym_class_body, + STATE(2977), 1, sym_type_parameters, - ACTIONS(4832), 5, - sym__automatic_semicolon, + STATE(3909), 1, + sym_extends_clause, + STATE(4116), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [137925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(3553), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3523), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [115675] = 10, + [137945] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(4854), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2969), 1, - sym__call_signature, - STATE(2989), 1, - sym_type_annotation, - STATE(3478), 1, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5356), 1, + sym_identifier, + STATE(1931), 1, + sym_class_body, + STATE(2934), 1, sym_type_parameters, - ACTIONS(4820), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115710] = 11, + STATE(3909), 1, + sym_extends_clause, + STATE(3947), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [137979] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2539), 1, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5161), 1, + anon_sym_SLASH, + ACTIONS(5252), 1, anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2352), 1, - sym_formal_parameters, - STATE(2773), 1, - sym_type_annotation, - STATE(2798), 1, - sym__call_signature, - STATE(3331), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4856), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115746] = 12, + ACTIONS(5254), 1, + anon_sym_GT, + STATE(2755), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [138011] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(5138), 1, sym_identifier, - ACTIONS(4728), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(5155), 1, sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4747), 1, + ACTIONS(5167), 1, anon_sym_SLASH, - ACTIONS(4828), 1, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(5254), 1, anon_sym_GT, - STATE(2380), 1, - sym_type_arguments, - STATE(2443), 1, + STATE(2754), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, + STATE(3074), 1, sym_jsx_namespace_name, - STATE(3026), 2, + STATE(3302), 2, sym_jsx_expression, sym_jsx_attribute, - [115784] = 6, - ACTIONS(3), 1, + [138043] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, sym_comment, - ACTIONS(4749), 1, + ACTIONS(5358), 1, anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1970), 4, - anon_sym_LBRACK, + ACTIONS(5360), 1, + sym_jsx_text, + STATE(1603), 1, + sym_jsx_closing_element, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2699), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(4858), 5, - anon_sym_EQ, + ACTIONS(2154), 7, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_else, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [115810] = 9, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + [138091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2831), 1, - sym__call_signature, - STATE(2876), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4860), 5, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, + anon_sym_PIPE, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(2134), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [115842] = 12, + [138113] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, + sym_jsx_text, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5362), 1, + anon_sym_LT, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(3237), 1, + sym_jsx_closing_element, + STATE(2728), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138139] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, sym_identifier, - ACTIONS(4728), 1, + STATE(1931), 1, + sym_class_body, + STATE(2934), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(3947), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138173] = 7, + ACTIONS(5316), 1, anon_sym_LBRACE, - ACTIONS(4734), 1, + ACTIONS(5320), 1, + sym_jsx_text, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5366), 1, anon_sym_LT, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4753), 1, - anon_sym_SLASH, - ACTIONS(4828), 1, - anon_sym_GT, - STATE(2396), 1, - sym_type_arguments, - STATE(2397), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, + STATE(1839), 1, + sym_jsx_closing_element, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2728), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [115880] = 9, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, + ACTIONS(5370), 1, anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2504), 1, - sym__call_signature, - STATE(2876), 1, + STATE(3101), 3, sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4860), 5, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5368), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115912] = 6, + [138219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, - anon_sym_LT, - ACTIONS(4864), 1, - anon_sym_DOT, - ACTIONS(4866), 1, - anon_sym_is, - STATE(2490), 1, - sym_type_arguments, - ACTIONS(1970), 8, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, + anon_sym_PIPE, + ACTIONS(2150), 8, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [115938] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, + anon_sym_PIPE_RBRACE, + [138239] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2352), 1, - sym_formal_parameters, - STATE(2853), 1, - sym_type_annotation, - STATE(2856), 1, - sym__call_signature, - STATE(3268), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4868), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115974] = 12, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5372), 1, + sym_jsx_text, + STATE(2088), 1, + sym_jsx_closing_element, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2659), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138265] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(5138), 1, sym_identifier, - ACTIONS(4728), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(4739), 1, + ACTIONS(5153), 1, anon_sym_SLASH, - ACTIONS(4741), 1, + ACTIONS(5155), 1, sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4828), 1, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(5254), 1, anon_sym_GT, - STATE(2433), 1, + STATE(2726), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(2434), 1, - sym_type_arguments, - STATE(2634), 1, + STATE(3074), 1, sym_jsx_namespace_name, - STATE(3026), 2, + STATE(3302), 2, sym_jsx_expression, sym_jsx_attribute, - [116012] = 11, + [138297] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2352), 1, - sym_formal_parameters, - STATE(2894), 1, - sym_type_annotation, - STATE(3297), 1, - sym__call_signature, - STATE(3339), 1, - sym__initializer, - STATE(3478), 1, + ACTIONS(5342), 1, + anon_sym_LBRACE, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5374), 1, + sym_identifier, + STATE(1557), 1, + sym_class_body, + STATE(2989), 1, sym_type_parameters, - ACTIONS(4870), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116048] = 11, + STATE(3909), 1, + sym_extends_clause, + STATE(4135), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138331] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2352), 1, - sym_formal_parameters, - STATE(2773), 1, - sym_type_annotation, - STATE(3331), 1, - sym__initializer, - STATE(3348), 1, - sym__call_signature, - STATE(3478), 1, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5376), 1, + sym_identifier, + STATE(1786), 1, + sym_class_body, + STATE(2977), 1, sym_type_parameters, - ACTIONS(4856), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116084] = 9, + STATE(3909), 1, + sym_extends_clause, + STATE(4116), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5378), 1, anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2513), 1, - sym__call_signature, - STATE(2936), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4872), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116116] = 12, + ACTIONS(5380), 1, + anon_sym_DQUOTE, + ACTIONS(5382), 1, + anon_sym_SQUOTE, + STATE(2700), 1, + sym_jsx_opening_element, + STATE(3204), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_string, + [138391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4734), 1, + ACTIONS(5218), 1, anon_sym_LT, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4743), 1, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(4828), 1, - anon_sym_GT, - ACTIONS(4848), 1, - anon_sym_SLASH, - STATE(2382), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2440), 1, + STATE(2921), 1, sym_type_arguments, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [116154] = 9, + ACTIONS(2066), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5303), 1, anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2506), 1, - sym__call_signature, - STATE(2975), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4874), 5, + STATE(2774), 1, + sym_type_arguments, + ACTIONS(1892), 8, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116186] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2936), 1, - sym_type_annotation, - STATE(2941), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4872), 5, + ACTIONS(3457), 1, + anon_sym_EQ, + ACTIONS(4019), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [116218] = 12, + [138451] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(4734), 1, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_STAR, + STATE(3944), 1, + sym_import_clause, + STATE(3960), 2, + sym_string, + sym_import_require_clause, + STATE(4385), 2, + sym_namespace_import, + sym_named_imports, + [138481] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5388), 1, + sym_identifier, + STATE(2098), 1, + sym_class_body, + STATE(2984), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4030), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138515] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, sym_jsx_identifier, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4828), 1, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(5254), 1, anon_sym_GT, - ACTIONS(4830), 1, + ACTIONS(5256), 1, anon_sym_SLASH, - STATE(2408), 1, - sym_type_arguments, - STATE(2415), 1, + STATE(2717), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, + STATE(3074), 1, sym_jsx_namespace_name, - STATE(3026), 2, + STATE(3302), 2, sym_jsx_expression, sym_jsx_attribute, - [116256] = 9, + [138547] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5378), 1, anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2509), 1, - sym__call_signature, - STATE(2792), 1, - sym_type_annotation, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4876), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116288] = 11, - ACTIONS(3), 1, + ACTIONS(5380), 1, + anon_sym_DQUOTE, + ACTIONS(5382), 1, + anon_sym_SQUOTE, + STATE(2700), 1, + sym_jsx_opening_element, + STATE(3206), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_string, + [138573] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5366), 1, anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2352), 1, - sym_formal_parameters, - STATE(2894), 1, - sym_type_annotation, - STATE(2964), 1, - sym__call_signature, - STATE(3339), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4870), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116324] = 9, + ACTIONS(5390), 1, + sym_jsx_text, + STATE(1967), 1, + sym_jsx_closing_element, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2682), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138599] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2792), 1, - sym_type_annotation, - STATE(2926), 1, - sym__call_signature, - STATE(3478), 1, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5392), 1, + sym_identifier, + STATE(1786), 1, + sym_class_body, + STATE(2977), 1, sym_type_parameters, - ACTIONS(4876), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116356] = 11, - ACTIONS(3), 1, + STATE(3909), 1, + sym_extends_clause, + STATE(4116), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138633] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, + sym_jsx_text, + ACTIONS(5322), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5358), 1, anon_sym_LT, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2352), 1, - sym_formal_parameters, - STATE(3009), 1, - sym_type_annotation, - STATE(3045), 1, - sym__call_signature, - STATE(3293), 1, - sym__initializer, - STATE(3478), 1, - sym_type_parameters, - ACTIONS(4878), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116392] = 7, - ACTIONS(3), 1, + STATE(1625), 1, + sym_jsx_closing_element, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2728), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138659] = 7, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, sym_comment, - ACTIONS(4749), 1, + ACTIONS(5362), 1, anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - ACTIONS(4880), 1, - anon_sym_RPAREN, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1970), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(3196), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [116420] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - anon_sym_PIPE, - ACTIONS(4883), 1, - anon_sym_DOT, - ACTIONS(909), 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, - [116442] = 9, + ACTIONS(5394), 1, + sym_jsx_text, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(3256), 1, + sym_jsx_closing_element, + STATE(2680), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138685] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2352), 1, - sym_formal_parameters, - STATE(2975), 1, - sym_type_annotation, - STATE(3004), 1, - sym__call_signature, - STATE(3478), 1, + ACTIONS(5344), 1, + anon_sym_implements, + ACTIONS(5346), 1, + anon_sym_extends, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5396), 1, + sym_identifier, + STATE(1931), 1, + sym_class_body, + STATE(2934), 1, sym_type_parameters, - ACTIONS(4874), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116474] = 3, + STATE(3909), 1, + sym_extends_clause, + STATE(3947), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138719] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, - anon_sym_PIPE, - ACTIONS(1357), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116493] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(5254), 1, + anon_sym_GT, + ACTIONS(5278), 1, + anon_sym_SLASH, + STATE(2737), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [138751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym_PIPE, - ACTIONS(1867), 10, + ACTIONS(5370), 1, + anon_sym_COLON, + STATE(3117), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5398), 6, 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, - [116512] = 4, + [138771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_PIPE, - ACTIONS(4885), 1, - anon_sym_LBRACK, - ACTIONS(1871), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116533] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5400), 1, + anon_sym_GT, + ACTIONS(5402), 1, + anon_sym_SLASH, + STATE(2748), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [138800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, - anon_sym_PIPE, - ACTIONS(1875), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(5404), 1, + anon_sym_RPAREN, + ACTIONS(2125), 4, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, anon_sym_PIPE, - ACTIONS(1879), 10, - sym__automatic_semicolon, + anon_sym_extends, + ACTIONS(2737), 4, 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, - [116571] = 3, + anon_sym_COLON, + anon_sym_QMARK, + [138819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_PIPE, - ACTIONS(1829), 10, + ACTIONS(5407), 1, + anon_sym_DOT, + ACTIONS(621), 8, 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, - [116590] = 3, + [138836] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_PIPE, - ACTIONS(1769), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5342), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116609] = 3, + STATE(1580), 1, + sym_class_body, + STATE(2919), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4104), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138867] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, - anon_sym_PIPE, - ACTIONS(1789), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116628] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5415), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [138896] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_PIPE, - ACTIONS(1813), 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, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116647] = 3, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(2913), 1, + sym_type_parameters, + STATE(3368), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4175), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [138927] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_PIPE, - ACTIONS(1797), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5419), 1, + sym_identifier, + ACTIONS(5422), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116666] = 3, - ACTIONS(3), 1, + ACTIONS(5425), 1, + anon_sym_GT, + ACTIONS(5427), 1, + anon_sym_SLASH, + ACTIONS(5429), 1, + sym_jsx_identifier, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [138956] = 6, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_PIPE, - ACTIONS(1765), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5432), 1, + anon_sym_LT, + ACTIONS(5434), 1, + sym_jsx_text, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2721), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [138979] = 6, + ACTIONS(5316), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116685] = 3, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5438), 1, + sym_jsx_text, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2772), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [139002] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_PIPE, - ACTIONS(1809), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116704] = 4, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5254), 1, + anon_sym_GT, + ACTIONS(5256), 1, + anon_sym_SLASH, + STATE(2717), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139031] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, anon_sym_EQ, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, + STATE(3301), 1, + sym_type_annotation, + STATE(3794), 1, + sym__initializer, + ACTIONS(5195), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5193), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [116725] = 3, + [139056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_PIPE, - ACTIONS(1859), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(5218), 1, + anon_sym_LT, + STATE(2907), 1, + sym_type_arguments, + ACTIONS(2125), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116744] = 3, + [139075] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1851), 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, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116763] = 4, + ACTIONS(5440), 1, + anon_sym_LBRACE, + STATE(669), 1, + sym_class_body, + STATE(2982), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4034), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139106] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [116784] = 3, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5442), 1, + anon_sym_GT, + ACTIONS(5444), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139135] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_PIPE, - ACTIONS(1847), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5354), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116803] = 5, + STATE(1713), 1, + sym_class_body, + STATE(2890), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4040), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(2044), 8, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - [116826] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5400), 1, + anon_sym_GT, + ACTIONS(5446), 1, + anon_sym_SLASH, + STATE(2724), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139195] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym_PIPE, - ACTIONS(1781), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(5153), 1, + anon_sym_SLASH, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5254), 1, + anon_sym_GT, + STATE(2726), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139224] = 6, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, + sym_jsx_text, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2728), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [139247] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116845] = 3, + ACTIONS(5440), 1, + anon_sym_LBRACE, + STATE(682), 1, + sym_class_body, + STATE(2875), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4000), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_PIPE, - ACTIONS(1843), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5163), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_DOT, + ACTIONS(5450), 1, + anon_sym_is, + STATE(530), 1, + sym_type_arguments, + ACTIONS(2066), 5, 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, - [116864] = 3, + [139301] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1793), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116883] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5452), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139330] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_PIPE, - ACTIONS(1761), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116902] = 2, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5400), 1, + anon_sym_GT, + ACTIONS(5454), 1, + anon_sym_SLASH, + STATE(2708), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139359] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [116919] = 4, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5442), 1, + anon_sym_GT, + ACTIONS(5456), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139388] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [116940] = 3, - ACTIONS(3), 1, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(2879), 1, + sym_type_parameters, + STATE(3428), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4011), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139419] = 6, + ACTIONS(5322), 1, sym_comment, - ACTIONS(1885), 1, - anon_sym_PIPE, - ACTIONS(1883), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5458), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116959] = 4, + ACTIONS(5461), 1, + anon_sym_LT, + ACTIONS(5464), 1, + sym_jsx_text, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2728), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [139442] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [116980] = 4, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + STATE(1742), 1, + sym_class_body, + STATE(2900), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4010), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, anon_sym_PIPE, - ACTIONS(4773), 1, - anon_sym_is, - ACTIONS(2015), 9, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(5467), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117001] = 5, + [139494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(5163), 1, anon_sym_LT, - ACTIONS(4864), 1, + ACTIONS(5165), 1, anon_sym_DOT, - STATE(2490), 1, + ACTIONS(5469), 1, + anon_sym_is, + STATE(530), 1, sym_type_arguments, - ACTIONS(1970), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2066), 5, anon_sym_LBRACK, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117024] = 2, + [139517] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [117041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_PIPE, - ACTIONS(1773), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5354), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117060] = 3, + STATE(1797), 1, + sym_class_body, + STATE(2925), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4131), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, anon_sym_PIPE, - ACTIONS(1863), 10, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(5471), 6, 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, - [117079] = 3, + [139569] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_PIPE, - ACTIONS(1855), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117098] = 5, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5473), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139598] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(4864), 1, - anon_sym_DOT, - STATE(2490), 1, - sym_type_arguments, - ACTIONS(1979), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5350), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - [117121] = 3, + STATE(2015), 1, + sym_class_body, + STATE(2891), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4128), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, - anon_sym_PIPE, - ACTIONS(1801), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117140] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5400), 1, + anon_sym_GT, + ACTIONS(5475), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139658] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_PIPE, - ACTIONS(1817), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117159] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5442), 1, + anon_sym_GT, + ACTIONS(5477), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139687] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, - anon_sym_PIPE, - ACTIONS(1777), 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, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117178] = 4, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(2937), 1, + sym_type_parameters, + STATE(3321), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4147), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139718] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1793), 3, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(1821), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5479), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [117199] = 7, + STATE(107), 1, + sym_class_body, + STATE(2880), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4017), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139749] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON, - ACTIONS(4749), 1, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5254), 1, + anon_sym_GT, + ACTIONS(5278), 1, + anon_sym_SLASH, + STATE(2737), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139778] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_QMARK, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1970), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - [117226] = 3, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(646), 1, + sym_class_body, + STATE(2904), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4021), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym_PIPE, - ACTIONS(1825), 10, + ACTIONS(5307), 1, + anon_sym_is, + ACTIONS(2125), 8, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117245] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, anon_sym_PIPE, - ACTIONS(4885), 1, - anon_sym_LBRACK, - ACTIONS(1837), 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, - [117266] = 5, + [139826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(3789), 1, + anon_sym_RPAREN, + ACTIONS(1850), 4, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4891), 1, anon_sym_extends, - ACTIONS(2050), 8, - anon_sym_LBRACE, + ACTIONS(3662), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - [117289] = 4, + anon_sym_QMARK, + [139845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(2125), 4, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(2054), 9, - anon_sym_LBRACE, + anon_sym_extends, + ACTIONS(5292), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - [117310] = 3, + anon_sym_QMARK, + [139862] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym_PIPE, - ACTIONS(1833), 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, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117329] = 3, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym_class_body, + STATE(2916), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4097), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [139893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - anon_sym_PIPE, - ACTIONS(909), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1417), 4, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117348] = 3, + ACTIONS(2724), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [139910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1805), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(5218), 1, + anon_sym_LT, + STATE(2907), 1, + sym_type_arguments, + ACTIONS(1892), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117367] = 3, + [139929] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_PIPE, - ACTIONS(1757), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117386] = 3, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5481), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139958] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_PIPE, - ACTIONS(1785), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117405] = 7, - ACTIONS(4896), 1, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5161), 1, + anon_sym_SLASH, + ACTIONS(5254), 1, + anon_sym_GT, + STATE(2755), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139987] = 6, + ACTIONS(5316), 1, anon_sym_LBRACE, - ACTIONS(4898), 1, - anon_sym_LT, - ACTIONS(4900), 1, + ACTIONS(5320), 1, sym_jsx_text, - ACTIONS(4902), 1, + ACTIONS(5322), 1, sym_comment, - STATE(2341), 1, + ACTIONS(5483), 1, + anon_sym_LT, + STATE(2661), 1, sym_jsx_opening_element, - STATE(2796), 1, - sym_jsx_closing_element, - STATE(2355), 5, + STATE(2728), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [117431] = 7, - ACTIONS(4896), 1, + [140010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + anon_sym_DOT, + ACTIONS(1774), 8, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140027] = 6, + ACTIONS(5316), 1, anon_sym_LBRACE, - ACTIONS(4902), 1, + ACTIONS(5322), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(5485), 1, anon_sym_LT, - ACTIONS(4906), 1, + ACTIONS(5487), 1, sym_jsx_text, - STATE(2341), 1, + STATE(2661), 1, sym_jsx_opening_element, - STATE(3279), 1, - sym_jsx_closing_element, - STATE(2362), 5, + STATE(2750), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [117457] = 7, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + [140050] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(4910), 1, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + ACTIONS(5479), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_class_body, + STATE(2859), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(4177), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [140081] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5442), 1, + anon_sym_GT, + ACTIONS(5489), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [140110] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5442), 1, + anon_sym_GT, + ACTIONS(5491), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [140139] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5400), 1, + anon_sym_GT, + ACTIONS(5493), 1, + anon_sym_SLASH, + STATE(2766), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [140168] = 6, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, sym_jsx_text, - STATE(1888), 1, - sym_jsx_closing_element, - STATE(2341), 1, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5495), 1, + anon_sym_LT, + STATE(2661), 1, sym_jsx_opening_element, - STATE(2430), 5, + STATE(2728), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [117483] = 5, + [140191] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_AMP, - ACTIONS(4914), 1, - anon_sym_PIPE, - ACTIONS(4916), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5342), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(2044), 7, - sym__automatic_semicolon, + STATE(1657), 1, + sym_class_body, + STATE(2870), 1, + sym_type_parameters, + STATE(3909), 1, + sym_extends_clause, + STATE(3961), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [140222] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5167), 1, + anon_sym_SLASH, + ACTIONS(5254), 1, + anon_sym_GT, + STATE(2754), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [140251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1774), 1, + anon_sym_LT, + ACTIONS(888), 8, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [117505] = 11, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140268] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(4918), 1, - sym_identifier, - ACTIONS(4920), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4924), 1, + ACTIONS(5411), 1, anon_sym_extends, - STATE(1363), 1, + STATE(1980), 1, sym_class_body, - STATE(2567), 1, + STATE(2895), 1, sym_type_parameters, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3485), 1, + STATE(4001), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [117539] = 11, + [140299] = 6, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5499), 1, + sym_jsx_text, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2757), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [140322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1814), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(1088), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [140339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1814), 5, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140356] = 6, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5501), 1, + anon_sym_LT, + ACTIONS(5503), 1, + sym_jsx_text, + STATE(2661), 1, + sym_jsx_opening_element, + STATE(2768), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [140379] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + sym_identifier, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_jsx_identifier, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5505), 1, + anon_sym_SLASH, + STATE(2710), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3074), 1, + sym_jsx_namespace_name, + STATE(3302), 2, + sym_jsx_expression, + sym_jsx_attribute, + [140408] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(4922), 1, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4924), 1, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(4926), 1, - sym_identifier, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1843), 1, + STATE(2044), 1, sym_class_body, - STATE(2572), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3681), 1, + STATE(4093), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [117573] = 7, - ACTIONS(4896), 1, + [140439] = 6, + ACTIONS(5316), 1, anon_sym_LBRACE, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(4910), 1, + ACTIONS(5320), 1, sym_jsx_text, - ACTIONS(4930), 1, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(5507), 1, anon_sym_LT, - STATE(1984), 1, - sym_jsx_closing_element, - STATE(2341), 1, + STATE(2661), 1, sym_jsx_opening_element, - STATE(2430), 5, + STATE(2728), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [117599] = 3, + [140462] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(949), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + ACTIONS(5417), 1, anon_sym_LBRACE, + STATE(2876), 1, + sym_type_parameters, + STATE(3438), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4066), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [140493] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3224), 1, + sym_type_annotation, + STATE(3844), 1, + sym__initializer, + ACTIONS(5229), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5227), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + [140518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5324), 1, anon_sym_AMP, + ACTIONS(5326), 1, anon_sym_PIPE, + ACTIONS(5328), 1, anon_sym_extends, - [117617] = 7, - ACTIONS(4896), 1, + ACTIONS(5509), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140539] = 6, + ACTIONS(5316), 1, anon_sym_LBRACE, - ACTIONS(4902), 1, + ACTIONS(5320), 1, + sym_jsx_text, + ACTIONS(5322), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(5511), 1, anon_sym_LT, - ACTIONS(4934), 1, - sym_jsx_text, - STATE(1384), 1, - sym_jsx_closing_element, - STATE(2341), 1, + STATE(2661), 1, sym_jsx_opening_element, - STATE(2364), 5, + STATE(2728), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [117643] = 3, + [140562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_DOT, - ACTIONS(1753), 9, + ACTIONS(5513), 1, + anon_sym_RPAREN, + ACTIONS(717), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1417), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1790), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117661] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(4828), 1, - anon_sym_GT, - ACTIONS(4848), 1, - anon_sym_SLASH, - STATE(2382), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [117693] = 4, + [140595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, - anon_sym_LT, - STATE(2492), 1, - sym_type_arguments, - ACTIONS(1843), 8, + ACTIONS(1826), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -172329,30 +197966,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117713] = 4, + [140609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(3852), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [140631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, + anon_sym_LT, + STATE(3633), 1, + sym_call_type_arguments, + STATE(1609), 2, + sym_template_string, + sym_arguments, + [140657] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3653), 1, + sym_call_type_arguments, + STATE(1788), 2, + sym_template_string, + sym_arguments, + [140683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, + ACTIONS(5526), 1, anon_sym_COLON, - STATE(2628), 3, + STATE(3501), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(4936), 6, + ACTIONS(5398), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_SEMI, + [140701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, anon_sym_COMMA, + ACTIONS(1413), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [117733] = 4, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3850), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [140723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(890), 3, + anon_sym_while, + anon_sym_SLASH, + sym_identifier, + ACTIONS(888), 5, + anon_sym_LBRACE, anon_sym_LT, - STATE(2492), 1, - sym_type_arguments, - ACTIONS(2015), 8, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + [140739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -172361,1359 +198073,1093 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117753] = 7, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + [140753] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 1, - anon_sym_LT, - ACTIONS(4940), 1, - sym_jsx_text, - STATE(1966), 1, - sym_jsx_closing_element, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2346), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [117779] = 7, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4898), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(4910), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2954), 1, - sym_jsx_closing_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [117805] = 10, + ACTIONS(5522), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3634), 1, + sym_call_type_arguments, + STATE(1617), 2, + sym_template_string, + sym_arguments, + [140779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_SLASH, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(4828), 1, + ACTIONS(5528), 1, + anon_sym_DOT, + ACTIONS(621), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_GT, - STATE(2433), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [117837] = 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, - anon_sym_extends, - ACTIONS(4942), 1, - sym_identifier, - ACTIONS(4944), 1, + ACTIONS(1232), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(1968), 1, - sym_class_body, - STATE(2539), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3486), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [117871] = 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, - anon_sym_extends, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(5530), 1, sym_identifier, - STATE(1843), 1, - sym_class_body, - STATE(2572), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3681), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [117905] = 11, + ACTIONS(5532), 1, + anon_sym_LBRACK, + STATE(3647), 1, + sym_call_type_arguments, + STATE(1784), 2, + sym_template_string, + sym_arguments, + [140835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4920), 1, + ACTIONS(1222), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4948), 1, - sym_identifier, - STATE(1423), 1, - sym_class_body, - STATE(2557), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3559), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [117939] = 9, + [140849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(3229), 1, - anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(4952), 1, - anon_sym_STAR, - STATE(3541), 1, - sym_import_clause, - STATE(3540), 2, - sym_string, - sym_import_require_clause, - STATE(3741), 2, - sym_namespace_import, - sym_named_imports, - [117969] = 11, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3686), 1, + sym_call_type_arguments, + STATE(1546), 2, + sym_template_string, + sym_arguments, + [140875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, - anon_sym_extends, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4954), 1, - sym_identifier, - STATE(1901), 1, - sym_class_body, - STATE(2587), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3467), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118003] = 7, - ACTIONS(4896), 1, + ACTIONS(1794), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4902), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140889] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4910), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(3272), 1, - sym_jsx_closing_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [118029] = 4, + STATE(3520), 1, + sym_call_type_arguments, + STATE(1511), 2, + sym_template_string, + sym_arguments, + [140915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(5534), 1, + anon_sym_AMP, + ACTIONS(5536), 1, + anon_sym_PIPE, + ACTIONS(2150), 6, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3311), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3245), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [118049] = 7, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + anon_sym_LBRACK, + anon_sym_extends, + [140933] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - sym_jsx_text, - ACTIONS(4932), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, anon_sym_LT, - STATE(1373), 1, - sym_jsx_closing_element, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [118075] = 11, + STATE(3517), 1, + sym_call_type_arguments, + STATE(1411), 2, + sym_template_string, + sym_arguments, + [140959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, - anon_sym_extends, - ACTIONS(4928), 1, + ACTIONS(5538), 1, + anon_sym_AMP, + ACTIONS(5540), 1, + anon_sym_PIPE, + ACTIONS(2150), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4956), 1, - sym_identifier, - STATE(1901), 1, - sym_class_body, - STATE(2587), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3467), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118109] = 4, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + [140977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(1798), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4914), 1, anon_sym_PIPE, - ACTIONS(2054), 8, + anon_sym_extends, + [140991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118129] = 6, + [141005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 1, - anon_sym_COLON, - ACTIONS(4749), 1, - anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1970), 6, - anon_sym_COMMA, + ACTIONS(1842), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [118153] = 11, + [141019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, + ACTIONS(1818), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4928), 1, + [141033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1802), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4958), 1, - sym_identifier, - STATE(1901), 1, - sym_class_body, - STATE(2587), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3467), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118187] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(5538), 1, + anon_sym_AMP, + ACTIONS(5540), 1, + anon_sym_PIPE, + ACTIONS(5542), 1, + anon_sym_extends, + ACTIONS(2134), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4753), 1, - anon_sym_SLASH, - ACTIONS(4826), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + [141067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3735), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(4828), 1, - anon_sym_GT, - STATE(2397), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118219] = 11, + anon_sym_LT, + anon_sym_QMARK, + [141089] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, + STATE(3631), 1, + sym_call_type_arguments, + STATE(1997), 2, + sym_template_string, + sym_arguments, + [141115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4928), 1, + ACTIONS(1864), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4960), 1, - sym_identifier, - STATE(1843), 1, - sym_class_body, - STATE(2572), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3681), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118253] = 10, + anon_sym_SEMI, + [141145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(1872), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4826), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141159] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4911), 1, + anon_sym_RBRACE, + STATE(3810), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(4828), 1, - anon_sym_GT, - ACTIONS(4830), 1, - anon_sym_SLASH, - STATE(2415), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118285] = 7, + anon_sym_LT, + anon_sym_QMARK, + [141181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4964), 1, - anon_sym_DQUOTE, - ACTIONS(4966), 1, - anon_sym_SQUOTE, - STATE(2340), 1, - sym_jsx_opening_element, - STATE(2775), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [118311] = 7, + ACTIONS(5522), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3552), 1, + sym_call_type_arguments, + STATE(2064), 2, + sym_template_string, + sym_arguments, + [141207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 1, + ACTIONS(1888), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4962), 1, - anon_sym_LT, - ACTIONS(4964), 1, - anon_sym_DQUOTE, - ACTIONS(4966), 1, - anon_sym_SQUOTE, - STATE(2340), 1, - sym_jsx_opening_element, - STATE(2849), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [118337] = 3, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_EQ, - ACTIONS(4015), 9, + ACTIONS(1876), 8, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [118355] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_implements, - ACTIONS(4924), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4968), 1, - sym_identifier, - STATE(1980), 1, - sym_class_body, - STATE(2546), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3665), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118389] = 4, + [141235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, + ACTIONS(5526), 1, anon_sym_COLON, - STATE(2707), 3, + STATE(3564), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(4970), 6, + ACTIONS(5368), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118409] = 7, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + [141253] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4972), 1, - sym_jsx_text, - STATE(1849), 1, - sym_jsx_closing_element, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2342), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [118435] = 5, + ACTIONS(5522), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3630), 1, + sym_call_type_arguments, + STATE(1999), 2, + sym_template_string, + sym_arguments, + [141279] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_AMP, - ACTIONS(4914), 1, - anon_sym_PIPE, - ACTIONS(4916), 1, - anon_sym_extends, - ACTIONS(2050), 7, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3589), 1, + sym_call_type_arguments, + STATE(1624), 2, + sym_template_string, + sym_arguments, + [141305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [118457] = 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141319] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4747), 1, - anon_sym_SLASH, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(4828), 1, - anon_sym_GT, - STATE(2443), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118489] = 9, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, + anon_sym_LT, + STATE(3601), 1, + sym_call_type_arguments, + STATE(1622), 2, + sym_template_string, + sym_arguments, + [141345] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4974), 1, - anon_sym_GT, - ACTIONS(4976), 1, - anon_sym_SLASH, - STATE(2436), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118518] = 10, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, + anon_sym_LT, + STATE(3548), 1, + sym_call_type_arguments, + STATE(2083), 2, + sym_template_string, + sym_arguments, + [141371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4920), 1, + ACTIONS(5544), 1, + anon_sym_LBRACK, + ACTIONS(1912), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1411), 1, - sym_class_body, - STATE(2523), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3566), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118549] = 9, + [141387] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5546), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4982), 1, - anon_sym_GT, - ACTIONS(4984), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 1, - anon_sym_RPAREN, - ACTIONS(1357), 4, + ACTIONS(5548), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(2011), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [118597] = 4, + STATE(3686), 1, + sym_call_type_arguments, + STATE(1546), 2, + sym_template_string, + sym_arguments, + [141413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 1, - anon_sym_RPAREN, - ACTIONS(2015), 4, + ACTIONS(1830), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(3196), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [118616] = 9, + [141427] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4992), 1, - anon_sym_GT, - ACTIONS(4994), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118645] = 5, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3596), 1, + sym_call_type_arguments, + STATE(1700), 2, + sym_template_string, + sym_arguments, + [141453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(5538), 1, anon_sym_AMP, - ACTIONS(4914), 1, + ACTIONS(5540), 1, anon_sym_PIPE, - ACTIONS(4916), 1, + ACTIONS(5542), 1, anon_sym_extends, - ACTIONS(4996), 6, + ACTIONS(2154), 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, - [118666] = 9, + anon_sym_LBRACK, + [141473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(1834), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4828), 1, - anon_sym_GT, - ACTIONS(4848), 1, - anon_sym_SLASH, - STATE(2382), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118695] = 3, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 4, + ACTIONS(1838), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(1107), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [118712] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(4910), 1, - sym_jsx_text, - ACTIONS(4998), 1, - anon_sym_LT, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [118735] = 5, + [141501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(5324), 1, anon_sym_AMP, - ACTIONS(4914), 1, + ACTIONS(5326), 1, anon_sym_PIPE, - ACTIONS(4916), 1, + ACTIONS(5328), 1, anon_sym_extends, - ACTIONS(5000), 6, + ACTIONS(2144), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118756] = 10, + [141521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5002), 1, + ACTIONS(1846), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(606), 1, - sym_class_body, - STATE(2573), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3671), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118787] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(592), 1, - sym_class_body, - STATE(2568), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3621), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [118818] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5006), 1, - anon_sym_LT, - ACTIONS(5008), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2389), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [118841] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(4910), 1, - sym_jsx_text, - ACTIONS(5010), 1, - anon_sym_LT, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [118864] = 9, + [141535] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4992), 1, - anon_sym_GT, - ACTIONS(5012), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118893] = 9, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, + anon_sym_LT, + STATE(3583), 1, + sym_call_type_arguments, + STATE(1698), 2, + sym_template_string, + sym_arguments, + [141561] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4974), 1, - anon_sym_GT, - ACTIONS(5014), 1, - anon_sym_SLASH, - STATE(2395), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118922] = 9, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, + anon_sym_LT, + STATE(3605), 1, + sym_call_type_arguments, + STATE(2131), 2, + sym_template_string, + sym_arguments, + [141587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4982), 1, - anon_sym_GT, - ACTIONS(5016), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118951] = 9, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3471), 1, + sym_call_type_arguments, + STATE(2077), 2, + sym_template_string, + sym_arguments, + [141613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4753), 1, - anon_sym_SLASH, - ACTIONS(4828), 1, - anon_sym_GT, - STATE(2397), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [118980] = 10, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_BANG, + STATE(3260), 1, + sym_type_annotation, + STATE(3888), 1, + sym__initializer, + ACTIONS(2613), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(2563), 1, - sym_type_parameters, - STATE(3015), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3594), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119011] = 4, + STATE(3597), 1, + sym_call_type_arguments, + STATE(1853), 2, + sym_template_string, + sym_arguments, + [141663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3366), 1, - anon_sym_RPAREN, - ACTIONS(1829), 4, - anon_sym_LBRACK, + ACTIONS(5534), 1, anon_sym_AMP, + ACTIONS(5536), 1, anon_sym_PIPE, + ACTIONS(5552), 1, anon_sym_extends, - ACTIONS(3364), 4, + ACTIONS(2154), 5, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [119030] = 3, + anon_sym_SEMI, + anon_sym_LBRACK, + [141683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1107), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1813), 5, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(5534), 1, anon_sym_AMP, + ACTIONS(5536), 1, anon_sym_PIPE, + ACTIONS(5552), 1, anon_sym_extends, - [119047] = 9, + ACTIONS(2134), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [141703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4992), 1, - anon_sym_GT, - ACTIONS(5018), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119076] = 9, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3507), 1, + sym_call_type_arguments, + STATE(2167), 2, + sym_template_string, + sym_arguments, + [141729] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4992), 1, - anon_sym_GT, - ACTIONS(5020), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119105] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3594), 1, + sym_call_type_arguments, + STATE(1781), 2, + sym_template_string, + sym_arguments, + [141755] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(5024), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2394), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119128] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + STATE(3472), 1, + sym_call_type_arguments, + STATE(2089), 2, + sym_template_string, + sym_arguments, + [141781] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - sym_jsx_text, - ACTIONS(5026), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_LT, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119151] = 9, + ACTIONS(5554), 1, + sym_identifier, + ACTIONS(5556), 1, + anon_sym_LBRACK, + STATE(3653), 1, + sym_call_type_arguments, + STATE(1788), 2, + sym_template_string, + sym_arguments, + [141807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 1, - sym_identifier, - ACTIONS(5031), 1, + ACTIONS(1892), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5034), 1, - anon_sym_GT, - ACTIONS(5036), 1, - anon_sym_SLASH, - ACTIONS(5038), 1, - sym_jsx_identifier, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119180] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4944), 1, + ACTIONS(1896), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1978), 1, - sym_class_body, - STATE(2547), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3660), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119211] = 9, + [141835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(1900), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4974), 1, - anon_sym_GT, - ACTIONS(5041), 1, - anon_sym_SLASH, - STATE(2402), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119240] = 7, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2818), 1, - sym_type_annotation, - STATE(3354), 1, - sym__initializer, - ACTIONS(4792), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4790), 3, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, + anon_sym_PIPE, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(5558), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [119265] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5043), 1, - anon_sym_LT, - ACTIONS(5045), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2405), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119288] = 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [141869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4944), 1, + ACTIONS(1806), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1954), 1, - sym_class_body, - STATE(2549), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3613), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119319] = 10, + [141883] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1767), 1, - sym_class_body, - STATE(2593), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3663), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119350] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + ACTIONS(5560), 1, + sym_identifier, + ACTIONS(5562), 1, + anon_sym_LBRACK, + STATE(3520), 1, + sym_call_type_arguments, + STATE(1511), 2, + sym_template_string, + sym_arguments, + [141909] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5047), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(5049), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2431), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119373] = 3, + ACTIONS(5522), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3484), 1, + sym_call_type_arguments, + STATE(1410), 2, + sym_template_string, + sym_arguments, + [141935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 4, + ACTIONS(1880), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(4858), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [119390] = 9, + [141949] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2667), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, + anon_sym_LT, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4982), 1, - anon_sym_GT, - ACTIONS(5051), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119419] = 10, + ACTIONS(5524), 1, + anon_sym_LBRACK, + STATE(3467), 1, + sym_call_type_arguments, + STATE(116), 2, + sym_template_string, + sym_arguments, + [141975] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5004), 1, + STATE(3647), 1, + sym_call_type_arguments, + STATE(1784), 2, + sym_template_string, + sym_arguments, + [142001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2527), 1, - sym_type_parameters, - STATE(2952), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3545), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119450] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5544), 1, + anon_sym_LBRACK, + ACTIONS(1854), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5004), 1, + [142031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(593), 1, - sym_class_body, - STATE(2542), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3561), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119481] = 6, - ACTIONS(4896), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(621), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4902), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142059] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2667), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + ACTIONS(5520), 1, anon_sym_LT, - ACTIONS(5055), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2429), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119504] = 10, + STATE(3457), 1, + sym_call_type_arguments, + STATE(126), 2, + sym_template_string, + sym_arguments, + [142085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(1814), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1705), 1, - sym_class_body, - STATE(2530), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3508), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119535] = 9, + [142099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(5564), 1, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4828), 1, - anon_sym_GT, - ACTIONS(4830), 1, - anon_sym_SLASH, - STATE(2415), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119564] = 7, + ACTIONS(5566), 1, + anon_sym_DOT, + STATE(3177), 1, + sym_statement_block, + ACTIONS(1098), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2884), 1, - sym_type_annotation, - STATE(3373), 1, - sym__initializer, - ACTIONS(4804), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4802), 3, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, + anon_sym_PIPE, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(5568), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [119589] = 10, + anon_sym_PIPE_RBRACE, + [142139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5057), 1, + ACTIONS(1908), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(119), 1, - sym_class_body, - STATE(2519), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3647), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119620] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1364), 1, + anon_sym_RBRACE, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(3755), 1, + aux_sym_object_repeat1, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4928), 1, + anon_sym_QMARK, + [142175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1890), 1, - sym_class_body, - STATE(2556), 1, - sym_type_parameters, - STATE(3379), 1, - sym_extends_clause, - STATE(3438), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [119651] = 3, + [142189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4866), 1, - anon_sym_is, - ACTIONS(2015), 8, + ACTIONS(1810), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -173722,18052 +199168,19176 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [119668] = 3, + [142203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 4, + ACTIONS(1904), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(2519), 5, - anon_sym_EQ, + [142217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_PIPE, + ACTIONS(2150), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - [119685] = 10, + anon_sym_extends, + [142234] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - STATE(1602), 1, + ACTIONS(5479), 1, + anon_sym_LBRACE, + STATE(112), 1, sym_class_body, - STATE(2592), 1, - sym_type_parameters, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3505), 1, + STATE(3984), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [119716] = 6, + [142259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 1, - anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - ACTIONS(5059), 1, - anon_sym_is, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1970), 5, + ACTIONS(1232), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [119739] = 3, + [142272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, - anon_sym_DOT, - ACTIONS(909), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5564), 1, anon_sym_LBRACE, + STATE(3177), 1, + sym_statement_block, + ACTIONS(1098), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142289] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5574), 1, + sym_identifier, + ACTIONS(5576), 1, + anon_sym_STAR, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(3981), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [142314] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + sym_identifier, + ACTIONS(5582), 1, + anon_sym_STAR, + STATE(3355), 1, + sym_formal_parameters, + STATE(4046), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [142339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1810), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [119756] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + [142352] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - sym_jsx_text, - ACTIONS(5063), 1, - anon_sym_LT, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119779] = 6, - ACTIONS(4902), 1, + ACTIONS(5584), 1, + anon_sym_COMMA, + ACTIONS(5586), 1, + anon_sym_GT, + ACTIONS(5588), 1, + anon_sym_AMP, + ACTIONS(5590), 1, + anon_sym_PIPE, + ACTIONS(5592), 1, + anon_sym_extends, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + STATE(3684), 1, + aux_sym_implements_clause_repeat1, + [142377] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, - anon_sym_LBRACE, - ACTIONS(5068), 1, - anon_sym_LT, - ACTIONS(5071), 1, - sym_jsx_text, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119802] = 6, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, + ACTIONS(1417), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142390] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - sym_jsx_text, - ACTIONS(5074), 1, - anon_sym_LT, - STATE(2341), 1, - sym_jsx_opening_element, - STATE(2430), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [119825] = 5, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4005), 1, + sym_statement_block, + ACTIONS(5596), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(1908), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4914), 1, anon_sym_PIPE, - ACTIONS(4916), 1, anon_sym_extends, - ACTIONS(5076), 6, + [142420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [119846] = 9, + [142433] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(5342), 1, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4982), 1, - anon_sym_GT, - ACTIONS(5078), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119875] = 9, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + STATE(1583), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4078), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [142458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4974), 1, - anon_sym_GT, - ACTIONS(5080), 1, - anon_sym_SLASH, - STATE(2403), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119904] = 10, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3382), 1, + sym_type_annotation, + STATE(3920), 1, + sym__initializer, + ACTIONS(5309), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142479] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(2545), 1, - sym_type_parameters, - STATE(2910), 1, + STATE(2071), 1, sym_class_body, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3669), 1, + STATE(4057), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [119935] = 9, + [142504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4992), 1, + ACTIONS(5598), 1, + anon_sym_LBRACK, + ACTIONS(1912), 6, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(5082), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [119964] = 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, + ACTIONS(1904), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142532] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(5004), 1, + ACTIONS(5440), 1, anon_sym_LBRACE, - STATE(2564), 1, - sym_type_parameters, - STATE(2845), 1, + STATE(688), 1, sym_class_body, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3471), 1, + STATE(4026), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [119995] = 10, + [142557] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(5057), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(112), 1, + STATE(3371), 1, sym_class_body, - STATE(2502), 1, - sym_type_parameters, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3435), 1, + STATE(4054), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [120026] = 9, + [142582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_SLASH, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4828), 1, + ACTIONS(1900), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_GT, - STATE(2433), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [120055] = 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142595] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(5600), 1, sym_identifier, - ACTIONS(4728), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4974), 1, - anon_sym_GT, - ACTIONS(5084), 1, - anon_sym_SLASH, - STATE(2385), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [120084] = 10, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(643), 1, + sym_nested_identifier, + STATE(654), 1, + sym_string, + STATE(713), 1, + sym__module, + [142620] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4978), 1, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(5002), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(675), 1, + STATE(3342), 1, sym_class_body, - STATE(2594), 1, - sym_type_parameters, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3431), 1, + STATE(4138), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [120115] = 9, + [142645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - sym_identifier, - ACTIONS(4728), 1, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + ACTIONS(5479), 1, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4747), 1, - anon_sym_SLASH, - ACTIONS(4828), 1, - anon_sym_GT, - STATE(2443), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [120144] = 9, + STATE(94), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4115), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [142670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3386), 1, + sym_type_annotation, + STATE(3911), 1, + sym__initializer, + ACTIONS(5301), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3523), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [142708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(4728), 1, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_jsx_identifier, - ACTIONS(4982), 1, - anon_sym_GT, - ACTIONS(5086), 1, - anon_sym_SLASH, - STATE(2406), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2634), 1, - sym_jsx_namespace_name, - STATE(3026), 2, - sym_jsx_expression, - sym_jsx_attribute, - [120173] = 10, + ACTIONS(5608), 1, + anon_sym_LBRACK, + ACTIONS(5610), 1, + anon_sym_enum, + STATE(2988), 1, + sym_array, + STATE(2990), 1, + sym_object, + STATE(3542), 1, + sym_variable_declarator, + [142733] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(4920), 1, + ACTIONS(5342), 1, anon_sym_LBRACE, - ACTIONS(4978), 1, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - STATE(1379), 1, + STATE(1613), 1, sym_class_body, - STATE(2558), 1, - sym_type_parameters, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3432), 1, + STATE(4042), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [120204] = 6, + [142758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 1, - anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_DOT, - ACTIONS(5088), 1, - anon_sym_is, - STATE(466), 1, - sym_type_arguments, - ACTIONS(1970), 5, - anon_sym_LBRACE, + ACTIONS(1222), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120227] = 2, + [142771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 8, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(3446), 1, + sym_type_annotation, + ACTIONS(5612), 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_PIPE_RBRACE, + [142788] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, anon_sym_AMP, + ACTIONS(5590), 1, anon_sym_PIPE, + ACTIONS(5592), 1, anon_sym_extends, - [120241] = 2, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5614), 1, + anon_sym_COMMA, + ACTIONS(5616), 1, + anon_sym_GT, + STATE(3624), 1, + aux_sym_implements_clause_repeat1, + [142813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1773), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1846), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120255] = 2, + [142826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 8, + ACTIONS(5618), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [142839] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - [120269] = 2, + STATE(1776), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4144), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [142864] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5350), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - [120283] = 7, + STATE(2042), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(3949), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [142889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - ACTIONS(5090), 1, - anon_sym_BANG, - STATE(3024), 1, - sym_type_annotation, - STATE(3319), 1, - sym__initializer, - ACTIONS(2530), 3, + ACTIONS(5622), 1, + anon_sym_is, + ACTIONS(5620), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [120307] = 2, + anon_sym_PIPE_RBRACE, + [142904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 8, + ACTIONS(5624), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [142917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120321] = 4, + [142930] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, - anon_sym_COLON, - STATE(3140), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(4970), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5354), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [120339] = 6, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + STATE(1794), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4119), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [142955] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4495), 1, - anon_sym_RBRACE, - STATE(3325), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, anon_sym_LPAREN, + ACTIONS(5626), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(5628), 1, anon_sym_QMARK, - [120361] = 2, + STATE(3355), 1, + sym_formal_parameters, + STATE(3968), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [142980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5570), 1, anon_sym_AMP, + ACTIONS(5572), 1, anon_sym_PIPE, + ACTIONS(5630), 1, anon_sym_extends, - [120375] = 2, + ACTIONS(2154), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [142999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5570), 1, anon_sym_AMP, + ACTIONS(5572), 1, anon_sym_PIPE, + ACTIONS(5630), 1, anon_sym_extends, - [120389] = 3, + ACTIONS(2134), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [143018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, + ACTIONS(1842), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1837), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120405] = 5, + [143031] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + STATE(1738), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(3975), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(5534), 1, anon_sym_AMP, - ACTIONS(4914), 1, + ACTIONS(5536), 1, anon_sym_PIPE, - ACTIONS(4916), 1, + ACTIONS(5552), 1, anon_sym_extends, - ACTIONS(5096), 5, + ACTIONS(5471), 4, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [120425] = 2, + [143075] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120439] = 2, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + sym_identifier, + ACTIONS(5634), 1, + anon_sym_STAR, + STATE(3355), 1, + sym_formal_parameters, + STATE(3940), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [143100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1838), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120453] = 2, + [143113] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - [120467] = 5, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4087), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(5588), 1, anon_sym_AMP, - ACTIONS(4914), 1, + ACTIONS(5590), 1, anon_sym_PIPE, - ACTIONS(4916), 1, + ACTIONS(5592), 1, anon_sym_extends, - ACTIONS(5098), 5, - sym__automatic_semicolon, + ACTIONS(2154), 4, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [120487] = 2, + anon_sym_LBRACK, + anon_sym_GT, + [143157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1818), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120501] = 4, + [143170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, - anon_sym_COLON, - STATE(3131), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(4936), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [120519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(951), 3, - anon_sym_while, - anon_sym_SLASH, - sym_identifier, - ACTIONS(949), 5, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(1790), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - [120535] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1892), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120549] = 2, + [143196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1834), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120563] = 3, + [143209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 4, + ACTIONS(1896), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(1821), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [120579] = 5, + [143222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, + ACTIONS(5538), 1, anon_sym_AMP, - ACTIONS(5102), 1, + ACTIONS(5540), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(5542), 1, anon_sym_extends, - ACTIONS(2044), 5, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [120599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 8, + ACTIONS(5471), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, + [143241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1830), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120613] = 2, + [143254] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1825), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + ACTIONS(5417), 1, anon_sym_LBRACE, - anon_sym_SEMI, + STATE(3309), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4190), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1826), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120627] = 2, + [143292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1822), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120641] = 5, + [143305] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, - anon_sym_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(2050), 5, - sym__automatic_semicolon, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(648), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4154), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143330] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, anon_sym_EQ, + STATE(3191), 1, + sym_type_annotation, + STATE(3807), 1, + sym__initializer, + ACTIONS(5288), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [120661] = 2, + [143351] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5350), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - [120675] = 3, + STATE(2023), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4002), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143376] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(1871), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5342), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, anon_sym_extends, - [120691] = 4, + STATE(1608), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4191), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, - anon_sym_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(2054), 6, - sym__automatic_semicolon, + ACTIONS(5140), 1, anon_sym_EQ, + STATE(3617), 1, + sym_constraint, + STATE(4056), 1, + sym_default_type, + ACTIONS(5144), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(5216), 2, + anon_sym_COLON, anon_sym_extends, - [120709] = 2, + [143422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1786), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120723] = 2, + [143435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1806), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120737] = 2, + [143448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1880), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120751] = 2, + [143461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1860), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120765] = 2, + [143474] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + STATE(1897), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4172), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 8, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4106), 1, + sym_statement_block, + ACTIONS(5636), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143516] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2160), 1, anon_sym_LBRACE, + STATE(4117), 1, + sym_statement_block, + ACTIONS(5638), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [143533] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, anon_sym_AMP, + ACTIONS(5590), 1, anon_sym_PIPE, + ACTIONS(5592), 1, anon_sym_extends, - [120779] = 2, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5640), 1, + anon_sym_COMMA, + ACTIONS(5642), 1, + anon_sym_GT, + STATE(3680), 1, + aux_sym_implements_clause_repeat1, + [143558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(5644), 1, + anon_sym_LT, + ACTIONS(5646), 1, + anon_sym_extends, + STATE(740), 1, + sym_object_type, + STATE(3411), 1, + sym_type_parameters, + STATE(3731), 1, + sym_extends_clause, + [143583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5648), 1, + sym_identifier, + ACTIONS(5650), 1, + anon_sym_STAR, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4187), 1, + sym__call_signature, + [143608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 1, anon_sym_LBRACK, + ACTIONS(1854), 6, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120793] = 6, + [143623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5652), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1448), 1, anon_sym_RBRACE, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3324), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [143636] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_QMARK, - [120815] = 2, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5654), 1, + sym_identifier, + ACTIONS(5656), 1, + anon_sym_STAR, + STATE(3355), 1, + sym_formal_parameters, + STATE(3940), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [143661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5354), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + STATE(1789), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4199), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143686] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, anon_sym_AMP, + ACTIONS(5590), 1, anon_sym_PIPE, + ACTIONS(5592), 1, anon_sym_extends, - [120829] = 5, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5658), 1, + anon_sym_COMMA, + ACTIONS(5660), 1, + anon_sym_GT, + STATE(3524), 1, + aux_sym_implements_clause_repeat1, + [143711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_DOT, - STATE(2997), 1, - sym_statement_block, - ACTIONS(1093), 5, + ACTIONS(1096), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [120849] = 6, + [143724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(4505), 1, - anon_sym_RBRACE, - STATE(3416), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [120871] = 6, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(3287), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4153), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [143749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(1850), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(3394), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143762] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_QMARK, - [120893] = 6, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5634), 1, + anon_sym_STAR, + ACTIONS(5662), 1, + sym_identifier, + STATE(3355), 1, + sym_formal_parameters, + STATE(3940), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [143787] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(4325), 1, + ACTIONS(5664), 1, anon_sym_EQ, - STATE(3233), 1, - aux_sym_object_repeat1, - ACTIONS(3245), 4, - anon_sym_LPAREN, + ACTIONS(5668), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(5670), 1, anon_sym_QMARK, - [120915] = 2, + STATE(3625), 1, + sym_type_annotation, + STATE(4006), 1, + sym__initializer, + ACTIONS(5666), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [143810] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(5600), 1, + sym_identifier, + ACTIONS(5672), 1, + anon_sym_DOT, + STATE(643), 1, + sym_nested_identifier, + STATE(654), 1, + sym_string, + STATE(713), 1, + sym__module, + [143835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1802), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120929] = 2, + [143848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1884), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120943] = 2, + [143861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5588), 1, anon_sym_AMP, + ACTIONS(5590), 1, anon_sym_PIPE, + ACTIONS(5592), 1, anon_sym_extends, - [120957] = 2, + ACTIONS(2134), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [143880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(621), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120971] = 2, + [143893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5538), 1, anon_sym_AMP, + ACTIONS(5540), 1, anon_sym_PIPE, + ACTIONS(5542), 1, anon_sym_extends, - [120985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 8, + ACTIONS(5467), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, + [143912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1864), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(1822), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120999] = 2, + [143927] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5674), 1, + sym_identifier, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4187), 1, + sym__call_signature, + [143952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(5678), 1, + anon_sym_EQ, + ACTIONS(5676), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5680), 3, anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_GT, + sym_jsx_identifier, + [143971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1814), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [121013] = 5, + [143984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(1872), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, - ACTIONS(5112), 1, anon_sym_PIPE, - ACTIONS(5114), 1, anon_sym_extends, - ACTIONS(2044), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [143997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2160), 1, anon_sym_LBRACE, + STATE(4157), 1, + sym_statement_block, + ACTIONS(5682), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [121033] = 2, + anon_sym_PIPE_RBRACE, + [144014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2160), 1, anon_sym_LBRACE, + STATE(4161), 1, + sym_statement_block, + ACTIONS(5684), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1798), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [121047] = 2, + [144044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1888), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [121061] = 4, + [144057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5538), 1, anon_sym_AMP, - ACTIONS(5112), 1, + ACTIONS(5540), 1, anon_sym_PIPE, - ACTIONS(2054), 6, + ACTIONS(5542), 1, + anon_sym_extends, + ACTIONS(5509), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - [121079] = 5, + [144076] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_AMP, - ACTIONS(4914), 1, - anon_sym_PIPE, - ACTIONS(4916), 1, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_LT, + ACTIONS(5646), 1, anon_sym_extends, - ACTIONS(2034), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121099] = 5, + STATE(3380), 1, + sym_object_type, + STATE(3405), 1, + sym_type_parameters, + STATE(3870), 1, + sym_extends_clause, + [144101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + anon_sym_STAR, + STATE(3355), 1, + sym_formal_parameters, + STATE(3945), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [144126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5112), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5114), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(2050), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5471), 4, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - [121119] = 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [144145] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1769), 5, - anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [121134] = 8, + ACTIONS(5634), 1, + anon_sym_STAR, + ACTIONS(5690), 1, + sym_identifier, + STATE(3355), 1, + sym_formal_parameters, + STATE(3940), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [144170] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5057), 1, - anon_sym_LBRACE, - STATE(99), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3542), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [121159] = 8, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(5692), 1, + sym_identifier, + ACTIONS(5694), 1, + anon_sym_DOT, + STATE(2851), 1, + sym_nested_identifier, + STATE(2861), 1, + sym_string, + STATE(3192), 1, + sym__module, + [144195] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(5602), 1, + anon_sym_DOT, + ACTIONS(5696), 1, + sym_identifier, + STATE(654), 1, + sym_string, + STATE(713), 1, + sym__module, + STATE(3658), 1, + sym_nested_identifier, + [144220] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5116), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, sym_identifier, - ACTIONS(5118), 1, + ACTIONS(5700), 1, anon_sym_STAR, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3532), 1, - sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [121184] = 4, + STATE(4187), 1, + sym__call_signature, + [144245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3618), 1, + STATE(4019), 1, sym_statement_block, - ACTIONS(5122), 5, + ACTIONS(5702), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121201] = 4, + [144262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3426), 1, + STATE(4036), 1, sym_statement_block, - ACTIONS(5124), 5, + ACTIONS(5704), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121218] = 4, + [144279] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(3451), 1, - sym_statement_block, - ACTIONS(5126), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121235] = 4, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_STAR, + ACTIONS(5706), 1, + sym_identifier, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4187), 1, + sym__call_signature, + [144304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(3488), 1, - sym_statement_block, - ACTIONS(5128), 5, - sym__automatic_semicolon, + ACTIONS(5708), 1, + anon_sym_AMP, + ACTIONS(5710), 1, + anon_sym_PIPE, + ACTIONS(5712), 1, + anon_sym_extends, + ACTIONS(2154), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121252] = 4, + anon_sym_RPAREN, + anon_sym_LBRACK, + [144323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(3023), 1, - sym_type_annotation, - ACTIONS(5130), 5, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4113), 1, + sym_statement_block, + ACTIONS(5714), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121269] = 4, + [144340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3466), 1, + STATE(4094), 1, sym_statement_block, - ACTIONS(5132), 5, + ACTIONS(5716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121286] = 4, + [144357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5588), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5590), 1, anon_sym_PIPE, - ACTIONS(2054), 5, + ACTIONS(2150), 5, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_extends, - [121303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_PIPE, - ACTIONS(5138), 1, + anon_sym_GT, anon_sym_extends, - ACTIONS(2050), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [121322] = 4, + [144374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3429), 1, + STATE(3982), 1, sym_statement_block, - ACTIONS(5140), 5, + ACTIONS(5718), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121339] = 4, + [144391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3535), 1, + STATE(3989), 1, sym_statement_block, - ACTIONS(5142), 5, + ACTIONS(5720), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121356] = 4, + [144408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3538), 1, + STATE(4023), 1, sym_statement_block, - ACTIONS(5144), 5, + ACTIONS(5722), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121373] = 4, + [144425] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5724), 1, + sym_identifier, + ACTIONS(5726), 1, + anon_sym_STAR, + STATE(3355), 1, + sym_formal_parameters, + STATE(4124), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [144450] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_AMP, + ACTIONS(5710), 1, + anon_sym_PIPE, + ACTIONS(5712), 1, + anon_sym_extends, + ACTIONS(2134), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + [144469] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(5604), 1, + sym_identifier, + ACTIONS(5606), 1, anon_sym_LBRACE, - STATE(3630), 1, - sym_statement_block, - ACTIONS(5146), 5, + ACTIONS(5608), 1, + anon_sym_LBRACK, + ACTIONS(5728), 1, + anon_sym_enum, + STATE(2988), 1, + sym_array, + STATE(2990), 1, + sym_object, + STATE(3538), 1, + sym_variable_declarator, + [144494] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + STATE(1824), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4018), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [144519] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(3228), 1, + sym_type_annotation, + ACTIONS(5730), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121390] = 5, + [144536] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5588), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5590), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5592), 1, anon_sym_extends, - ACTIONS(2044), 4, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5732), 1, + anon_sym_COMMA, + ACTIONS(5734), 1, + anon_sym_GT, + STATE(3487), 1, + aux_sym_implements_clause_repeat1, + [144561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [121409] = 4, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [144574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(3634), 1, - sym_statement_block, - ACTIONS(5148), 5, - sym__automatic_semicolon, + ACTIONS(5708), 1, + anon_sym_AMP, + ACTIONS(5710), 1, + anon_sym_PIPE, + ACTIONS(2150), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121426] = 4, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + [144591] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(5411), 1, + anon_sym_extends, + ACTIONS(5440), 1, anon_sym_LBRACE, - STATE(3424), 1, - sym_statement_block, - ACTIONS(5150), 5, + STATE(737), 1, + sym_class_body, + STATE(3909), 1, + sym_extends_clause, + STATE(4065), 1, + sym_class_heritage, + STATE(4269), 1, + sym_implements_clause, + [144616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [121443] = 8, + [144629] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - ACTIONS(5057), 1, - anon_sym_LBRACE, - STATE(120), 1, + STATE(2148), 1, sym_class_body, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3652), 1, + STATE(4183), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [121468] = 8, + [144654] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, - sym_identifier, - ACTIONS(5154), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_enum, - STATE(2580), 1, - sym_array, - STATE(2588), 1, - sym_object, - STATE(3134), 1, - sym_variable_declarator, - [121493] = 8, + ACTIONS(5588), 1, + anon_sym_AMP, + ACTIONS(5590), 1, + anon_sym_PIPE, + ACTIONS(5592), 1, + anon_sym_extends, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5738), 1, + anon_sym_COMMA, + ACTIONS(5740), 1, + anon_sym_GT, + STATE(3626), 1, + aux_sym_implements_clause_repeat1, + [144679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5162), 1, - anon_sym_extends, - STATE(625), 1, - sym_object_type, - STATE(2800), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5742), 1, + sym_identifier, + ACTIONS(5744), 1, + anon_sym_STAR, + STATE(3355), 1, + sym_formal_parameters, + STATE(3940), 1, + sym__call_signature, + STATE(4133), 1, sym_type_parameters, - STATE(3317), 1, - sym_extends_clause, - [121518] = 8, + [144704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(5164), 1, - sym_identifier, - ACTIONS(5166), 1, - anon_sym_DOT, - STATE(567), 1, - sym_nested_identifier, - STATE(590), 1, - sym_string, - STATE(634), 1, - sym__module, - [121543] = 8, + ACTIONS(1794), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [144717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3264), 1, + sym_type_annotation, + STATE(3880), 1, + sym__initializer, + ACTIONS(3562), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144738] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(5342), 1, anon_sym_LBRACE, - ACTIONS(4978), 1, + ACTIONS(5409), 1, anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5411), 1, anon_sym_extends, - STATE(1387), 1, + STATE(1591), 1, sym_class_body, - STATE(3379), 1, + STATE(3909), 1, sym_extends_clause, - STATE(3580), 1, + STATE(4009), 1, sym_class_heritage, - STATE(3824), 1, + STATE(4269), 1, sym_implements_clause, - [121568] = 4, + [144763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(5191), 1, anon_sym_EQ, - ACTIONS(4549), 2, + STATE(3263), 1, + sym_type_annotation, + STATE(3887), 1, + sym__initializer, + ACTIONS(3593), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3245), 4, - anon_sym_LPAREN, + anon_sym_SEMI, + [144784] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [121585] = 8, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3298), 1, + sym_type_annotation, + STATE(3798), 1, + sym__initializer, + ACTIONS(5284), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144805] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5168), 1, + ACTIONS(5746), 1, sym_identifier, - ACTIONS(5170), 1, + ACTIONS(5748), 1, anon_sym_STAR, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3532), 1, - sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [121610] = 8, + STATE(4187), 1, + sym__call_signature, + [144830] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, + anon_sym_AMP, + ACTIONS(5590), 1, + anon_sym_PIPE, + ACTIONS(5592), 1, + anon_sym_extends, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5750), 1, + anon_sym_COMMA, + ACTIONS(5752), 1, + anon_sym_GT, + STATE(3571), 1, + aux_sym_implements_clause_repeat1, + [144855] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5754), 1, + anon_sym_AMP, + ACTIONS(5756), 1, + anon_sym_PIPE, + ACTIONS(5758), 1, + anon_sym_extends, + ACTIONS(2154), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [144874] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5754), 1, + anon_sym_AMP, + ACTIONS(5756), 1, + anon_sym_PIPE, + ACTIONS(5758), 1, + anon_sym_extends, + ACTIONS(2134), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [144893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5754), 1, + anon_sym_AMP, + ACTIONS(5756), 1, + anon_sym_PIPE, + ACTIONS(2150), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_extends, + [144910] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, + anon_sym_AMP, + ACTIONS(5590), 1, + anon_sym_PIPE, + ACTIONS(5592), 1, + anon_sym_extends, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5760), 1, + anon_sym_COMMA, + ACTIONS(5762), 1, + anon_sym_GT, + STATE(3545), 1, + aux_sym_implements_clause_repeat1, + [144935] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5762), 1, + anon_sym_GT, + ACTIONS(5764), 1, + anon_sym_COMMA, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + STATE(3902), 1, + aux_sym_implements_clause_repeat1, + [144957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5174), 1, - anon_sym_STAR, - STATE(2909), 1, + ACTIONS(5772), 1, + anon_sym_QMARK, + STATE(2683), 1, sym_formal_parameters, - STATE(3532), 1, + STATE(2926), 1, sym__call_signature, - STATE(3556), 1, + STATE(3967), 1, sym_type_parameters, - [121635] = 8, + [144979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5776), 1, + anon_sym_PIPE, + ACTIONS(2150), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(3020), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3585), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [121660] = 2, + [144995] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(2682), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [121673] = 6, + ACTIONS(4577), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4609), 1, + anon_sym_LBRACE, + ACTIONS(5778), 1, + anon_sym_LT, + STATE(3490), 1, + aux_sym_extends_clause_repeat1, + STATE(3756), 1, + sym_type_arguments, + [145017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2853), 1, - sym_type_annotation, - STATE(3268), 1, - sym__initializer, - ACTIONS(4868), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121694] = 8, + ACTIONS(5783), 1, + anon_sym_BQUOTE, + ACTIONS(5785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5780), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3002), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [145035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, + ACTIONS(5469), 1, + anon_sym_is, + ACTIONS(2125), 5, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1740), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3614), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [121719] = 3, + [145049] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5752), 1, + anon_sym_GT, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(5788), 1, + anon_sym_COMMA, + STATE(3867), 1, + aux_sym_implements_clause_repeat1, + [145071] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_typeof, + ACTIONS(5790), 1, + sym_identifier, + STATE(2554), 1, + sym_nested_type_identifier, + STATE(4517), 1, + sym_nested_identifier, + STATE(563), 2, + sym_generic_type, + sym_type_query, + [145091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1757), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, + ACTIONS(5794), 1, anon_sym_BQUOTE, - [121734] = 4, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5792), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3059), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [145109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, + ACTIONS(5766), 1, anon_sym_AMP, - ACTIONS(5180), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - ACTIONS(2054), 5, - anon_sym_EQ, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(2154), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - anon_sym_extends, - [121751] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5182), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [121764] = 5, + [145127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, + ACTIONS(5766), 1, anon_sym_AMP, - ACTIONS(5180), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - ACTIONS(5184), 1, + ACTIONS(5770), 1, anon_sym_extends, - ACTIONS(2050), 4, - anon_sym_EQ, + ACTIONS(2134), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - [121783] = 5, + [145145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, + ACTIONS(5766), 1, anon_sym_AMP, - ACTIONS(5180), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - ACTIONS(5184), 1, - anon_sym_extends, - ACTIONS(2044), 4, - anon_sym_EQ, + ACTIONS(2150), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - [121802] = 3, + anon_sym_extends, + [145161] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_is, - ACTIONS(5186), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121817] = 2, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3808), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [145183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [121830] = 6, + ACTIONS(3171), 1, + anon_sym_typeof, + ACTIONS(5800), 1, + sym_identifier, + STATE(1693), 1, + sym_nested_type_identifier, + STATE(4376), 1, + sym_nested_identifier, + STATE(1721), 2, + sym_generic_type, + sym_type_query, + [145203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2773), 1, - sym_type_annotation, - STATE(3331), 1, - sym__initializer, - ACTIONS(4856), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121851] = 8, + ACTIONS(3115), 1, + anon_sym_typeof, + ACTIONS(5802), 1, + sym_identifier, + STATE(2691), 1, + sym_nested_type_identifier, + STATE(4215), 1, + sym_nested_identifier, + STATE(2835), 2, + sym_generic_type, + sym_type_query, + [145223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1925), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3685), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [121876] = 6, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3421), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [145241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(5248), 1, anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(2894), 1, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3293), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(3339), 1, - sym__initializer, - ACTIONS(4870), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121897] = 8, + [145259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(5164), 1, + ACTIONS(3353), 1, + anon_sym_typeof, + ACTIONS(5790), 1, sym_identifier, - ACTIONS(5190), 1, - anon_sym_DOT, - STATE(567), 1, + STATE(2554), 1, + sym_nested_type_identifier, + STATE(4517), 1, sym_nested_identifier, - STATE(590), 1, - sym_string, - STATE(634), 1, - sym__module, - [121922] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3639), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [121947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5192), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [121960] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5110), 1, - anon_sym_AMP, - ACTIONS(5112), 1, - anon_sym_PIPE, - ACTIONS(5114), 1, - anon_sym_extends, - ACTIONS(5076), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [121979] = 8, + STATE(563), 2, + sym_generic_type, + sym_type_query, + [145279] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(3011), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3459), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122004] = 8, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5808), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3365), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [145301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1972), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3620), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122029] = 8, + ACTIONS(3097), 1, + anon_sym_typeof, + ACTIONS(5810), 1, + sym_identifier, + STATE(1474), 1, + sym_nested_type_identifier, + STATE(4258), 1, + sym_nested_identifier, + STATE(1485), 2, + sym_generic_type, + sym_type_query, + [145321] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1959), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3619), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122054] = 8, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5816), 1, + anon_sym_SLASH, + ACTIONS(5818), 1, + sym_jsx_identifier, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [145343] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5194), 1, + ACTIONS(5820), 1, sym_identifier, - ACTIONS(5196), 1, - anon_sym_STAR, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3683), 1, + STATE(3994), 1, sym__call_signature, - [122079] = 8, + STATE(4133), 1, + sym_type_parameters, + [145365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(531), 1, + sym_type_arguments, + STATE(3591), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4577), 2, anon_sym_LBRACE, - ACTIONS(4978), 1, anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1945), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3593), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122104] = 5, + [145385] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5112), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5114), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(5000), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5822), 1, anon_sym_LBRACE, + ACTIONS(5824), 1, + anon_sym_COMMA, + STATE(3860), 1, + aux_sym_implements_clause_repeat1, + [145407] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3581), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5826), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [122123] = 8, + [145423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5198), 1, + ACTIONS(3321), 1, + anon_sym_typeof, + ACTIONS(5790), 1, sym_identifier, - ACTIONS(5200), 1, - anon_sym_STAR, - STATE(2909), 1, - sym_formal_parameters, - STATE(3501), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [122148] = 8, + STATE(2554), 1, + sym_nested_type_identifier, + STATE(4517), 1, + sym_nested_identifier, + STATE(563), 2, + sym_generic_type, + sym_type_query, + [145443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5202), 1, + ACTIONS(3200), 1, + anon_sym_typeof, + ACTIONS(5790), 1, sym_identifier, - ACTIONS(5204), 1, - anon_sym_STAR, - STATE(2909), 1, - sym_formal_parameters, - STATE(3483), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [122173] = 8, + STATE(2554), 1, + sym_nested_type_identifier, + STATE(4517), 1, + sym_nested_identifier, + STATE(563), 2, + sym_generic_type, + sym_type_query, + [145463] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(5692), 1, + sym_identifier, + STATE(2851), 1, + sym_nested_identifier, + STATE(2861), 1, + sym_string, + STATE(3192), 1, + sym__module, + [145485] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5206), 1, - sym_identifier, - ACTIONS(5208), 1, - anon_sym_STAR, - STATE(2909), 1, + ACTIONS(5828), 1, + anon_sym_QMARK, + STATE(2683), 1, sym_formal_parameters, - STATE(3483), 1, + STATE(3337), 1, sym__call_signature, - STATE(3556), 1, + STATE(3967), 1, sym_type_parameters, - [122198] = 4, + [145507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(2838), 1, - sym_type_annotation, - ACTIONS(5210), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3575), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122215] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(3437), 1, - sym_statement_block, - ACTIONS(5212), 5, + ACTIONS(5830), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122232] = 8, + [145523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1784), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3513), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122257] = 8, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5834), 1, + anon_sym_GT, + ACTIONS(5836), 1, + sym_jsx_identifier, + STATE(2604), 1, + sym_nested_identifier, + STATE(2749), 1, + sym_jsx_namespace_name, + STATE(3771), 1, + sym_type_parameter, + [145545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1362), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3584), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122282] = 8, + STATE(3022), 1, + aux_sym_object_type_repeat1, + ACTIONS(3575), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5830), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1413), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3546), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122307] = 4, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3349), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [145579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_PIPE, - ACTIONS(2054), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - [122324] = 5, + ACTIONS(2923), 1, + anon_sym_typeof, + ACTIONS(5838), 1, + sym_identifier, + STATE(1718), 1, + sym_nested_type_identifier, + STATE(4203), 1, + sym_nested_identifier, + STATE(1924), 2, + sym_generic_type, + sym_type_query, + [145599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, - anon_sym_AMP, - ACTIONS(5216), 1, - anon_sym_PIPE, - ACTIONS(5218), 1, - anon_sym_extends, - ACTIONS(2050), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - [122343] = 5, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3350), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [145617] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, + ACTIONS(5586), 1, + anon_sym_GT, + ACTIONS(5766), 1, anon_sym_AMP, - ACTIONS(5216), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - ACTIONS(5218), 1, + ACTIONS(5770), 1, anon_sym_extends, - ACTIONS(2044), 4, - anon_sym_EQ, + ACTIONS(5840), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - [122362] = 4, + STATE(3913), 1, + aux_sym_implements_clause_repeat1, + [145639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(2997), 1, - sym_statement_block, - ACTIONS(1093), 5, + STATE(3027), 1, + aux_sym_object_type_repeat1, + ACTIONS(5844), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5842), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122379] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(2959), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3572), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122404] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(2950), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3495), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122429] = 8, + [145655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_DOT, - ACTIONS(5220), 1, + ACTIONS(2955), 1, + anon_sym_typeof, + ACTIONS(5810), 1, sym_identifier, - STATE(590), 1, - sym_string, - STATE(634), 1, - sym__module, - STATE(3062), 1, + STATE(1474), 1, + sym_nested_type_identifier, + STATE(4258), 1, sym_nested_identifier, - [122454] = 2, + STATE(1485), 2, + sym_generic_type, + sym_type_query, + [145675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [122467] = 8, + ACTIONS(3383), 1, + anon_sym_typeof, + ACTIONS(5846), 1, + sym_identifier, + STATE(2587), 1, + sym_nested_type_identifier, + STATE(4284), 1, + sym_nested_identifier, + STATE(2652), 2, + sym_generic_type, + sym_type_query, + [145695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1416), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3575), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122492] = 8, + ACTIONS(3405), 1, + anon_sym_typeof, + ACTIONS(5848), 1, + sym_identifier, + STATE(630), 1, + sym_nested_type_identifier, + STATE(4517), 1, + sym_nested_identifier, + STATE(563), 2, + sym_generic_type, + sym_type_query, + [145715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(595), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3569), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122517] = 8, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5850), 1, + anon_sym_export, + ACTIONS(5852), 1, + anon_sym_class, + ACTIONS(5854), 1, + anon_sym_abstract, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [145737] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(745), 1, anon_sym_DQUOTE, - ACTIONS(2829), 1, + ACTIONS(747), 1, anon_sym_SQUOTE, - ACTIONS(5224), 1, + ACTIONS(5696), 1, sym_identifier, - ACTIONS(5226), 1, - anon_sym_DOT, - STATE(2484), 1, - sym_nested_identifier, - STATE(2562), 1, + STATE(654), 1, sym_string, - STATE(2870), 1, + STATE(677), 1, sym__module, - [122542] = 8, + STATE(3658), 1, + sym_nested_identifier, + [145759] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5208), 1, - anon_sym_STAR, - ACTIONS(5228), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(5696), 1, sym_identifier, - STATE(2909), 1, - sym_formal_parameters, - STATE(3483), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [122567] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, - anon_sym_LT, - ACTIONS(5162), 1, - anon_sym_extends, - STATE(2780), 1, - sym_type_parameters, - STATE(2784), 1, - sym_object_type, - STATE(3241), 1, - sym_extends_clause, - [122592] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1821), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3657), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122617] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5002), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3445), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5100), 1, - anon_sym_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5104), 1, - anon_sym_extends, - ACTIONS(5076), 4, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - [122661] = 8, + STATE(654), 1, + sym_string, + STATE(713), 1, + sym__module, + STATE(3658), 1, + sym_nested_identifier, + [145781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5248), 1, anon_sym_COLON, - ACTIONS(5232), 1, - anon_sym_QMARK, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3610), 1, - sym__call_signature, - [122686] = 5, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3328), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [145799] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(5236), 1, - anon_sym_EQ, - ACTIONS(5234), 2, - anon_sym_SLASH, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(5600), 1, sym_identifier, - ACTIONS(5238), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [122705] = 8, + STATE(643), 1, + sym_nested_identifier, + STATE(654), 1, + sym_string, + STATE(713), 1, + sym__module, + [145821] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_STAR, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5240), 1, + ACTIONS(3159), 1, + anon_sym_typeof, + ACTIONS(5810), 1, sym_identifier, - STATE(2909), 1, - sym_formal_parameters, - STATE(3532), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [122730] = 3, + STATE(1474), 1, + sym_nested_type_identifier, + STATE(4258), 1, + sym_nested_identifier, + STATE(1485), 2, + sym_generic_type, + sym_type_query, + [145841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 2, - anon_sym_SLASH, + ACTIONS(5856), 1, sym_identifier, - ACTIONS(1773), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [122745] = 8, + ACTIONS(5858), 1, + anon_sym_COMMA, + ACTIONS(5860), 1, + anon_sym_RBRACE, + STATE(3921), 1, + sym__import_export_specifier, + ACTIONS(5862), 2, + anon_sym_type, + anon_sym_typeof, + [145861] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, + ACTIONS(5812), 1, sym_identifier, - ACTIONS(5154), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5242), 1, - anon_sym_enum, - STATE(2580), 1, - sym_array, - STATE(2588), 1, - sym_object, - STATE(3056), 1, - sym_variable_declarator, - [122770] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3034), 1, - sym_type_annotation, - STATE(3328), 1, - sym__initializer, - ACTIONS(3534), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122791] = 6, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(5864), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [145883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3009), 1, - sym_type_annotation, - STATE(3293), 1, - sym__initializer, - ACTIONS(4878), 3, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3556), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122812] = 8, + [145899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(2967), 1, + anon_sym_typeof, + ACTIONS(5838), 1, sym_identifier, - ACTIONS(5246), 1, - anon_sym_STAR, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3602), 1, - sym__call_signature, - [122837] = 8, + STATE(1718), 1, + sym_nested_type_identifier, + STATE(4203), 1, + sym_nested_identifier, + STATE(1924), 2, + sym_generic_type, + sym_type_query, + [145919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5248), 1, - sym_identifier, - ACTIONS(5250), 1, - anon_sym_STAR, - STATE(2909), 1, + ACTIONS(5868), 1, + anon_sym_QMARK, + STATE(2683), 1, sym_formal_parameters, - STATE(3551), 1, + STATE(3326), 1, sym__call_signature, - STATE(3556), 1, + STATE(3967), 1, sym_type_parameters, - [122862] = 5, + [145941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_AMP, - ACTIONS(5112), 1, - anon_sym_PIPE, - ACTIONS(5114), 1, - anon_sym_extends, - ACTIONS(4996), 4, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3585), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5870), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - [122881] = 8, + [145957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_STAR, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5252), 1, - sym_identifier, - STATE(2909), 1, - sym_formal_parameters, - STATE(3532), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [122906] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_STAR, - STATE(2909), 1, + ACTIONS(5872), 1, + anon_sym_QMARK, + STATE(2683), 1, sym_formal_parameters, - STATE(3483), 1, + STATE(3229), 1, sym__call_signature, - STATE(3556), 1, + STATE(3967), 1, sym_type_parameters, - [122931] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1845), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3479), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [122956] = 6, + [145979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3032), 1, - sym_type_annotation, - STATE(3321), 1, - sym__initializer, - ACTIONS(3525), 3, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3583), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122977] = 2, + [145995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 7, + STATE(3046), 1, + aux_sym_object_type_repeat1, + ACTIONS(3583), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5874), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [122990] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5208), 1, - anon_sym_STAR, - ACTIONS(5258), 1, - sym_identifier, - STATE(2909), 1, - sym_formal_parameters, - STATE(3483), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [123015] = 5, + [146011] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5734), 1, + anon_sym_GT, + ACTIONS(5766), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5770), 1, anon_sym_extends, - ACTIONS(5076), 4, - anon_sym_LBRACE, + ACTIONS(5876), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123034] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1651), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3499), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [123059] = 8, + STATE(3797), 1, + aux_sym_implements_clause_repeat1, + [146033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - STATE(1782), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3659), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [123084] = 8, + ACTIONS(5608), 1, + anon_sym_LBRACK, + ACTIONS(5878), 1, + sym_identifier, + STATE(2988), 1, + sym_array, + STATE(2990), 1, + sym_object, + STATE(3544), 1, + sym_variable_declarator, + [146055] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5002), 1, + ACTIONS(5606), 1, anon_sym_LBRACE, - STATE(676), 1, - sym_class_body, - STATE(3379), 1, - sym_extends_clause, - STATE(3528), 1, - sym_class_heritage, - STATE(3824), 1, - sym_implements_clause, - [123109] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5260), 1, - anon_sym_EQ, - ACTIONS(5264), 1, - anon_sym_COLON, - ACTIONS(5266), 1, - anon_sym_QMARK, - STATE(3048), 1, - sym_type_annotation, - STATE(3500), 1, - sym__initializer, - ACTIONS(5262), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [123132] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_EQ, - STATE(3061), 1, - sym_constraint, - STATE(3475), 1, - sym_default_type, - ACTIONS(4730), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(4843), 2, - anon_sym_COLON, - anon_sym_extends, - [123153] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5268), 1, - sym_identifier, - ACTIONS(5270), 1, + ACTIONS(5608), 1, anon_sym_LBRACK, - STATE(1826), 1, - sym_arguments, - STATE(3555), 1, - sym_type_arguments, - [123175] = 4, + ACTIONS(5878), 1, + sym_identifier, + STATE(2988), 1, + sym_array, + STATE(2990), 1, + sym_object, + STATE(3538), 1, + sym_variable_declarator, + [146077] = 4, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, + STATE(3051), 1, aux_sym_object_type_repeat1, - ACTIONS(3338), 2, + ACTIONS(5882), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5272), 3, + ACTIONS(5880), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123191] = 7, + [146093] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5274), 1, - anon_sym_QMARK, - STATE(2352), 1, + ACTIONS(5884), 1, + sym_identifier, + STATE(3355), 1, sym_formal_parameters, - STATE(2517), 1, - sym__call_signature, - STATE(3478), 1, + STATE(4133), 1, sym_type_parameters, - [123213] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2512), 1, + STATE(4181), 1, sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [123235] = 7, + [146115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2507), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [123257] = 7, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + ACTIONS(5692), 1, + sym_identifier, + STATE(2851), 1, + sym_nested_identifier, + STATE(2861), 1, + sym_string, + STATE(3178), 1, + sym__module, + [146137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2505), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [123279] = 7, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5888), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3002), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [146155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(5282), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2514), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [123301] = 7, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5890), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3002), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [146173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5812), 1, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(5814), 1, anon_sym_GT, - ACTIONS(5288), 1, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(5892), 1, anon_sym_SLASH, - ACTIONS(5290), 1, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [146195] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5894), 1, + sym_identifier, + ACTIONS(5896), 1, + anon_sym_GT, + ACTIONS(5898), 1, sym_jsx_identifier, - STATE(2285), 1, + STATE(2595), 1, sym_nested_identifier, - STATE(2420), 1, + STATE(2720), 1, sym_jsx_namespace_name, - [123323] = 7, + STATE(3771), 1, + sym_type_parameter, + [146217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 1, + anon_sym_typeof, + ACTIONS(5846), 1, + sym_identifier, + STATE(2587), 1, + sym_nested_type_identifier, + STATE(4284), 1, + sym_nested_identifier, + STATE(2652), 2, + sym_generic_type, + sym_type_query, + [146237] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5902), 1, + anon_sym_BQUOTE, + ACTIONS(5900), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3060), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [146255] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3649), 1, + STATE(3994), 1, sym__call_signature, - [123345] = 3, + STATE(4133), 1, + sym_type_parameters, + [146277] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(5909), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5906), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, + ACTIONS(5450), 1, anon_sym_is, - ACTIONS(2015), 5, + ACTIONS(2125), 5, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [123359] = 7, + [146307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_COMMA, - ACTIONS(3617), 1, - anon_sym_LBRACE, - ACTIONS(3649), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5294), 1, - anon_sym_LT, - STATE(3129), 1, - aux_sym_extends_clause_repeat1, - STATE(3376), 1, - sym_type_arguments, - [123381] = 7, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5911), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3002), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [146325] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5812), 1, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(5814), 1, anon_sym_GT, - ACTIONS(5290), 1, + ACTIONS(5818), 1, sym_jsx_identifier, - ACTIONS(5296), 1, + ACTIONS(5913), 1, anon_sym_SLASH, - STATE(2285), 1, + STATE(2609), 1, sym_nested_identifier, - STATE(2420), 1, + STATE(2713), 1, sym_jsx_namespace_name, - [123403] = 7, + [146347] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + sym_identifier, + ACTIONS(5915), 1, + anon_sym_COMMA, + ACTIONS(5917), 1, + anon_sym_RBRACE, + STATE(3743), 1, + sym__import_export_specifier, + ACTIONS(5862), 2, + anon_sym_type, + anon_sym_typeof, + [146367] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5919), 1, sym_identifier, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3611), 1, + STATE(4004), 1, sym__call_signature, - [123425] = 6, + STATE(4133), 1, + sym_type_parameters, + [146389] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 1, - anon_sym_typeof, - ACTIONS(5300), 1, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + ACTIONS(5600), 1, sym_identifier, - STATE(2234), 1, - sym_nested_type_identifier, - STATE(3860), 1, + STATE(643), 1, sym_nested_identifier, - STATE(485), 2, - sym_generic_type, - sym_type_query, - [123445] = 7, + STATE(654), 1, + sym_string, + STATE(677), 1, + sym__module, + [146411] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5302), 1, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(5921), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [146433] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5925), 1, + anon_sym_EQ, + ACTIONS(5923), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5927), 3, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_COMMA, - STATE(3350), 1, - aux_sym_implements_clause_repeat1, - [123467] = 6, + anon_sym_GT, + sym_jsx_identifier, + [146449] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(5929), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [146471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + STATE(3132), 1, + aux_sym_object_type_repeat1, + ACTIONS(5933), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5931), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4749), 1, - anon_sym_LT, - STATE(465), 1, - sym_type_arguments, - STATE(3072), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3649), 2, - anon_sym_LBRACE, - anon_sym_implements, - [123487] = 7, + anon_sym_SEMI, + [146487] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym_QMARK, - STATE(2352), 1, + ACTIONS(5935), 1, + sym_identifier, + STATE(3355), 1, sym_formal_parameters, - STATE(2979), 1, + STATE(3979), 1, sym__call_signature, - STATE(3478), 1, + STATE(4133), 1, sym_type_parameters, - [123509] = 7, + [146509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(3057), 1, + anon_sym_typeof, + ACTIONS(5800), 1, sym_identifier, - STATE(2909), 1, - sym_formal_parameters, - STATE(3444), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [123531] = 5, + STATE(1693), 1, + sym_nested_type_identifier, + STATE(4376), 1, + sym_nested_identifier, + STATE(1721), 2, + sym_generic_type, + sym_type_query, + [146529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5313), 1, - anon_sym_BQUOTE, - ACTIONS(5315), 1, + ACTIONS(5796), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5310), 2, + ACTIONS(5939), 1, + anon_sym_BQUOTE, + ACTIONS(5937), 2, sym__template_chars, sym_escape_sequence, - STATE(2615), 2, + STATE(3068), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [123549] = 7, + [146547] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(5941), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [146569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5776), 1, + anon_sym_PIPE, + ACTIONS(5943), 1, + anon_sym_extends, + ACTIONS(2134), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + [146587] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5945), 1, anon_sym_QMARK, - STATE(2352), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3041), 1, + STATE(4043), 1, sym__call_signature, - STATE(3478), 1, + STATE(4133), 1, sym_type_parameters, - [123571] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5154), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5320), 1, - sym_identifier, - STATE(2580), 1, - sym_array, - STATE(2588), 1, - sym_object, - STATE(3056), 1, - sym_variable_declarator, - [123593] = 7, + [146609] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5320), 1, + ACTIONS(5812), 1, sym_identifier, - STATE(2580), 1, - sym_array, - STATE(2588), 1, - sym_object, - STATE(3083), 1, - sym_variable_declarator, - [123615] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(3046), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [123633] = 6, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(5947), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [146631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_typeof, - ACTIONS(5326), 1, - sym_identifier, - STATE(1706), 1, - sym_nested_type_identifier, - STATE(3730), 1, - sym_nested_identifier, - STATE(1881), 2, - sym_generic_type, - sym_type_query, - [123653] = 6, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5951), 1, + anon_sym_BQUOTE, + ACTIONS(5949), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3095), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [146649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(5328), 1, + ACTIONS(5953), 1, sym_identifier, - STATE(535), 1, + STATE(2747), 1, sym_nested_type_identifier, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(485), 2, + STATE(2908), 2, sym_generic_type, sym_type_query, - [123673] = 7, + [146669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5320), 1, - sym_identifier, - STATE(2580), 1, - sym_array, - STATE(2588), 1, - sym_object, - STATE(3135), 1, - sym_variable_declarator, - [123695] = 6, + ACTIONS(5664), 1, + anon_sym_EQ, + ACTIONS(5668), 1, + anon_sym_COLON, + STATE(3529), 1, + sym_type_annotation, + STATE(3966), 1, + sym__initializer, + ACTIONS(5955), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [146689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(713), 1, anon_sym_typeof, - ACTIONS(5330), 1, + ACTIONS(5790), 1, sym_identifier, - STATE(1469), 1, + STATE(2554), 1, sym_nested_type_identifier, - STATE(3686), 1, + STATE(4517), 1, sym_nested_identifier, - STATE(1667), 2, + STATE(563), 2, sym_generic_type, sym_type_query, - [123715] = 7, + [146709] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5854), 1, + anon_sym_abstract, + ACTIONS(5957), 1, + anon_sym_export, + ACTIONS(5959), 1, + anon_sym_class, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [146731] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3608), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5961), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5334), 1, + anon_sym_SEMI, + [146747] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3579), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5963), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146763] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5965), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(2953), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [146785] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3066), 1, + aux_sym_object_type_repeat1, + ACTIONS(3569), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5967), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146801] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3090), 1, + aux_sym_object_type_repeat1, + ACTIONS(3569), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5967), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146817] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5660), 1, anon_sym_GT, - ACTIONS(5336), 1, + ACTIONS(5766), 1, anon_sym_AMP, - ACTIONS(5338), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5770), 1, anon_sym_extends, - STATE(3242), 1, + ACTIONS(5969), 1, + anon_sym_COMMA, + STATE(3706), 1, aux_sym_implements_clause_repeat1, - [123737] = 7, + [146839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(5342), 1, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5971), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3002), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [146857] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3092), 1, + aux_sym_object_type_repeat1, + ACTIONS(5975), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5973), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5344), 1, - anon_sym_GT, - STATE(3273), 1, - aux_sym_implements_clause_repeat1, - [123759] = 7, + anon_sym_SEMI, + [146873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5977), 1, + anon_sym_default, + ACTIONS(5979), 1, + anon_sym_RBRACE, + ACTIONS(5981), 1, + anon_sym_case, + STATE(3124), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [146891] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5983), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3373), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [146913] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5156), 1, + ACTIONS(5608), 1, anon_sym_LBRACK, - ACTIONS(5320), 1, + ACTIONS(5878), 1, sym_identifier, - STATE(2580), 1, + STATE(2988), 1, sym_array, - STATE(2588), 1, + STATE(2990), 1, sym_object, - STATE(3134), 1, + STATE(3865), 1, sym_variable_declarator, - [123781] = 6, + [146935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, - anon_sym_typeof, - ACTIONS(5346), 1, - sym_identifier, - STATE(2351), 1, - sym_nested_type_identifier, - STATE(3716), 1, - sym_nested_identifier, - STATE(2462), 2, - sym_generic_type, - sym_type_query, - [123801] = 2, + ACTIONS(5985), 1, + anon_sym_default, + ACTIONS(5988), 1, + anon_sym_RBRACE, + ACTIONS(5990), 1, + anon_sym_case, + STATE(3100), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [146953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 6, + ACTIONS(5993), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123813] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(5350), 1, - anon_sym_COMMA, - ACTIONS(5352), 1, - anon_sym_GT, - STATE(3254), 1, - aux_sym_implements_clause_repeat1, - [123835] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2935), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [123853] = 6, + [146965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2556), 1, anon_sym_typeof, - ACTIONS(5354), 1, + ACTIONS(5790), 1, sym_identifier, - STATE(1247), 1, + STATE(2554), 1, sym_nested_type_identifier, - STATE(3695), 1, + STATE(4517), 1, sym_nested_identifier, - STATE(1298), 2, + STATE(563), 2, sym_generic_type, sym_type_query, - [123873] = 5, + [146985] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2934), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [123891] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(5995), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(2965), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [147007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5356), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2883), 1, + STATE(2969), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [123913] = 4, + [147029] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 1, - anon_sym_EQ, - ACTIONS(5358), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5362), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [123929] = 6, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5999), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3002), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [147047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(6001), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3194), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [147069] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(6003), 1, sym_identifier, - ACTIONS(5366), 1, - anon_sym_COMMA, - ACTIONS(5368), 1, - anon_sym_RBRACE, - STATE(3304), 1, - sym__import_export_specifier, - ACTIONS(5370), 2, - anon_sym_type, - anon_sym_typeof, - [123949] = 5, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4181), 1, + sym__call_signature, + [147091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(5216), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(5218), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(5076), 3, - anon_sym_EQ, + ACTIONS(6007), 1, + anon_sym_QMARK, + ACTIONS(6005), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [123967] = 7, + anon_sym_RBRACK, + [147111] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(4734), 1, + ACTIONS(6009), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(2972), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [147133] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5372), 1, - sym_identifier, - ACTIONS(5374), 1, - anon_sym_LBRACK, - STATE(1857), 1, - sym_arguments, - STATE(3522), 1, - sym_type_arguments, - [123989] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(6011), 1, + anon_sym_QMARK, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4162), 1, + sym__call_signature, + [147155] = 4, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, + STATE(3147), 1, aux_sym_object_type_repeat1, - ACTIONS(3336), 2, + ACTIONS(6015), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5376), 3, + ACTIONS(6013), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124005] = 7, + [147171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - sym_identifier, - ACTIONS(5286), 1, - anon_sym_GT, - ACTIONS(5290), 1, - sym_jsx_identifier, - ACTIONS(5378), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [124027] = 3, + ACTIONS(4019), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [147183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - anon_sym_is, - ACTIONS(2015), 5, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5776), 1, + anon_sym_PIPE, + ACTIONS(5943), 1, + anon_sym_extends, + ACTIONS(2154), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_EQ_GT, + [147201] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, anon_sym_AMP, + ACTIONS(5590), 1, anon_sym_PIPE, + ACTIONS(5592), 1, anon_sym_extends, - [124041] = 4, + ACTIONS(6017), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_GT, + [147219] = 7, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, - aux_sym_object_type_repeat1, - ACTIONS(3314), 2, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(6019), 1, + anon_sym_QMARK, + STATE(3355), 1, + sym_formal_parameters, + STATE(4111), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [147241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6021), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(5380), 3, + [147253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6023), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124057] = 4, + anon_sym_PIPE_RBRACE, + [147265] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6027), 1, + anon_sym_BQUOTE, + ACTIONS(6025), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3105), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [147283] = 4, ACTIONS(3), 1, sym_comment, - STATE(2638), 1, + STATE(3066), 1, aux_sym_object_type_repeat1, - ACTIONS(3314), 2, + ACTIONS(3589), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5380), 3, + ACTIONS(6029), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124073] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5382), 1, - anon_sym_default, - ACTIONS(5384), 1, - anon_sym_RBRACE, - ACTIONS(5386), 1, - anon_sym_case, - STATE(2697), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [124091] = 4, + [147299] = 4, ACTIONS(3), 1, sym_comment, - STATE(2641), 1, + STATE(3089), 1, aux_sym_object_type_repeat1, - ACTIONS(5390), 2, + ACTIONS(3589), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5388), 3, + ACTIONS(6029), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124107] = 7, + [147315] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6031), 1, + sym_identifier, + ACTIONS(6033), 1, + anon_sym_GT, + ACTIONS(6035), 1, + sym_jsx_identifier, + STATE(2599), 1, + sym_nested_identifier, + STATE(2759), 1, + sym_jsx_namespace_name, + STATE(3771), 1, + sym_type_parameter, + [147337] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(6037), 1, sym_identifier, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3444), 1, + STATE(3994), 1, sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [124129] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(5394), 1, - anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_GT, - STATE(3223), 1, - aux_sym_implements_clause_repeat1, - [124151] = 7, + [147359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(5164), 1, - sym_identifier, - STATE(567), 1, - sym_nested_identifier, - STATE(590), 1, - sym_string, - STATE(634), 1, - sym__module, - [124173] = 7, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3180), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [147377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(5398), 1, - anon_sym_COMMA, - ACTIONS(5400), 1, - anon_sym_GT, - STATE(3398), 1, - aux_sym_implements_clause_repeat1, - [124195] = 7, + ACTIONS(5977), 1, + anon_sym_default, + ACTIONS(5981), 1, + anon_sym_case, + ACTIONS(6039), 1, + anon_sym_RBRACE, + STATE(3100), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [147395] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5812), 1, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(5814), 1, anon_sym_GT, - ACTIONS(5290), 1, + ACTIONS(5818), 1, sym_jsx_identifier, - ACTIONS(5402), 1, + ACTIONS(6041), 1, anon_sym_SLASH, - STATE(2285), 1, + STATE(2609), 1, sym_nested_identifier, - STATE(2420), 1, + STATE(2713), 1, sym_jsx_namespace_name, - [124217] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_typeof, - ACTIONS(5404), 1, - sym_identifier, - STATE(2266), 1, - sym_nested_type_identifier, - STATE(3745), 1, - sym_nested_identifier, - STATE(2312), 2, - sym_generic_type, - sym_type_query, - [124237] = 6, + [147417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_EQ, - ACTIONS(5264), 1, - anon_sym_COLON, - STATE(3084), 1, - sym_type_annotation, - STATE(3629), 1, - sym__initializer, - ACTIONS(5406), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [124257] = 7, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5852), 1, + anon_sym_class, + ACTIONS(5854), 1, + anon_sym_abstract, + ACTIONS(6043), 1, + anon_sym_export, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [147439] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5268), 1, - sym_identifier, - ACTIONS(5270), 1, - anon_sym_LBRACK, - STATE(135), 1, - sym_arguments, - STATE(3487), 1, - sym_type_arguments, - [124279] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5408), 1, - sym_identifier, - ACTIONS(5410), 1, - anon_sym_LBRACK, - STATE(1256), 1, - sym_arguments, - STATE(3651), 1, - sym_type_arguments, - [124301] = 7, + ACTIONS(6045), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3832), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [147461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5372), 1, + ACTIONS(5812), 1, sym_identifier, - ACTIONS(5374), 1, - anon_sym_LBRACK, - STATE(131), 1, - sym_arguments, - STATE(3453), 1, - sym_type_arguments, - [124323] = 4, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(6047), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [147483] = 4, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, + STATE(3066), 1, aux_sym_object_type_repeat1, - ACTIONS(3322), 2, + ACTIONS(3600), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5412), 3, + ACTIONS(6049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124339] = 4, + [147499] = 5, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, - aux_sym_object_type_repeat1, - ACTIONS(3348), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5414), 3, - sym__automatic_semicolon, + ACTIONS(5708), 1, + anon_sym_AMP, + ACTIONS(5710), 1, + anon_sym_PIPE, + ACTIONS(5712), 1, + anon_sym_extends, + ACTIONS(5471), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [124355] = 5, + anon_sym_RPAREN, + [147517] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2951), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [124373] = 4, + ACTIONS(5740), 1, + anon_sym_GT, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(6051), 1, + anon_sym_COMMA, + STATE(3781), 1, + aux_sym_implements_clause_repeat1, + [147539] = 4, ACTIONS(3), 1, sym_comment, - STATE(2655), 1, + STATE(3066), 1, aux_sym_object_type_repeat1, - ACTIONS(3348), 2, + ACTIONS(3610), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5414), 3, + ACTIONS(6053), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124389] = 4, + [147555] = 4, ACTIONS(3), 1, sym_comment, - STATE(2656), 1, + STATE(3066), 1, aux_sym_object_type_repeat1, - ACTIONS(5418), 2, + ACTIONS(3577), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5416), 3, + ACTIONS(6055), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124405] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(5420), 1, - anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_GT, - STATE(3294), 1, - aux_sym_implements_clause_repeat1, - [124427] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2815), 1, - anon_sym_typeof, - ACTIONS(5404), 1, - sym_identifier, - STATE(2266), 1, - sym_nested_type_identifier, - STATE(3745), 1, - sym_nested_identifier, - STATE(2312), 2, - sym_generic_type, - sym_type_query, - [124447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5424), 1, - anon_sym_COMMA, - ACTIONS(5426), 1, - anon_sym_RBRACE, - STATE(3230), 1, - sym__import_export_specifier, - ACTIONS(5370), 2, - anon_sym_type, - anon_sym_typeof, - [124467] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(5164), 1, - sym_identifier, - STATE(567), 1, - sym_nested_identifier, - STATE(590), 1, - sym_string, - STATE(610), 1, - sym__module, - [124489] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5268), 1, - sym_identifier, - ACTIONS(5270), 1, - anon_sym_LBRACK, - STATE(1204), 1, - sym_arguments, - STATE(3632), 1, - sym_type_arguments, - [124511] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5428), 1, - anon_sym_QMARK, - STATE(2909), 1, - sym_formal_parameters, - STATE(3536), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [124533] = 7, + [147571] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5812), 1, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(5814), 1, anon_sym_GT, - ACTIONS(5290), 1, + ACTIONS(5818), 1, sym_jsx_identifier, - ACTIONS(5430), 1, + ACTIONS(6057), 1, anon_sym_SLASH, - STATE(2285), 1, + STATE(2609), 1, sym_nested_identifier, - STATE(2420), 1, + STATE(2713), 1, sym_jsx_namespace_name, - [124555] = 7, + [147593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4345), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5268), 1, - sym_identifier, - ACTIONS(5270), 1, - anon_sym_LBRACK, - STATE(1642), 1, - sym_arguments, - STATE(3496), 1, - sym_type_arguments, - [124577] = 5, + STATE(3129), 1, + aux_sym_object_type_repeat1, + ACTIONS(3577), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6055), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147609] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5432), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2615), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [124595] = 5, + ACTIONS(5616), 1, + anon_sym_GT, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(6059), 1, + anon_sym_COMMA, + STATE(3847), 1, + aux_sym_implements_clause_repeat1, + [147631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5438), 1, - anon_sym_BQUOTE, - ACTIONS(5432), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2615), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [124613] = 7, + STATE(3133), 1, + aux_sym_object_type_repeat1, + ACTIONS(6063), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6061), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147647] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, - anon_sym_QMARK, - STATE(2909), 1, + ACTIONS(6065), 1, + sym_identifier, + STATE(3355), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3581), 1, + STATE(3993), 1, sym__call_signature, - [124635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5442), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124647] = 7, + STATE(4133), 1, + sym_type_parameters, + [147669] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5156), 1, + ACTIONS(5608), 1, anon_sym_LBRACK, - ACTIONS(5320), 1, + ACTIONS(5878), 1, sym_identifier, - STATE(2580), 1, + STATE(2988), 1, sym_array, - STATE(2588), 1, + STATE(2990), 1, sym_object, - STATE(3305), 1, + STATE(3542), 1, sym_variable_declarator, - [124669] = 4, + [147691] = 6, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, + ACTIONS(3021), 1, + anon_sym_typeof, + ACTIONS(5790), 1, + sym_identifier, + STATE(2554), 1, + sym_nested_type_identifier, + STATE(4517), 1, + sym_nested_identifier, + STATE(563), 2, + sym_generic_type, + sym_type_query, + [147711] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(6067), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3348), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [147733] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3049), 1, aux_sym_object_type_repeat1, - ACTIONS(5447), 2, + ACTIONS(3610), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5444), 3, + ACTIONS(6053), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124685] = 7, + [147749] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4345), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(6069), 1, + anon_sym_QMARK, + STATE(3355), 1, + sym_formal_parameters, + STATE(4012), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [147771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3523), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4734), 1, anon_sym_LT, - ACTIONS(5372), 1, - sym_identifier, - ACTIONS(5374), 1, - anon_sym_LBRACK, - STATE(1673), 1, - sym_arguments, - STATE(3527), 1, - sym_type_arguments, - [124707] = 5, + anon_sym_QMARK, + [147783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + STATE(3168), 1, + aux_sym_object_type_repeat1, + ACTIONS(3606), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6071), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5451), 1, + ACTIONS(6073), 1, anon_sym_BQUOTE, - ACTIONS(5449), 2, + ACTIONS(5886), 2, sym__template_chars, sym_escape_sequence, - STATE(2669), 2, + STATE(3002), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [124725] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2920), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [124743] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5453), 1, - anon_sym_QMARK, - STATE(2909), 1, - sym_formal_parameters, - STATE(3428), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [124765] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5455), 1, - anon_sym_export, - ACTIONS(5457), 1, - anon_sym_class, - ACTIONS(5459), 1, - anon_sym_abstract, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [124787] = 4, + [147817] = 4, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, + STATE(3066), 1, aux_sym_object_type_repeat1, - ACTIONS(3332), 2, + ACTIONS(3606), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5461), 3, + ACTIONS(6071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124803] = 7, + [147833] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(6075), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [147855] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5463), 1, + ACTIONS(6077), 1, anon_sym_QMARK, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2930), 1, + STATE(3434), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [124825] = 7, + [147877] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5465), 1, + ACTIONS(5812), 1, sym_identifier, - STATE(2909), 1, - sym_formal_parameters, - STATE(3444), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [124847] = 7, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(6079), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [147899] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_LBRACK, + ACTIONS(5878), 1, + sym_identifier, + STATE(2988), 1, + sym_array, + STATE(2990), 1, + sym_object, + STATE(3584), 1, + sym_variable_declarator, + [147921] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(6081), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [147943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6085), 1, + anon_sym_BQUOTE, + ACTIONS(6083), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3146), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [147961] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5467), 1, + ACTIONS(6087), 1, sym_identifier, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3484), 1, - sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [124869] = 4, + STATE(4146), 1, + sym__call_signature, + [147983] = 3, ACTIONS(3), 1, sym_comment, - STATE(2679), 1, - aux_sym_object_type_repeat1, - ACTIONS(3338), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5272), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124885] = 7, + ACTIONS(5233), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5235), 4, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [147997] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5469), 1, + ACTIONS(6089), 1, anon_sym_QMARK, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(3302), 1, + STATE(3419), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [124907] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2598), 1, - aux_sym_object_type_repeat1, - ACTIONS(5473), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5471), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124923] = 7, + [148019] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5594), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5338), 1, + ACTIONS(5776), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5943), 1, anon_sym_extends, - ACTIONS(5475), 1, + ACTIONS(6091), 1, anon_sym_COMMA, - ACTIONS(5477), 1, - anon_sym_GT, - STATE(3395), 1, + STATE(3821), 1, aux_sym_implements_clause_repeat1, - [124945] = 6, + [148041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2629), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(5300), 1, + ACTIONS(5810), 1, sym_identifier, - STATE(2234), 1, + STATE(1474), 1, sym_nested_type_identifier, - STATE(3860), 1, + STATE(4258), 1, sym_nested_identifier, - STATE(485), 2, + STATE(1485), 2, sym_generic_type, sym_type_query, - [124965] = 6, + [148061] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + ACTIONS(6093), 1, + anon_sym_SLASH, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [148083] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 1, anon_sym_typeof, - ACTIONS(5300), 1, + ACTIONS(5953), 1, sym_identifier, - STATE(2234), 1, + STATE(2747), 1, sym_nested_type_identifier, - STATE(3860), 1, + STATE(4499), 1, sym_nested_identifier, - STATE(485), 2, + STATE(2908), 2, sym_generic_type, sym_type_query, - [124985] = 7, + [148103] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5268), 1, - sym_identifier, - ACTIONS(5270), 1, - anon_sym_LBRACK, - STATE(1332), 1, - sym_arguments, - STATE(3515), 1, - sym_type_arguments, - [125007] = 4, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3440), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [148121] = 7, ACTIONS(3), 1, sym_comment, - STATE(2758), 1, - aux_sym_object_type_repeat1, - ACTIONS(5481), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5479), 3, - sym__automatic_semicolon, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(6095), 1, anon_sym_COMMA, - anon_sym_SEMI, - [125023] = 5, + ACTIONS(6097), 1, + anon_sym_GT, + STATE(3742), 1, + aux_sym_implements_clause_repeat1, + [148143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5483), 1, - anon_sym_BQUOTE, - ACTIONS(5432), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2615), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [125041] = 7, + ACTIONS(5754), 1, + anon_sym_AMP, + ACTIONS(5756), 1, + anon_sym_PIPE, + ACTIONS(5758), 1, + anon_sym_extends, + ACTIONS(6099), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [148161] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5485), 1, + ACTIONS(6101), 1, sym_identifier, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3484), 1, - sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [125063] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(5487), 1, - anon_sym_QMARK, - STATE(2352), 1, - sym_formal_parameters, - STATE(2837), 1, + STATE(4181), 1, sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [125085] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5372), 1, - sym_identifier, - ACTIONS(5374), 1, - anon_sym_LBRACK, - STATE(1256), 1, - sym_arguments, - STATE(3651), 1, - sym_type_arguments, - [125107] = 4, + [148183] = 4, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, + STATE(3119), 1, aux_sym_object_type_repeat1, - ACTIONS(3326), 2, + ACTIONS(6105), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5489), 3, + ACTIONS(6103), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125123] = 5, + [148199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5493), 1, - anon_sym_BQUOTE, - ACTIONS(5491), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2691), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [125141] = 5, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3448), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [148217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 1, - anon_sym_default, - ACTIONS(5386), 1, - anon_sym_case, - ACTIONS(5495), 1, - anon_sym_RBRACE, - STATE(2757), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [125159] = 4, + ACTIONS(5248), 1, + anon_sym_COLON, + ACTIONS(5804), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5806), 1, + anon_sym_QMARK_COLON, + STATE(3450), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [148235] = 4, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, + STATE(3066), 1, aux_sym_object_type_repeat1, - ACTIONS(3320), 2, + ACTIONS(3571), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5497), 3, + ACTIONS(6107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125175] = 4, + [148251] = 7, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, - aux_sym_object_type_repeat1, - ACTIONS(3324), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5499), 3, - sym__automatic_semicolon, + ACTIONS(5642), 1, + anon_sym_GT, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(6109), 1, anon_sym_COMMA, - anon_sym_SEMI, - [125191] = 4, + STATE(3757), 1, + aux_sym_implements_clause_repeat1, + [148273] = 7, ACTIONS(3), 1, sym_comment, - STATE(2698), 1, - aux_sym_object_type_repeat1, - ACTIONS(3324), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5499), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125207] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + ACTIONS(6111), 1, + anon_sym_QMARK, + STATE(2683), 1, + sym_formal_parameters, + STATE(3261), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [148295] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5501), 1, - sym_identifier, - STATE(2909), 1, + ACTIONS(6113), 1, + anon_sym_QMARK, + STATE(3355), 1, sym_formal_parameters, - STATE(3484), 1, + STATE(4075), 1, sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [125229] = 4, + [148317] = 4, ACTIONS(3), 1, sym_comment, - STATE(2699), 1, - aux_sym_object_type_repeat1, - ACTIONS(5505), 2, + ACTIONS(5564), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym_statement_block, + ACTIONS(6115), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [148332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(6117), 2, + anon_sym_COMMA, + anon_sym_GT, + [148349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6119), 1, + sym__automatic_semicolon, + ACTIONS(1174), 4, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(5503), 3, + [148362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3743), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3745), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [148375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6121), 1, sym__automatic_semicolon, + ACTIONS(1136), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125245] = 7, + anon_sym_PIPE_RBRACE, + [148388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(5507), 1, - anon_sym_QMARK, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3667), 1, - sym__call_signature, - [125267] = 2, + ACTIONS(1228), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 6, + ACTIONS(1150), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3915), 3, anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [148423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6123), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125279] = 7, + [148434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, + ACTIONS(3909), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(5513), 1, + ACTIONS(3911), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(5515), 1, sym_jsx_identifier, - STATE(2274), 1, - sym_nested_identifier, - STATE(2398), 1, - sym_jsx_namespace_name, - STATE(3397), 1, - sym_type_parameter, - [125301] = 7, + [148447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_QMARK, - STATE(2352), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(2999), 1, + STATE(4101), 1, sym__call_signature, - STATE(3478), 1, + STATE(4133), 1, sym_type_parameters, - [125323] = 2, + [148466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125335] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4083), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [148485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, - sym_identifier, - STATE(2909), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(3556), 1, + STATE(3271), 1, + sym__call_signature, + STATE(4110), 1, sym_type_parameters, - STATE(3682), 1, + [148504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(6125), 1, + anon_sym_LPAREN, + STATE(2809), 1, + sym_formal_parameters, + STATE(3172), 1, sym__call_signature, - [125357] = 7, + STATE(4110), 1, + sym_type_parameters, + [148523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5459), 1, - anon_sym_abstract, - ACTIONS(5523), 1, - anon_sym_export, - ACTIONS(5525), 1, - anon_sym_class, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [125379] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4067), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [148542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(5527), 1, - anon_sym_COMMA, - ACTIONS(5529), 1, + ACTIONS(1234), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1232), 3, + anon_sym_LBRACE, anon_sym_GT, - STATE(3251), 1, - aux_sym_implements_clause_repeat1, - [125401] = 7, + sym_jsx_identifier, + [148555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3662), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(3980), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [148585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(6125), 1, anon_sym_LPAREN, - ACTIONS(5531), 1, - anon_sym_QMARK, - STATE(2352), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(3360), 1, + STATE(3364), 1, sym__call_signature, - STATE(3478), 1, + STATE(4110), 1, sym_type_parameters, - [125423] = 7, + [148604] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3872), 1, + sym__initializer, + ACTIONS(6127), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2362), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(6129), 1, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(6131), 1, anon_sym_GT, - ACTIONS(5290), 1, + ACTIONS(6133), 1, sym_jsx_identifier, - ACTIONS(5533), 1, - anon_sym_SLASH, - STATE(2285), 1, + STATE(2608), 1, sym_nested_identifier, - STATE(2420), 1, + STATE(2740), 1, sym_jsx_namespace_name, - [125445] = 7, + [148649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(5220), 1, - sym_identifier, - STATE(590), 1, - sym_string, - STATE(634), 1, - sym__module, - STATE(3062), 1, - sym_nested_identifier, - [125467] = 6, + ACTIONS(6135), 1, + anon_sym_LBRACE, + STATE(2471), 1, + sym_statement_block, + ACTIONS(5704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, - anon_sym_typeof, - ACTIONS(5300), 1, - sym_identifier, - STATE(2234), 1, - sym_nested_type_identifier, - STATE(3860), 1, - sym_nested_identifier, - STATE(485), 2, - sym_generic_type, - sym_type_query, - [125487] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(3436), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [148683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - sym_identifier, - ACTIONS(5286), 1, - anon_sym_GT, - ACTIONS(5290), 1, - sym_jsx_identifier, - ACTIONS(5535), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [125509] = 3, + ACTIONS(6135), 1, + anon_sym_LBRACE, + STATE(2469), 1, + sym_statement_block, + ACTIONS(5702), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 2, + ACTIONS(1804), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(4785), 4, - anon_sym_EQ, + ACTIONS(1802), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [125523] = 7, + [148711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - ACTIONS(5220), 1, - sym_identifier, - STATE(590), 1, - sym_string, - STATE(610), 1, - sym__module, - STATE(3062), 1, - sym_nested_identifier, - [125545] = 5, + ACTIONS(2342), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148722] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(2144), 2, + anon_sym_else, + anon_sym_while, + [148739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(6137), 1, anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2811), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, + ACTIONS(6139), 1, + anon_sym_EQ_GT, + STATE(4123), 3, sym_type_annotation, - [125563] = 2, + sym_asserts, + sym_type_predicate_annotation, + [148754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1987), 1, anon_sym_LT, - anon_sym_QMARK, - [125575] = 7, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(3963), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [148773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, - sym_identifier, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - STATE(3636), 1, + STATE(4193), 1, sym__call_signature, - [125597] = 5, + [148792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, - anon_sym_AMP, - ACTIONS(5180), 1, - anon_sym_PIPE, - ACTIONS(5184), 1, - anon_sym_extends, - ACTIONS(5539), 3, + ACTIONS(3662), 5, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [125615] = 7, + anon_sym_SEMI, + anon_sym_COLON, + [148803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5541), 1, + ACTIONS(6141), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(5543), 1, - anon_sym_LBRACK, - STATE(1826), 1, - sym_arguments, - STATE(3555), 1, - sym_type_arguments, - [125637] = 5, + ACTIONS(6143), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [148816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5545), 1, - anon_sym_BQUOTE, - ACTIONS(5432), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2615), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [125655] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4100), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [148835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - sym_identifier, - ACTIONS(5286), 1, - anon_sym_GT, - ACTIONS(5290), 1, - sym_jsx_identifier, - ACTIONS(5547), 1, + ACTIONS(6145), 2, anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [125677] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(6147), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(5290), 1, sym_jsx_identifier, - ACTIONS(5549), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [125699] = 7, + [148848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5459), 1, - anon_sym_abstract, - ACTIONS(5525), 1, - anon_sym_class, - ACTIONS(5551), 1, - anon_sym_export, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [125721] = 5, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(2952), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [148867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(6137), 1, anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2901), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, + ACTIONS(6149), 1, + anon_sym_EQ_GT, + STATE(4052), 3, sym_type_annotation, - [125739] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, - sym_identifier, - ACTIONS(5286), 1, - anon_sym_GT, - ACTIONS(5290), 1, - sym_jsx_identifier, - ACTIONS(5553), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [125761] = 7, + sym_asserts, + sym_type_predicate_annotation, + [148882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - ACTIONS(5555), 1, - anon_sym_QMARK, - STATE(2352), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(2813), 1, + STATE(3375), 1, sym__call_signature, - STATE(3478), 1, + STATE(4110), 1, sym_type_parameters, - [125783] = 7, + [148901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_QMARK, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2924), 1, + STATE(2964), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [125805] = 7, + [148920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5559), 1, - anon_sym_QMARK, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2804), 1, + STATE(2968), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [125827] = 5, + [148939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5561), 1, - anon_sym_BQUOTE, - ACTIONS(5432), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2615), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [125845] = 7, + ACTIONS(1796), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1794), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [148952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_LT, - ACTIONS(5563), 1, - sym_identifier, - ACTIONS(5565), 1, - anon_sym_LBRACK, - STATE(1857), 1, - sym_arguments, - STATE(3522), 1, - sym_type_arguments, - [125867] = 5, + ACTIONS(2434), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5569), 1, - anon_sym_BQUOTE, - ACTIONS(5567), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2723), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [125885] = 4, + ACTIONS(6137), 1, + anon_sym_COLON, + ACTIONS(6151), 1, + anon_sym_EQ_GT, + STATE(4123), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [148978] = 2, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, - aux_sym_object_type_repeat1, - ACTIONS(3340), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5571), 3, + ACTIONS(6153), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125901] = 5, + anon_sym_PIPE_RBRACE, + [148989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(2044), 3, + ACTIONS(6155), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [125919] = 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_QMARK, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2836), 1, + STATE(2971), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [125941] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_typeof, - ACTIONS(5300), 1, - sym_identifier, - STATE(2234), 1, - sym_nested_type_identifier, - STATE(3860), 1, - sym_nested_identifier, - STATE(485), 2, - sym_generic_type, - sym_type_query, - [125961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2834), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [125979] = 5, + [149019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(5398), 1, + anon_sym_LBRACE, + ACTIONS(6157), 1, anon_sym_COLON, - ACTIONS(5322), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5324), 1, - anon_sym_QMARK_COLON, - STATE(2907), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, + STATE(4123), 3, sym_type_annotation, - [125997] = 5, + sym_asserts, + sym_type_predicate_annotation, + [149034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, - anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_extends, - ACTIONS(2050), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [126015] = 7, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(2973), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [149053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5856), 1, sym_identifier, - ACTIONS(5286), 1, - anon_sym_GT, - ACTIONS(5290), 1, - sym_jsx_identifier, - ACTIONS(5575), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [126037] = 7, + ACTIONS(6159), 1, + anon_sym_RBRACE, + STATE(4134), 1, + sym__import_export_specifier, + ACTIONS(5862), 2, + anon_sym_type, + anon_sym_typeof, + [149070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5577), 1, - sym_identifier, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(1332), 1, - sym_arguments, - STATE(3515), 1, - sym_type_arguments, - [126059] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5583), 1, - anon_sym_BQUOTE, - ACTIONS(5581), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2732), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [126077] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2735), 1, - aux_sym_object_type_repeat1, - ACTIONS(5587), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126093] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4169), 1, + sym__call_signature, + [149089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5324), 1, anon_sym_AMP, - ACTIONS(5338), 1, - anon_sym_PIPE, - ACTIONS(2054), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(5328), 1, anon_sym_extends, - [126109] = 7, + ACTIONS(6163), 1, + anon_sym_PIPE, + ACTIONS(6161), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [149106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(3797), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(3799), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(5290), 1, sym_jsx_identifier, - ACTIONS(5589), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [126131] = 7, + [149119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 1, - sym_identifier, - ACTIONS(5593), 1, - anon_sym_GT, - ACTIONS(5595), 1, - sym_jsx_identifier, - STATE(2278), 1, - sym_nested_identifier, - STATE(2439), 1, - sym_jsx_namespace_name, - STATE(3397), 1, - sym_type_parameter, - [126153] = 7, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3919), 1, + sym__initializer, + ACTIONS(6165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5597), 1, + ACTIONS(3801), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(5599), 1, + ACTIONS(3803), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(5601), 1, sym_jsx_identifier, - STATE(2271), 1, - sym_nested_identifier, - STATE(2442), 1, - sym_jsx_namespace_name, - STATE(3397), 1, - sym_type_parameter, - [126175] = 7, + [149147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(3805), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(3807), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(5290), 1, sym_jsx_identifier, - ACTIONS(5603), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [126197] = 7, + [149160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - ACTIONS(5605), 1, - anon_sym_QMARK, - STATE(2909), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(3477), 1, + STATE(3415), 1, sym__call_signature, - STATE(3556), 1, + STATE(4110), 1, sym_type_parameters, - [126219] = 2, + [149179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 6, - anon_sym_EQ, + ACTIONS(6167), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [126231] = 7, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(5224), 1, + ACTIONS(5684), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 2, + anon_sym_SLASH, sym_identifier, - STATE(2484), 1, - sym_nested_identifier, - STATE(2562), 1, - sym_string, - STATE(2870), 1, - sym__module, - [126253] = 7, + ACTIONS(3981), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [149214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5372), 1, - sym_identifier, - ACTIONS(5374), 1, - anon_sym_LBRACK, - STATE(1195), 1, - sym_arguments, - STATE(3434), 1, - sym_type_arguments, - [126275] = 7, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(3333), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [149233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3656), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(1224), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(5286), 1, + ACTIONS(1222), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(5290), 1, sym_jsx_identifier, - ACTIONS(5607), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [126297] = 4, + [149257] = 2, ACTIONS(3), 1, sym_comment, - STATE(2762), 1, - aux_sym_object_type_repeat1, - ACTIONS(3334), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5609), 3, - sym__automatic_semicolon, + ACTIONS(3646), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [126313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5611), 1, - anon_sym_default, - ACTIONS(5614), 1, - anon_sym_RBRACE, - ACTIONS(5616), 1, - anon_sym_case, - STATE(2757), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [126331] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149268] = 3, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, - aux_sym_object_type_repeat1, - ACTIONS(3334), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5609), 3, + ACTIONS(6169), 1, sym__automatic_semicolon, + ACTIONS(1164), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126347] = 7, + anon_sym_PIPE_RBRACE, + [149281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - ACTIONS(5224), 1, - sym_identifier, - STATE(2484), 1, - sym_nested_identifier, - STATE(2562), 1, - sym_string, - STATE(3001), 1, - sym__module, - [126369] = 6, + ACTIONS(3636), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_typeof, - ACTIONS(5300), 1, + ACTIONS(3937), 2, + anon_sym_SLASH, sym_identifier, - STATE(2234), 1, - sym_nested_type_identifier, - STATE(3860), 1, - sym_nested_identifier, - STATE(485), 2, - sym_generic_type, - sym_type_query, - [126389] = 5, + ACTIONS(3939), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [149305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5621), 1, - anon_sym_BQUOTE, - ACTIONS(5619), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2668), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [126407] = 4, + ACTIONS(3457), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149316] = 2, ACTIONS(3), 1, sym_comment, - STATE(2673), 1, - aux_sym_object_type_repeat1, - ACTIONS(3316), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5623), 3, + ACTIONS(1096), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [126423] = 6, + anon_sym_COLON, + [149327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_PIPE, - ACTIONS(5138), 1, - anon_sym_extends, - ACTIONS(5627), 1, - anon_sym_QMARK, - ACTIONS(5625), 2, + ACTIONS(1088), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACK, - [126443] = 7, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - sym_identifier, - ACTIONS(5286), 1, - anon_sym_GT, - ACTIONS(5290), 1, - sym_jsx_identifier, - ACTIONS(5629), 1, - anon_sym_SLASH, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [126465] = 4, + ACTIONS(3623), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149349] = 2, ACTIONS(3), 1, sym_comment, - STATE(2695), 1, - aux_sym_object_type_repeat1, - ACTIONS(3340), 2, + ACTIONS(5682), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1198), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(5571), 3, + [149371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3627), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [126481] = 6, + anon_sym_COLON, + [149382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3627), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - STATE(3616), 1, + STATE(4160), 1, sym__call_signature, - [126500] = 6, + [149412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LBRACE, + STATE(652), 1, + sym_statement_block, + ACTIONS(6171), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [149427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(2831), 1, + STATE(4007), 1, sym__call_signature, - STATE(3478), 1, + STATE(4133), 1, sym_type_parameters, - [126519] = 2, + [149446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 5, + ACTIONS(2382), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + anon_sym_DOT, + ACTIONS(1776), 1, + anon_sym_LBRACE, + ACTIONS(1774), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [149472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6173), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_implements, anon_sym_extends, - [126530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5635), 1, - anon_sym_EQ_GT, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [126545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5637), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [126560] = 6, + [149483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(2938), 1, + STATE(3995), 1, sym__call_signature, - STATE(3617), 1, + STATE(4133), 1, sym_type_parameters, - [126579] = 2, + [149502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3400), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [126590] = 4, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4150), 1, + sym__call_signature, + [149521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3332), 1, - sym__initializer, - ACTIONS(5641), 3, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(6163), 1, + anon_sym_PIPE, + ACTIONS(6175), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [126605] = 6, + [149538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3456), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [126624] = 3, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5776), 1, + anon_sym_PIPE, + ACTIONS(5943), 1, + anon_sym_extends, + ACTIONS(6017), 2, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + [149555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5643), 2, + ACTIONS(3871), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(5645), 3, + ACTIONS(3873), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [126637] = 3, + [149568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3701), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [126650] = 2, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6181), 1, + anon_sym_extends, + ACTIONS(2154), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + [149585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 5, - anon_sym_EQ, + ACTIONS(5766), 1, + anon_sym_AMP, + ACTIONS(5768), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + ACTIONS(6017), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [126661] = 3, + anon_sym_GT, + [149602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 1, - sym__automatic_semicolon, - ACTIONS(1205), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126674] = 3, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(3332), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [149621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3863), 1, + sym__initializer, + ACTIONS(6183), 3, sym__automatic_semicolon, - ACTIONS(1215), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126687] = 6, + [149636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2813), 1, + ACTIONS(6135), 1, anon_sym_LBRACE, - ACTIONS(5162), 1, - anon_sym_extends, - STATE(2913), 1, - sym_object_type, - STATE(3204), 1, - sym_extends_clause, - [126706] = 6, + STATE(2475), 1, + sym_statement_block, + ACTIONS(5636), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2964), 1, + STATE(3926), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [126725] = 5, + [149670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5651), 1, - anon_sym_RBRACE, - STATE(3658), 1, - sym__import_export_specifier, - ACTIONS(5370), 2, - anon_sym_type, - anon_sym_typeof, - [126742] = 2, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3868), 1, + sym__initializer, + ACTIONS(6185), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3869), 1, + sym__initializer, + ACTIONS(6187), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 5, + ACTIONS(6189), 1, sym__automatic_semicolon, + ACTIONS(1106), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126753] = 2, + [149713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6181), 1, + anon_sym_extends, + ACTIONS(2134), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + [149730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 5, + ACTIONS(2230), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126764] = 4, + [149741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6191), 1, + anon_sym_is, + ACTIONS(5620), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [149754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, + ACTIONS(2724), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5653), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [126779] = 4, + anon_sym_QMARK, + [149765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(5292), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, anon_sym_LBRACE, - STATE(1685), 1, + STATE(3174), 1, sym_statement_block, - ACTIONS(5655), 3, + ACTIONS(6193), 3, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_SEMI, - [126794] = 5, + [149791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, + ACTIONS(6177), 1, anon_sym_AMP, - ACTIONS(5659), 1, + ACTIONS(6179), 1, anon_sym_PIPE, - ACTIONS(5661), 1, - anon_sym_extends, - ACTIONS(2044), 2, + ACTIONS(2150), 3, anon_sym_LBRACK, anon_sym_EQ_GT, - [126811] = 2, + anon_sym_extends, + [149806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 5, - sym__automatic_semicolon, + ACTIONS(6195), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(2150), 3, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_extends, + [149832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6201), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - [126822] = 5, + anon_sym_QMARK, + [149843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(5659), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(5661), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(2050), 2, + ACTIONS(2134), 2, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_EQ_GT, - [126839] = 2, + [149860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 5, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(2154), 2, + anon_sym_COLON, + anon_sym_LBRACK, + [149877] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6205), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [149894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [126850] = 2, + [149905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2294), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149916] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6137), 1, + anon_sym_COLON, + ACTIONS(6207), 1, + anon_sym_EQ_GT, + STATE(4052), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [149931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2314), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1198), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 5, + ACTIONS(717), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [126861] = 2, + [149964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 5, + ACTIONS(2338), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126872] = 3, + [149975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(1256), 5, sym__automatic_semicolon, - ACTIONS(1253), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126885] = 3, + [149986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3715), 3, + ACTIONS(2454), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [150008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5722), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3753), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [150030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6135), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [126898] = 4, + STATE(2468), 1, + sym_statement_block, + ACTIONS(5722), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, + ACTIONS(6137), 1, anon_sym_COLON, - ACTIONS(5667), 1, + ACTIONS(6209), 1, anon_sym_EQ_GT, - STATE(3563), 3, + STATE(4123), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [126913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3669), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [126926] = 3, + [150060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3709), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [126939] = 4, + ACTIONS(6211), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_LBRACE, - STATE(2144), 1, - sym_statement_block, - ACTIONS(5126), 3, + ACTIONS(2450), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126954] = 6, + anon_sym_PIPE_RBRACE, + [150082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6137), 1, + anon_sym_COLON, + ACTIONS(6213), 1, + anon_sym_EQ_GT, + STATE(4052), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [150097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(3045), 1, + STATE(3788), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [126973] = 6, + [150116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1071), 1, - anon_sym_LBRACE, - ACTIONS(5162), 1, - anon_sym_extends, - STATE(669), 1, - sym_object_type, - STATE(3377), 1, - sym_extends_clause, - [126992] = 3, + ACTIONS(2414), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3705), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [127005] = 2, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3804), 1, + sym__initializer, + ACTIONS(6215), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 5, + ACTIONS(2398), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127016] = 4, + [150153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, - anon_sym_AMP, - ACTIONS(5659), 1, - anon_sym_PIPE, - ACTIONS(2054), 3, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_extends, - [127031] = 4, + ACTIONS(2378), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3805), 1, + sym__initializer, + ACTIONS(6217), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(6221), 3, anon_sym_LBRACE, - STATE(2147), 1, - sym_statement_block, - ACTIONS(5128), 3, + anon_sym_GT, + sym_jsx_identifier, + [150192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2370), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127046] = 6, + anon_sym_PIPE_RBRACE, + [150203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(2463), 1, - sym_formal_parameters, - STATE(2908), 1, - sym__call_signature, - STATE(3617), 1, - sym_type_parameters, - [127065] = 2, + ACTIONS(5736), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON, + [150214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 5, + ACTIONS(1088), 5, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - [127076] = 4, + [150225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_DOT, - ACTIONS(1755), 1, - anon_sym_LBRACE, - ACTIONS(1753), 3, + ACTIONS(2410), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [127091] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 5, + ACTIONS(2334), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127102] = 2, + [150247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 5, - anon_sym_EQ, + ACTIONS(6223), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [127113] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 5, - anon_sym_EQ, + ACTIONS(1126), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [127124] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 5, + ACTIONS(1154), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127135] = 6, + [150280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(5596), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150291] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3677), 1, + STATE(3320), 1, sym__call_signature, - [127154] = 4, + STATE(4110), 1, + sym_type_parameters, + [150310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_LBRACE, - STATE(2166), 1, - sym_statement_block, - ACTIONS(5144), 3, + ACTIONS(6137), 1, + anon_sym_COLON, + ACTIONS(6225), 1, + anon_sym_EQ_GT, + STATE(4123), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [150325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2442), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5675), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [127182] = 2, + anon_sym_PIPE_RBRACE, + [150336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 5, + ACTIONS(1188), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127193] = 2, + [150347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1107), 5, - sym__automatic_semicolon, + ACTIONS(6227), 5, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [150358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6137), 1, anon_sym_COLON, - [127204] = 4, + ACTIONS(6229), 1, + anon_sym_EQ_GT, + STATE(4123), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [150373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(594), 1, - sym_statement_block, - ACTIONS(5655), 3, + ACTIONS(6137), 1, + anon_sym_COLON, + ACTIONS(6231), 1, + anon_sym_EQ_GT, + STATE(4052), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [150388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5652), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [127219] = 4, + anon_sym_COLON, + [150399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3285), 1, - sym__initializer, - ACTIONS(5679), 3, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1889), 1, + sym_statement_block, + ACTIONS(6193), 3, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, anon_sym_SEMI, - [127234] = 5, + [150414] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(4912), 1, - anon_sym_AMP, - ACTIONS(4916), 1, - anon_sym_extends, - ACTIONS(5683), 1, - anon_sym_PIPE, - ACTIONS(5681), 2, + sym_comment, + ACTIONS(2210), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127251] = 6, + anon_sym_PIPE_RBRACE, + [150425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3281), 1, - sym__call_signature, - STATE(3478), 1, + STATE(4133), 1, sym_type_parameters, - [127270] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(2463), 1, - sym_formal_parameters, - STATE(2786), 1, + STATE(4145), 1, sym__call_signature, - STATE(3617), 1, - sym_type_parameters, - [127289] = 3, + [150444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 2, - anon_sym_SLASH, + ACTIONS(5856), 1, sym_identifier, - ACTIONS(1165), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [127302] = 4, + ACTIONS(6233), 1, + anon_sym_RBRACE, + STATE(4022), 1, + sym__import_export_specifier, + ACTIONS(5862), 2, + anon_sym_type, + anon_sym_typeof, + [150461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ_GT, - ACTIONS(5633), 1, + ACTIONS(6137), 1, anon_sym_COLON, - STATE(3563), 3, + ACTIONS(6235), 1, + anon_sym_EQ_GT, + STATE(4052), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [127317] = 4, + [150476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3267), 1, - sym__initializer, - ACTIONS(5685), 3, + ACTIONS(2226), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127332] = 3, + anon_sym_PIPE_RBRACE, + [150487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1139), 3, + ACTIONS(6135), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [127345] = 3, + STATE(2464), 1, + sym_statement_block, + ACTIONS(5684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150502] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(3196), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [150521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, + ACTIONS(6237), 5, sym__automatic_semicolon, - ACTIONS(1129), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127358] = 4, + [150532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(2778), 1, - sym_statement_block, - ACTIONS(5689), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [127373] = 4, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(3289), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [150551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3420), 1, - sym__initializer, - ACTIONS(5691), 3, + ACTIONS(5718), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127388] = 2, + anon_sym_PIPE_RBRACE, + [150562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 5, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1795), 1, + sym_statement_block, + ACTIONS(6115), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - [127399] = 4, + [150577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6135), 1, anon_sym_LBRACE, - STATE(2145), 1, + STATE(2482), 1, sym_statement_block, - ACTIONS(5212), 3, + ACTIONS(5682), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127414] = 2, + [150592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 5, + ACTIONS(5702), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127425] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5459), 1, - anon_sym_abstract, - ACTIONS(5693), 1, - anon_sym_class, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [127444] = 6, + [150603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(3004), 1, + STATE(3425), 1, sym__call_signature, - STATE(3478), 1, + STATE(4110), 1, sym_type_parameters, - [127463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5695), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127474] = 6, + [150622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2798), 1, + STATE(3377), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [127493] = 4, + [150641] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5664), 1, + anon_sym_EQ, + ACTIONS(6239), 1, + anon_sym_COMMA, + ACTIONS(6241), 1, + anon_sym_RBRACE, + STATE(3740), 1, + aux_sym_enum_body_repeat1, + STATE(4028), 1, + sym__initializer, + [150660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6135), 1, anon_sym_LBRACE, - STATE(2146), 1, + STATE(2465), 1, sym_statement_block, - ACTIONS(5124), 3, + ACTIONS(5720), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127508] = 2, + [150675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 5, + ACTIONS(2238), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127519] = 2, + [150686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1798), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [150699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 5, + ACTIONS(2246), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127530] = 6, + [150710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3017), 1, - sym__call_signature, - STATE(3617), 1, + STATE(4133), 1, sym_type_parameters, - [127549] = 2, + STATE(4163), 1, + sym__call_signature, + [150729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 5, + ACTIONS(2266), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127560] = 2, + [150740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 5, + ACTIONS(2374), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127571] = 4, + [150751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, - anon_sym_LBRACE, - STATE(102), 1, - sym_statement_block, - ACTIONS(5655), 3, + ACTIONS(2394), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127586] = 6, + anon_sym_PIPE_RBRACE, + [150762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 1, + sym_identifier, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5818), 1, + sym_jsx_identifier, + STATE(2609), 1, + sym_nested_identifier, + STATE(2713), 1, + sym_jsx_namespace_name, + [150781] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5664), 1, + anon_sym_EQ, + ACTIONS(6243), 1, + anon_sym_COMMA, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(3818), 1, + aux_sym_enum_body_repeat1, + STATE(4028), 1, + sym__initializer, + [150800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3655), 1, + STATE(3291), 1, sym__call_signature, - [127605] = 2, + STATE(3967), 1, + sym_type_parameters, + [150819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 5, + ACTIONS(5704), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127616] = 2, + [150830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 5, + ACTIONS(6247), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127627] = 2, + [150841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 5, + ACTIONS(6249), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [127638] = 3, + anon_sym_PIPE_RBRACE, + [150852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_EQ, - ACTIONS(4015), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [127651] = 6, + ACTIONS(6135), 1, + anon_sym_LBRACE, + STATE(2485), 1, + sym_statement_block, + ACTIONS(5718), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(2463), 1, - sym_formal_parameters, - STATE(2944), 1, - sym__call_signature, - STATE(3617), 1, - sym_type_parameters, - [127670] = 3, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6251), 1, + anon_sym_class, + ACTIONS(6253), 1, + anon_sym_abstract, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [150886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5701), 3, + ACTIONS(1102), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [127683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 5, + STATE(100), 1, + sym_statement_block, + ACTIONS(6171), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - [127694] = 2, + [150901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 5, - anon_sym_EQ, + ACTIONS(4731), 1, + anon_sym_LBRACE, + ACTIONS(5778), 1, + anon_sym_LT, + STATE(3756), 1, + sym_type_arguments, + ACTIONS(4733), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE_PIPE, + [150918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_LBRACE, + ACTIONS(6157), 1, anon_sym_COLON, - anon_sym_QMARK, - [127705] = 2, + STATE(4052), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [150933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1107), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5618), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - [127716] = 4, + [150944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3309), 1, - sym__initializer, - ACTIONS(5705), 3, + ACTIONS(2290), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127731] = 6, + anon_sym_PIPE_RBRACE, + [150955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(2947), 1, + STATE(4003), 1, sym__call_signature, - STATE(3617), 1, + STATE(4133), 1, sym_type_parameters, - [127750] = 6, + [150974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3550), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [127769] = 4, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3918), 1, + sym__initializer, + ACTIONS(6255), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_LBRACE, - STATE(2163), 1, - sym_statement_block, - ACTIONS(5142), 3, + ACTIONS(6257), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127784] = 5, + anon_sym_PIPE_RBRACE, + [151000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(2034), 2, - anon_sym_else, - anon_sym_while, - [127801] = 2, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5854), 1, + anon_sym_abstract, + ACTIONS(6259), 1, + anon_sym_class, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [151019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3400), 5, + ACTIONS(6135), 1, + anon_sym_LBRACE, + STATE(2476), 1, + sym_statement_block, + ACTIONS(5596), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [127812] = 2, + [151034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 5, + ACTIONS(2218), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127823] = 5, + [151045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5707), 1, - anon_sym_RBRACE, - STATE(3452), 1, - sym__import_export_specifier, - ACTIONS(5370), 2, - anon_sym_type, - anon_sym_typeof, - [127840] = 2, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1764), 1, + sym_statement_block, + ACTIONS(6171), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [151060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 5, + ACTIONS(5720), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127851] = 2, + [151071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_EQ_GT, + ACTIONS(6137), 1, + anon_sym_COLON, + STATE(4052), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [151086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 5, + ACTIONS(6261), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_implements, anon_sym_extends, - [127862] = 2, + [151097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 5, + ACTIONS(1212), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127873] = 2, + [151108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 5, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3800), 1, + sym__initializer, + ACTIONS(6263), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 1, - anon_sym_LBRACE, - ACTIONS(5713), 1, - anon_sym_COLON, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [127899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5192), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COLON, - [127910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5715), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [127925] = 2, + [151123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 5, + ACTIONS(3457), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [127936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5717), 1, - anon_sym_EQ_GT, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [127951] = 2, + [151134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 5, + ACTIONS(1236), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127962] = 2, + [151145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 5, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(6163), 1, + anon_sym_PIPE, + ACTIONS(6265), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127973] = 2, + [151162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 5, + ACTIONS(5716), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [127984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3501), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COLON, - [127995] = 2, + anon_sym_PIPE_RBRACE, + [151173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 5, + ACTIONS(2202), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128006] = 2, + [151184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(5564), 1, + anon_sym_LBRACE, + STATE(3265), 1, + sym_statement_block, + ACTIONS(6267), 3, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128017] = 2, + [151199] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_formal_parameters, + STATE(3330), 1, + sym__call_signature, + STATE(3967), 1, + sym_type_parameters, + [151218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 5, + ACTIONS(5714), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128028] = 6, + [151229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(2893), 1, + STATE(3394), 1, sym__call_signature, - STATE(3617), 1, + STATE(4110), 1, sym_type_parameters, - [128047] = 4, + [151248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 1, - anon_sym_LT, - STATE(465), 1, - sym_type_arguments, - ACTIONS(3879), 3, - anon_sym_LBRACE, + ACTIONS(2478), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [128062] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 5, + ACTIONS(2466), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128073] = 2, + [151270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 5, + ACTIONS(1246), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128084] = 6, + [151281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3457), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [128103] = 2, + ACTIONS(5191), 1, + anon_sym_EQ, + STATE(3829), 1, + sym__initializer, + ACTIONS(6269), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6135), 1, + anon_sym_LBRACE, + STATE(2467), 1, + sym_statement_block, + ACTIONS(5638), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 5, + ACTIONS(2282), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128114] = 2, + [151322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 5, + ACTIONS(6271), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128125] = 4, + [151333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, + ACTIONS(5191), 1, anon_sym_EQ, - STATE(3341), 1, + STATE(3826), 1, sym__initializer, - ACTIONS(5721), 3, + ACTIONS(6273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128140] = 6, + [151348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3612), 1, + STATE(4027), 1, sym__call_signature, - [128159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128170] = 6, + STATE(4133), 1, + sym_type_parameters, + [151367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(2882), 1, + STATE(3353), 1, sym__call_signature, - STATE(3478), 1, + STATE(4110), 1, sym_type_parameters, - [128189] = 6, + [151386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3654), 1, + STATE(3408), 1, sym__call_signature, - [128208] = 4, + STATE(4110), 1, + sym_type_parameters, + [151405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5723), 1, - anon_sym_EQ_GT, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [128223] = 2, + ACTIONS(1968), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(6275), 1, + sym_identifier, + STATE(4527), 1, + sym_array, + STATE(4537), 1, + sym_object, + [151424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [128234] = 6, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4130), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [151443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(2842), 1, + STATE(4122), 1, sym__call_signature, - STATE(3617), 1, + STATE(4133), 1, sym_type_parameters, - [128253] = 6, + [151462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3450), 1, + STATE(3997), 1, sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [128272] = 4, + [151481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(1102), 1, anon_sym_LBRACE, - STATE(2826), 1, + STATE(92), 1, sym_statement_block, - ACTIONS(5725), 3, + ACTIONS(6115), 3, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_SEMI, - [128287] = 4, + [151496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3345), 1, - sym__initializer, - ACTIONS(5727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128302] = 5, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4060), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [151515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5338), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(5729), 2, + ACTIONS(6017), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [128319] = 2, + [151532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(531), 1, + sym_type_arguments, + ACTIONS(4733), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [151547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 5, + ACTIONS(2470), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128330] = 6, + [151558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6277), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [151569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6279), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [151580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6281), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [151591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6283), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [151602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6285), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(6287), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [151615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 1, + anon_sym_EQ_GT, + ACTIONS(6137), 1, + anon_sym_COLON, + STATE(4123), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [151630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(5646), 1, + anon_sym_extends, + STATE(3423), 1, + sym_object_type, + STATE(3838), 1, + sym_extends_clause, + [151649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4025), 1, + sym__call_signature, + STATE(4133), 1, + sym_type_parameters, + [151668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_RBRACE, + STATE(4134), 1, + sym__import_export_specifier, + ACTIONS(5862), 2, + anon_sym_type, + anon_sym_typeof, + [151685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1795), 1, + sym_statement_block, + ACTIONS(6267), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [151700] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_formal_parameters, + STATE(4133), 1, + sym_type_parameters, + STATE(4182), 1, + sym__call_signature, + [151719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(2949), 1, + STATE(4125), 1, sym__call_signature, - STATE(3617), 1, + STATE(4133), 1, sym_type_parameters, - [128349] = 4, + [151738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1068), 1, anon_sym_LBRACE, - STATE(2152), 1, - sym_statement_block, - ACTIONS(5150), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128364] = 5, + ACTIONS(5646), 1, + anon_sym_extends, + STATE(699), 1, + sym_object_type, + STATE(3843), 1, + sym_extends_clause, + [151757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6291), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(6293), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [151770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(5324), 1, anon_sym_AMP, - ACTIONS(4916), 1, + ACTIONS(5328), 1, anon_sym_extends, - ACTIONS(5683), 1, + ACTIONS(6163), 1, anon_sym_PIPE, - ACTIONS(5731), 2, + ACTIONS(6295), 2, sym__automatic_semicolon, anon_sym_SEMI, - [128381] = 2, + [151787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 5, + ACTIONS(2366), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128392] = 2, + [151798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 5, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1702), 1, + sym_statement_block, + ACTIONS(6115), 3, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128403] = 6, + [151813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3442), 1, + STATE(4105), 1, sym__call_signature, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - [128422] = 6, + [151832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3662), 1, - sym__call_signature, - [128441] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3348), 1, + STATE(4096), 1, sym__call_signature, - STATE(3478), 1, + STATE(4133), 1, sym_type_parameters, - [128460] = 6, + [151851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3633), 1, + STATE(3247), 1, sym__call_signature, - [128479] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5735), 1, - anon_sym_class, - ACTIONS(5737), 1, - anon_sym_abstract, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [128498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5739), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128509] = 4, + STATE(4110), 1, + sym_type_parameters, + [151870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(6135), 1, anon_sym_LBRACE, - STATE(575), 1, + STATE(2483), 1, sym_statement_block, - ACTIONS(5741), 3, + ACTIONS(5716), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [128524] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_LBRACE, - ACTIONS(5713), 1, - anon_sym_COLON, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [128539] = 2, + [151885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 5, + ACTIONS(6297), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128550] = 2, + [151896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 5, + ACTIONS(6299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128561] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3448), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [128580] = 2, + [151907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 5, + ACTIONS(2330), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128591] = 2, + [151918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 5, + ACTIONS(2310), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128602] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5743), 1, - anon_sym_RBRACE, - STATE(3658), 1, - sym__import_export_specifier, - ACTIONS(5370), 2, - anon_sym_type, - anon_sym_typeof, - [128619] = 2, + [151929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 5, + ACTIONS(2250), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128630] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4912), 1, - anon_sym_AMP, - ACTIONS(4916), 1, - anon_sym_extends, - ACTIONS(5683), 1, - anon_sym_PIPE, - ACTIONS(5745), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [128647] = 2, + [151940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 5, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1889), 1, + sym_statement_block, + ACTIONS(6171), 3, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128658] = 6, + [151955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(2463), 1, - sym_formal_parameters, - STATE(2827), 1, - sym__call_signature, - STATE(3617), 1, - sym_type_parameters, - [128677] = 2, + ACTIONS(6137), 1, + anon_sym_COLON, + ACTIONS(6301), 1, + anon_sym_EQ_GT, + STATE(4123), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [151970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 5, + ACTIONS(2322), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128688] = 2, + [151981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 5, + ACTIONS(2242), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5260), 1, - anon_sym_EQ, - ACTIONS(5749), 1, - anon_sym_COMMA, - ACTIONS(5751), 1, - anon_sym_RBRACE, - STATE(3227), 1, - aux_sym_enum_body_repeat1, - STATE(3530), 1, - sym__initializer, - [128718] = 4, + [151992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, - anon_sym_EQ_GT, - ACTIONS(5633), 1, + ACTIONS(6137), 1, anon_sym_COLON, - STATE(3674), 3, + ACTIONS(6303), 1, + anon_sym_EQ_GT, + STATE(4052), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [128733] = 2, + [152007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2206), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [152018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 5, + ACTIONS(2318), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128744] = 6, + [152029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - STATE(2352), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(2896), 1, + STATE(3242), 1, sym__call_signature, - STATE(3478), 1, + STATE(3967), 1, sym_type_parameters, - [128763] = 2, + [152048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 5, + ACTIONS(6305), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128774] = 2, + [152059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 5, + ACTIONS(5636), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128785] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3548), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [128804] = 6, + [152070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(2683), 1, sym_formal_parameters, - STATE(3549), 1, + STATE(3351), 1, sym__call_signature, - STATE(3556), 1, + STATE(3967), 1, sym_type_parameters, - [128823] = 4, + [152089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6135), 1, anon_sym_LBRACE, - STATE(2155), 1, + STATE(2470), 1, sym_statement_block, - ACTIONS(5148), 3, + ACTIONS(5714), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128838] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, - anon_sym_LBRACK, - ACTIONS(5753), 1, - sym_identifier, - STATE(3932), 1, - sym_object, - STATE(3933), 1, - sym_array, - [128857] = 3, + [152104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - anon_sym_is, - ACTIONS(5186), 4, + ACTIONS(3656), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, - [128870] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2898), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [128889] = 2, + anon_sym_COLON, + [152115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5757), 5, + ACTIONS(1116), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128900] = 2, + [152126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 5, + ACTIONS(5638), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128911] = 2, + [152137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 5, + ACTIONS(6307), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5763), 1, - anon_sym_EQ_GT, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [128937] = 4, + [152148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1781), 1, - sym_statement_block, - ACTIONS(5655), 3, + ACTIONS(3636), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, - [128952] = 6, + anon_sym_COLON, + [152159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(2809), 1, sym_formal_parameters, - STATE(2983), 1, + STATE(3331), 1, sym__call_signature, - STATE(3617), 1, + STATE(4110), 1, sym_type_parameters, - [128971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3685), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [128984] = 2, + [152178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 5, + ACTIONS(5909), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128995] = 5, + [152189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_AMP, - ACTIONS(4916), 1, - anon_sym_extends, - ACTIONS(5683), 1, - anon_sym_PIPE, - ACTIONS(5765), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [129012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 5, + ACTIONS(6309), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1781), 1, - sym_statement_block, - ACTIONS(5725), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [129038] = 2, + [152200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(5856), 1, + sym_identifier, + ACTIONS(6311), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129049] = 2, + STATE(4022), 1, + sym__import_export_specifier, + ACTIONS(5862), 2, + anon_sym_type, + anon_sym_typeof, + [152217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 5, + ACTIONS(5730), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - anon_sym_LBRACE, - STATE(115), 1, - sym_statement_block, - ACTIONS(5741), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [129075] = 6, + [152228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(3457), 1, + anon_sym_EQ, + ACTIONS(4019), 4, anon_sym_LPAREN, - STATE(2463), 1, - sym_formal_parameters, - STATE(2817), 1, - sym__call_signature, - STATE(3617), 1, - sym_type_parameters, - [129094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1734), 1, - sym_statement_block, - ACTIONS(5741), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [129109] = 2, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [152241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 5, + ACTIONS(6313), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129120] = 2, + [152252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 5, + ACTIONS(5624), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129131] = 2, + anon_sym_COLON, + [152263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 5, + ACTIONS(6315), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129142] = 2, + [152274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 5, + ACTIONS(3646), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3661), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [129166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5633), 1, anon_sym_COLON, - ACTIONS(5769), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129181] = 6, + [152285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(3355), 1, sym_formal_parameters, - STATE(3497), 1, + STATE(3986), 1, sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [129200] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, - sym_identifier, - ACTIONS(5286), 1, - anon_sym_GT, - ACTIONS(5290), 1, - sym_jsx_identifier, - STATE(2285), 1, - sym_nested_identifier, - STATE(2420), 1, - sym_jsx_namespace_name, - [129219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, + STATE(4133), 1, sym_type_parameters, - STATE(3586), 1, - sym__call_signature, - [129238] = 2, + [152304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 5, + ACTIONS(6317), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129249] = 2, + [152315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 5, + ACTIONS(2490), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5669), 1, - anon_sym_LBRACE, - STATE(2158), 1, - sym_statement_block, - ACTIONS(5146), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5771), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5773), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [129288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129303] = 4, + [152326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_LBRACE, - STATE(2162), 1, - sym_statement_block, - ACTIONS(5122), 3, + ACTIONS(2498), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [129318] = 2, + anon_sym_PIPE_RBRACE, + [152337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 5, + ACTIONS(2502), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129329] = 2, + [152348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COLON, - [129340] = 2, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2667), 1, + anon_sym_LPAREN, + STATE(117), 2, + sym_template_string, + sym_arguments, + [152362] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_SQUOTE, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + STATE(3522), 1, + aux_sym_string_repeat2, + [152378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5777), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129351] = 4, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2091), 2, + sym_template_string, + sym_arguments, + [152392] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_DQUOTE, + ACTIONS(6325), 1, + aux_sym_string_token1, + ACTIONS(6327), 1, + sym_escape_sequence, + STATE(3525), 1, + aux_sym_string_repeat1, + [152408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5779), 1, - anon_sym_EQ_GT, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129366] = 2, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2078), 2, + sym_template_string, + sym_arguments, + [152422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5212), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129377] = 2, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6329), 1, + anon_sym_COLON, + [152438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5781), 5, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6331), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [129388] = 6, + [152454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(3240), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(2886), 1, sym_formal_parameters, - STATE(3480), 1, - sym__call_signature, - STATE(3556), 1, + STATE(4038), 1, sym_type_parameters, - [129407] = 4, + [152470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5783), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129422] = 6, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + STATE(2128), 2, + sym_template_string, + sym_arguments, + [152484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5785), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4089), 1, + sym_type_parameters, + STATE(4426), 1, + sym_formal_parameters, + [152500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2667), 1, + anon_sym_LPAREN, + STATE(128), 2, + sym_template_string, + sym_arguments, + [152514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6333), 1, + anon_sym_export, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [152530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6335), 1, sym_identifier, - ACTIONS(5787), 1, - anon_sym_GT, - ACTIONS(5789), 1, + ACTIONS(6337), 1, sym_jsx_identifier, - STATE(2282), 1, + STATE(3990), 1, sym_nested_identifier, - STATE(2387), 1, + STATE(4345), 1, sym_jsx_namespace_name, - [129441] = 5, + [152546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(6339), 1, + anon_sym_LBRACK, + ACTIONS(1912), 3, anon_sym_AMP, - ACTIONS(5338), 1, anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_extends, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_GT, - [129458] = 2, + [152558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5793), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129469] = 5, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2106), 2, + sym_template_string, + sym_arguments, + [152572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_LBRACE, - ACTIONS(5294), 1, - anon_sym_LT, - STATE(3376), 1, - sym_type_arguments, - ACTIONS(3879), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [129486] = 6, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2107), 2, + sym_template_string, + sym_arguments, + [152586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3582), 1, - sym__call_signature, - [129505] = 3, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6341), 1, + anon_sym_RBRACK, + [152602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3677), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [129518] = 2, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1405), 2, + sym_template_string, + sym_arguments, + [152616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129529] = 2, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6343), 1, + anon_sym_RBRACK, + [152632] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6345), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [152648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129540] = 2, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6347), 1, + anon_sym_COLON, + [152664] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6325), 1, + aux_sym_string_token1, + ACTIONS(6327), 1, + sym_escape_sequence, + ACTIONS(6345), 1, + anon_sym_DQUOTE, + STATE(3525), 1, + aux_sym_string_repeat1, + [152680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129551] = 6, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6349), 1, + anon_sym_RBRACK, + [152696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2667), 1, anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2926), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [129570] = 4, + STATE(127), 2, + sym_template_string, + sym_arguments, + [152710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1797), 1, - sym_statement_block, - ACTIONS(5741), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [129585] = 2, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6351), 1, + anon_sym_RPAREN, + [152726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 5, - sym__automatic_semicolon, + ACTIONS(2682), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129596] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2504), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [129615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3673), 3, + ACTIONS(6353), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [129628] = 6, - ACTIONS(3), 1, + ACTIONS(6355), 1, + anon_sym_LBRACE_PIPE, + STATE(3599), 1, + aux_sym_extends_clause_repeat1, + [152742] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3596), 1, - sym__call_signature, - [129647] = 6, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6357), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [152758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2506), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [129666] = 2, - ACTIONS(3), 1, + STATE(1404), 2, + sym_template_string, + sym_arguments, + [152772] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5795), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129677] = 6, + ACTIONS(6325), 1, + aux_sym_string_token1, + ACTIONS(6327), 1, + sym_escape_sequence, + ACTIONS(6357), 1, + anon_sym_DQUOTE, + STATE(3525), 1, + aux_sym_string_repeat1, + [152788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3615), 1, - sym__call_signature, - [129696] = 2, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6359), 1, + anon_sym_COLON, + [152804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 5, - anon_sym_EQ, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2913), 1, + anon_sym_GT, + ACTIONS(6361), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [129707] = 4, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [152820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5799), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129722] = 4, + ACTIONS(5856), 1, + sym_identifier, + STATE(4022), 1, + sym__import_export_specifier, + ACTIONS(5862), 2, + anon_sym_type, + anon_sym_typeof, + [152834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6363), 1, anon_sym_COLON, - ACTIONS(5801), 1, - anon_sym_EQ_GT, - STATE(3674), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129737] = 2, + [152850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5803), 5, - anon_sym_EQ, + ACTIONS(2682), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [129748] = 2, - ACTIONS(3), 1, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6367), 1, + anon_sym_LBRACE_PIPE, + STATE(3599), 1, + aux_sym_extends_clause_repeat1, + [152866] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(2327), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129759] = 6, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6369), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [152882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2509), 1, - sym__call_signature, - STATE(3478), 1, + STATE(4127), 1, sym_type_parameters, - [129778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1279), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129789] = 4, + STATE(4312), 1, + sym_formal_parameters, + [152898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - anon_sym_COLON, - ACTIONS(5805), 1, - anon_sym_EQ_GT, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129804] = 2, + ACTIONS(6371), 1, + sym_identifier, + ACTIONS(6373), 1, + sym_jsx_identifier, + STATE(4200), 1, + sym_nested_identifier, + STATE(4207), 1, + sym_jsx_namespace_name, + [152914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 5, - sym__automatic_semicolon, + ACTIONS(6375), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3519), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6377), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129815] = 6, + [152928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(2098), 1, + anon_sym_BQUOTE, + ACTIONS(2667), 1, anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2515), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [129834] = 2, + STATE(123), 2, + sym_template_string, + sym_arguments, + [152942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129845] = 5, + ACTIONS(6379), 1, + anon_sym_LBRACK, + ACTIONS(1912), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5509), 1, + anon_sym_EQ_GT, + ACTIONS(6177), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(6179), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(6181), 1, anon_sym_extends, - ACTIONS(5807), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [129862] = 6, - ACTIONS(3), 1, + [152970] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, - sym_type_parameters, - STATE(3656), 1, - sym__call_signature, - [129881] = 2, + ACTIONS(6381), 1, + anon_sym_DQUOTE, + ACTIONS(6383), 1, + aux_sym_string_token1, + ACTIONS(6385), 1, + sym_escape_sequence, + STATE(3505), 1, + aux_sym_string_repeat1, + [152986] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6381), 1, + anon_sym_SQUOTE, + ACTIONS(6387), 1, + aux_sym_string_token2, + ACTIONS(6389), 1, + sym_escape_sequence, + STATE(3506), 1, + aux_sym_string_repeat2, + [153002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 5, - sym__automatic_semicolon, + ACTIONS(6375), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3519), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6391), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129892] = 2, + [153016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 5, + ACTIONS(6023), 4, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129903] = 2, + [153026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(6021), 4, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129914] = 5, + [153036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(6393), 1, + anon_sym_LBRACK, + ACTIONS(1912), 3, anon_sym_AMP, - ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4891), 1, anon_sym_extends, - ACTIONS(5791), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [129931] = 6, + [153048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2518), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [129950] = 4, + ACTIONS(5471), 1, + anon_sym_EQ_GT, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6181), 1, + anon_sym_extends, + [153064] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6325), 1, + aux_sym_string_token1, + ACTIONS(6327), 1, + sym_escape_sequence, + ACTIONS(6395), 1, + anon_sym_DQUOTE, + STATE(3525), 1, + aux_sym_string_repeat1, + [153080] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6395), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [153096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3212), 1, - sym__initializer, - ACTIONS(5809), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129965] = 6, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + STATE(2034), 2, + sym_template_string, + sym_arguments, + [153110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3521), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [129984] = 2, + STATE(1540), 2, + sym_template_string, + sym_arguments, + [153124] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_SQUOTE, + ACTIONS(6399), 1, + aux_sym_string_token2, + ACTIONS(6401), 1, + sym_escape_sequence, + STATE(3483), 1, + aux_sym_string_repeat2, + [153140] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_DQUOTE, + ACTIONS(6403), 1, + aux_sym_string_token1, + ACTIONS(6405), 1, + sym_escape_sequence, + STATE(3485), 1, + aux_sym_string_repeat1, + [153156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129995] = 2, + ACTIONS(6407), 1, + sym_identifier, + ACTIONS(6409), 1, + sym_jsx_identifier, + STATE(4015), 1, + sym_nested_identifier, + STATE(4463), 1, + sym_jsx_namespace_name, + [153172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 5, - sym__automatic_semicolon, + ACTIONS(6411), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130006] = 6, + STATE(3512), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4733), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3463), 1, - sym__call_signature, - STATE(3556), 1, - sym_type_parameters, - [130025] = 2, + STATE(1623), 2, + sym_template_string, + sym_arguments, + [153200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130036] = 2, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1621), 2, + sym_template_string, + sym_arguments, + [153214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130047] = 2, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6414), 1, + anon_sym_COLON, + [153230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130058] = 4, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4159), 1, + sym_type_parameters, + STATE(4396), 1, + sym_formal_parameters, + [153246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1797), 1, - sym_statement_block, - ACTIONS(5689), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [130073] = 2, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1412), 2, + sym_template_string, + sym_arguments, + [153260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1151), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130084] = 2, + ACTIONS(6416), 1, + anon_sym_LBRACK, + ACTIONS(1912), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, - sym__automatic_semicolon, + ACTIONS(6418), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 5, + STATE(3519), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6421), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130106] = 2, + [153286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130117] = 2, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1500), 2, + sym_template_string, + sym_arguments, + [153300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, anon_sym_extends, - [130128] = 2, + ACTIONS(6423), 1, + anon_sym_COLON, + [153316] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6425), 1, + anon_sym_SQUOTE, + ACTIONS(6427), 1, + aux_sym_string_token2, + ACTIONS(6430), 1, + sym_escape_sequence, + STATE(3522), 1, + aux_sym_string_repeat2, + [153332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130139] = 4, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6433), 1, + anon_sym_RPAREN, + [153348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3306), 1, - sym__initializer, - ACTIONS(5813), 3, - sym__automatic_semicolon, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3045), 1, + anon_sym_GT, + ACTIONS(6435), 1, anon_sym_COMMA, - anon_sym_SEMI, - [130154] = 6, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [153364] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6437), 1, + anon_sym_DQUOTE, + ACTIONS(6439), 1, + aux_sym_string_token1, + ACTIONS(6442), 1, + sym_escape_sequence, + STATE(3525), 1, + aux_sym_string_repeat1, + [153380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_EQ, - ACTIONS(5815), 1, - anon_sym_COMMA, - ACTIONS(5817), 1, - anon_sym_RBRACE, - STATE(3248), 1, - aux_sym_enum_body_repeat1, - STATE(3530), 1, - sym__initializer, - [130173] = 3, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1852), 2, + sym_template_string, + sym_arguments, + [153394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5819), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5821), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [130186] = 4, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1854), 2, + sym_template_string, + sym_arguments, + [153408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6445), 1, anon_sym_COLON, - ACTIONS(5823), 1, - anon_sym_EQ_GT, - STATE(3563), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [130201] = 2, + [153424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 5, + ACTIONS(5664), 1, anon_sym_EQ, + STATE(4201), 1, + sym__initializer, + ACTIONS(6447), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [130212] = 2, + [153438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 5, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4633), 4, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - [130223] = 5, + anon_sym_RBRACK, + [153448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4188), 1, + sym_type_parameters, + STATE(4408), 1, + sym_formal_parameters, + [153464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6449), 1, + anon_sym_RBRACK, + [153480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6451), 1, + anon_sym_LBRACK, + ACTIONS(1912), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6453), 1, sym_identifier, - ACTIONS(5825), 1, - anon_sym_RBRACE, - STATE(3452), 1, + ACTIONS(6455), 1, + sym_jsx_identifier, + STATE(3999), 1, + sym_nested_identifier, + STATE(4457), 1, + sym_jsx_namespace_name, + [153508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + sym_identifier, + STATE(4134), 1, sym__import_export_specifier, - ACTIONS(5370), 2, + ACTIONS(5862), 2, anon_sym_type, anon_sym_typeof, - [130240] = 2, + [153522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130251] = 4, + ACTIONS(6457), 1, + anon_sym_LBRACK, + ACTIONS(1912), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3296), 1, - sym__initializer, - ACTIONS(5829), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130266] = 2, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6459), 1, + anon_sym_RBRACK, + [153550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 5, - sym__automatic_semicolon, + ACTIONS(6375), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130277] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 1, - anon_sym_EQ, - STATE(3277), 1, - sym__initializer, - ACTIONS(5831), 3, + STATE(3500), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6461), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [130292] = 2, + [153564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [130303] = 6, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3955), 1, + sym_type_parameters, + STATE(4302), 1, + sym_formal_parameters, + [153580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2909), 1, - sym_formal_parameters, - STATE(3556), 1, + STATE(4198), 1, sym_type_parameters, - STATE(3608), 1, - sym__call_signature, - [130322] = 2, + STATE(4227), 1, + sym_formal_parameters, + [153596] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [130333] = 2, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4197), 1, + sym_type_parameters, + STATE(4272), 1, + sym_formal_parameters, + [153612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 5, - anon_sym_EQ, + ACTIONS(6375), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [130344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5447), 5, + STATE(3632), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6463), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130355] = 2, + [153626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 5, - anon_sym_EQ, + ACTIONS(2741), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [130366] = 4, + STATE(3591), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4577), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_LBRACE, - STATE(2159), 1, - sym_statement_block, - ACTIONS(5140), 3, - sym__automatic_semicolon, + ACTIONS(6375), 1, anon_sym_COMMA, + STATE(3494), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6465), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [130381] = 6, + [153654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, - anon_sym_LPAREN, - STATE(2352), 1, - sym_formal_parameters, - STATE(2961), 1, - sym__call_signature, - STATE(3478), 1, - sym_type_parameters, - [130400] = 2, + ACTIONS(2837), 1, + anon_sym_GT, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(6467), 1, + anon_sym_COMMA, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [153670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5835), 5, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6469), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [130411] = 2, + [153686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6471), 1, anon_sym_COLON, - [130422] = 4, + [153702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_LBRACE, - STATE(2160), 1, - sym_statement_block, - ACTIONS(5132), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130437] = 2, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2137), 2, + sym_template_string, + sym_arguments, + [153716] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6473), 1, + anon_sym_DQUOTE, + ACTIONS(6475), 1, + aux_sym_string_token1, + ACTIONS(6477), 1, + sym_escape_sequence, + STATE(3554), 1, + aux_sym_string_repeat1, + [153732] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6473), 1, + anon_sym_SQUOTE, + ACTIONS(6479), 1, + aux_sym_string_token2, + ACTIONS(6481), 1, + sym_escape_sequence, + STATE(3555), 1, + aux_sym_string_repeat2, + [153748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130448] = 6, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6483), 1, + anon_sym_class, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [153764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2132), 2, + sym_template_string, + sym_arguments, + [153778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(4192), 1, + sym_type_parameters, + STATE(4239), 1, sym_formal_parameters, - STATE(3481), 1, - sym__call_signature, - STATE(3556), 1, + [153794] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6325), 1, + aux_sym_string_token1, + ACTIONS(6327), 1, + sym_escape_sequence, + ACTIONS(6485), 1, + anon_sym_DQUOTE, + STATE(3525), 1, + aux_sym_string_repeat1, + [153810] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6485), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [153826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4184), 1, sym_type_parameters, - [130467] = 4, + STATE(4221), 1, + sym_formal_parameters, + [153842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_EQ, - STATE(3670), 1, - sym__initializer, - ACTIONS(5839), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [130481] = 4, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4178), 1, + sym_type_parameters, + STATE(4418), 1, + sym_formal_parameters, + [153858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5843), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [130495] = 5, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3932), 1, + sym_type_parameters, + STATE(4296), 1, + sym_formal_parameters, + [153874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(5845), 1, - anon_sym_RBRACK, - [130511] = 5, - ACTIONS(4902), 1, + ACTIONS(6487), 1, + anon_sym_COLON, + [153890] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - anon_sym_SQUOTE, - ACTIONS(5849), 1, - aux_sym_string_token2, - ACTIONS(5851), 1, - sym_escape_sequence, - STATE(3157), 1, - aux_sym_string_repeat2, - [130527] = 4, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6489), 1, + anon_sym_COLON, + [153906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4345), 1, - anon_sym_LPAREN, - ACTIONS(4347), 1, - anon_sym_BQUOTE, - STATE(1633), 2, - sym_template_string, - sym_arguments, - [130541] = 4, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6491), 1, + anon_sym_COLON, + [153922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, + ACTIONS(2682), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5853), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [130555] = 5, - ACTIONS(4902), 1, + ACTIONS(4577), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4609), 1, + anon_sym_LBRACE, + STATE(3490), 1, + aux_sym_extends_clause_repeat1, + [153938] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5847), 1, - anon_sym_DQUOTE, - ACTIONS(5855), 1, + ACTIONS(6325), 1, aux_sym_string_token1, - ACTIONS(5857), 1, + ACTIONS(6327), 1, sym_escape_sequence, - STATE(3156), 1, + ACTIONS(6369), 1, + anon_sym_DQUOTE, + STATE(3525), 1, aux_sym_string_repeat1, - [130571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5859), 1, - anon_sym_COMMA, - STATE(3055), 1, - aux_sym_array_repeat1, - ACTIONS(3865), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [130585] = 4, + [153954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(3124), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5862), 2, + ACTIONS(5993), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [130599] = 5, + [153964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4170), 1, + sym_type_parameters, + STATE(4403), 1, + sym_formal_parameters, + [153980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(5864), 1, - anon_sym_RPAREN, - [130615] = 4, + ACTIONS(6493), 1, + anon_sym_COLON, + [153996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4167), 1, + sym_type_parameters, + STATE(4292), 1, + sym_formal_parameters, + [154012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2086), 1, anon_sym_BQUOTE, - ACTIONS(2475), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - STATE(1197), 2, + STATE(2169), 2, sym_template_string, sym_arguments, - [130629] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5849), 1, - aux_sym_string_token2, - ACTIONS(5851), 1, - sym_escape_sequence, - ACTIONS(5866), 1, - anon_sym_SQUOTE, - STATE(3157), 1, - aux_sym_string_repeat2, - [130645] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5855), 1, - aux_sym_string_token1, - ACTIONS(5857), 1, - sym_escape_sequence, - ACTIONS(5866), 1, - anon_sym_DQUOTE, - STATE(3156), 1, - aux_sym_string_repeat1, - [130661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_EQ, - STATE(3430), 1, - sym_default_type, - ACTIONS(5868), 2, - anon_sym_COMMA, - anon_sym_GT, - [130675] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1093), 1, - anon_sym_while, - ACTIONS(2063), 1, - anon_sym_LBRACE, - ACTIONS(4743), 1, - anon_sym_DOT, - STATE(643), 1, - sym_statement_block, - [130691] = 4, + [154026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 1, - anon_sym_LBRACE, - ACTIONS(4952), 1, - anon_sym_STAR, - STATE(3797), 2, - sym_namespace_import, - sym_named_imports, - [130705] = 5, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6495), 1, + anon_sym_COLON, + [154042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(5870), 1, + ACTIONS(6497), 1, anon_sym_RPAREN, - [130721] = 4, + [154058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3093), 1, + anon_sym_GT, + ACTIONS(6499), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5875), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [130735] = 5, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [154074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(5877), 1, + ACTIONS(6501), 1, anon_sym_COLON, - [130751] = 5, + [154090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5879), 1, - anon_sym_class, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [130767] = 5, - ACTIONS(4902), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4155), 1, + sym_type_parameters, + STATE(4355), 1, + sym_formal_parameters, + [154106] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6503), 1, + anon_sym_DQUOTE, + ACTIONS(6505), 1, + aux_sym_string_token1, + ACTIONS(6507), 1, + sym_escape_sequence, + STATE(3576), 1, + aux_sym_string_repeat1, + [154122] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5881), 1, + ACTIONS(6503), 1, anon_sym_SQUOTE, - ACTIONS(5883), 1, + ACTIONS(6509), 1, aux_sym_string_token2, - ACTIONS(5885), 1, + ACTIONS(6511), 1, sym_escape_sequence, - STATE(3059), 1, + STATE(3577), 1, aux_sym_string_repeat2, - [130783] = 5, - ACTIONS(4902), 1, + [154138] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5881), 1, - anon_sym_DQUOTE, - ACTIONS(5887), 1, + ACTIONS(6325), 1, aux_sym_string_token1, - ACTIONS(5889), 1, + ACTIONS(6327), 1, sym_escape_sequence, - STATE(3060), 1, + ACTIONS(6513), 1, + anon_sym_DQUOTE, + STATE(3525), 1, aux_sym_string_repeat1, - [130799] = 5, - ACTIONS(3), 1, + [154154] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5891), 1, - anon_sym_COLON, - [130815] = 5, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6513), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [154170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5893), 1, + ACTIONS(4534), 1, anon_sym_COLON, - [130831] = 4, + STATE(4008), 1, + sym_type_annotation, + ACTIONS(6515), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [154184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_COMMA, - STATE(3154), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5895), 2, - anon_sym_LBRACE, - anon_sym_implements, - [130845] = 5, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4148), 1, + sym_type_parameters, + STATE(4390), 1, + sym_formal_parameters, + [154200] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6517), 1, + anon_sym_SQUOTE, + ACTIONS(6519), 1, + aux_sym_string_token2, + ACTIONS(6521), 1, + sym_escape_sequence, + STATE(3458), 1, + aux_sym_string_repeat2, + [154216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3601), 1, + STATE(4140), 1, sym_type_parameters, - STATE(3715), 1, + STATE(4397), 1, sym_formal_parameters, - [130861] = 5, + [154232] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6517), 1, + anon_sym_DQUOTE, + ACTIONS(6523), 1, + aux_sym_string_token1, + ACTIONS(6525), 1, + sym_escape_sequence, + STATE(3460), 1, + aux_sym_string_repeat1, + [154248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5897), 1, - sym_identifier, - ACTIONS(5899), 1, - sym_jsx_identifier, - STATE(3622), 1, - sym_nested_identifier, - STATE(3727), 1, - sym_jsx_namespace_name, - [130877] = 5, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_LPAREN, + STATE(1722), 2, + sym_template_string, + sym_arguments, + [154262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5901), 1, - anon_sym_RBRACK, - [130893] = 5, + ACTIONS(6375), 1, + anon_sym_COMMA, + STATE(3635), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_PIPE, - ACTIONS(5138), 1, - anon_sym_extends, - ACTIONS(5903), 1, - anon_sym_QMARK, - [130909] = 3, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2087), 2, + sym_template_string, + sym_arguments, + [154290] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1998), 2, + sym_template_string, + sym_arguments, + [154304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(2081), 2, + sym_template_string, + sym_arguments, + [154318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1547), 2, + sym_template_string, + sym_arguments, + [154332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, - anon_sym_LBRACK, - ACTIONS(1837), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130921] = 4, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1563), 2, + sym_template_string, + sym_arguments, + [154346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(3154), 1, + STATE(3512), 1, aux_sym_extends_clause_repeat1, - ACTIONS(5907), 2, + ACTIONS(6355), 2, anon_sym_LBRACE, anon_sym_implements, - [130935] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5909), 1, - anon_sym_COLON, - [130951] = 5, + [154360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_LBRACE, - ACTIONS(3879), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5911), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(3080), 1, + STATE(3512), 1, aux_sym_extends_clause_repeat1, - [130967] = 3, + ACTIONS(6367), 2, + anon_sym_LBRACE, + anon_sym_implements, + [154374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, - anon_sym_EQ_GT, - ACTIONS(3245), 3, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [130979] = 3, + STATE(1996), 2, + sym_template_string, + sym_arguments, + [154388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4601), 1, - anon_sym_EQ_GT, - ACTIONS(3245), 3, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [130991] = 4, + STATE(1415), 2, + sym_template_string, + sym_arguments, + [154402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(3114), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5916), 2, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1837), 2, + sym_template_string, + sym_arguments, + [154416] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6529), 1, + anon_sym_from, + STATE(4076), 1, + sym__from_clause, + ACTIONS(6531), 2, sym__automatic_semicolon, anon_sym_SEMI, - [131005] = 4, + [154430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_EQ, - STATE(3539), 1, - sym__initializer, - ACTIONS(5918), 2, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_LPAREN, + STATE(1707), 2, + sym_template_string, + sym_arguments, + [154444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1838), 2, + sym_template_string, + sym_arguments, + [154458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6533), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [154468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4731), 1, + anon_sym_LBRACE, + ACTIONS(4733), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6535), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [131019] = 5, + STATE(3599), 1, + aux_sym_extends_clause_repeat1, + [154484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3644), 1, + STATE(4092), 1, sym_type_parameters, - STATE(3823), 1, + STATE(4535), 1, sym_formal_parameters, - [131035] = 5, + [154500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - sym_jsx_identifier, - STATE(3458), 1, - sym_nested_identifier, - STATE(3834), 1, - sym_jsx_namespace_name, - [131051] = 5, - ACTIONS(3), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1561), 2, + sym_template_string, + sym_arguments, + [154514] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5924), 1, - anon_sym_RPAREN, - [131067] = 5, - ACTIONS(3), 1, + ACTIONS(6538), 1, + anon_sym_SQUOTE, + ACTIONS(6540), 1, + aux_sym_string_token2, + ACTIONS(6542), 1, + sym_escape_sequence, + STATE(3476), 1, + aux_sym_string_repeat2, + [154530] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5926), 1, - anon_sym_RBRACK, - [131083] = 3, + ACTIONS(6538), 1, + anon_sym_DQUOTE, + ACTIONS(6544), 1, + aux_sym_string_token1, + ACTIONS(6546), 1, + sym_escape_sequence, + STATE(3478), 1, + aux_sym_string_repeat1, + [154546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5928), 1, - anon_sym_LBRACK, - ACTIONS(1837), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131095] = 5, + ACTIONS(2104), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_LPAREN, + STATE(1694), 2, + sym_template_string, + sym_arguments, + [154560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5930), 1, - anon_sym_COLON, - [131111] = 3, - ACTIONS(3), 1, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_LPAREN, + STATE(2166), 2, + sym_template_string, + sym_arguments, + [154574] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5932), 1, - anon_sym_LBRACK, - ACTIONS(1837), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131123] = 4, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6548), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [154590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, + ACTIONS(6529), 1, anon_sym_from, - STATE(3462), 1, + STATE(3992), 1, sym__from_clause, - ACTIONS(5936), 2, + ACTIONS(6550), 2, sym__automatic_semicolon, anon_sym_SEMI, - [131137] = 5, - ACTIONS(4902), 1, + [154604] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_SQUOTE, - ACTIONS(5940), 1, - aux_sym_string_token2, - ACTIONS(5942), 1, + ACTIONS(6325), 1, + aux_sym_string_token1, + ACTIONS(6327), 1, sym_escape_sequence, - STATE(3051), 1, - aux_sym_string_repeat2, - [131153] = 5, + ACTIONS(6548), 1, + anon_sym_DQUOTE, + STATE(3525), 1, + aux_sym_string_repeat1, + [154620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(5944), 1, - anon_sym_COLON, - [131169] = 5, + ACTIONS(6552), 1, + anon_sym_RBRACK, + [154636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(5946), 1, + ACTIONS(6554), 1, anon_sym_RBRACK, - [131185] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5938), 1, - anon_sym_DQUOTE, - ACTIONS(5948), 1, - aux_sym_string_token1, - ACTIONS(5950), 1, - sym_escape_sequence, - STATE(3054), 1, - aux_sym_string_repeat1, - [131201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3668), 1, - sym_type_parameters, - STATE(3761), 1, - sym_formal_parameters, - [131217] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5952), 1, - sym_identifier, - ACTIONS(5954), 1, - sym_jsx_identifier, - STATE(3579), 1, - sym_nested_identifier, - STATE(3970), 1, - sym_jsx_namespace_name, - [131233] = 3, + [154652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5956), 1, - anon_sym_LBRACK, - ACTIONS(1837), 3, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - [131245] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5958), 1, - anon_sym_DQUOTE, - ACTIONS(5960), 1, - aux_sym_string_token1, - ACTIONS(5962), 1, - sym_escape_sequence, - STATE(3117), 1, - aux_sym_string_repeat1, - [131261] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5958), 1, - anon_sym_SQUOTE, - ACTIONS(5964), 1, - aux_sym_string_token2, - ACTIONS(5966), 1, - sym_escape_sequence, - STATE(3118), 1, - aux_sym_string_repeat2, - [131277] = 5, + ACTIONS(6556), 1, + anon_sym_RBRACK, + [154668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(5968), 1, - anon_sym_COLON, - [131293] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3680), 1, - sym_type_parameters, - STATE(3896), 1, - sym_formal_parameters, - [131309] = 3, + ACTIONS(6558), 1, + anon_sym_QMARK, + [154684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5970), 1, - anon_sym_LBRACK, - ACTIONS(1837), 3, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - [131321] = 5, + ACTIONS(5509), 1, + anon_sym_LBRACE, + [154700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3606), 1, - sym_type_parameters, - STATE(3999), 1, - sym_formal_parameters, - [131337] = 4, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(5467), 1, + anon_sym_LBRACE, + [154716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(2104), 1, anon_sym_BQUOTE, - ACTIONS(2487), 1, + ACTIONS(2639), 1, anon_sym_LPAREN, - STATE(1336), 2, + STATE(1777), 2, sym_template_string, sym_arguments, - [131351] = 5, + [154730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3597), 1, - sym_type_parameters, - STATE(3988), 1, - sym_formal_parameters, - [131367] = 5, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6560), 1, + anon_sym_RPAREN, + [154746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3590), 1, - sym_type_parameters, - STATE(3976), 1, - sym_formal_parameters, - [131383] = 4, - ACTIONS(3), 1, + ACTIONS(5140), 1, + anon_sym_EQ, + STATE(3965), 1, + sym_default_type, + ACTIONS(6562), 2, + anon_sym_COMMA, + anon_sym_GT, + [154760] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5364), 1, - sym_identifier, - STATE(3452), 1, - sym__import_export_specifier, - ACTIONS(5370), 2, - anon_sym_type, - anon_sym_typeof, - [131397] = 5, - ACTIONS(3), 1, + ACTIONS(6564), 1, + anon_sym_SQUOTE, + ACTIONS(6566), 1, + aux_sym_string_token2, + ACTIONS(6568), 1, + sym_escape_sequence, + STATE(3606), 1, + aux_sym_string_repeat2, + [154776] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5972), 1, - sym_identifier, - ACTIONS(5974), 1, - sym_jsx_identifier, - STATE(3468), 1, - sym_nested_identifier, - STATE(3862), 1, - sym_jsx_namespace_name, - [131413] = 4, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6570), 1, + aux_sym_string_token1, + ACTIONS(6572), 1, + sym_escape_sequence, + STATE(3608), 1, + aux_sym_string_repeat1, + [154792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_EQ, - STATE(3530), 1, - sym__initializer, - ACTIONS(5976), 2, + ACTIONS(6574), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [131427] = 5, - ACTIONS(4902), 1, + STATE(3620), 1, + aux_sym_array_repeat1, + ACTIONS(4765), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [154806] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5849), 1, + ACTIONS(6577), 1, + anon_sym_SQUOTE, + ACTIONS(6579), 1, aux_sym_string_token2, - ACTIONS(5851), 1, + ACTIONS(6581), 1, sym_escape_sequence, - ACTIONS(5978), 1, - anon_sym_SQUOTE, - STATE(3157), 1, + STATE(3491), 1, aux_sym_string_repeat2, - [131443] = 5, - ACTIONS(4902), 1, + [154822] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5855), 1, + ACTIONS(6577), 1, + anon_sym_DQUOTE, + ACTIONS(6583), 1, aux_sym_string_token1, - ACTIONS(5857), 1, + ACTIONS(6585), 1, sym_escape_sequence, - ACTIONS(5978), 1, - anon_sym_DQUOTE, - STATE(3156), 1, + STATE(3563), 1, aux_sym_string_repeat1, - [131459] = 4, + [154838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6587), 1, + anon_sym_COLON, + [154854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2981), 1, + anon_sym_GT, + ACTIONS(6589), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5980), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131473] = 5, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [154870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3502), 1, - sym_type_parameters, - STATE(3841), 1, - sym_formal_parameters, - [131489] = 5, + ACTIONS(5664), 1, + anon_sym_EQ, + STATE(3962), 1, + sym__initializer, + ACTIONS(6591), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [154884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_EQ_GT, - ACTIONS(5657), 1, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3013), 1, + anon_sym_GT, + ACTIONS(6593), 1, + anon_sym_COMMA, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [154900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5659), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5661), 1, + ACTIONS(5338), 1, anon_sym_extends, - [131505] = 5, - ACTIONS(4902), 1, + ACTIONS(6595), 1, + anon_sym_RBRACK, + [154916] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5855), 1, - aux_sym_string_token1, - ACTIONS(5857), 1, - sym_escape_sequence, - ACTIONS(5982), 1, - anon_sym_DQUOTE, - STATE(3156), 1, - aux_sym_string_repeat1, - [131521] = 5, - ACTIONS(4902), 1, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6597), 1, + anon_sym_RBRACK, + [154932] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - aux_sym_string_token2, - ACTIONS(5851), 1, - sym_escape_sequence, - ACTIONS(5982), 1, - anon_sym_SQUOTE, - STATE(3157), 1, - aux_sym_string_repeat2, - [131537] = 5, + ACTIONS(5664), 1, + anon_sym_EQ, + STATE(4028), 1, + sym__initializer, + ACTIONS(6599), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [154946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, anon_sym_LPAREN, - STATE(3574), 1, - sym_type_parameters, - STATE(3982), 1, - sym_formal_parameters, - [131553] = 4, + STATE(1990), 2, + sym_template_string, + sym_arguments, + [154960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2491), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - STATE(1819), 2, + STATE(1989), 2, sym_template_string, sym_arguments, - [131567] = 5, + [154974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3553), 1, - sym_type_parameters, - STATE(3763), 1, - sym_formal_parameters, - [131583] = 4, + ACTIONS(6375), 1, + anon_sym_COMMA, + STATE(3519), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6601), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_LPAREN, - ACTIONS(4321), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - STATE(134), 2, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1589), 2, sym_template_string, sym_arguments, - [131597] = 5, - ACTIONS(4902), 1, + [155002] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - aux_sym_string_token2, - ACTIONS(5851), 1, - sym_escape_sequence, - ACTIONS(5984), 1, - anon_sym_SQUOTE, - STATE(3157), 1, - aux_sym_string_repeat2, - [131613] = 4, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1594), 2, + sym_template_string, + sym_arguments, + [155016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, + ACTIONS(6375), 1, anon_sym_COMMA, - STATE(3065), 1, + STATE(3519), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5986), 2, + ACTIONS(6603), 2, sym__automatic_semicolon, anon_sym_SEMI, - [131627] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5855), 1, - aux_sym_string_token1, - ACTIONS(5857), 1, - sym_escape_sequence, - ACTIONS(5984), 1, - anon_sym_DQUOTE, - STATE(3156), 1, - aux_sym_string_repeat1, - [131643] = 5, + [155030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5988), 1, - anon_sym_RBRACK, - [131659] = 5, + ACTIONS(3467), 1, + anon_sym_LBRACE, + ACTIONS(5386), 1, + anon_sym_STAR, + STATE(4352), 2, + sym_namespace_import, + sym_named_imports, + [155044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(5990), 1, - anon_sym_QMARK, - [131675] = 5, + ACTIONS(6605), 1, + anon_sym_COLON, + [155060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(5992), 1, + ACTIONS(6607), 1, anon_sym_COLON, - [131691] = 5, + [155076] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_COMMA, - ACTIONS(5895), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5994), 1, - anon_sym_LBRACE, - STATE(3080), 1, - aux_sym_extends_clause_repeat1, - [131707] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2943), 1, - anon_sym_COMMA, - ACTIONS(5907), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5996), 1, - anon_sym_LBRACE, - STATE(3080), 1, - aux_sym_extends_clause_repeat1, - [131723] = 2, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3942), 1, + sym_type_parameters, + STATE(4374), 1, + sym_formal_parameters, + [155092] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [131733] = 4, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6609), 1, + anon_sym_RPAREN, + [155108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_COMMA, - STATE(3072), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3649), 2, - anon_sym_LBRACE, - anon_sym_implements, - [131747] = 4, + ACTIONS(5570), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_PIPE, + ACTIONS(5630), 1, + anon_sym_extends, + ACTIONS(6611), 1, + anon_sym_QMARK, + [155124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 1, - anon_sym_COLON, - STATE(3498), 1, - sym_type_annotation, - ACTIONS(5998), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131761] = 4, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6613), 1, + anon_sym_RBRACK, + [155140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(3049), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6000), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131775] = 4, + ACTIONS(5467), 1, + anon_sym_EQ_GT, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6181), 1, + anon_sym_extends, + [155156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(3053), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131789] = 5, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3953), 1, + sym_type_parameters, + STATE(4382), 1, + sym_formal_parameters, + [155172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6004), 1, - anon_sym_RBRACK, - [131805] = 5, + ACTIONS(6615), 1, + anon_sym_QMARK, + [155188] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(6006), 1, + ACTIONS(6617), 1, anon_sym_class, - STATE(2187), 1, + STATE(2513), 1, aux_sym_export_statement_repeat1, - STATE(2202), 1, + STATE(2545), 1, sym_decorator, - [131821] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6008), 1, - anon_sym_SQUOTE, - ACTIONS(6010), 1, - aux_sym_string_token2, - ACTIONS(6012), 1, - sym_escape_sequence, - STATE(3123), 1, - aux_sym_string_repeat2, - [131837] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6008), 1, - anon_sym_DQUOTE, - ACTIONS(6014), 1, - aux_sym_string_token1, - ACTIONS(6016), 1, - sym_escape_sequence, - STATE(3125), 1, - aux_sym_string_repeat1, - [131853] = 2, + [155204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [131863] = 2, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(1864), 2, + sym_template_string, + sym_arguments, + [155218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [131873] = 5, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1652), 2, + sym_template_string, + sym_arguments, + [155232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(6018), 1, - anon_sym_RBRACK, - [131889] = 4, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(1970), 1, + anon_sym_LPAREN, + STATE(1611), 2, + sym_template_string, + sym_arguments, + [155246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, - anon_sym_from, - STATE(3676), 1, - sym__from_clause, - ACTIONS(6020), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131903] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6619), 1, + anon_sym_class, + STATE(2513), 1, + aux_sym_export_statement_repeat1, + STATE(2545), 1, + sym_decorator, + [155262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(6621), 1, + anon_sym_EQ_GT, + ACTIONS(3523), 3, anon_sym_LPAREN, - STATE(3544), 1, - sym_type_parameters, - STATE(3739), 1, - sym_formal_parameters, - [131919] = 5, + anon_sym_LT, + anon_sym_QMARK, + [155274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(2861), 1, + ACTIONS(5019), 1, + anon_sym_EQ_GT, + ACTIONS(3523), 3, anon_sym_LPAREN, - STATE(2508), 1, - sym_formal_parameters, - STATE(3661), 1, - sym_type_parameters, - [131935] = 5, + anon_sym_LT, + anon_sym_QMARK, + [155286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(6022), 1, - anon_sym_RBRACK, - [131951] = 5, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(1846), 2, + sym_template_string, + sym_arguments, + [155300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6024), 1, + ACTIONS(6623), 1, anon_sym_QMARK, - [131967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6026), 1, - anon_sym_export, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [131983] = 5, + [155316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, anon_sym_LPAREN, - STATE(3558), 1, - sym_type_parameters, - STATE(3723), 1, - sym_formal_parameters, - [131999] = 5, + STATE(1783), 2, + sym_template_string, + sym_arguments, + [155330] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6028), 1, - anon_sym_RBRACK, - [132015] = 5, + ACTIONS(6625), 1, + anon_sym_QMARK, + [155346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6030), 1, - anon_sym_RBRACK, - [132031] = 5, + ACTIONS(6627), 1, + anon_sym_QMARK, + [155362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6032), 1, - anon_sym_class, - STATE(2187), 1, - aux_sym_export_statement_repeat1, - STATE(2202), 1, - sym_decorator, - [132047] = 5, + ACTIONS(1098), 1, + anon_sym_while, + ACTIONS(2160), 1, + anon_sym_LBRACE, + ACTIONS(5157), 1, + anon_sym_DOT, + STATE(710), 1, + sym_statement_block, + [155378] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6321), 1, + aux_sym_string_token2, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6629), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_string_repeat2, + [155394] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6325), 1, + aux_sym_string_token1, + ACTIONS(6327), 1, + sym_escape_sequence, + ACTIONS(6629), 1, + anon_sym_DQUOTE, + STATE(3525), 1, + aux_sym_string_repeat1, + [155410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(6034), 1, - anon_sym_QMARK, - [132063] = 4, + ACTIONS(6631), 1, + anon_sym_COLON, + [155426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6036), 1, - anon_sym_COMMA, - STATE(3154), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3879), 2, - anon_sym_LBRACE, - anon_sym_implements, - [132077] = 5, + ACTIONS(5570), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_PIPE, + ACTIONS(5630), 1, + anon_sym_extends, + ACTIONS(6633), 1, + anon_sym_QMARK, + [155442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(6197), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(6199), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(6203), 1, anon_sym_extends, - ACTIONS(6039), 1, - anon_sym_RPAREN, - [132093] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6041), 1, - anon_sym_DQUOTE, - ACTIONS(6043), 1, - aux_sym_string_token1, - ACTIONS(6046), 1, - sym_escape_sequence, - STATE(3156), 1, - aux_sym_string_repeat1, - [132109] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6049), 1, - anon_sym_SQUOTE, - ACTIONS(6051), 1, - aux_sym_string_token2, - ACTIONS(6054), 1, - sym_escape_sequence, - STATE(3157), 1, - aux_sym_string_repeat2, - [132125] = 2, + ACTIONS(6635), 1, + anon_sym_COLON, + [155458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6057), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [132135] = 5, + ACTIONS(5570), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_PIPE, + ACTIONS(5630), 1, + anon_sym_extends, + ACTIONS(6637), 1, + anon_sym_QMARK, + [155474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1987), 1, anon_sym_LT, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3570), 1, + STATE(3956), 1, sym_type_parameters, - STATE(3699), 1, + STATE(4379), 1, sym_formal_parameters, - [132151] = 5, + [155490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6059), 1, + ACTIONS(6639), 1, anon_sym_QMARK, - [132167] = 3, + [155506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6061), 1, - anon_sym_LBRACK, - ACTIONS(1837), 3, + ACTIONS(6197), 1, anon_sym_AMP, + ACTIONS(6199), 1, anon_sym_PIPE, + ACTIONS(6203), 1, anon_sym_extends, - [132179] = 5, + ACTIONS(6641), 1, + anon_sym_COLON, + [155522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6063), 1, - anon_sym_RPAREN, - [132195] = 5, + ACTIONS(6643), 1, + anon_sym_QMARK, + [155538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6065), 1, + ACTIONS(6645), 1, anon_sym_QMARK, - [132211] = 5, + [155554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6067), 1, + ACTIONS(6647), 1, anon_sym_QMARK, - [132227] = 5, + [155570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6069), 1, - anon_sym_COLON, - [132243] = 5, + ACTIONS(6649), 1, + anon_sym_QMARK, + [155586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6071), 1, - anon_sym_COLON, - [132259] = 5, + ACTIONS(6651), 1, + anon_sym_QMARK, + [155602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6073), 1, + ACTIONS(6653), 1, anon_sym_QMARK, - [132275] = 5, + [155618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6075), 1, + ACTIONS(6655), 1, anon_sym_QMARK, - [132291] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5849), 1, - aux_sym_string_token2, - ACTIONS(5851), 1, - sym_escape_sequence, - ACTIONS(6077), 1, - anon_sym_SQUOTE, - STATE(3157), 1, - aux_sym_string_repeat2, - [132307] = 5, - ACTIONS(4902), 1, + [155634] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5855), 1, - aux_sym_string_token1, - ACTIONS(5857), 1, - sym_escape_sequence, - ACTIONS(6077), 1, - anon_sym_DQUOTE, - STATE(3156), 1, - aux_sym_string_repeat1, - [132323] = 5, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(1787), 2, + sym_template_string, + sym_arguments, + [155648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(4996), 1, - anon_sym_LBRACE, - [132339] = 5, - ACTIONS(4902), 1, + ACTIONS(6657), 1, + anon_sym_QMARK, + [155664] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6079), 1, + ACTIONS(6659), 1, + anon_sym_COMMA, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(6017), 2, + sym__call_type_arguments_closing_bracket, + anon_sym_GT, + [155678] = 5, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6662), 1, anon_sym_SQUOTE, - ACTIONS(6081), 1, + ACTIONS(6664), 1, aux_sym_string_token2, - ACTIONS(6083), 1, + ACTIONS(6666), 1, sym_escape_sequence, - STATE(3169), 1, + STATE(3659), 1, aux_sym_string_repeat2, - [132355] = 5, - ACTIONS(4902), 1, + [155694] = 5, + ACTIONS(5322), 1, sym_comment, - ACTIONS(6079), 1, + ACTIONS(6662), 1, anon_sym_DQUOTE, - ACTIONS(6085), 1, + ACTIONS(6668), 1, aux_sym_string_token1, - ACTIONS(6087), 1, + ACTIONS(6670), 1, sym_escape_sequence, - STATE(3170), 1, + STATE(3660), 1, aux_sym_string_repeat1, - [132371] = 5, + [155710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3015), 1, + anon_sym_GT, + ACTIONS(6672), 1, + anon_sym_COMMA, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [155726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6089), 1, + ACTIONS(6674), 1, + anon_sym_QMARK, + [155742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_PIPE, + ACTIONS(5630), 1, + anon_sym_extends, + ACTIONS(6676), 1, + anon_sym_QMARK, + [155758] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6197), 1, + anon_sym_AMP, + ACTIONS(6199), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + ACTIONS(6678), 1, anon_sym_COLON, - [132387] = 5, + [155774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3187), 1, + anon_sym_GT, + ACTIONS(6680), 1, + anon_sym_COMMA, + STATE(3677), 1, + aux_sym_implements_clause_repeat1, + [155790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5572), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6091), 1, - anon_sym_RBRACK, - [132403] = 5, + ACTIONS(6682), 1, + anon_sym_QMARK, + [155806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + STATE(1509), 2, + sym_template_string, + sym_arguments, + [155820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(6095), 1, + ACTIONS(6686), 1, sym_jsx_identifier, - STATE(3640), 1, + STATE(4033), 1, sym_nested_identifier, - STATE(3714), 1, + STATE(4471), 1, sym_jsx_namespace_name, - [132419] = 5, + [155836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(6688), 1, + anon_sym_LBRACK, + ACTIONS(1912), 3, anon_sym_AMP, - ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4891), 1, anon_sym_extends, - ACTIONS(6097), 1, + [155848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6690), 1, anon_sym_RBRACK, - [132435] = 5, + [155864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6692), 1, + anon_sym_RBRACK, + [155880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_PIPE, + ACTIONS(5630), 1, anon_sym_extends, - ACTIONS(6099), 1, + ACTIONS(6694), 1, anon_sym_QMARK, - [132451] = 5, - ACTIONS(4902), 1, + [155896] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - aux_sym_string_token2, - ACTIONS(5851), 1, - sym_escape_sequence, - ACTIONS(6101), 1, - anon_sym_SQUOTE, - STATE(3157), 1, - aux_sym_string_repeat2, - [132467] = 5, - ACTIONS(4902), 1, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4039), 1, + sym_type_parameters, + STATE(4319), 1, + sym_formal_parameters, + [155912] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5855), 1, - aux_sym_string_token1, - ACTIONS(5857), 1, - sym_escape_sequence, - ACTIONS(6101), 1, - anon_sym_DQUOTE, - STATE(3156), 1, - aux_sym_string_repeat1, - [132483] = 2, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(6696), 1, + anon_sym_RBRACK, + [155928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4733), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [155937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4779), 1, anon_sym_RBRACK, - [132493] = 5, + STATE(3620), 1, + aux_sym_array_repeat1, + [155950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5592), 1, anon_sym_extends, - ACTIONS(6103), 1, - anon_sym_COLON, - [132509] = 5, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6105), 1, - anon_sym_SQUOTE, - ACTIONS(6107), 1, - aux_sym_string_token2, - ACTIONS(6109), 1, - sym_escape_sequence, - STATE(3112), 1, - aux_sym_string_repeat2, - [132525] = 5, - ACTIONS(4902), 1, + [155963] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_DQUOTE, - ACTIONS(6113), 1, - aux_sym_string_token1, - ACTIONS(6115), 1, - sym_escape_sequence, - STATE(3191), 1, - aux_sym_string_repeat1, - [132541] = 5, - ACTIONS(4902), 1, + ACTIONS(4223), 1, + anon_sym_extends, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + [155976] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_SQUOTE, - ACTIONS(6117), 1, - aux_sym_string_token2, - ACTIONS(6119), 1, - sym_escape_sequence, - STATE(3192), 1, - aux_sym_string_repeat2, - [132557] = 5, - ACTIONS(4902), 1, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_extends, + [155989] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6105), 1, - anon_sym_DQUOTE, - ACTIONS(6121), 1, - aux_sym_string_token1, - ACTIONS(6123), 1, - sym_escape_sequence, - STATE(3113), 1, - aux_sym_string_repeat1, - [132573] = 5, - ACTIONS(4902), 1, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6698), 1, + anon_sym_GT, + [156002] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, - anon_sym_SQUOTE, - ACTIONS(6127), 1, - aux_sym_string_token2, - ACTIONS(6129), 1, - sym_escape_sequence, - STATE(3179), 1, - aux_sym_string_repeat2, - [132589] = 5, - ACTIONS(4902), 1, + ACTIONS(6700), 1, + anon_sym_COMMA, + ACTIONS(6702), 1, + anon_sym_RBRACK, + STATE(3761), 1, + aux_sym__tuple_type_body_repeat1, + [156015] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, - anon_sym_DQUOTE, - ACTIONS(6131), 1, - aux_sym_string_token1, - ACTIONS(6133), 1, - sym_escape_sequence, - STATE(3180), 1, - aux_sym_string_repeat1, - [132605] = 5, + ACTIONS(4566), 1, + anon_sym_extends, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + [156028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, + ACTIONS(6704), 1, anon_sym_COMMA, - ACTIONS(3617), 1, + ACTIONS(6706), 1, + anon_sym_RPAREN, + STATE(3849), 1, + aux_sym_formal_parameters_repeat1, + [156041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 3, anon_sym_LBRACE, - ACTIONS(3649), 1, - anon_sym_LBRACE_PIPE, - STATE(3129), 1, - aux_sym_extends_clause_repeat1, - [132621] = 5, + anon_sym_COLON, + anon_sym_EQ_GT, + [156050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_PIPE, - ACTIONS(5138), 1, - anon_sym_extends, - ACTIONS(6135), 1, - anon_sym_QMARK, - [132637] = 5, - ACTIONS(4902), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6708), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [156063] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5855), 1, - aux_sym_string_token1, - ACTIONS(5857), 1, - sym_escape_sequence, - ACTIONS(6137), 1, - anon_sym_DQUOTE, - STATE(3156), 1, - aux_sym_string_repeat1, - [132653] = 5, - ACTIONS(4902), 1, + ACTIONS(6017), 1, + anon_sym_LBRACE, + ACTIONS(6710), 1, + anon_sym_COMMA, + STATE(3705), 1, + aux_sym_implements_clause_repeat1, + [156076] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - aux_sym_string_token2, - ACTIONS(5851), 1, - sym_escape_sequence, - ACTIONS(6137), 1, - anon_sym_SQUOTE, - STATE(3157), 1, - aux_sym_string_repeat2, - [132669] = 5, + ACTIONS(3045), 1, + anon_sym_GT, + ACTIONS(6713), 1, + anon_sym_COMMA, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [156089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(6715), 1, + anon_sym_RBRACK, + STATE(3620), 1, + aux_sym_array_repeat1, + [156102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(6717), 1, anon_sym_extends, - ACTIONS(6139), 1, - anon_sym_COLON, - [132685] = 5, + [156115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, - anon_sym_EQ_GT, - ACTIONS(5657), 1, + ACTIONS(6719), 1, + anon_sym_COMMA, + ACTIONS(6721), 1, + anon_sym_RPAREN, + STATE(3819), 1, + aux_sym_formal_parameters_repeat1, + [156128] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3817), 1, + anon_sym_extends, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5659), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5661), 1, + [156141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 1, anon_sym_extends, - [132701] = 5, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + [156154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5542), 1, anon_sym_extends, - ACTIONS(6141), 1, - anon_sym_RBRACK, - [132717] = 5, + [156167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(4033), 1, + anon_sym_extends, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - ACTIONS(5000), 1, - anon_sym_LBRACE, - [132733] = 5, + [156180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5758), 1, anon_sym_extends, - ACTIONS(6143), 1, - anon_sym_QMARK, - [132749] = 4, + [156193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - sym_identifier, - STATE(3658), 1, - sym__import_export_specifier, - ACTIONS(5370), 2, - anon_sym_type, - anon_sym_typeof, - [132763] = 5, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_extends, + [156206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5076), 1, - anon_sym_EQ_GT, - ACTIONS(5657), 1, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5659), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5661), 1, - anon_sym_extends, - [132779] = 5, + [156219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5712), 1, anon_sym_extends, - ACTIONS(6145), 1, + [156232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4845), 1, anon_sym_RPAREN, - [132795] = 5, + ACTIONS(6723), 1, + anon_sym_COMMA, + STATE(3835), 1, + aux_sym_formal_parameters_repeat1, + [156245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6725), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [156258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, + anon_sym_COMMA, + ACTIONS(6727), 1, + anon_sym_RBRACK, + STATE(3700), 1, + aux_sym__tuple_type_body_repeat1, + [156271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_DQUOTE, + ACTIONS(3001), 1, + anon_sym_SQUOTE, + STATE(4102), 1, + sym_string, + [156284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_extends, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5138), 1, - anon_sym_extends, - ACTIONS(6147), 1, - anon_sym_QMARK, - [132811] = 4, + [156297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6149), 1, - anon_sym_GT, - [132824] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6151), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [132833] = 4, + ACTIONS(2192), 1, + anon_sym_while, + ACTIONS(6729), 1, + anon_sym_else, + STATE(745), 1, + sym_else_clause, + [156310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(3005), 1, - sym_object_type, - [132846] = 4, + ACTIONS(4845), 1, + anon_sym_RPAREN, + ACTIONS(6723), 1, + anon_sym_COMMA, + STATE(3875), 1, + aux_sym_formal_parameters_repeat1, + [156323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5138), 1, + ACTIONS(5552), 1, anon_sym_extends, - [132859] = 4, + [156336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5328), 1, + anon_sym_extends, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, + anon_sym_PIPE, + [156349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5184), 1, + ACTIONS(5630), 1, anon_sym_extends, - [132872] = 4, + [156362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4689), 1, + anon_sym_RBRACK, + STATE(3824), 1, + aux_sym_array_repeat1, + [156375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5218), 1, + ACTIONS(6181), 1, anon_sym_extends, - [132885] = 4, + [156388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(4371), 1, + anon_sym_extends, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, + anon_sym_PIPE, + [156401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1068), 1, + anon_sym_LBRACE, + STATE(684), 1, + sym_object_type, + [156414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4981), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4689), 1, + anon_sym_RBRACK, + STATE(3620), 1, + aux_sym_array_repeat1, + [156436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5661), 1, + ACTIONS(5338), 1, anon_sym_extends, - [132898] = 2, + [156449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6731), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [156462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6733), 1, + anon_sym_COMMA, + ACTIONS(6735), 1, + anon_sym_GT, + STATE(3842), 1, + aux_sym_type_parameters_repeat1, + [156475] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6285), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [156484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1788), 1, + anon_sym_LBRACE, + ACTIONS(1786), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [156495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 3, + ACTIONS(6737), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [132907] = 4, + [156504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5077), 1, + anon_sym_RBRACE, + ACTIONS(6739), 1, + anon_sym_COMMA, + STATE(3929), 1, + aux_sym_enum_body_repeat1, + [156517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_as, + ACTIONS(6743), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [156528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + anon_sym_GT, + ACTIONS(6745), 1, + anon_sym_COMMA, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [156541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_COMMA, + ACTIONS(6749), 1, + anon_sym_RBRACE, + STATE(3770), 1, + aux_sym_export_clause_repeat1, + [156554] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3815), 1, + ACTIONS(6751), 1, anon_sym_RPAREN, - STATE(3221), 1, + STATE(3620), 1, aux_sym_array_repeat1, - [132920] = 4, + [156567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + anon_sym_SQUOTE, + STATE(4206), 1, + sym_string, + [156580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6753), 1, + anon_sym_COMMA, + ACTIONS(6756), 1, + anon_sym_RBRACE, + STATE(3746), 1, + aux_sym_named_imports_repeat1, + [156593] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6758), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [156602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6708), 1, + anon_sym_RBRACE, + STATE(3815), 1, + aux_sym_object_repeat1, + [156615] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3815), 1, + ACTIONS(4773), 1, anon_sym_RPAREN, - STATE(3055), 1, + STATE(3773), 1, aux_sym_array_repeat1, - [132933] = 2, + [156628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6155), 3, - sym__automatic_semicolon, + ACTIONS(457), 1, anon_sym_COMMA, - anon_sym_SEMI, - [132942] = 4, + ACTIONS(4773), 1, + anon_sym_RPAREN, + STATE(3620), 1, + aux_sym_array_repeat1, + [156641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_DQUOTE, - ACTIONS(2829), 1, - anon_sym_SQUOTE, - STATE(3684), 1, - sym_string, - [132955] = 4, + ACTIONS(6760), 1, + anon_sym_LBRACE, + ACTIONS(6173), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156652] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3881), 1, - anon_sym_RPAREN, - STATE(3244), 1, + ACTIONS(6762), 1, + anon_sym_RBRACK, + STATE(3620), 1, aux_sym_array_repeat1, - [132968] = 4, + [156665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6159), 1, + ACTIONS(6764), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [156678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_LT, + ACTIONS(6766), 1, + anon_sym_EQ, + STATE(4268), 1, + sym_type_parameters, + [156691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [156704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1792), 1, + anon_sym_LBRACE, + ACTIONS(1790), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [156715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3015), 1, + anon_sym_GT, + ACTIONS(6770), 1, + anon_sym_COMMA, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [156728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4731), 1, + anon_sym_LBRACE, + ACTIONS(4733), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [156739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4693), 1, + anon_sym_RBRACK, + STATE(3802), 1, + aux_sym_array_repeat1, + [156752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4693), 1, + anon_sym_RBRACK, + STATE(3620), 1, + aux_sym_array_repeat1, + [156765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6772), 1, + anon_sym_COMMA, + ACTIONS(6775), 1, anon_sym_RBRACK, - STATE(3226), 1, + STATE(3761), 1, aux_sym__tuple_type_body_repeat1, - [132981] = 4, + [156778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, - anon_sym_extends, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - [132994] = 4, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4797), 1, + anon_sym_RPAREN, + STATE(3620), 1, + aux_sym_array_repeat1, + [156791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, - anon_sym_extends, - [133007] = 4, + ACTIONS(5736), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [156800] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3881), 1, + ACTIONS(4797), 1, anon_sym_RPAREN, - STATE(3055), 1, + STATE(3786), 1, aux_sym_array_repeat1, - [133020] = 4, + [156813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(5114), 1, + ACTIONS(6777), 1, + anon_sym_LBRACE, + ACTIONS(6261), 2, anon_sym_extends, - [133033] = 4, + anon_sym_LBRACE_PIPE, + [156824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_extends, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - [133046] = 4, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4753), 1, + anon_sym_RPAREN, + STATE(3777), 1, + aux_sym_array_repeat1, + [156837] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6163), 1, + ACTIONS(4753), 1, anon_sym_RPAREN, - STATE(3055), 1, + STATE(3620), 1, aux_sym_array_repeat1, - [133059] = 2, + [156850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 3, + ACTIONS(6779), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [133068] = 4, + [156859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6781), 1, + anon_sym_as, + ACTIONS(6783), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [156870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(6311), 1, + anon_sym_RBRACE, + ACTIONS(6785), 1, + anon_sym_COMMA, + STATE(3820), 1, + aux_sym_export_clause_repeat1, + [156883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6787), 1, + anon_sym_COMMA, + ACTIONS(6789), 1, anon_sym_GT, - ACTIONS(6167), 1, + STATE(3780), 1, + aux_sym_type_parameters_repeat1, + [156896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, anon_sym_COMMA, - STATE(3256), 1, + ACTIONS(4787), 1, + anon_sym_RPAREN, + STATE(3620), 1, + aux_sym_array_repeat1, + [156909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(6791), 1, + anon_sym_RPAREN, + STATE(3620), 1, + aux_sym_array_repeat1, + [156922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4787), 1, + anon_sym_RPAREN, + STATE(3744), 1, + aux_sym_array_repeat1, + [156935] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6017), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(6793), 1, + anon_sym_COMMA, + STATE(3775), 1, aux_sym_implements_clause_repeat1, - [133081] = 4, + [156948] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6796), 1, + sym_identifier, + STATE(2338), 1, + sym_decorator_member_expression, + STATE(2460), 1, + sym_decorator_call_expression, + [156961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(6798), 1, anon_sym_RPAREN, - ACTIONS(6169), 1, + STATE(3620), 1, + aux_sym_array_repeat1, + [156974] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, anon_sym_COMMA, - STATE(3269), 1, - aux_sym_formal_parameters_repeat1, - [133094] = 4, + ACTIONS(6800), 1, + anon_sym_RBRACK, + STATE(3791), 1, + aux_sym__tuple_type_body_repeat1, + [156987] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4779), 1, + anon_sym_RBRACK, + STATE(3752), 1, + aux_sym_array_repeat1, + [157000] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COMMA, + ACTIONS(6804), 1, + anon_sym_GT, + STATE(3806), 1, + aux_sym_type_parameters_repeat1, + [157013] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_GT, + ACTIONS(6806), 1, + anon_sym_COMMA, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [157026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6808), 1, + anon_sym_RBRACE, + STATE(3883), 1, + aux_sym_object_repeat1, + [157039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6017), 1, + anon_sym_GT, + ACTIONS(6810), 1, + anon_sym_COMMA, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [157052] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3833), 1, + ACTIONS(4807), 1, anon_sym_RPAREN, - STATE(3055), 1, + STATE(3915), 1, aux_sym_array_repeat1, - [133107] = 4, + [157065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(457), 1, + anon_sym_COMMA, + ACTIONS(4807), 1, + anon_sym_RPAREN, + STATE(3620), 1, + aux_sym_array_repeat1, + [157078] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6171), 1, + ACTIONS(6813), 1, + anon_sym_RPAREN, + STATE(3620), 1, + aux_sym_array_repeat1, + [157091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, + anon_sym_COMMA, + ACTIONS(6815), 1, anon_sym_RBRACK, - STATE(3413), 1, + STATE(3761), 1, aux_sym__tuple_type_body_repeat1, - [133120] = 4, + [157104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 1, + ACTIONS(6817), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6804), 1, + anon_sym_GT, + ACTIONS(6819), 1, + sym_identifier, + STATE(3969), 1, + sym_type_parameter, + [157126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6821), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [157139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, + anon_sym_COMMA, + ACTIONS(6823), 1, + anon_sym_RBRACK, + STATE(3761), 1, + aux_sym__tuple_type_body_repeat1, + [157152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6821), 1, anon_sym_RBRACE, - ACTIONS(6173), 1, + STATE(3753), 1, + aux_sym_object_repeat1, + [157165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, anon_sym_COMMA, - STATE(3419), 1, - aux_sym_enum_body_repeat1, - [133133] = 4, + ACTIONS(6825), 1, + anon_sym_RBRACK, + STATE(3834), 1, + aux_sym__tuple_type_body_repeat1, + [157178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(5104), 1, - anon_sym_extends, - [133146] = 3, + ACTIONS(6827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157187] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6829), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [157196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 1, - anon_sym_as, - ACTIONS(6177), 2, + ACTIONS(113), 1, anon_sym_COMMA, + ACTIONS(6808), 1, anon_sym_RBRACE, - [133157] = 4, + STATE(3891), 1, + aux_sym_object_repeat1, + [157209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6179), 1, + ACTIONS(2913), 1, + anon_sym_GT, + ACTIONS(6831), 1, anon_sym_COMMA, - ACTIONS(6181), 1, - anon_sym_RBRACE, - STATE(3243), 1, - aux_sym_export_clause_repeat1, - [133170] = 4, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [157222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(6833), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6183), 1, + anon_sym_SEMI, + [157231] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, + anon_sym_COMMA, + ACTIONS(6835), 1, anon_sym_RBRACK, - STATE(3413), 1, + STATE(3761), 1, aux_sym__tuple_type_body_repeat1, - [133183] = 4, + [157244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 1, - anon_sym_RPAREN, - ACTIONS(6185), 1, + ACTIONS(6837), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3269), 1, - aux_sym_formal_parameters_repeat1, - [133196] = 4, + anon_sym_SEMI, + [157253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6187), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [133209] = 4, + ACTIONS(6839), 1, + anon_sym_LPAREN, + ACTIONS(6841), 1, + anon_sym_await, + STATE(41), 1, + sym__for_header, + [157266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6189), 1, + ACTIONS(6843), 1, anon_sym_RBRACK, - STATE(3265), 1, - aux_sym__tuple_type_body_repeat1, - [133222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6191), 1, - anon_sym_GT, - [133235] = 2, + STATE(3620), 1, + aux_sym_array_repeat1, + [157279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6193), 3, + ACTIONS(6845), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [133244] = 4, + [157288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, - sym_identifier, - ACTIONS(6197), 1, - anon_sym_GT, - STATE(3441), 1, - sym_type_parameter, - [133257] = 3, + ACTIONS(6847), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, - anon_sym_as, - ACTIONS(6201), 2, + ACTIONS(6849), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [133268] = 4, + anon_sym_SEMI, + [157306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4916), 1, - anon_sym_extends, - [133281] = 2, - ACTIONS(4902), 1, + ACTIONS(6851), 1, + anon_sym_COMMA, + ACTIONS(6854), 1, + anon_sym_GT, + STATE(3806), 1, + aux_sym_type_parameters_repeat1, + [157319] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [133290] = 4, + ACTIONS(6856), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(727), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(2911), 1, - sym_object_type, - [133303] = 4, + ACTIONS(6858), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 1, - anon_sym_GT, - ACTIONS(6203), 1, + ACTIONS(6860), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3256), 1, - aux_sym_implements_clause_repeat1, - [133316] = 4, + anon_sym_SEMI, + [157346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 1, - anon_sym_RBRACE, - ACTIONS(6205), 1, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(3288), 1, - aux_sym_export_clause_repeat1, - [133329] = 4, + ACTIONS(6862), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [157359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(4765), 3, anon_sym_COMMA, - ACTIONS(6207), 1, anon_sym_RPAREN, - STATE(3055), 1, - aux_sym_array_repeat1, - [133342] = 4, + anon_sym_RBRACK, + [157368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6864), 1, + anon_sym_RBRACE, + STATE(3854), 1, + aux_sym_object_repeat1, + [157381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4889), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5943), 1, anon_sym_extends, - [133355] = 4, + [157394] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6209), 1, + ACTIONS(6864), 1, anon_sym_RBRACE, - STATE(3422), 1, + STATE(3891), 1, aux_sym_object_repeat1, - [133368] = 4, + [157407] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6209), 1, + ACTIONS(6866), 1, anon_sym_RBRACE, - STATE(3266), 1, + STATE(3891), 1, aux_sym_object_repeat1, - [133381] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4684), 1, - anon_sym_RBRACE, - ACTIONS(6211), 1, - anon_sym_COMMA, - STATE(3419), 1, - aux_sym_enum_body_repeat1, - [133394] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4040), 1, - anon_sym_extends, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - [133407] = 4, + [157420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6213), 1, + ACTIONS(2160), 1, + anon_sym_LBRACE, + ACTIONS(6868), 1, anon_sym_LPAREN, - ACTIONS(6215), 1, - anon_sym_await, - STATE(50), 1, - sym__for_header, - [133420] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_GT, - ACTIONS(6217), 1, - anon_sym_COMMA, - STATE(3256), 1, - aux_sym_implements_clause_repeat1, - [133433] = 4, + STATE(653), 1, + sym_statement_block, + [157433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, + ACTIONS(5157), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(5252), 1, anon_sym_COLON, - ACTIONS(6219), 1, + ACTIONS(6870), 1, anon_sym_GT, - [133446] = 3, + [157446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6221), 1, - anon_sym_LBRACE, - ACTIONS(5631), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [133457] = 4, + ACTIONS(5073), 1, + anon_sym_RBRACE, + ACTIONS(6872), 1, + anon_sym_COMMA, + STATE(3929), 1, + aux_sym_enum_body_repeat1, + [157459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 1, - anon_sym_GT, - ACTIONS(6223), 1, + ACTIONS(4851), 1, + anon_sym_RPAREN, + ACTIONS(6874), 1, anon_sym_COMMA, - STATE(3256), 1, - aux_sym_implements_clause_repeat1, - [133470] = 3, + STATE(3875), 1, + aux_sym_formal_parameters_repeat1, + [157472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6225), 1, - sym_identifier, - ACTIONS(6227), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [133481] = 4, + ACTIONS(6876), 1, + anon_sym_COMMA, + ACTIONS(6879), 1, + anon_sym_RBRACE, + STATE(3820), 1, + aux_sym_export_clause_repeat1, + [157485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_GT, - ACTIONS(6229), 1, + ACTIONS(2869), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(6881), 1, anon_sym_COMMA, - STATE(3256), 1, + STATE(3775), 1, aux_sym_implements_clause_repeat1, - [133494] = 4, + [157498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(4851), 1, + anon_sym_RPAREN, + ACTIONS(6874), 1, anon_sym_COMMA, - ACTIONS(6232), 1, - anon_sym_RBRACK, - STATE(3231), 1, - aux_sym__tuple_type_body_repeat1, - [133507] = 4, + STATE(3879), 1, + aux_sym_formal_parameters_repeat1, + [157511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(6883), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [157520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6234), 1, + ACTIONS(6885), 1, anon_sym_RBRACK, - STATE(3413), 1, - aux_sym__tuple_type_body_repeat1, - [133520] = 3, + STATE(3620), 1, + aux_sym_array_repeat1, + [157533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_LBRACE, - ACTIONS(3879), 2, + ACTIONS(4873), 1, + anon_sym_RPAREN, + ACTIONS(6887), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [133531] = 3, + STATE(3908), 1, + aux_sym_formal_parameters_repeat1, + [157546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6236), 1, - sym_identifier, - ACTIONS(6238), 2, + ACTIONS(6889), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [133542] = 4, + [157555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6240), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [133555] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(5673), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [133564] = 4, + ACTIONS(4729), 1, + anon_sym_RBRACK, + STATE(3859), 1, + aux_sym_array_repeat1, + [157568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, + ACTIONS(6239), 1, anon_sym_COMMA, - ACTIONS(5751), 1, + ACTIONS(6241), 1, anon_sym_RBRACE, - STATE(3227), 1, + STATE(3740), 1, aux_sym_enum_body_repeat1, - [133577] = 2, + [157581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 3, + ACTIONS(6891), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [133586] = 4, + [157590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6244), 1, + ACTIONS(4729), 1, anon_sym_RBRACK, - STATE(3413), 1, - aux_sym__tuple_type_body_repeat1, - [133599] = 4, + STATE(3620), 1, + aux_sym_array_repeat1, + [157603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 1, + ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6249), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [133612] = 2, + ACTIONS(4799), 1, + anon_sym_RPAREN, + STATE(3866), 1, + aux_sym_array_repeat1, + [157616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6251), 3, + ACTIONS(6893), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133621] = 2, + [157625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6253), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133630] = 4, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_GT, + [157638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6255), 1, + ACTIONS(6700), 1, anon_sym_COMMA, - ACTIONS(6258), 1, - anon_sym_RPAREN, - STATE(3269), 1, - aux_sym_formal_parameters_repeat1, - [133643] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6260), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [133652] = 4, + ACTIONS(6897), 1, + anon_sym_RBRACK, + STATE(3761), 1, + aux_sym__tuple_type_body_repeat1, + [157651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6262), 1, - anon_sym_COMMA, - ACTIONS(6264), 1, + ACTIONS(4817), 1, anon_sym_RPAREN, - STATE(3383), 1, + ACTIONS(6899), 1, + anon_sym_COMMA, + STATE(3875), 1, aux_sym_formal_parameters_repeat1, - [133665] = 2, - ACTIONS(4902), 1, + [157664] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [133674] = 4, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + anon_sym_GT, + [157677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 1, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(6903), 1, anon_sym_GT, - ACTIONS(6266), 1, - anon_sym_COMMA, - STATE(3256), 1, - aux_sym_implements_clause_repeat1, - [133687] = 2, + STATE(3969), 1, + sym_type_parameter, + [157690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 3, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2985), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [133696] = 4, + STATE(3340), 1, + sym_object_type, + [157703] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(6291), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [157712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(6243), 1, anon_sym_COMMA, - ACTIONS(3860), 1, - anon_sym_RBRACK, - STATE(3372), 1, - aux_sym_array_repeat1, - [133709] = 4, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(3818), 1, + aux_sym_enum_body_repeat1, + [157725] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3860), 1, - anon_sym_RBRACK, - STATE(3055), 1, + ACTIONS(4799), 1, + anon_sym_RPAREN, + STATE(3620), 1, aux_sym_array_repeat1, - [133722] = 2, + [157738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 3, - sym__automatic_semicolon, + ACTIONS(6903), 1, + anon_sym_GT, + ACTIONS(6905), 1, anon_sym_COMMA, - anon_sym_SEMI, - [133731] = 4, + STATE(3806), 1, + aux_sym_type_parameters_repeat1, + [157751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, - sym_identifier, - STATE(2088), 1, - sym_decorator_member_expression, - STATE(2133), 1, - sym_decorator_call_expression, - [133744] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(3667), 3, + ACTIONS(525), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1068), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [133753] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RPAREN, - STATE(3055), 1, - aux_sym_array_repeat1, - [133766] = 2, + STATE(683), 1, + sym_object_type, + [157764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6272), 3, + ACTIONS(6907), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133775] = 4, + [157773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, + ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6276), 1, - anon_sym_GT, - STATE(3353), 1, - aux_sym_type_parameters_repeat1, - [133788] = 4, + ACTIONS(4801), 1, + anon_sym_RBRACK, + STATE(3620), 1, + aux_sym_array_repeat1, + [157786] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3867), 1, + ACTIONS(4671), 1, anon_sym_RPAREN, - STATE(3364), 1, + STATE(3886), 1, aux_sym_array_repeat1, - [133801] = 4, + [157799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6278), 1, + ACTIONS(2981), 1, anon_sym_GT, - [133814] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6280), 3, - sym__automatic_semicolon, + ACTIONS(6909), 1, anon_sym_COMMA, - anon_sym_SEMI, - [133823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(5811), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [133834] = 4, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [157812] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6284), 1, + ACTIONS(4671), 1, anon_sym_RPAREN, - STATE(3055), 1, + STATE(3620), 1, aux_sym_array_repeat1, - [133847] = 4, + [157825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(4873), 1, + anon_sym_RPAREN, + ACTIONS(6887), 1, anon_sym_COMMA, - ACTIONS(6289), 1, - anon_sym_RBRACE, - STATE(3288), 1, - aux_sym_export_clause_repeat1, - [133860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 1, - anon_sym_AMP, - ACTIONS(4889), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_extends, - [133873] = 4, + STATE(3875), 1, + aux_sym_formal_parameters_repeat1, + [157838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6291), 1, - anon_sym_RBRACK, - STATE(3413), 1, - aux_sym__tuple_type_body_repeat1, - [133886] = 2, + ACTIONS(6911), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [157851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 3, + ACTIONS(5652), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [133895] = 4, + [157860] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6293), 1, + ACTIONS(6913), 1, anon_sym_RBRACE, - STATE(3329), 1, + STATE(3891), 1, aux_sym_object_repeat1, - [133908] = 2, + [157873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 3, - sym__automatic_semicolon, + ACTIONS(6700), 1, anon_sym_COMMA, - anon_sym_SEMI, - [133917] = 4, + ACTIONS(6915), 1, + anon_sym_RBRACK, + STATE(3761), 1, + aux_sym__tuple_type_body_repeat1, + [157886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 1, - anon_sym_GT, - ACTIONS(6297), 1, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(3256), 1, - aux_sym_implements_clause_repeat1, - [133930] = 2, - ACTIONS(4902), 1, + ACTIONS(6917), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [157899] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 3, - anon_sym_LBRACE, + ACTIONS(1987), 1, anon_sym_LT, - sym_jsx_text, - [133939] = 2, + ACTIONS(6919), 1, + anon_sym_EQ, + STATE(4420), 1, + sym_type_parameters, + [157912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 3, - sym__automatic_semicolon, + ACTIONS(2726), 3, anon_sym_COMMA, - anon_sym_SEMI, - [133948] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + [157921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6301), 3, - sym__automatic_semicolon, + ACTIONS(6289), 1, + anon_sym_RBRACE, + ACTIONS(6921), 1, anon_sym_COMMA, + STATE(3746), 1, + aux_sym_named_imports_repeat1, + [157934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_DOT, + ACTIONS(6923), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [133957] = 4, + [157945] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6303), 1, + ACTIONS(6925), 1, anon_sym_RBRACK, - STATE(3055), 1, + STATE(3620), 1, aux_sym_array_repeat1, - [133970] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6293), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [133983] = 4, + [157958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 1, - anon_sym_RPAREN, - ACTIONS(6305), 1, + ACTIONS(5824), 1, anon_sym_COMMA, - STATE(3232), 1, - aux_sym_formal_parameters_repeat1, - [133996] = 4, + ACTIONS(6927), 1, + anon_sym_LBRACE, + STATE(3705), 1, + aux_sym_implements_clause_repeat1, + [157971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 1, - anon_sym_RPAREN, - ACTIONS(6305), 1, - anon_sym_COMMA, - STATE(3269), 1, - aux_sym_formal_parameters_repeat1, - [134009] = 2, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6929), 1, + anon_sym_GT, + [157984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 3, + ACTIONS(6931), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(6309), 1, - anon_sym_EQ, - STATE(3788), 1, - sym_type_parameters, - [134031] = 4, + [157993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6311), 1, + ACTIONS(6933), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6313), 1, - anon_sym_RBRACE, - STATE(3337), 1, - aux_sym_named_imports_repeat1, - [134044] = 2, + anon_sym_SEMI, + [158002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 3, + ACTIONS(6935), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134053] = 2, + [158011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6315), 3, + ACTIONS(6421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134062] = 4, + [158020] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3871), 1, - anon_sym_RBRACK, - STATE(3330), 1, + ACTIONS(6937), 1, + anon_sym_RPAREN, + STATE(3620), 1, aux_sym_array_repeat1, - [134075] = 4, + [158033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(3093), 1, + anon_sym_GT, + ACTIONS(6939), 1, anon_sym_COMMA, - ACTIONS(3871), 1, - anon_sym_RBRACK, - STATE(3055), 1, - aux_sym_array_repeat1, - [134088] = 2, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [158046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 3, + ACTIONS(6941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6319), 1, - anon_sym_EQ, - ACTIONS(6321), 1, - anon_sym_COMMA, - ACTIONS(6323), 1, - anon_sym_from, - [134110] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(3671), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [134119] = 2, + [158055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 3, + ACTIONS(6943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134128] = 2, - ACTIONS(4902), 1, + [158064] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 3, + ACTIONS(677), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2985), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [134137] = 4, + STATE(3424), 1, + sym_object_type, + [158077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6327), 1, - sym_identifier, - ACTIONS(6329), 1, - anon_sym_require, - STATE(3336), 1, - sym_nested_identifier, - [134150] = 2, + ACTIONS(1096), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6331), 3, + ACTIONS(6945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134159] = 4, + [158095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6333), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [134172] = 4, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(6947), 1, + anon_sym_GT, + STATE(3969), 1, + sym_type_parameter, + [158108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1071), 1, + ACTIONS(5624), 3, anon_sym_LBRACE, - STATE(671), 1, - sym_object_type, - [134185] = 4, + anon_sym_COLON, + anon_sym_EQ_GT, + [158117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(6949), 1, anon_sym_COMMA, - ACTIONS(6335), 1, + ACTIONS(6952), 1, anon_sym_RPAREN, - STATE(3055), 1, - aux_sym_array_repeat1, - [134198] = 2, + STATE(3875), 1, + aux_sym_formal_parameters_repeat1, + [158130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 3, - sym__automatic_semicolon, + ACTIONS(1796), 1, + anon_sym_LBRACE, + ACTIONS(1794), 2, anon_sym_COMMA, - anon_sym_SEMI, - [134207] = 2, + anon_sym_LBRACE_PIPE, + [158141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6339), 3, - sym__automatic_semicolon, + ACTIONS(6700), 1, anon_sym_COMMA, - anon_sym_SEMI, - [134216] = 2, + ACTIONS(6954), 1, + anon_sym_RBRACK, + STATE(3787), 1, + aux_sym__tuple_type_body_repeat1, + [158154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 3, - sym__automatic_semicolon, + ACTIONS(6700), 1, anon_sym_COMMA, - anon_sym_SEMI, - [134225] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6343), 1, - anon_sym_LPAREN, - ACTIONS(6345), 1, - anon_sym_await, - STATE(33), 1, - sym__for_header, - [134238] = 3, + ACTIONS(6956), 1, + anon_sym_RBRACK, + STATE(3906), 1, + aux_sym__tuple_type_body_repeat1, + [158167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LBRACE, - ACTIONS(1757), 2, + ACTIONS(4893), 1, + anon_sym_RPAREN, + ACTIONS(6958), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [134249] = 4, + STATE(3875), 1, + aux_sym_formal_parameters_repeat1, + [158180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6960), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6347), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [134262] = 4, + anon_sym_SEMI, + [158189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6349), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [134275] = 2, - ACTIONS(3), 1, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(6962), 1, + anon_sym_GT, + STATE(3969), 1, + sym_type_parameter, + [158202] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5182), 3, + ACTIONS(3913), 3, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [134284] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2077), 1, - anon_sym_while, - ACTIONS(6351), 1, - anon_sym_else, - STATE(655), 1, - sym_else_clause, - [134297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134306] = 4, + anon_sym_LT, + sym_jsx_text, + [158211] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6355), 1, + ACTIONS(6964), 1, anon_sym_RBRACE, - STATE(3266), 1, + STATE(3891), 1, aux_sym_object_repeat1, - [134319] = 4, + [158224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6966), 1, + anon_sym_LBRACE, + ACTIONS(6227), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN, + ACTIONS(6970), 1, + anon_sym_await, + STATE(55), 1, + sym__for_header, + [158248] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6357), 1, - anon_sym_RBRACK, - STATE(3055), 1, + ACTIONS(6972), 1, + anon_sym_RPAREN, + STATE(3620), 1, aux_sym_array_repeat1, - [134332] = 2, + [158261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 3, + ACTIONS(6974), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134341] = 2, + [158270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 3, + ACTIONS(6976), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134350] = 2, + [158279] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(3909), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [158288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 3, + ACTIONS(6978), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [134359] = 3, + anon_sym_SEMI, + [158297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, - anon_sym_LBRACE, - ACTIONS(1773), 2, + ACTIONS(6980), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [134370] = 3, + ACTIONS(6983), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [158310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_LBRACE, - ACTIONS(1765), 2, + ACTIONS(6985), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [134381] = 3, + ACTIONS(6987), 1, + anon_sym_RPAREN, + STATE(3724), 1, + aux_sym_formal_parameters_repeat1, + [158323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(5566), 1, anon_sym_DOT, - ACTIONS(6363), 2, + ACTIONS(6989), 2, sym__automatic_semicolon, anon_sym_SEMI, - [134392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5825), 1, - anon_sym_RBRACE, - ACTIONS(6365), 1, - anon_sym_COMMA, - STATE(3408), 1, - aux_sym_named_imports_repeat1, - [134405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6367), 1, - anon_sym_LPAREN, - ACTIONS(6369), 1, - anon_sym_await, - STATE(53), 1, - sym__for_header, - [134418] = 2, + [158334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6371), 3, - sym__automatic_semicolon, + ACTIONS(1800), 1, + anon_sym_LBRACE, + ACTIONS(1798), 2, anon_sym_COMMA, - anon_sym_SEMI, - [134427] = 2, - ACTIONS(3), 1, + anon_sym_LBRACE_PIPE, + [158345] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5222), 3, + ACTIONS(6991), 3, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [134436] = 2, + anon_sym_LT, + sym_jsx_text, + [158354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134445] = 2, - ACTIONS(4902), 1, + ACTIONS(6993), 1, + sym_identifier, + ACTIONS(6995), 1, + anon_sym_require, + STATE(3858), 1, + sym_nested_identifier, + [158367] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(3683), 3, + ACTIONS(3871), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [134454] = 3, + [158376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1769), 2, + ACTIONS(1802), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [134465] = 4, - ACTIONS(3), 1, + [158387] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(6157), 1, - anon_sym_COMMA, - ACTIONS(6375), 1, - anon_sym_RBRACK, - STATE(3258), 1, - aux_sym__tuple_type_body_repeat1, - [134478] = 2, - ACTIONS(3), 1, + ACTIONS(3743), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [158396] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(6377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134487] = 4, + ACTIONS(3797), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [158405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(3269), 1, - aux_sym_formal_parameters_repeat1, - [134500] = 4, + ACTIONS(6997), 1, + anon_sym_RBRACE, + STATE(3891), 1, + aux_sym_object_repeat1, + [158418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(2837), 1, + anon_sym_GT, + ACTIONS(6999), 1, anon_sym_COMMA, - ACTIONS(3919), 1, - anon_sym_RPAREN, - STATE(3392), 1, - aux_sym_array_repeat1, - [134513] = 2, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [158431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 3, - sym__automatic_semicolon, + ACTIONS(7001), 1, + anon_sym_EQ, + ACTIONS(7003), 1, anon_sym_COMMA, - anon_sym_SEMI, - [134522] = 4, - ACTIONS(3), 1, + ACTIONS(7005), 1, + anon_sym_from, + [158444] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3919), 1, - anon_sym_RPAREN, - STATE(3055), 1, - aux_sym_array_repeat1, - [134535] = 4, - ACTIONS(3), 1, + ACTIONS(3801), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [158453] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym_COMMA, - ACTIONS(6383), 1, + ACTIONS(3805), 3, anon_sym_LBRACE, - STATE(3421), 1, - aux_sym_implements_clause_repeat1, - [134548] = 2, + anon_sym_LT, + sym_jsx_text, + [158462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6385), 3, - sym__automatic_semicolon, + ACTIONS(6700), 1, anon_sym_COMMA, - anon_sym_SEMI, - [134557] = 4, + ACTIONS(7007), 1, + anon_sym_RBRACK, + STATE(3761), 1, + aux_sym__tuple_type_body_repeat1, + [158475] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(3979), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [158484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, + ACTIONS(4929), 1, anon_sym_RPAREN, - ACTIONS(6379), 1, + ACTIONS(7009), 1, anon_sym_COMMA, - STATE(3224), 1, + STATE(3875), 1, aux_sym_formal_parameters_repeat1, - [134570] = 4, + [158497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 1, - anon_sym_GT, - ACTIONS(6387), 1, + ACTIONS(5409), 1, + anon_sym_implements, + ACTIONS(7011), 1, + anon_sym_LBRACE, + STATE(4205), 1, + sym_implements_clause, + [158510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(3401), 1, - aux_sym_type_parameters_repeat1, - [134583] = 2, + ACTIONS(6997), 1, + anon_sym_RBRACE, + STATE(3719), 1, + aux_sym_object_repeat1, + [158523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6389), 3, + ACTIONS(7013), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134592] = 4, - ACTIONS(3), 1, + [158532] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(6195), 1, - sym_identifier, - ACTIONS(6391), 1, - anon_sym_GT, - STATE(3441), 1, - sym_type_parameter, - [134605] = 4, + ACTIONS(3937), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [158541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(3187), 1, + anon_sym_GT, + ACTIONS(7015), 1, anon_sym_COMMA, - ACTIONS(3813), 1, - anon_sym_RPAREN, - STATE(3055), 1, - aux_sym_array_repeat1, - [134618] = 4, + STATE(3783), 1, + aux_sym_implements_clause_repeat1, + [158554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - ACTIONS(6393), 1, - anon_sym_LPAREN, - STATE(591), 1, - sym_statement_block, - [134631] = 4, + ACTIONS(6700), 1, + anon_sym_COMMA, + ACTIONS(7017), 1, + anon_sym_RBRACK, + STATE(3853), 1, + aux_sym__tuple_type_body_repeat1, + [158567] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(3813), 1, + ACTIONS(7019), 1, anon_sym_RPAREN, - STATE(3318), 1, + STATE(3620), 1, aux_sym_array_repeat1, - [134644] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(3703), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [134653] = 2, + [158580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6395), 3, - sym__automatic_semicolon, + ACTIONS(7003), 1, anon_sym_COMMA, - anon_sym_SEMI, - [134662] = 2, + ACTIONS(7005), 1, + anon_sym_from, + ACTIONS(7021), 1, + anon_sym_EQ, + [158593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [134671] = 4, + ACTIONS(2192), 1, + anon_sym_while, + ACTIONS(7023), 1, + anon_sym_else, + STATE(745), 1, + sym_else_clause, + [158606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(7025), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6397), 1, - anon_sym_RBRACK, - STATE(3055), 1, - aux_sym_array_repeat1, - [134684] = 4, + anon_sym_SEMI, + [158615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(7027), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6399), 1, - anon_sym_RBRACE, - STATE(3261), 1, - aux_sym_object_repeat1, - [134697] = 4, + anon_sym_SEMI, + [158624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(7029), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6401), 1, - anon_sym_RPAREN, - STATE(3055), 1, - aux_sym_array_repeat1, - [134710] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(3707), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [134719] = 4, + anon_sym_SEMI, + [158633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5815), 1, + ACTIONS(7031), 1, anon_sym_COMMA, - ACTIONS(5817), 1, + ACTIONS(7033), 1, anon_sym_RBRACE, - STATE(3248), 1, - aux_sym_enum_body_repeat1, - [134732] = 4, + STATE(3857), 1, + aux_sym_named_imports_repeat1, + [158646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6700), 1, anon_sym_COMMA, - ACTIONS(6399), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [134745] = 4, + ACTIONS(7035), 1, + anon_sym_RBRACK, + STATE(3799), 1, + aux_sym__tuple_type_body_repeat1, + [158659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(3731), 1, - sym_type_parameters, - [134758] = 4, + ACTIONS(7037), 1, + sym_identifier, + ACTIONS(7039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [158670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, + ACTIONS(7041), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6405), 1, - anon_sym_RBRACK, - STATE(3290), 1, - aux_sym__tuple_type_body_repeat1, - [134771] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(3713), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [134780] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6407), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [134789] = 4, + anon_sym_SEMI, + [158679] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, anon_sym_COMMA, - ACTIONS(6409), 1, + ACTIONS(4801), 1, anon_sym_RBRACK, - STATE(3055), 1, + STATE(3707), 1, aux_sym_array_repeat1, - [134802] = 2, + [158692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 3, + ACTIONS(7043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134811] = 4, + [158701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACK, - STATE(3055), 1, - aux_sym_array_repeat1, - [134824] = 4, + ACTIONS(7045), 1, + anon_sym_LPAREN, + ACTIONS(7047), 1, + anon_sym_await, + STATE(38), 1, + sym__for_header, + [158714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACK, - STATE(3298), 1, - aux_sym_array_repeat1, - [134837] = 3, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7051), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [158725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_LBRACE, - ACTIONS(1761), 2, + ACTIONS(6599), 1, + anon_sym_RBRACE, + ACTIONS(7053), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [134848] = 4, - ACTIONS(3), 1, + STATE(3929), 1, + aux_sym_enum_body_repeat1, + [158738] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(525), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1071), 1, + ACTIONS(7056), 3, anon_sym_LBRACE, - STATE(673), 1, - sym_object_type, - [134861] = 2, + anon_sym_LT, + sym_jsx_text, + [158747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [134870] = 4, + ACTIONS(7058), 1, + sym_identifier, + ACTIONS(7060), 1, + anon_sym_STAR, + [158757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_implements, - ACTIONS(6413), 1, - anon_sym_LBRACE, - STATE(3873), 1, - sym_implements_clause, - [134883] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4301), 1, + sym_formal_parameters, + [158767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_RPAREN, - ACTIONS(6415), 1, - anon_sym_COMMA, - STATE(3403), 1, - aux_sym_formal_parameters_repeat1, - [134896] = 4, + ACTIONS(7062), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parenthesized_expression, + [158777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, - sym_identifier, - ACTIONS(6417), 1, - anon_sym_GT, - STATE(3441), 1, - sym_type_parameter, - [134909] = 4, + ACTIONS(6529), 1, + anon_sym_from, + STATE(3960), 1, + sym__from_clause, + [158787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, - anon_sym_COMMA, - ACTIONS(6419), 1, - anon_sym_RBRACK, - STATE(3405), 1, - aux_sym__tuple_type_body_repeat1, - [134922] = 4, + ACTIONS(7062), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym_parenthesized_expression, + [158797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_RPAREN, - ACTIONS(6415), 1, - anon_sym_COMMA, - STATE(3269), 1, - aux_sym_formal_parameters_repeat1, - [134935] = 4, + ACTIONS(7064), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [158805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 1, - anon_sym_COMMA, - ACTIONS(6323), 1, - anon_sym_from, - ACTIONS(6421), 1, - anon_sym_EQ, - [134948] = 2, - ACTIONS(4902), 1, + ACTIONS(7062), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym_parenthesized_expression, + [158815] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6423), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [134957] = 4, + ACTIONS(7066), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym__for_header, + [158825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(6425), 1, - anon_sym_RBRACK, - STATE(3055), 1, - aux_sym_array_repeat1, - [134970] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4375), 1, + sym_formal_parameters, + [158835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6427), 1, + ACTIONS(3695), 1, anon_sym_LBRACE, - ACTIONS(5711), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [134981] = 4, + STATE(1798), 1, + sym_statement_block, + [158845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_DQUOTE, - ACTIONS(1015), 1, - anon_sym_SQUOTE, - STATE(3752), 1, - sym_string, - [134994] = 4, + ACTIONS(4737), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [158853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 1, - anon_sym_GT, - ACTIONS(6429), 1, - anon_sym_COMMA, - STATE(3401), 1, - aux_sym_type_parameters_repeat1, - [135007] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4377), 1, + sym_formal_parameters, + [158863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 1, - anon_sym_COMMA, - ACTIONS(6433), 1, - anon_sym_RPAREN, - STATE(3301), 1, - aux_sym_formal_parameters_repeat1, - [135020] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4305), 1, + sym_formal_parameters, + [158873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6435), 1, - anon_sym_GT, - [135033] = 4, + ACTIONS(6529), 1, + anon_sym_from, + STATE(3987), 1, + sym__from_clause, + [158883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(6437), 1, - anon_sym_RPAREN, - STATE(3055), 1, - aux_sym_array_repeat1, - [135046] = 4, + ACTIONS(3687), 1, + anon_sym_LBRACE, + STATE(1636), 1, + sym_statement_block, + [158893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6439), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [135059] = 4, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(622), 1, + sym_statement_block, + [158903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6441), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [135072] = 4, + ACTIONS(5354), 1, + anon_sym_LBRACE, + STATE(1786), 1, + sym_class_body, + [158913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, - anon_sym_GT, - ACTIONS(6443), 1, - anon_sym_COMMA, - STATE(3256), 1, - aux_sym_implements_clause_repeat1, - [135085] = 4, + ACTIONS(7068), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [158921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 1, - anon_sym_while, - ACTIONS(6445), 1, - anon_sym_else, - STATE(655), 1, - sym_else_clause, - [135098] = 4, + ACTIONS(5350), 1, + anon_sym_LBRACE, + STATE(2067), 1, + sym_class_body, + [158931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6449), 1, - anon_sym_GT, - STATE(3389), 1, - aux_sym_type_parameters_repeat1, - [135111] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4383), 1, + sym_formal_parameters, + [158941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 1, - anon_sym_GT, - ACTIONS(6451), 1, - anon_sym_COMMA, - STATE(3256), 1, - aux_sym_implements_clause_repeat1, - [135124] = 2, + ACTIONS(5342), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym_class_body, + [158951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [135133] = 4, + ACTIONS(7070), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [158959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6453), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [135146] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4384), 1, + sym_formal_parameters, + [158969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_COMMA, - ACTIONS(6458), 1, - anon_sym_GT, - STATE(3401), 1, - aux_sym_type_parameters_repeat1, - [135159] = 4, + ACTIONS(5205), 1, + anon_sym_LT, + STATE(2653), 1, + sym_type_arguments, + [158979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_RBRACK, - STATE(3055), 1, - aux_sym_array_repeat1, - [135172] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4337), 1, + sym_formal_parameters, + [158989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, - anon_sym_RPAREN, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3269), 1, - aux_sym_formal_parameters_repeat1, - [135185] = 4, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4483), 1, + sym_formal_parameters, + [158999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, + ACTIONS(7072), 2, sym_identifier, - ACTIONS(6462), 1, - anon_sym_GT, - STATE(3441), 1, - sym_type_parameter, - [135198] = 4, + sym_this, + [159007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, - anon_sym_COMMA, - ACTIONS(6464), 1, - anon_sym_RBRACK, - STATE(3413), 1, - aux_sym__tuple_type_body_repeat1, - [135211] = 4, + ACTIONS(7074), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_RBRACK, - STATE(3362), 1, - aux_sym_array_repeat1, - [135224] = 3, + ACTIONS(7062), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_parenthesized_expression, + [159025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - anon_sym_DOT, - ACTIONS(6466), 2, + ACTIONS(7076), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135235] = 4, + [159033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, - anon_sym_COMMA, - ACTIONS(6471), 1, - anon_sym_RBRACE, - STATE(3408), 1, - aux_sym_named_imports_repeat1, - [135248] = 4, + ACTIONS(5342), 1, + anon_sym_LBRACE, + STATE(1585), 1, + sym_class_body, + [159043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(7078), 2, anon_sym_COMMA, - ACTIONS(3833), 1, anon_sym_RPAREN, - STATE(3287), 1, - aux_sym_array_repeat1, - [135261] = 4, + [159051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_RBRACK, - STATE(3055), 1, - aux_sym_array_repeat1, - [135274] = 4, + ACTIONS(3687), 1, + anon_sym_LBRACE, + STATE(1581), 1, + sym_statement_block, + [159061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5248), 1, + anon_sym_COLON, + STATE(3862), 1, + sym_type_annotation, + [159071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7080), 2, anon_sym_COMMA, - ACTIONS(6473), 1, - anon_sym_RBRACE, - STATE(3393), 1, - aux_sym_object_repeat1, - [135287] = 4, + anon_sym_GT, + [159079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6475), 1, + ACTIONS(7082), 2, anon_sym_COMMA, - ACTIONS(6477), 1, anon_sym_RPAREN, - STATE(3346), 1, - aux_sym_formal_parameters_repeat1, - [135300] = 4, + [159087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_COMMA, - ACTIONS(6482), 1, - anon_sym_RBRACK, - STATE(3413), 1, - aux_sym__tuple_type_body_repeat1, - [135313] = 4, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2703), 1, + sym_formal_parameters, + [159097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_RBRACK, - STATE(3386), 1, - aux_sym_array_repeat1, - [135326] = 4, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4005), 1, + sym_statement_block, + [159107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6854), 2, anon_sym_COMMA, - ACTIONS(6473), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [135339] = 4, + anon_sym_GT, + [159115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6484), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [135352] = 2, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(531), 1, + sym_type_arguments, + [159125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135361] = 4, + ACTIONS(7062), 1, + anon_sym_LPAREN, + STATE(4165), 1, + sym_parenthesized_expression, + [159135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(7084), 2, anon_sym_COMMA, - ACTIONS(6453), 1, - anon_sym_RBRACE, - STATE(3316), 1, - aux_sym_object_repeat1, - [135374] = 4, + anon_sym_RPAREN, + [159143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_RBRACE, - ACTIONS(6486), 1, - anon_sym_COMMA, - STATE(3419), 1, - aux_sym_enum_body_repeat1, - [135387] = 2, + ACTIONS(7062), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, + [159153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135396] = 4, + ACTIONS(7086), 1, + anon_sym_LT, + STATE(1969), 1, + sym_type_arguments, + [159163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - ACTIONS(6491), 1, - anon_sym_COMMA, - STATE(3421), 1, - aux_sym_implements_clause_repeat1, - [135409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(6494), 1, - anon_sym_RBRACE, - STATE(3266), 1, - aux_sym_object_repeat1, - [135422] = 3, + STATE(1755), 1, + sym_class_body, + [159173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 1, + ACTIONS(5560), 1, sym_identifier, - ACTIONS(6498), 1, - anon_sym_STAR, - [135432] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACK, + [159183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [135440] = 3, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6929), 1, + anon_sym_GT, + [159193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2867), 1, - sym_formal_parameters, - [135450] = 2, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_GT, + [159203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [135458] = 3, + ACTIONS(3687), 1, + anon_sym_LBRACE, + STATE(1564), 1, + sym_statement_block, + [159213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 1, - sym_identifier, - STATE(3407), 1, - sym_nested_identifier, - [135468] = 3, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1765), 1, + sym_statement_block, + [159223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(7088), 1, anon_sym_LBRACE, - STATE(3634), 1, + STATE(2008), 1, sym_statement_block, - [135478] = 2, + [159233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 2, + ACTIONS(5059), 2, anon_sym_COMMA, anon_sym_RBRACE, - [135486] = 2, + [159241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 2, - anon_sym_COMMA, - anon_sym_GT, - [135494] = 3, + ACTIONS(2536), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5479), 1, anon_sym_LBRACE, - STATE(596), 1, + STATE(102), 1, sym_class_body, - [135504] = 3, + [159259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(7090), 1, anon_sym_LBRACE, - STATE(1414), 1, - sym_class_body, - [135514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [135522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2475), 1, - anon_sym_LPAREN, - STATE(1200), 1, - sym_arguments, - [135532] = 3, + STATE(748), 1, + sym_enum_body, + [159269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(113), 1, - sym_class_body, - [135542] = 2, + STATE(4023), 1, + sym_statement_block, + [159279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 2, + ACTIONS(7092), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135550] = 2, + [159287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6819), 1, + sym_identifier, + STATE(3771), 1, + sym_type_parameter, + [159297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 2, + ACTIONS(4989), 2, anon_sym_COMMA, anon_sym_RBRACE, - [135558] = 3, + [159305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1786), 1, - sym_class_body, - [135568] = 2, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(6929), 1, + anon_sym_GT, + [159315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135576] = 2, + ACTIONS(6983), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 2, + ACTIONS(2786), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135584] = 2, + [159331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7088), 1, + anon_sym_LBRACE, + STATE(2051), 1, + sym_statement_block, + [159341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1832), 1, + sym_statement_block, + [159351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1795), 1, + sym_statement_block, + [159361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6458), 2, + ACTIONS(6599), 2, anon_sym_COMMA, - anon_sym_GT, - [135592] = 3, + anon_sym_RBRACE, + [159369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(1102), 1, anon_sym_LBRACE, - STATE(3451), 1, + STATE(95), 1, sym_statement_block, - [135602] = 2, + [159379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 2, + ACTIONS(2516), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135610] = 3, + [159387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1915), 1, - sym_statement_block, - [135620] = 3, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(6895), 1, + anon_sym_GT, + [159397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5440), 1, anon_sym_LBRACE, - STATE(609), 1, + STATE(716), 1, sym_class_body, - [135630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2770), 1, - sym_formal_parameters, - [135640] = 3, + [159407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3735), 1, - sym_formal_parameters, - [135650] = 3, + ACTIONS(5354), 1, + anon_sym_LBRACE, + STATE(1793), 1, + sym_class_body, + [159417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(5350), 1, anon_sym_LBRACE, - STATE(583), 1, - sym_statement_block, - [135660] = 3, + STATE(2058), 1, + sym_class_body, + [159427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(1102), 1, anon_sym_LBRACE, - ACTIONS(6508), 1, - anon_sym_is, - [135670] = 3, + STATE(99), 1, + sym_statement_block, + [159437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(3687), 1, anon_sym_LBRACE, - STATE(2779), 1, + STATE(1631), 1, sym_statement_block, - [135680] = 2, + [159447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 2, + ACTIONS(5029), 2, anon_sym_COMMA, anon_sym_RBRACE, - [135688] = 2, + [159455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 2, + ACTIONS(7094), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [135696] = 3, + anon_sym_RPAREN, + [159463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_LPAREN, - STATE(132), 1, - sym_arguments, - [135706] = 3, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4117), 1, + sym_statement_block, + [159473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6435), 1, - anon_sym_GT, - [135716] = 3, + ACTIONS(7096), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 1, + ACTIONS(5342), 1, anon_sym_LBRACE, - STATE(2864), 1, - sym_enum_body, - [135726] = 3, + STATE(1639), 1, + sym_class_body, + [159491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(3630), 1, - sym_statement_block, - [135736] = 3, + STATE(1743), 1, + sym_class_body, + [159501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(2793), 1, - sym_statement_block, - [135746] = 3, + STATE(3343), 1, + sym_class_body, + [159511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(6149), 1, - anon_sym_GT, - [135756] = 3, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4106), 1, + sym_statement_block, + [159521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(3012), 1, - sym_class_body, - [135766] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3404), 1, + sym_formal_parameters, + [159531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(5252), 1, anon_sym_COLON, - ACTIONS(6149), 1, + ACTIONS(6901), 1, anon_sym_GT, - [135776] = 3, + [159541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym__for_header, - [135786] = 2, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(6901), 1, + anon_sym_GT, + [159551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135794] = 3, + ACTIONS(5620), 1, + anon_sym_EQ_GT, + ACTIONS(7098), 1, + anon_sym_is, + [159561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(5479), 1, anon_sym_LBRACE, - STATE(1781), 1, - sym_statement_block, - [135804] = 3, + STATE(98), 1, + sym_class_body, + [159571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6516), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(672), 1, - sym_switch_body, - [135814] = 3, + STATE(1849), 1, + sym_class_body, + [159581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, - sym_identifier, - STATE(3397), 1, - sym_type_parameter, - [135824] = 2, + ACTIONS(5009), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(7100), 2, anon_sym_COMMA, anon_sym_RBRACE, - [135832] = 3, + [159597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1843), 1, + STATE(661), 1, sym_class_body, - [135842] = 3, + [159607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(6435), 1, - anon_sym_GT, - [135852] = 2, + ACTIONS(7102), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135860] = 3, + ACTIONS(5005), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, - anon_sym_from, - STATE(3540), 1, - sym__from_clause, - [135870] = 3, + ACTIONS(7104), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + [159631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(2946), 1, - sym_class_body, - [135880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135888] = 3, + STATE(4113), 1, + sym_statement_block, + [159641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - anon_sym_LT, - STATE(1299), 1, - sym_type_arguments, - [135898] = 3, + ACTIONS(5440), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_class_body, + [159651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3804), 1, - sym_formal_parameters, - [135908] = 2, + ACTIONS(7088), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym_statement_block, + [159661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 2, + ACTIONS(7106), 2, anon_sym_COMMA, - anon_sym_GT, - [135916] = 2, + anon_sym_RBRACE, + [159669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 2, - sym_identifier, - sym_this, - [135924] = 3, + ACTIONS(7108), 1, + anon_sym_LBRACE, + STATE(3455), 1, + sym_enum_body, + [159679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(5350), 1, anon_sym_LBRACE, - STATE(3538), 1, - sym_statement_block, - [135934] = 3, + STATE(2151), 1, + sym_class_body, + [159689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6870), 1, + anon_sym_GT, + [159699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7110), 1, anon_sym_LPAREN, - STATE(2376), 1, - sym_formal_parameters, - [135944] = 3, + STATE(3952), 1, + sym_parenthesized_expression, + [159709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1803), 1, - sym_class_body, - [135954] = 3, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(6870), 1, + anon_sym_GT, + [159719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(5440), 1, anon_sym_LBRACE, - STATE(1796), 1, - sym_statement_block, - [135964] = 3, + STATE(736), 1, + sym_class_body, + [159729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3466), 1, + STATE(691), 1, sym_statement_block, - [135974] = 3, + [159739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, - sym_jsx_identifier, - ACTIONS(6526), 1, - sym_identifier, - [135984] = 3, + ACTIONS(5017), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1856), 1, - sym_statement_block, - [135994] = 3, + ACTIONS(7112), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1919), 1, - sym_statement_block, - [136004] = 3, + ACTIONS(3240), 1, + anon_sym_LPAREN, + STATE(2978), 1, + sym_formal_parameters, + [159765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - STATE(1417), 1, - sym_class_body, - [136014] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4490), 1, + sym_formal_parameters, + [159775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(1980), 1, + STATE(1775), 1, sym_class_body, - [136024] = 3, + [159785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_LPAREN, - STATE(127), 1, - sym_arguments, - [136034] = 2, + ACTIONS(4534), 1, + anon_sym_COLON, + STATE(4062), 1, + sym_type_annotation, + [159795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [136042] = 3, + ACTIONS(5342), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym_class_body, + [159805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(621), 1, + STATE(4094), 1, sym_statement_block, - [136052] = 3, + [159815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, - sym_identifier, - ACTIONS(5270), 1, - anon_sym_LBRACK, - [136062] = 3, + ACTIONS(7114), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(7062), 1, anon_sym_LPAREN, - STATE(3673), 1, + STATE(46), 1, sym_parenthesized_expression, - [136072] = 3, + [159833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, - anon_sym_in, - ACTIONS(6532), 1, - anon_sym_COLON, - [136082] = 3, + ACTIONS(7088), 1, + anon_sym_LBRACE, + STATE(2135), 1, + sym_statement_block, + [159843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7090), 1, + anon_sym_LBRACE, + STATE(692), 1, + sym_enum_body, + [159853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(52), 1, - sym__for_header, - [136092] = 2, + STATE(3426), 1, + sym_formal_parameters, + [159863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6534), 2, + ACTIONS(7116), 1, sym_identifier, - sym_this, - [136100] = 3, + ACTIONS(7118), 1, + anon_sym_STAR, + [159873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(3018), 1, - sym_class_body, - [136110] = 3, + ACTIONS(7120), 2, + sym_identifier, + sym_this, + [159881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4345), 1, + ACTIONS(7062), 1, anon_sym_LPAREN, - STATE(1605), 1, - sym_arguments, - [136120] = 3, + STATE(35), 1, + sym_parenthesized_expression, + [159891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(5993), 2, anon_sym_LBRACE, - STATE(1797), 1, - sym_statement_block, - [136130] = 2, + anon_sym_EQ_GT, + [159899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [136138] = 3, + ACTIONS(3323), 1, + sym_jsx_identifier, + ACTIONS(7122), 1, + sym_identifier, + [159909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1723), 1, + STATE(3315), 1, sym_class_body, - [136148] = 2, + [159919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7062), 1, + anon_sym_LPAREN, + STATE(29), 1, + sym_parenthesized_expression, + [159929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6538), 2, + ACTIONS(6562), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [136156] = 3, + anon_sym_GT, + [159937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(5350), 1, anon_sym_LBRACE, - STATE(1927), 1, - sym_statement_block, - [136166] = 3, + STATE(2080), 1, + sym_class_body, + [159947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3833), 1, - sym_formal_parameters, - [136176] = 3, + ACTIONS(7124), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(5218), 1, anon_sym_LT, - STATE(2492), 1, + STATE(2907), 1, sym_type_arguments, - [136186] = 3, + [159965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, - sym_identifier, - ACTIONS(6544), 1, - anon_sym_STAR, - [136196] = 3, + ACTIONS(7088), 1, + anon_sym_LBRACE, + STATE(2079), 1, + sym_statement_block, + [159975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1650), 1, - sym_class_body, - [136206] = 3, + ACTIONS(7126), 1, + anon_sym_LT, + STATE(1720), 1, + sym_type_arguments, + [159985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - sym_identifier, - ACTIONS(5543), 1, - anon_sym_LBRACK, - [136216] = 3, + ACTIONS(7128), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(51), 1, - sym_parenthesized_expression, - [136226] = 3, + STATE(3317), 1, + sym_formal_parameters, + [160003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(3313), 1, + sym_formal_parameters, + [160013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(5440), 1, anon_sym_LBRACE, - STATE(1739), 1, + STATE(695), 1, sym_class_body, - [136236] = 2, + [160023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [136244] = 3, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(3381), 1, + sym_class_body, + [160033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, - [136254] = 3, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(1710), 1, + sym_statement_block, + [160043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, - anon_sym_from, - STATE(3462), 1, - sym__from_clause, - [136264] = 2, + ACTIONS(6819), 1, + sym_identifier, + STATE(3969), 1, + sym_type_parameter, + [160053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 2, + ACTIONS(7130), 2, sym_identifier, sym_this, - [136272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1801), 1, - sym_class_body, - [136282] = 2, + [160061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [136290] = 3, + ACTIONS(7132), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + [160069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(1342), 1, - sym_arguments, - [136300] = 3, + STATE(4332), 1, + sym_formal_parameters, + [160079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 1, - anon_sym_LBRACE, - STATE(2886), 1, - sym_enum_body, - [136310] = 3, + ACTIONS(6529), 1, + anon_sym_from, + STATE(4076), 1, + sym__from_clause, + [160089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(44), 1, - sym__for_header, - [136320] = 3, + STATE(4267), 1, + sym_formal_parameters, + [160099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_enum_body, - [136330] = 3, + ACTIONS(7134), 1, + anon_sym_in, + ACTIONS(7136), 1, + anon_sym_COLON, + [160109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(2783), 1, + STATE(3989), 1, sym_statement_block, - [136340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3840), 1, - sym_formal_parameters, - [136350] = 3, + [160119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, - anon_sym_LBRACE, - STATE(121), 1, - sym_statement_block, - [136360] = 3, + ACTIONS(2762), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_LPAREN, - STATE(1817), 1, - sym_arguments, - [136370] = 3, + ACTIONS(5303), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + [160137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, - anon_sym_from, - STATE(3676), 1, - sym__from_clause, - [136380] = 3, + ACTIONS(5342), 1, + anon_sym_LBRACE, + STATE(1595), 1, + sym_class_body, + [160147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(30), 1, - sym_parenthesized_expression, - [136390] = 3, + ACTIONS(5516), 1, + sym_identifier, + ACTIONS(5518), 1, + anon_sym_LBRACK, + [160157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, + ACTIONS(7062), 1, anon_sym_LPAREN, - STATE(31), 1, + STATE(40), 1, sym_parenthesized_expression, - [136400] = 3, + [160167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, - [136410] = 3, + ACTIONS(5620), 1, + anon_sym_LBRACE, + ACTIONS(7138), 1, + anon_sym_is, + [160177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4345), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(1626), 1, - sym_arguments, - [136420] = 3, + STATE(4425), 1, + sym_formal_parameters, + [160187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(3687), 1, anon_sym_LBRACE, - STATE(650), 1, - sym_class_body, - [136430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6556), 1, - anon_sym_LT, - STATE(1669), 1, - sym_type_arguments, - [136440] = 2, + STATE(1600), 1, + sym_statement_block, + [160197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [136448] = 3, + ACTIONS(7108), 1, + anon_sym_LBRACE, + STATE(3384), 1, + sym_enum_body, + [160207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, - anon_sym_COLON, - STATE(3320), 1, - sym_type_annotation, - [136458] = 3, + ACTIONS(4775), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(5564), 1, anon_sym_LBRACE, - STATE(1850), 1, + STATE(3379), 1, sym_statement_block, - [136468] = 2, + [160225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [136476] = 3, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_class_body, + [160235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6562), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(6564), 1, - anon_sym_STAR, - [136486] = 2, + STATE(3858), 1, + sym_nested_identifier, + [160245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [136494] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4423), 1, + sym_formal_parameters, + [160255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(5530), 1, + sym_identifier, + ACTIONS(5532), 1, + anon_sym_LBRACK, + [160265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(3426), 1, + STATE(659), 1, sym_statement_block, - [136504] = 3, + [160275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2923), 1, + STATE(4526), 1, sym_formal_parameters, - [136514] = 2, + [160285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [136522] = 2, + ACTIONS(5350), 1, + anon_sym_LBRACE, + STATE(2070), 1, + sym_class_body, + [160295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 2, + ACTIONS(5055), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [136530] = 2, + anon_sym_RBRACE, + [160303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 2, + ACTIONS(7142), 2, sym__automatic_semicolon, anon_sym_SEMI, - [136538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5934), 1, - anon_sym_from, - STATE(3509), 1, - sym__from_clause, - [136548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5057), 1, - anon_sym_LBRACE, - STATE(106), 1, - sym_class_body, - [136558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3737), 1, - sym_formal_parameters, - [136568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3733), 1, - sym_formal_parameters, - [136578] = 3, + [160311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5564), 1, anon_sym_LBRACE, - STATE(3019), 1, - sym_class_body, - [136588] = 3, + STATE(656), 1, + sym_statement_block, + [160321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1391), 1, + STATE(665), 1, sym_class_body, - [136598] = 2, + [160331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 2, + ACTIONS(7144), 2, sym__automatic_semicolon, anon_sym_SEMI, - [136606] = 3, + [160339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(1390), 1, + STATE(650), 1, sym_statement_block, - [136616] = 3, + [160349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(1389), 1, + STATE(3982), 1, sym_statement_block, - [136626] = 3, + [160359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(3687), 1, anon_sym_LBRACE, - STATE(3618), 1, + STATE(1605), 1, sym_statement_block, - [136636] = 3, + [160369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(7146), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(1361), 1, + STATE(647), 1, sym_statement_block, - [136646] = 3, + [160387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(5342), 1, anon_sym_LBRACE, - STATE(589), 1, - sym_statement_block, - [136656] = 3, + STATE(1607), 1, + sym_class_body, + [160397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3950), 1, - sym_formal_parameters, - [136666] = 2, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4157), 1, + sym_statement_block, + [160407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 2, + ACTIONS(5025), 2, anon_sym_COMMA, anon_sym_RBRACE, - [136674] = 3, + [160415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(7066), 1, anon_sym_LPAREN, - STATE(1778), 1, - sym_arguments, - [136684] = 3, + STATE(44), 1, + sym__for_header, + [160425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - [136694] = 3, + ACTIONS(7148), 1, + sym_identifier, + ACTIONS(7150), 1, + anon_sym_STAR, + [160435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3726), 1, + STATE(4538), 1, sym_formal_parameters, - [136704] = 3, + [160445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(6125), 1, anon_sym_LPAREN, - STATE(3689), 1, + STATE(2779), 1, sym_formal_parameters, - [136714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_class_body, - [136724] = 3, + [160455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - STATE(580), 1, + STATE(4161), 1, sym_statement_block, - [136734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(587), 1, - sym_class_body, - [136744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4749), 1, - anon_sym_LT, - STATE(465), 1, - sym_type_arguments, - [136754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5348), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [136762] = 3, + [160465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(584), 1, - sym_statement_block, - [136772] = 2, + ACTIONS(7152), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 2, + ACTIONS(5013), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [136780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - STATE(1388), 1, - sym_class_body, - [136790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6195), 1, - sym_identifier, - STATE(3282), 1, - sym_type_parameter, - [136800] = 3, + anon_sym_RBRACE, + [160481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(7066), 1, anon_sym_LPAREN, - STATE(3702), 1, - sym_formal_parameters, - [136810] = 3, + STATE(32), 1, + sym__for_header, + [160491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5479), 1, anon_sym_LBRACE, - STATE(588), 1, + STATE(115), 1, sym_class_body, - [136820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3703), 1, - sym_formal_parameters, - [136830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6278), 1, - anon_sym_GT, - [136840] = 3, + [160501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(2916), 1, + STATE(1826), 1, sym_class_body, - [136850] = 2, + [160511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [136858] = 3, + ACTIONS(5001), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3821), 1, + STATE(3214), 1, sym_formal_parameters, - [136868] = 3, + [160529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(1392), 1, + STATE(1888), 1, sym_class_body, - [136878] = 2, + [160539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [136886] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4311), 1, + sym_formal_parameters, + [160549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 1, - anon_sym_COLON, - STATE(3533), 1, - sym_type_annotation, - [136896] = 3, + ACTIONS(6775), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [160557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(7088), 1, anon_sym_LBRACE, - STATE(616), 1, + STATE(2069), 1, sym_statement_block, - [136906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(6278), 1, - anon_sym_GT, - [136916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_class_body, - [136926] = 3, + [160567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(6023), 2, anon_sym_LBRACE, - STATE(3488), 1, - sym_statement_block, - [136936] = 3, + anon_sym_EQ_GT, + [160575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3687), 1, anon_sym_LBRACE, - STATE(1383), 1, + STATE(1596), 1, sym_statement_block, - [136946] = 2, + [160585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [136954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACE, - STATE(1446), 1, - sym_class_body, - [136964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, + ACTIONS(3695), 1, anon_sym_LBRACE, - STATE(2943), 1, - sym_class_body, - [136974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1714), 1, + STATE(1889), 1, sym_statement_block, - [136984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, - [136994] = 3, + [160595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 1, + ACTIONS(6021), 2, anon_sym_LBRACE, - STATE(626), 1, - sym_enum_body, - [137004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3694), 1, - sym_formal_parameters, - [137014] = 3, + anon_sym_EQ_GT, + [160603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3971), 1, + STATE(4310), 1, sym_formal_parameters, - [137024] = 3, + [160613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3973), 1, - sym_formal_parameters, - [137034] = 3, + ACTIONS(5350), 1, + anon_sym_LBRACE, + STATE(2041), 1, + sym_class_body, + [160623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2972), 1, - sym_formal_parameters, - [137044] = 3, + ACTIONS(7154), 1, + sym_identifier, + ACTIONS(7156), 1, + anon_sym_STAR, + [160633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(7088), 1, anon_sym_LBRACE, - STATE(1929), 1, - sym_class_body, - [137054] = 3, + STATE(2068), 1, + sym_statement_block, + [160643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(2960), 1, + STATE(1892), 1, sym_class_body, - [137064] = 3, + [160653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, + ACTIONS(7158), 2, sym_identifier, - STATE(3441), 1, - sym_type_parameter, - [137074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_statement_block, - [137084] = 3, + sym_this, + [160661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3983), 1, + STATE(3218), 1, sym_formal_parameters, - [137094] = 3, + [160671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3986), 1, - sym_formal_parameters, - [137104] = 3, + ACTIONS(7160), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(2963), 1, - sym_formal_parameters, - [137114] = 3, + ACTIONS(5342), 1, + anon_sym_LBRACE, + STATE(1590), 1, + sym_class_body, + [160689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6819), 1, sym_identifier, - ACTIONS(5579), 1, - anon_sym_LBRACK, - [137124] = 3, + STATE(3736), 1, + sym_type_parameter, + [160699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(7162), 2, anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - [137134] = 3, + anon_sym_BQUOTE, + [160707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1434), 1, - sym_statement_block, - [137144] = 2, + STATE(3299), 1, + sym_class_body, + [160717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6574), 2, + ACTIONS(4767), 2, sym__automatic_semicolon, anon_sym_SEMI, - [137152] = 3, + [160725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2993), 1, + STATE(4394), 1, sym_formal_parameters, - [137162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6576), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [137170] = 3, + [160735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3995), 1, - sym_formal_parameters, - [137180] = 3, + ACTIONS(4633), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2785), 1, + STATE(4395), 1, sym_formal_parameters, - [137190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(3535), 1, - sym_statement_block, - [137200] = 3, + [160753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3997), 1, + STATE(4386), 1, sym_formal_parameters, - [137210] = 3, + [160763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(3437), 1, - sym_statement_block, - [137220] = 3, + STATE(1696), 1, + sym_class_body, + [160773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(5564), 1, anon_sym_LBRACE, - STATE(1429), 1, + STATE(3235), 1, sym_statement_block, - [137230] = 3, + [160783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(7088), 1, anon_sym_LBRACE, - STATE(1412), 1, + STATE(2013), 1, sym_statement_block, - [137240] = 3, + [160793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1946), 1, + STATE(3294), 1, sym_class_body, - [137250] = 3, + [160803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1708), 1, - sym_class_body, - [137260] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4413), 1, + sym_formal_parameters, + [160813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_LBRACE, - STATE(1948), 1, - sym_statement_block, - [137270] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4405), 1, + sym_formal_parameters, + [160823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(5564), 1, anon_sym_LBRACE, - STATE(1952), 1, + STATE(658), 1, sym_statement_block, - [137280] = 3, + [160833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5639), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2452), 1, + STATE(3292), 1, sym_formal_parameters, - [137290] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4631), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [137298] = 3, + [160843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1982), 1, - sym_class_body, - [137308] = 3, + ACTIONS(7164), 1, + anon_sym_LT, + STATE(1488), 1, + sym_type_arguments, + [160853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1926), 1, + STATE(3280), 1, sym_class_body, - [137318] = 3, + [160863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(572), 1, + STATE(657), 1, sym_class_body, - [137328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(6219), 1, - anon_sym_GT, - [137338] = 3, + [160873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(29), 1, - sym_parenthesized_expression, - [137348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_statement_block, - [137358] = 3, + STATE(4286), 1, + sym_formal_parameters, + [160883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6219), 1, - anon_sym_GT, - [137368] = 2, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4307), 1, + sym_formal_parameters, + [160893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6249), 2, + ACTIONS(5051), 2, anon_sym_COMMA, anon_sym_RBRACE, - [137376] = 3, + [160901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(43), 1, - sym_parenthesized_expression, - [137386] = 3, + STATE(4360), 1, + sym_formal_parameters, + [160911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 1, - sym_identifier, - STATE(3336), 1, - sym_nested_identifier, - [137396] = 2, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4339), 1, + sym_formal_parameters, + [160921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [137404] = 2, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4019), 1, + sym_statement_block, + [160931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 2, + ACTIONS(4985), 2, anon_sym_COMMA, anon_sym_RBRACE, - [137412] = 3, + [160939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(3464), 1, - sym_parenthesized_expression, - [137422] = 3, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(4036), 1, + sym_statement_block, + [160949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LBRACE, + STATE(3176), 1, + sym_statement_block, + [160959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(1206), 1, - sym_arguments, - [137432] = 3, + STATE(3200), 1, + sym_formal_parameters, + [160969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(7166), 1, anon_sym_LBRACE, - STATE(3424), 1, - sym_statement_block, - [137442] = 2, + STATE(747), 1, + sym_switch_body, + [160979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4605), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [137450] = 3, + ACTIONS(6529), 1, + anon_sym_from, + STATE(3992), 1, + sym__from_clause, + [160989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(46), 1, - sym_parenthesized_expression, - [137460] = 3, + STATE(4290), 1, + sym_formal_parameters, + [160999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4291), 1, + sym_formal_parameters, + [161009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, anon_sym_LBRACE, - STATE(1937), 1, + STATE(1977), 1, sym_statement_block, - [137470] = 2, + [161019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137478] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4400), 1, + sym_formal_parameters, + [161029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_COLON, - ACTIONS(6191), 1, - anon_sym_GT, - [137488] = 3, + ACTIONS(2160), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_statement_block, + [161039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(585), 1, + STATE(1780), 1, sym_class_body, - [137498] = 3, + [161049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_DOT, - ACTIONS(6191), 1, - anon_sym_GT, - [137508] = 3, + ACTIONS(5350), 1, + anon_sym_LBRACE, + STATE(2022), 1, + sym_class_body, + [161059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3828), 1, + STATE(4401), 1, sym_formal_parameters, - [137518] = 3, + [161069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(3310), 1, + sym_class_body, + [161079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2992), 1, + STATE(4298), 1, sym_formal_parameters, - [137528] = 3, + [161089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, - anon_sym_EQ_GT, - ACTIONS(6582), 1, - anon_sym_is, - [137538] = 3, + ACTIONS(5479), 1, + anon_sym_LBRACE, + STATE(113), 1, + sym_class_body, + [161099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3839), 1, + STATE(4414), 1, sym_formal_parameters, - [137548] = 2, + [161109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137556] = 3, + ACTIONS(7168), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(4416), 1, sym_formal_parameters, - [137566] = 3, + [161127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(3695), 1, anon_sym_LBRACE, - STATE(122), 1, - sym_class_body, - [137576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_LT, - STATE(2314), 1, - sym_type_arguments, - [137586] = 3, + STATE(1855), 1, + sym_statement_block, + [161137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3695), 1, anon_sym_LBRACE, - STATE(1400), 1, + STATE(1890), 1, sym_statement_block, - [137596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6586), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 1, - anon_sym_LPAREN, - STATE(1337), 1, - sym_arguments, - [137614] = 3, + [161147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(5350), 1, anon_sym_LBRACE, - STATE(111), 1, + STATE(2005), 1, sym_class_body, - [137624] = 3, + [161157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, - sym_identifier, - ACTIONS(6590), 1, - anon_sym_STAR, - [137634] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4218), 1, + sym_formal_parameters, + [161167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - STATE(1894), 1, - sym_statement_block, - [137644] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4407), 1, + sym_formal_parameters, + [161177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_statement_block, - [137654] = 3, + ACTIONS(7170), 1, + sym_identifier, + STATE(3893), 1, + sym_nested_identifier, + [161187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(3695), 1, anon_sym_LBRACE, - STATE(1957), 1, + STATE(1872), 1, sym_statement_block, - [137664] = 3, + [161197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1762), 1, - sym_class_body, - [137674] = 2, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4406), 1, + sym_formal_parameters, + [161207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [137682] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4220), 1, + sym_formal_parameters, + [161217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1893), 1, + STATE(3286), 1, sym_class_body, - [137692] = 3, + [161227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5342), 1, anon_sym_LBRACE, - STATE(1971), 1, + STATE(1663), 1, sym_class_body, - [137702] = 3, + [161237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(2554), 1, + STATE(4237), 1, sym_formal_parameters, - [137712] = 3, + [161247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(3687), 1, anon_sym_LBRACE, - STATE(1735), 1, + STATE(1656), 1, sym_statement_block, - [137722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1795), 1, - sym_class_body, - [137732] = 3, + [161257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3760), 1, + STATE(4238), 1, sym_formal_parameters, - [137742] = 3, + [161267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1974), 1, - sym_class_body, - [137752] = 2, + ACTIONS(5252), 1, + anon_sym_COLON, + ACTIONS(6698), 1, + anon_sym_GT, + [161277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 2, - sym_identifier, - sym_this, - [137760] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4223), 1, + sym_formal_parameters, + [161287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_LBRACE, - STATE(3429), 1, - sym_statement_block, - [137770] = 3, + ACTIONS(5578), 1, + anon_sym_LPAREN, + STATE(4266), 1, + sym_formal_parameters, + [161297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - STATE(3757), 1, + STATE(4212), 1, sym_formal_parameters, - [137780] = 3, + [161307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(2984), 1, + STATE(1880), 1, sym_class_body, - [137790] = 2, + [161317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(6698), 1, + anon_sym_GT, + [161327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 2, + ACTIONS(7172), 2, anon_sym_COMMA, anon_sym_RPAREN, - [137798] = 3, + [161335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_class_body, - [137808] = 2, + ACTIONS(4875), 1, + anon_sym_RBRACK, + [161342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [137816] = 2, + ACTIONS(4014), 1, + anon_sym_DOT, + [161349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137824] = 2, + ACTIONS(7174), 1, + anon_sym_class, + [161356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 2, + ACTIONS(7176), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [137832] = 3, + [161363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, - anon_sym_LT, - STATE(1810), 1, - sym_type_arguments, - [137842] = 2, + ACTIONS(7178), 1, + anon_sym_RPAREN, + [161370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137850] = 3, + ACTIONS(6698), 1, + anon_sym_GT, + [161377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(579), 1, - sym_statement_block, - [137860] = 3, + ACTIONS(7180), 1, + sym_identifier, + [161384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3911), 1, - sym_formal_parameters, - [137870] = 2, + ACTIONS(7182), 1, + anon_sym_GT, + [161391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [137878] = 3, + ACTIONS(7184), 1, + anon_sym_class, + [161398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(3981), 1, - sym_formal_parameters, - [137888] = 3, + ACTIONS(7186), 1, + anon_sym_GT, + [161405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(1835), 1, - sym_class_body, - [137898] = 3, + ACTIONS(7188), 1, + anon_sym_EQ_GT, + [161412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_statement_block, - [137908] = 3, + ACTIONS(7190), 1, + anon_sym_GT, + [161419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_statement_block, - [137918] = 2, + ACTIONS(7192), 1, + sym_identifier, + [161426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137926] = 3, + ACTIONS(5305), 1, + anon_sym_DOT, + [161433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(2005), 1, - sym_class_body, - [137936] = 2, + ACTIONS(7194), 1, + anon_sym_from, + [161440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - [137943] = 2, + ACTIONS(7196), 1, + anon_sym_GT, + [161447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(7198), 1, anon_sym_EQ_GT, - [137950] = 2, + [161454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, - anon_sym_RBRACK, - [137957] = 2, + ACTIONS(7200), 1, + anon_sym_GT, + [161461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(7202), 1, anon_sym_EQ_GT, - [137964] = 2, + [161468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, - anon_sym_EQ, - [137971] = 2, + ACTIONS(7204), 1, + anon_sym_EQ_GT, + [161475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, - anon_sym_from, - [137978] = 2, + ACTIONS(7206), 1, + anon_sym_GT, + [161482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 1, - anon_sym_DOT, - [137985] = 2, + ACTIONS(7208), 1, + anon_sym_EQ_GT, + [161489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(7210), 1, anon_sym_EQ_GT, - [137992] = 2, + [161496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(4603), 1, + anon_sym_RPAREN, + [161503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7212), 1, + sym_identifier, + [161510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7214), 1, anon_sym_EQ_GT, - [137999] = 2, + [161517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_DOT, - [138006] = 2, + ACTIONS(4573), 1, + anon_sym_RPAREN, + [161524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 1, + ACTIONS(7216), 1, anon_sym_EQ_GT, - [138013] = 2, + [161531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3983), 1, + ACTIONS(7218), 1, + anon_sym_RPAREN, + [161538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4855), 1, + anon_sym_RBRACE, + [161545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4853), 1, anon_sym_RBRACK, - [138020] = 2, + [161552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_GT, - [138027] = 2, + ACTIONS(7220), 1, + sym_identifier, + [161559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 1, - anon_sym_EQ_GT, - [138034] = 2, + ACTIONS(4885), 1, + anon_sym_RPAREN, + [161566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 1, - anon_sym_GT, - [138041] = 2, + ACTIONS(7222), 1, + anon_sym_DOT, + [161573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 1, + ACTIONS(7224), 1, sym_identifier, - [138048] = 2, + [161580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, + ACTIONS(7226), 1, anon_sym_EQ_GT, - [138055] = 2, + [161587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, + ACTIONS(7228), 1, anon_sym_EQ_GT, - [138062] = 2, + [161594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 1, - sym_identifier, - [138069] = 2, + ACTIONS(7230), 1, + anon_sym_EQ_GT, + [161601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7232), 1, + anon_sym_EQ_GT, + [161608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 1, + ACTIONS(7234), 1, + anon_sym_SLASH2, + [161615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7236), 1, sym_identifier, - [138076] = 2, + [161622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, - anon_sym_RBRACK, - [138083] = 2, + ACTIONS(4891), 1, + anon_sym_RPAREN, + [161629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, - anon_sym_GT, - [138090] = 2, + ACTIONS(4897), 1, + anon_sym_RPAREN, + [161636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_EQ, - [138097] = 2, + ACTIONS(7238), 1, + anon_sym_class, + [161643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 1, - sym_identifier, - [138104] = 2, + ACTIONS(7240), 1, + anon_sym_GT, + [161650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6181), 1, + ACTIONS(4907), 1, anon_sym_RBRACE, - [138111] = 2, + [161657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, - sym_identifier, - [138118] = 2, + ACTIONS(7242), 1, + anon_sym_EQ_GT, + [161664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 1, - sym_identifier, - [138125] = 2, + ACTIONS(7244), 1, + anon_sym_namespace, + [161671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, + ACTIONS(7246), 1, sym_identifier, - [138132] = 2, + [161678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6191), 1, - anon_sym_GT, - [138139] = 2, + ACTIONS(7248), 1, + anon_sym_EQ_GT, + [161685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_while, + [161692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 1, + ACTIONS(7252), 1, anon_sym_EQ_GT, - [138146] = 2, + [161699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, - anon_sym_DOT, - [138153] = 2, + ACTIONS(7254), 1, + sym_number, + [161706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, - anon_sym_RBRACK, - [138160] = 2, + ACTIONS(7256), 1, + anon_sym_RPAREN, + [161713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5372), 1, - sym_identifier, - [138167] = 2, + ACTIONS(7258), 1, + anon_sym_as, + [161720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 1, + ACTIONS(5522), 1, sym_identifier, - [138174] = 2, + [161727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 1, - anon_sym_RBRACK, - [138181] = 2, + ACTIONS(3619), 1, + anon_sym_DOT, + [161734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6642), 1, - anon_sym_COLON, - [138188] = 2, + ACTIONS(7260), 1, + sym_identifier, + [161741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 1, - anon_sym_class, - [138195] = 2, + ACTIONS(7262), 1, + anon_sym_target, + [161748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 1, - anon_sym_EQ_GT, - [138202] = 2, + ACTIONS(7264), 1, + sym_identifier, + [161755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, - anon_sym_COLON, - [138209] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6650), 1, - sym_regex_pattern, - [138216] = 2, + ACTIONS(7266), 1, + anon_sym_class, + [161762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_EQ_GT, - [138223] = 2, + ACTIONS(7268), 1, + sym_readonly, + [161769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_GT, - [138230] = 2, + ACTIONS(7270), 1, + anon_sym_EQ, + [161776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 1, - anon_sym_EQ, - [138237] = 2, + ACTIONS(7272), 1, + anon_sym_EQ_GT, + [161783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, + ACTIONS(7274), 1, anon_sym_EQ_GT, - [138244] = 2, + [161790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, - anon_sym_DOT, - [138251] = 2, + ACTIONS(7276), 1, + anon_sym_EQ_GT, + [161797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 1, + ACTIONS(7278), 1, anon_sym_EQ, - [138258] = 2, + [161804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 1, - anon_sym_GT, - [138265] = 2, + ACTIONS(7011), 1, + anon_sym_LBRACE, + [161811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 1, + ACTIONS(7280), 1, anon_sym_EQ_GT, - [138272] = 2, + [161818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 1, + ACTIONS(7282), 1, sym_identifier, - [138279] = 2, + [161825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 1, + ACTIONS(7284), 1, anon_sym_EQ_GT, - [138286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6666), 1, - anon_sym_GT, - [138293] = 2, + [161832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 1, - anon_sym_EQ_GT, - [138300] = 2, + ACTIONS(7286), 1, + sym_identifier, + [161839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 1, + ACTIONS(7288), 1, sym_number, - [138307] = 2, + [161846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 1, + ACTIONS(7290), 1, anon_sym_EQ_GT, - [138314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6674), 1, - anon_sym_COLON, - [138321] = 2, + [161853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6323), 1, - anon_sym_from, - [138328] = 2, + ACTIONS(7292), 1, + sym_identifier, + [161860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, - anon_sym_EQ_GT, - [138335] = 2, + ACTIONS(7294), 1, + sym_number, + [161867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 1, - anon_sym_RPAREN, - [138342] = 2, + ACTIONS(7296), 1, + sym_identifier, + [161874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(5516), 1, sym_identifier, - [138349] = 2, + [161881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4771), 1, - anon_sym_DOT, - [138356] = 2, + ACTIONS(7298), 1, + sym_identifier, + [161888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(7300), 1, anon_sym_EQ_GT, - [138363] = 2, + [161895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, - sym_identifier, - [138370] = 2, + ACTIONS(4847), 1, + anon_sym_RBRACK, + [161902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, - anon_sym_COLON, - [138377] = 2, + ACTIONS(5530), 1, + sym_identifier, + [161909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 1, - sym_identifier, - [138384] = 2, + ACTIONS(5207), 1, + anon_sym_DOT, + [161916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 1, - sym_identifier, - [138391] = 2, + ACTIONS(7302), 1, + anon_sym_COLON, + [161923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym_SLASH2, - [138398] = 2, + ACTIONS(7304), 1, + anon_sym_EQ_GT, + [161930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_RPAREN, - [138405] = 2, + ACTIONS(7306), 1, + anon_sym_RBRACK, + [161937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 1, - anon_sym_COLON, - [138412] = 2, - ACTIONS(4902), 1, + ACTIONS(7308), 1, + ts_builtin_sym_end, + [161944] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(6694), 1, + ACTIONS(7310), 1, sym_regex_pattern, - [138419] = 2, + [161951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6696), 1, - anon_sym_class, - [138426] = 2, + ACTIONS(7312), 1, + anon_sym_EQ_GT, + [161958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - sym_identifier, - [138433] = 2, + ACTIONS(7314), 1, + anon_sym_EQ_GT, + [161965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, + ACTIONS(7316), 1, anon_sym_EQ_GT, - [138440] = 2, + [161972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, - anon_sym_GT, - [138447] = 2, + ACTIONS(4564), 1, + anon_sym_RPAREN, + [161979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 1, + ACTIONS(7318), 1, anon_sym_EQ_GT, - [138454] = 2, + [161986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 1, + ACTIONS(6621), 1, anon_sym_EQ_GT, - [138461] = 2, + [161993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 1, + ACTIONS(7320), 1, anon_sym_EQ_GT, - [138468] = 2, + [162000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 1, - anon_sym_EQ_GT, - [138475] = 2, + ACTIONS(7322), 1, + sym_identifier, + [162007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 1, + ACTIONS(7324), 1, anon_sym_EQ_GT, - [138482] = 2, + [162014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6712), 1, - anon_sym_EQ_GT, - [138489] = 2, + ACTIONS(4827), 1, + anon_sym_RBRACK, + [162021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 1, - anon_sym_namespace, - [138496] = 2, + ACTIONS(7326), 1, + sym_identifier, + [162028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(7328), 1, anon_sym_EQ_GT, - [138503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3711), 1, - anon_sym_RPAREN, - [138510] = 2, + [162035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 1, + ACTIONS(7330), 1, anon_sym_EQ_GT, - [138517] = 2, + [162042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(7332), 1, sym_identifier, - [138524] = 2, + [162049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 1, - anon_sym_RBRACE, - [138531] = 2, + ACTIONS(7334), 1, + sym_identifier, + [162056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6724), 1, - anon_sym_RPAREN, - [138538] = 2, + ACTIONS(7336), 1, + anon_sym_EQ_GT, + [162063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_from, - [138545] = 2, + ACTIONS(4861), 1, + anon_sym_RBRACK, + [162070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6728), 1, - anon_sym_GT, - [138552] = 2, + ACTIONS(6139), 1, + anon_sym_EQ_GT, + [162077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(7338), 1, anon_sym_target, - [138559] = 2, + [162084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, - anon_sym_EQ_GT, - [138566] = 2, + ACTIONS(7340), 1, + anon_sym_GT, + [162091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6734), 1, - sym_identifier, - [138573] = 2, + ACTIONS(6151), 1, + anon_sym_EQ_GT, + [162098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6301), 1, anon_sym_EQ_GT, - [138580] = 2, + [162105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6303), 1, anon_sym_EQ_GT, - [138587] = 2, + [162112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - anon_sym_RPAREN, - [138594] = 2, + ACTIONS(6207), 1, + anon_sym_EQ_GT, + [162119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, - anon_sym_SLASH2, - [138601] = 2, + ACTIONS(7342), 1, + sym_number, + [162126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, - anon_sym_GT, - [138608] = 2, + ACTIONS(7344), 1, + sym_identifier, + [162133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, + ACTIONS(6235), 1, anon_sym_EQ_GT, - [138615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3975), 1, - anon_sym_RPAREN, - [138622] = 2, + [162140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, - anon_sym_class, - [138629] = 2, + ACTIONS(7346), 1, + sym_identifier, + [162147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_target, - [138636] = 2, + ACTIONS(7348), 1, + anon_sym_COLON, + [162154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, - anon_sym_EQ, - [138643] = 2, + ACTIONS(7350), 1, + anon_sym_EQ_GT, + [162161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6752), 1, + ACTIONS(7352), 1, anon_sym_EQ_GT, - [138650] = 2, + [162168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_EQ, - [138657] = 2, + ACTIONS(7354), 1, + sym_identifier, + [162175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(7356), 1, anon_sym_EQ_GT, - [138664] = 2, + [162182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6758), 1, - anon_sym_EQ_GT, - [138671] = 2, + ACTIONS(7358), 1, + anon_sym_RPAREN, + [162189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, + ACTIONS(7360), 1, sym_identifier, - [138678] = 2, + [162196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, - sym_identifier, - [138685] = 2, + ACTIONS(7362), 1, + anon_sym_SLASH2, + [162203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, - sym_identifier, - [138692] = 2, + ACTIONS(7364), 1, + anon_sym_GT, + [162210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_RPAREN, - [138699] = 2, + ACTIONS(7366), 1, + anon_sym_GT, + [162217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 1, - anon_sym_RBRACK, - [138706] = 2, + ACTIONS(7368), 1, + anon_sym_GT, + [162224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, + ACTIONS(7370), 1, anon_sym_GT, - [138713] = 2, + [162231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, - anon_sym_from, - [138720] = 2, + ACTIONS(4843), 1, + anon_sym_RBRACK, + [162238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6770), 1, - anon_sym_LPAREN, - [138727] = 2, + ACTIONS(7372), 1, + sym_identifier, + [162245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6772), 1, - anon_sym_require, - [138734] = 2, + ACTIONS(7374), 1, + anon_sym_EQ_GT, + [162252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6774), 1, - anon_sym_RPAREN, - [138741] = 2, + ACTIONS(7376), 1, + anon_sym_GT, + [162259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6776), 1, + ACTIONS(7378), 1, anon_sym_EQ_GT, - [138748] = 2, + [162266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, - anon_sym_EQ_GT, - [138755] = 2, + ACTIONS(7380), 1, + sym_number, + [162273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - sym_identifier, - [138762] = 2, + ACTIONS(7382), 1, + anon_sym_GT, + [162280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, + ACTIONS(7384), 1, anon_sym_EQ_GT, - [138769] = 2, + [162287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6778), 1, - anon_sym_target, - [138776] = 2, + ACTIONS(7386), 1, + anon_sym_RPAREN, + [162294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6780), 1, - sym_number, - [138783] = 2, + ACTIONS(6209), 1, + anon_sym_EQ_GT, + [162301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, - anon_sym_from, - [138790] = 2, + ACTIONS(4859), 1, + anon_sym_RBRACK, + [162308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6784), 1, - anon_sym_EQ_GT, - [138797] = 2, + ACTIONS(7388), 1, + sym_identifier, + [162315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6786), 1, - sym_identifier, - [138804] = 2, + ACTIONS(4925), 1, + anon_sym_RBRACK, + [162322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(7390), 1, anon_sym_EQ_GT, - [138811] = 2, + [162329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, - anon_sym_EQ_GT, - [138818] = 2, + ACTIONS(7392), 1, + anon_sym_from, + [162336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5823), 1, - anon_sym_EQ_GT, - [138825] = 2, + ACTIONS(6929), 1, + anon_sym_GT, + [162343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 1, + ACTIONS(7394), 1, anon_sym_from, - [138832] = 2, + [162350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7396), 1, + sym_identifier, + [162357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7398), 1, + sym_identifier, + [162364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 1, + ACTIONS(7400), 1, anon_sym_from, - [138839] = 2, + [162371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - anon_sym_GT, - [138846] = 2, + ACTIONS(7402), 1, + anon_sym_require, + [162378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6798), 1, - anon_sym_SLASH2, - [138853] = 2, + ACTIONS(7404), 1, + anon_sym_LPAREN, + [162385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6800), 1, - anon_sym_GT, - [138860] = 2, + ACTIONS(7406), 1, + anon_sym_from, + [162392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_GT, - [138867] = 2, + ACTIONS(7408), 1, + anon_sym_COLON, + [162399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4601), 1, + ACTIONS(7410), 1, + sym_identifier, + [162406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7412), 1, anon_sym_EQ_GT, - [138874] = 2, + [162413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(7414), 1, anon_sym_GT, - [138881] = 2, + [162420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 1, + ACTIONS(5019), 1, anon_sym_EQ_GT, - [138888] = 2, + [162427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 1, + ACTIONS(7416), 1, anon_sym_GT, - [138895] = 2, + [162434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - anon_sym_EQ_GT, - [138902] = 2, + ACTIONS(7418), 1, + sym_identifier, + [162441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 1, - anon_sym_LBRACE, - [138909] = 2, + ACTIONS(7420), 1, + anon_sym_EQ_GT, + [162448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, + ACTIONS(7422), 1, anon_sym_GT, - [138916] = 2, + [162455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6810), 1, + ACTIONS(7424), 1, sym_identifier, - [138923] = 2, + [162462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, - anon_sym_GT, - [138930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5799), 1, + ACTIONS(7426), 1, anon_sym_EQ_GT, - [138937] = 2, + [162469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, - anon_sym_RPAREN, - [138944] = 2, + ACTIONS(7428), 1, + anon_sym_COLON, + [162476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6814), 1, - anon_sym_SLASH2, - [138951] = 2, + ACTIONS(4530), 1, + anon_sym_RPAREN, + [162483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6816), 1, - sym_number, - [138958] = 2, - ACTIONS(3), 1, + ACTIONS(4871), 1, + anon_sym_RBRACE, + [162490] = 2, + ACTIONS(5322), 1, sym_comment, - ACTIONS(6818), 1, - anon_sym_from, - [138965] = 2, + ACTIONS(7430), 1, + sym_regex_pattern, + [162497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6820), 1, + ACTIONS(7432), 1, anon_sym_EQ_GT, - [138972] = 2, + [162504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6149), 1, - anon_sym_GT, - [138979] = 2, + ACTIONS(7434), 1, + anon_sym_EQ_GT, + [162511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, - anon_sym_GT, - [138986] = 2, + ACTIONS(7436), 1, + anon_sym_EQ_GT, + [162518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_RPAREN, - [138993] = 2, + ACTIONS(7438), 1, + anon_sym_EQ_GT, + [162525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_GT, - [139000] = 2, + ACTIONS(7440), 1, + anon_sym_EQ_GT, + [162532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6826), 1, + ACTIONS(7442), 1, anon_sym_GT, - [139007] = 2, + [162539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 1, + ACTIONS(7444), 1, anon_sym_EQ_GT, - [139014] = 2, + [162546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6828), 1, + ACTIONS(7446), 1, anon_sym_EQ_GT, - [139021] = 2, + [162553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6830), 1, - anon_sym_EQ_GT, - [139028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - sym_readonly, - [139035] = 2, + ACTIONS(4003), 1, + anon_sym_DOT, + [162560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, - anon_sym_while, - [139042] = 2, + ACTIONS(7448), 1, + anon_sym_EQ_GT, + [162567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 1, + ACTIONS(7450), 1, anon_sym_RBRACK, - [139049] = 2, + [162574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - sym_identifier, - [139056] = 2, + ACTIONS(6231), 1, + anon_sym_EQ_GT, + [162581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6838), 1, + ACTIONS(7452), 1, sym_identifier, - [139063] = 2, + [162588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, - sym_identifier, - [139070] = 2, + ACTIONS(7454), 1, + anon_sym_EQ_GT, + [162595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, - anon_sym_RPAREN, - [139077] = 2, + ACTIONS(7456), 1, + anon_sym_EQ_GT, + [162602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_RPAREN, - [139084] = 2, + ACTIONS(7458), 1, + anon_sym_EQ_GT, + [162609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6842), 1, - sym_identifier, - [139091] = 2, + ACTIONS(7460), 1, + anon_sym_EQ_GT, + [162616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - anon_sym_RBRACK, - [139098] = 2, + ACTIONS(7005), 1, + anon_sym_from, + [162623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 1, + ACTIONS(6229), 1, anon_sym_EQ_GT, - [139105] = 2, + [162630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6846), 1, - sym_identifier, - [139112] = 2, + ACTIONS(7462), 1, + anon_sym_from, + [162637] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(7464), 1, + sym_regex_pattern, + [162644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6848), 1, - sym_number, - [139119] = 2, + ACTIONS(7466), 1, + anon_sym_EQ_GT, + [162651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, - sym_identifier, - [139126] = 2, + ACTIONS(7468), 1, + anon_sym_EQ_GT, + [162658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7470), 1, + anon_sym_RBRACE, + [162665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6852), 1, + ACTIONS(7472), 1, sym_identifier, - [139133] = 2, + [162672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, + ACTIONS(7474), 1, sym_identifier, - [139140] = 2, + [162679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6856), 1, - anon_sym_RPAREN, - [139147] = 2, + ACTIONS(7476), 1, + anon_sym_EQ_GT, + [162686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6858), 1, - anon_sym_RPAREN, - [139154] = 2, + ACTIONS(7478), 1, + anon_sym_EQ_GT, + [162693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 1, - anon_sym_DOT, - [139161] = 2, + ACTIONS(6149), 1, + anon_sym_EQ_GT, + [162700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_RBRACK, - [139168] = 2, + ACTIONS(7480), 1, + anon_sym_EQ_GT, + [162707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6435), 1, - anon_sym_GT, - [139175] = 2, + ACTIONS(7482), 1, + anon_sym_EQ_GT, + [162714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6862), 1, + ACTIONS(7484), 1, sym_identifier, - [139182] = 2, + [162721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LBRACK, - [139189] = 2, + ACTIONS(7486), 1, + anon_sym_EQ_GT, + [162728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5635), 1, + ACTIONS(7488), 1, anon_sym_EQ_GT, - [139196] = 2, + [162735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6866), 1, - anon_sym_GT, - [139203] = 2, + ACTIONS(4881), 1, + anon_sym_RPAREN, + [162742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3973), 1, - anon_sym_RPAREN, - [139210] = 2, + ACTIONS(7490), 1, + anon_sym_EQ_GT, + [162749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_COLON, - [139217] = 2, + ACTIONS(7492), 1, + anon_sym_EQ_GT, + [162756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 1, - anon_sym_as, - [139224] = 2, + ACTIONS(7494), 1, + anon_sym_EQ_GT, + [162763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - sym_identifier, - [139231] = 2, + ACTIONS(7496), 1, + anon_sym_EQ_GT, + [162770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, - anon_sym_RPAREN, - [139238] = 2, + ACTIONS(7498), 1, + anon_sym_EQ_GT, + [162777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6870), 1, - sym_identifier, - [139245] = 2, + ACTIONS(7500), 1, + anon_sym_EQ_GT, + [162784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6872), 1, - anon_sym_LBRACE, - [139252] = 2, + ACTIONS(7502), 1, + anon_sym_SLASH2, + [162791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3939), 1, - anon_sym_RPAREN, - [139259] = 2, + ACTIONS(7504), 1, + anon_sym_GT, + [162798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, + ACTIONS(7506), 1, sym_identifier, - [139266] = 2, + [162805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6876), 1, - anon_sym_RBRACK, - [139273] = 2, + ACTIONS(7508), 1, + sym_identifier, + [162812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 1, - anon_sym_RBRACK, - [139280] = 2, + ACTIONS(7510), 1, + anon_sym_EQ_GT, + [162819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6878), 1, + ACTIONS(7512), 1, anon_sym_EQ_GT, - [139287] = 2, + [162826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 1, - anon_sym_RPAREN, - [139294] = 2, + ACTIONS(7514), 1, + sym_identifier, + [162833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6880), 1, - sym_identifier, - [139301] = 2, + ACTIONS(7516), 1, + anon_sym_EQ_GT, + [162840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6882), 1, - sym_identifier, - [139308] = 2, + ACTIONS(4865), 1, + anon_sym_RBRACK, + [162847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6884), 1, - sym_identifier, - [139315] = 2, + ACTIONS(7518), 1, + anon_sym_EQ_GT, + [162854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(7520), 1, anon_sym_EQ_GT, - [139322] = 2, + [162861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6888), 1, - anon_sym_RBRACK, - [139329] = 2, + ACTIONS(7522), 1, + anon_sym_EQ, + [162868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6890), 1, + ACTIONS(7524), 1, anon_sym_GT, - [139336] = 2, + [162875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6892), 1, - anon_sym_EQ_GT, - [139343] = 2, + ACTIONS(5554), 1, + sym_identifier, + [162882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6894), 1, - anon_sym_GT, - [139350] = 2, + ACTIONS(7526), 1, + anon_sym_EQ_GT, + [162889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6896), 1, - anon_sym_COLON, - [139357] = 2, + ACTIONS(7528), 1, + anon_sym_EQ_GT, + [162896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6898), 1, - anon_sym_GT, - [139364] = 2, + ACTIONS(7530), 1, + anon_sym_EQ_GT, + [162903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_RPAREN, - [139371] = 2, + ACTIONS(7532), 1, + anon_sym_EQ_GT, + [162910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - sym_identifier, - [139378] = 2, + ACTIONS(7534), 1, + anon_sym_EQ_GT, + [162917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6902), 1, + ACTIONS(7536), 1, anon_sym_EQ_GT, - [139385] = 2, + [162924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6904), 1, - anon_sym_EQ_GT, - [139392] = 2, + ACTIONS(7538), 1, + anon_sym_RBRACK, + [162931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6906), 1, - anon_sym_EQ_GT, - [139399] = 2, + ACTIONS(7540), 1, + anon_sym_GT, + [162938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(7542), 1, + anon_sym_GT, + [162945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, anon_sym_RPAREN, - [139406] = 2, + [162952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, - anon_sym_EQ_GT, - [139413] = 2, + ACTIONS(7544), 1, + anon_sym_LBRACK, + [162959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6910), 1, + ACTIONS(7546), 1, sym_identifier, - [139420] = 2, + [162966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 1, - anon_sym_function, - [139427] = 2, + ACTIONS(7548), 1, + anon_sym_GT, + [162973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6914), 1, + ACTIONS(7550), 1, sym_identifier, - [139434] = 2, + [162980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5408), 1, + ACTIONS(7552), 1, sym_identifier, - [139441] = 2, + [162987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6916), 1, + ACTIONS(7554), 1, + anon_sym_EQ, + [162994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7556), 1, sym_identifier, - [139448] = 2, + [163001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, - anon_sym_RBRACE, - [139455] = 2, + ACTIONS(7558), 1, + anon_sym_EQ, + [163008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, - anon_sym_RBRACK, - [139462] = 2, + ACTIONS(7560), 1, + anon_sym_RPAREN, + [163015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6918), 1, + ACTIONS(7562), 1, sym_identifier, - [139469] = 2, + [163022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 1, + ACTIONS(7564), 1, sym_identifier, - [139476] = 2, + [163029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, - anon_sym_RBRACK, - [139483] = 2, + ACTIONS(7566), 1, + sym_identifier, + [163036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6922), 1, + ACTIONS(7568), 1, sym_identifier, - [139490] = 2, + [163043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6924), 1, - anon_sym_namespace, - [139497] = 2, + ACTIONS(7570), 1, + sym_identifier, + [163050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - sym_number, - [139504] = 2, + ACTIONS(7572), 1, + sym_identifier, + [163057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6928), 1, + ACTIONS(7574), 1, sym_identifier, - [139511] = 2, + [163064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(7576), 1, anon_sym_EQ_GT, - [139518] = 2, + [163071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, - sym_identifier, - [139525] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(6934), 1, - sym_regex_pattern, - [139532] = 2, + ACTIONS(7578), 1, + anon_sym_EQ_GT, + [163078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3989), 1, - anon_sym_RPAREN, - [139539] = 2, + ACTIONS(7580), 1, + anon_sym_EQ_GT, + [163085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6936), 1, - sym_identifier, - [139546] = 2, + ACTIONS(7582), 1, + anon_sym_EQ_GT, + [163092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6938), 1, - sym_identifier, - [139553] = 2, + ACTIONS(6213), 1, + anon_sym_EQ_GT, + [163099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(7584), 1, sym_identifier, - [139560] = 2, + [163106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6942), 1, + ACTIONS(7586), 1, sym_identifier, - [139567] = 2, + [163113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6944), 1, - sym_identifier, - [139574] = 2, + ACTIONS(7588), 1, + sym_number, + [163120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 1, - anon_sym_RPAREN, - [139581] = 2, + ACTIONS(6895), 1, + anon_sym_GT, + [163127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6948), 1, - sym_identifier, - [139588] = 2, + ACTIONS(4849), 1, + anon_sym_RBRACK, + [163134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6950), 1, + ACTIONS(7590), 1, sym_identifier, - [139595] = 2, + [163141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6952), 1, - sym_identifier, - [139602] = 2, + ACTIONS(7592), 1, + anon_sym_EQ_GT, + [163148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6954), 1, - sym_identifier, - [139609] = 2, + ACTIONS(7594), 1, + anon_sym_COLON, + [163155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6956), 1, - sym_identifier, - [139616] = 2, + ACTIONS(4895), 1, + anon_sym_RBRACK, + [163162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6958), 1, - sym_identifier, - [139623] = 2, + ACTIONS(6901), 1, + anon_sym_GT, + [163169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6960), 1, - sym_identifier, - [139630] = 2, + ACTIONS(7596), 1, + anon_sym_SLASH2, + [163176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(7598), 1, sym_identifier, - [139637] = 2, + [163183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6964), 1, + ACTIONS(7600), 1, sym_identifier, - [139644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6966), 1, - anon_sym_EQ_GT, - [139651] = 2, + [163190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6968), 1, + ACTIONS(7602), 1, sym_identifier, - [139658] = 2, + [163197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_RPAREN, - [139665] = 2, + ACTIONS(7604), 1, + anon_sym_target, + [163204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6972), 1, + ACTIONS(4601), 1, anon_sym_RPAREN, - [139672] = 2, + [163211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7606), 1, sym_identifier, - [139679] = 2, + [163218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6870), 1, + anon_sym_GT, + [163225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6976), 1, + ACTIONS(7608), 1, sym_identifier, - [139686] = 2, + [163232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6978), 1, + ACTIONS(7610), 1, sym_identifier, - [139693] = 2, + [163239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7612), 1, sym_identifier, - [139700] = 2, + [163246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, + ACTIONS(7614), 1, sym_identifier, - [139707] = 2, + [163253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6984), 1, + ACTIONS(7616), 1, sym_identifier, - [139714] = 2, + [163260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 1, - anon_sym_GT, - [139721] = 2, + ACTIONS(7618), 1, + sym_identifier, + [163267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6988), 1, - anon_sym_GT, - [139728] = 2, + ACTIONS(7620), 1, + anon_sym_function, + [163274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 1, + ACTIONS(7622), 1, sym_identifier, - [139735] = 2, + [163281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6992), 1, + ACTIONS(7624), 1, sym_identifier, - [139742] = 2, + [163288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 1, + ACTIONS(7626), 1, sym_identifier, - [139749] = 2, + [163295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, + ACTIONS(7628), 1, sym_identifier, - [139756] = 2, + [163302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6998), 1, - anon_sym_GT, - [139763] = 2, + ACTIONS(6225), 1, + anon_sym_EQ_GT, + [163309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7000), 1, - anon_sym_GT, - [139770] = 2, + ACTIONS(7630), 1, + sym_identifier, + [163316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, - sym_number, - [139777] = 2, + ACTIONS(7632), 1, + anon_sym_COLON, + [163323] = 2, + ACTIONS(5322), 1, + sym_comment, + ACTIONS(7634), 1, + sym_regex_pattern, + [163330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7004), 1, - sym_identifier, - [139784] = 2, + ACTIONS(7636), 1, + anon_sym_RPAREN, + [163337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7006), 1, - anon_sym_EQ_GT, - [139791] = 2, + ACTIONS(7638), 1, + anon_sym_function, + [163344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7008), 1, + ACTIONS(7640), 1, sym_identifier, - [139798] = 2, + [163351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7010), 1, - sym_identifier, - [139805] = 2, + ACTIONS(7642), 1, + anon_sym_EQ_GT, + [163358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7012), 1, - anon_sym_function, - [139812] = 2, + ACTIONS(7644), 1, + anon_sym_GT, + [163365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7014), 1, + ACTIONS(7646), 1, sym_identifier, - [139819] = 2, + [163372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7016), 1, + ACTIONS(7648), 1, sym_identifier, - [139826] = 2, + [163379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3971), 1, - anon_sym_RPAREN, - [139833] = 2, + ACTIONS(7650), 1, + anon_sym_GT, + [163386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7018), 1, + ACTIONS(7652), 1, sym_identifier, - [139840] = 2, + [163393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7020), 1, + ACTIONS(5546), 1, sym_identifier, - [139847] = 2, + [163400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7022), 1, + ACTIONS(7654), 1, sym_identifier, - [139854] = 2, + [163407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7024), 1, - ts_builtin_sym_end, - [139861] = 2, + ACTIONS(7656), 1, + anon_sym_EQ_GT, + [163414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7026), 1, - anon_sym_COLON, - [139868] = 2, + ACTIONS(5220), 1, + anon_sym_DOT, + [163421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, + ACTIONS(7658), 1, sym_identifier, - [139875] = 2, + [163428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7030), 1, + ACTIONS(7660), 1, sym_identifier, - [139882] = 2, + [163435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7032), 1, + ACTIONS(7662), 1, sym_identifier, - [139889] = 2, + [163442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7664), 1, sym_identifier, - [139896] = 2, + [163449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 1, - anon_sym_class, - [139903] = 2, + ACTIONS(7666), 1, + anon_sym_GT, + [163456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7038), 1, - sym_identifier, - [139910] = 2, + ACTIONS(7668), 1, + sym_number, + [163463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7040), 1, + ACTIONS(7670), 1, sym_identifier, - [139917] = 2, + [163470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - anon_sym_EQ_GT, - [139924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6278), 1, + ACTIONS(7672), 1, anon_sym_GT, - [139931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7044), 1, - anon_sym_EQ_GT, - [139938] = 2, + [163477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7046), 1, - sym_identifier, - [139945] = 2, + ACTIONS(4927), 1, + anon_sym_RBRACK, + [163484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, - anon_sym_EQ_GT, - [139952] = 2, - ACTIONS(4902), 1, - sym_comment, - ACTIONS(7050), 1, - sym_regex_pattern, - [139959] = 2, + ACTIONS(7674), 1, + anon_sym_GT, + [163491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7052), 1, - sym_identifier, - [139966] = 2, + ACTIONS(7676), 1, + anon_sym_GT, + [163498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym_EQ_GT, - [139973] = 2, + ACTIONS(7678), 1, + anon_sym_EQ, + [163505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7056), 1, - anon_sym_GT, - [139980] = 2, + ACTIONS(7680), 1, + anon_sym_from, + [163512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, - anon_sym_EQ_GT, - [139987] = 2, + ACTIONS(4921), 1, + anon_sym_COLON, + [163519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7060), 1, - anon_sym_GT, - [139994] = 2, + ACTIONS(7682), 1, + sym_identifier, + [163526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, - anon_sym_RBRACE, - [140001] = 2, + ACTIONS(7684), 1, + sym_identifier, + [163533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7062), 1, - anon_sym_EQ_GT, - [140008] = 2, + ACTIONS(7686), 1, + sym_identifier, + [163540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, - anon_sym_EQ_GT, - [140015] = 2, + ACTIONS(5165), 1, + anon_sym_DOT, + [163547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7064), 1, + ACTIONS(7688), 1, anon_sym_EQ_GT, - [140022] = 2, + [163554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 1, + ACTIONS(6749), 1, anon_sym_RBRACE, - [140029] = 2, + [163561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7066), 1, + ACTIONS(7690), 1, sym_identifier, - [140036] = 2, + [163568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7068), 1, - anon_sym_EQ_GT, - [140043] = 2, + ACTIONS(4917), 1, + anon_sym_RPAREN, + [163575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7070), 1, + ACTIONS(7692), 1, sym_identifier, - [140050] = 2, + [163582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_EQ_GT, - [140057] = 2, + ACTIONS(4915), 1, + anon_sym_RPAREN, + [163589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 1, - anon_sym_RBRACK, - [140064] = 2, + ACTIONS(5560), 1, + sym_identifier, + [163596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7694), 1, + anon_sym_GT, + [163603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7074), 1, + ACTIONS(7696), 1, anon_sym_EQ_GT, - [140071] = 2, + [163610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - sym_identifier, - [140078] = 2, + ACTIONS(7698), 1, + anon_sym_RPAREN, + [163617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7078), 1, - sym_identifier, - [140085] = 2, + ACTIONS(4903), 1, + anon_sym_RPAREN, + [163624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7080), 1, + ACTIONS(7700), 1, sym_identifier, - [140092] = 2, + [163631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym_GT, - [140099] = 2, + ACTIONS(4899), 1, + anon_sym_RPAREN, + [163638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, - anon_sym_EQ_GT, - [140106] = 2, + ACTIONS(4889), 1, + anon_sym_RPAREN, + [163645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7086), 1, - sym_identifier, - [140113] = 2, + ACTIONS(4887), 1, + anon_sym_RPAREN, + [163652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, - anon_sym_EQ_GT, - [140120] = 2, + ACTIONS(7702), 1, + anon_sym_namespace, + [163659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, - sym_identifier, - [140127] = 2, + ACTIONS(7704), 1, + anon_sym_COLON, + [163666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7092), 1, + ACTIONS(7706), 1, anon_sym_EQ_GT, - [140134] = 2, + [163673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7094), 1, - anon_sym_EQ_GT, - [140141] = 2, + ACTIONS(7708), 1, + sym_identifier, + [163680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7096), 1, - sym_identifier, - [140148] = 2, + ACTIONS(7710), 1, + anon_sym_RPAREN, + [163687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7098), 1, - sym_identifier, + ACTIONS(7712), 1, + anon_sym_EQ_GT, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(705)] = 0, - [SMALL_STATE(706)] = 103, - [SMALL_STATE(707)] = 206, - [SMALL_STATE(708)] = 301, - [SMALL_STATE(709)] = 404, - [SMALL_STATE(710)] = 500, - [SMALL_STATE(711)] = 598, - [SMALL_STATE(712)] = 694, - [SMALL_STATE(713)] = 790, - [SMALL_STATE(714)] = 892, - [SMALL_STATE(715)] = 988, - [SMALL_STATE(716)] = 1084, - [SMALL_STATE(717)] = 1180, - [SMALL_STATE(718)] = 1274, - [SMALL_STATE(719)] = 1367, - [SMALL_STATE(720)] = 1456, - [SMALL_STATE(721)] = 1549, - [SMALL_STATE(722)] = 1642, - [SMALL_STATE(723)] = 1725, - [SMALL_STATE(724)] = 1824, - [SMALL_STATE(725)] = 1919, - [SMALL_STATE(726)] = 2016, - [SMALL_STATE(727)] = 2092, - [SMALL_STATE(728)] = 2178, - [SMALL_STATE(729)] = 2272, - [SMALL_STATE(730)] = 2364, - [SMALL_STATE(731)] = 2490, - [SMALL_STATE(732)] = 2582, - [SMALL_STATE(733)] = 2676, - [SMALL_STATE(734)] = 2764, - [SMALL_STATE(735)] = 2857, - [SMALL_STATE(736)] = 2924, - [SMALL_STATE(737)] = 3015, - [SMALL_STATE(738)] = 3102, - [SMALL_STATE(739)] = 3191, - [SMALL_STATE(740)] = 3258, - [SMALL_STATE(741)] = 3325, - [SMALL_STATE(742)] = 3392, - [SMALL_STATE(743)] = 3479, - [SMALL_STATE(744)] = 3568, - [SMALL_STATE(745)] = 3655, - [SMALL_STATE(746)] = 3742, - [SMALL_STATE(747)] = 3833, - [SMALL_STATE(748)] = 3900, - [SMALL_STATE(749)] = 3967, - [SMALL_STATE(750)] = 4062, - [SMALL_STATE(751)] = 4129, - [SMALL_STATE(752)] = 4204, - [SMALL_STATE(753)] = 4295, - [SMALL_STATE(754)] = 4390, - [SMALL_STATE(755)] = 4465, - [SMALL_STATE(756)] = 4532, - [SMALL_STATE(757)] = 4599, - [SMALL_STATE(758)] = 4674, - [SMALL_STATE(759)] = 4762, - [SMALL_STATE(760)] = 4842, - [SMALL_STATE(761)] = 4928, - [SMALL_STATE(762)] = 5014, - [SMALL_STATE(763)] = 5140, - [SMALL_STATE(764)] = 5228, - [SMALL_STATE(765)] = 5312, - [SMALL_STATE(766)] = 5398, - [SMALL_STATE(767)] = 5486, - [SMALL_STATE(768)] = 5576, - [SMALL_STATE(769)] = 5664, - [SMALL_STATE(770)] = 5738, - [SMALL_STATE(771)] = 5824, - [SMALL_STATE(772)] = 5912, - [SMALL_STATE(773)] = 6038, - [SMALL_STATE(774)] = 6124, - [SMALL_STATE(775)] = 6212, - [SMALL_STATE(776)] = 6298, - [SMALL_STATE(777)] = 6388, - [SMALL_STATE(778)] = 6476, - [SMALL_STATE(779)] = 6602, - [SMALL_STATE(780)] = 6686, - [SMALL_STATE(781)] = 6812, - [SMALL_STATE(782)] = 6938, - [SMALL_STATE(783)] = 7028, - [SMALL_STATE(784)] = 7118, - [SMALL_STATE(785)] = 7244, - [SMALL_STATE(786)] = 7370, - [SMALL_STATE(787)] = 7493, - [SMALL_STATE(788)] = 7578, - [SMALL_STATE(789)] = 7659, - [SMALL_STATE(790)] = 7742, - [SMALL_STATE(791)] = 7873, - [SMALL_STATE(792)] = 7954, - [SMALL_STATE(793)] = 8039, - [SMALL_STATE(794)] = 8162, - [SMALL_STATE(795)] = 8251, - [SMALL_STATE(796)] = 8336, - [SMALL_STATE(797)] = 8459, - [SMALL_STATE(798)] = 8544, - [SMALL_STATE(799)] = 8631, - [SMALL_STATE(800)] = 8716, - [SMALL_STATE(801)] = 8839, - [SMALL_STATE(802)] = 8924, - [SMALL_STATE(803)] = 9009, - [SMALL_STATE(804)] = 9092, - [SMALL_STATE(805)] = 9179, - [SMALL_STATE(806)] = 9260, - [SMALL_STATE(807)] = 9337, - [SMALL_STATE(808)] = 9426, - [SMALL_STATE(809)] = 9557, - [SMALL_STATE(810)] = 9642, - [SMALL_STATE(811)] = 9727, - [SMALL_STATE(812)] = 9850, - [SMALL_STATE(813)] = 9933, - [SMALL_STATE(814)] = 10056, - [SMALL_STATE(815)] = 10187, - [SMALL_STATE(816)] = 10272, - [SMALL_STATE(817)] = 10349, - [SMALL_STATE(818)] = 10428, - [SMALL_STATE(819)] = 10551, - [SMALL_STATE(820)] = 10624, - [SMALL_STATE(821)] = 10747, - [SMALL_STATE(822)] = 10820, - [SMALL_STATE(823)] = 10943, - [SMALL_STATE(824)] = 11074, - [SMALL_STATE(825)] = 11197, - [SMALL_STATE(826)] = 11328, - [SMALL_STATE(827)] = 11451, - [SMALL_STATE(828)] = 11574, - [SMALL_STATE(829)] = 11697, - [SMALL_STATE(830)] = 11820, - [SMALL_STATE(831)] = 11943, - [SMALL_STATE(832)] = 12066, - [SMALL_STATE(833)] = 12189, - [SMALL_STATE(834)] = 12274, - [SMALL_STATE(835)] = 12405, - [SMALL_STATE(836)] = 12528, - [SMALL_STATE(837)] = 12651, - [SMALL_STATE(838)] = 12774, - [SMALL_STATE(839)] = 12865, - [SMALL_STATE(840)] = 12996, - [SMALL_STATE(841)] = 13119, - [SMALL_STATE(842)] = 13206, - [SMALL_STATE(843)] = 13329, - [SMALL_STATE(844)] = 13420, - [SMALL_STATE(845)] = 13501, - [SMALL_STATE(846)] = 13624, - [SMALL_STATE(847)] = 13755, - [SMALL_STATE(848)] = 13886, - [SMALL_STATE(849)] = 14009, - [SMALL_STATE(850)] = 14132, - [SMALL_STATE(851)] = 14255, - [SMALL_STATE(852)] = 14378, - [SMALL_STATE(853)] = 14501, - [SMALL_STATE(854)] = 14624, - [SMALL_STATE(855)] = 14744, - [SMALL_STATE(856)] = 14826, - [SMALL_STATE(857)] = 14890, - [SMALL_STATE(858)] = 15010, - [SMALL_STATE(859)] = 15082, - [SMALL_STATE(860)] = 15202, - [SMALL_STATE(861)] = 15322, - [SMALL_STATE(862)] = 15442, - [SMALL_STATE(863)] = 15562, - [SMALL_STATE(864)] = 15644, - [SMALL_STATE(865)] = 15764, - [SMALL_STATE(866)] = 15884, - [SMALL_STATE(867)] = 16004, - [SMALL_STATE(868)] = 16124, - [SMALL_STATE(869)] = 16244, - [SMALL_STATE(870)] = 16364, - [SMALL_STATE(871)] = 16448, - [SMALL_STATE(872)] = 16568, - [SMALL_STATE(873)] = 16688, - [SMALL_STATE(874)] = 16772, - [SMALL_STATE(875)] = 16854, - [SMALL_STATE(876)] = 16974, - [SMALL_STATE(877)] = 17094, - [SMALL_STATE(878)] = 17214, - [SMALL_STATE(879)] = 17334, - [SMALL_STATE(880)] = 17454, - [SMALL_STATE(881)] = 17574, - [SMALL_STATE(882)] = 17694, - [SMALL_STATE(883)] = 17814, - [SMALL_STATE(884)] = 17934, - [SMALL_STATE(885)] = 18010, - [SMALL_STATE(886)] = 18130, - [SMALL_STATE(887)] = 18194, - [SMALL_STATE(888)] = 18314, - [SMALL_STATE(889)] = 18434, - [SMALL_STATE(890)] = 18554, - [SMALL_STATE(891)] = 18674, - [SMALL_STATE(892)] = 18794, - [SMALL_STATE(893)] = 18914, - [SMALL_STATE(894)] = 19034, - [SMALL_STATE(895)] = 19154, - [SMALL_STATE(896)] = 19274, - [SMALL_STATE(897)] = 19394, - [SMALL_STATE(898)] = 19514, - [SMALL_STATE(899)] = 19634, - [SMALL_STATE(900)] = 19754, - [SMALL_STATE(901)] = 19874, - [SMALL_STATE(902)] = 19994, - [SMALL_STATE(903)] = 20114, - [SMALL_STATE(904)] = 20234, - [SMALL_STATE(905)] = 20354, - [SMALL_STATE(906)] = 20474, - [SMALL_STATE(907)] = 20538, - [SMALL_STATE(908)] = 20658, - [SMALL_STATE(909)] = 20744, - [SMALL_STATE(910)] = 20864, - [SMALL_STATE(911)] = 20984, - [SMALL_STATE(912)] = 21062, - [SMALL_STATE(913)] = 21140, - [SMALL_STATE(914)] = 21214, - [SMALL_STATE(915)] = 21334, - [SMALL_STATE(916)] = 21398, - [SMALL_STATE(917)] = 21518, - [SMALL_STATE(918)] = 21638, - [SMALL_STATE(919)] = 21758, - [SMALL_STATE(920)] = 21878, - [SMALL_STATE(921)] = 21998, - [SMALL_STATE(922)] = 22118, - [SMALL_STATE(923)] = 22186, - [SMALL_STATE(924)] = 22306, - [SMALL_STATE(925)] = 22426, - [SMALL_STATE(926)] = 22546, - [SMALL_STATE(927)] = 22666, - [SMALL_STATE(928)] = 22786, - [SMALL_STATE(929)] = 22906, - [SMALL_STATE(930)] = 23026, - [SMALL_STATE(931)] = 23146, - [SMALL_STATE(932)] = 23222, - [SMALL_STATE(933)] = 23342, - [SMALL_STATE(934)] = 23462, - [SMALL_STATE(935)] = 23582, - [SMALL_STATE(936)] = 23702, - [SMALL_STATE(937)] = 23822, - [SMALL_STATE(938)] = 23942, - [SMALL_STATE(939)] = 24062, - [SMALL_STATE(940)] = 24140, - [SMALL_STATE(941)] = 24260, - [SMALL_STATE(942)] = 24380, - [SMALL_STATE(943)] = 24500, - [SMALL_STATE(944)] = 24620, - [SMALL_STATE(945)] = 24740, - [SMALL_STATE(946)] = 24812, - [SMALL_STATE(947)] = 24932, - [SMALL_STATE(948)] = 24996, - [SMALL_STATE(949)] = 25116, - [SMALL_STATE(950)] = 25236, - [SMALL_STATE(951)] = 25300, - [SMALL_STATE(952)] = 25420, - [SMALL_STATE(953)] = 25540, - [SMALL_STATE(954)] = 25660, - [SMALL_STATE(955)] = 25780, - [SMALL_STATE(956)] = 25900, - [SMALL_STATE(957)] = 26020, - [SMALL_STATE(958)] = 26140, - [SMALL_STATE(959)] = 26260, - [SMALL_STATE(960)] = 26380, - [SMALL_STATE(961)] = 26500, - [SMALL_STATE(962)] = 26620, - [SMALL_STATE(963)] = 26740, - [SMALL_STATE(964)] = 26860, - [SMALL_STATE(965)] = 26980, - [SMALL_STATE(966)] = 27100, - [SMALL_STATE(967)] = 27172, - [SMALL_STATE(968)] = 27292, - [SMALL_STATE(969)] = 27412, - [SMALL_STATE(970)] = 27532, - [SMALL_STATE(971)] = 27616, - [SMALL_STATE(972)] = 27736, - [SMALL_STATE(973)] = 27856, - [SMALL_STATE(974)] = 27976, - [SMALL_STATE(975)] = 28096, - [SMALL_STATE(976)] = 28216, - [SMALL_STATE(977)] = 28336, - [SMALL_STATE(978)] = 28456, - [SMALL_STATE(979)] = 28576, - [SMALL_STATE(980)] = 28696, - [SMALL_STATE(981)] = 28768, - [SMALL_STATE(982)] = 28888, - [SMALL_STATE(983)] = 29008, - [SMALL_STATE(984)] = 29128, - [SMALL_STATE(985)] = 29248, - [SMALL_STATE(986)] = 29368, - [SMALL_STATE(987)] = 29488, - [SMALL_STATE(988)] = 29608, - [SMALL_STATE(989)] = 29728, - [SMALL_STATE(990)] = 29848, - [SMALL_STATE(991)] = 29968, - [SMALL_STATE(992)] = 30088, - [SMALL_STATE(993)] = 30208, - [SMALL_STATE(994)] = 30328, - [SMALL_STATE(995)] = 30406, - [SMALL_STATE(996)] = 30484, - [SMALL_STATE(997)] = 30604, - [SMALL_STATE(998)] = 30668, - [SMALL_STATE(999)] = 30746, - [SMALL_STATE(1000)] = 30866, - [SMALL_STATE(1001)] = 30986, - [SMALL_STATE(1002)] = 31070, - [SMALL_STATE(1003)] = 31190, - [SMALL_STATE(1004)] = 31310, - [SMALL_STATE(1005)] = 31430, - [SMALL_STATE(1006)] = 31550, - [SMALL_STATE(1007)] = 31670, - [SMALL_STATE(1008)] = 31790, - [SMALL_STATE(1009)] = 31910, - [SMALL_STATE(1010)] = 31982, - [SMALL_STATE(1011)] = 32102, - [SMALL_STATE(1012)] = 32222, - [SMALL_STATE(1013)] = 32342, - [SMALL_STATE(1014)] = 32462, - [SMALL_STATE(1015)] = 32582, - [SMALL_STATE(1016)] = 32702, - [SMALL_STATE(1017)] = 32822, - [SMALL_STATE(1018)] = 32942, - [SMALL_STATE(1019)] = 33062, - [SMALL_STATE(1020)] = 33182, - [SMALL_STATE(1021)] = 33264, - [SMALL_STATE(1022)] = 33384, - [SMALL_STATE(1023)] = 33504, - [SMALL_STATE(1024)] = 33624, - [SMALL_STATE(1025)] = 33744, - [SMALL_STATE(1026)] = 33864, - [SMALL_STATE(1027)] = 33984, - [SMALL_STATE(1028)] = 34104, - [SMALL_STATE(1029)] = 34224, - [SMALL_STATE(1030)] = 34344, - [SMALL_STATE(1031)] = 34464, - [SMALL_STATE(1032)] = 34584, - [SMALL_STATE(1033)] = 34704, - [SMALL_STATE(1034)] = 34824, - [SMALL_STATE(1035)] = 34944, - [SMALL_STATE(1036)] = 35064, - [SMALL_STATE(1037)] = 35184, - [SMALL_STATE(1038)] = 35304, - [SMALL_STATE(1039)] = 35388, - [SMALL_STATE(1040)] = 35508, - [SMALL_STATE(1041)] = 35628, - [SMALL_STATE(1042)] = 35692, - [SMALL_STATE(1043)] = 35812, - [SMALL_STATE(1044)] = 35932, - [SMALL_STATE(1045)] = 36052, - [SMALL_STATE(1046)] = 36172, - [SMALL_STATE(1047)] = 36292, - [SMALL_STATE(1048)] = 36412, - [SMALL_STATE(1049)] = 36532, - [SMALL_STATE(1050)] = 36652, - [SMALL_STATE(1051)] = 36772, - [SMALL_STATE(1052)] = 36892, - [SMALL_STATE(1053)] = 37012, - [SMALL_STATE(1054)] = 37132, - [SMALL_STATE(1055)] = 37252, - [SMALL_STATE(1056)] = 37372, - [SMALL_STATE(1057)] = 37492, - [SMALL_STATE(1058)] = 37564, - [SMALL_STATE(1059)] = 37684, - [SMALL_STATE(1060)] = 37804, - [SMALL_STATE(1061)] = 37924, - [SMALL_STATE(1062)] = 38044, - [SMALL_STATE(1063)] = 38164, - [SMALL_STATE(1064)] = 38284, - [SMALL_STATE(1065)] = 38404, - [SMALL_STATE(1066)] = 38524, - [SMALL_STATE(1067)] = 38588, - [SMALL_STATE(1068)] = 38670, - [SMALL_STATE(1069)] = 38790, - [SMALL_STATE(1070)] = 38910, - [SMALL_STATE(1071)] = 39030, - [SMALL_STATE(1072)] = 39150, - [SMALL_STATE(1073)] = 39270, - [SMALL_STATE(1074)] = 39390, - [SMALL_STATE(1075)] = 39470, - [SMALL_STATE(1076)] = 39590, - [SMALL_STATE(1077)] = 39710, - [SMALL_STATE(1078)] = 39830, - [SMALL_STATE(1079)] = 39950, - [SMALL_STATE(1080)] = 40070, - [SMALL_STATE(1081)] = 40190, - [SMALL_STATE(1082)] = 40310, - [SMALL_STATE(1083)] = 40430, - [SMALL_STATE(1084)] = 40550, - [SMALL_STATE(1085)] = 40670, - [SMALL_STATE(1086)] = 40750, - [SMALL_STATE(1087)] = 40870, - [SMALL_STATE(1088)] = 40950, - [SMALL_STATE(1089)] = 41070, - [SMALL_STATE(1090)] = 41190, - [SMALL_STATE(1091)] = 41310, - [SMALL_STATE(1092)] = 41430, - [SMALL_STATE(1093)] = 41550, - [SMALL_STATE(1094)] = 41670, - [SMALL_STATE(1095)] = 41748, - [SMALL_STATE(1096)] = 41826, - [SMALL_STATE(1097)] = 41946, - [SMALL_STATE(1098)] = 42066, - [SMALL_STATE(1099)] = 42150, - [SMALL_STATE(1100)] = 42270, - [SMALL_STATE(1101)] = 42345, - [SMALL_STATE(1102)] = 42422, - [SMALL_STATE(1103)] = 42497, - [SMALL_STATE(1104)] = 42570, - [SMALL_STATE(1105)] = 42649, - [SMALL_STATE(1106)] = 42728, - [SMALL_STATE(1107)] = 42795, - [SMALL_STATE(1108)] = 42874, - [SMALL_STATE(1109)] = 42955, - [SMALL_STATE(1110)] = 43032, - [SMALL_STATE(1111)] = 43103, - [SMALL_STATE(1112)] = 43176, - [SMALL_STATE(1113)] = 43247, - [SMALL_STATE(1114)] = 43318, - [SMALL_STATE(1115)] = 43393, - [SMALL_STATE(1116)] = 43468, - [SMALL_STATE(1117)] = 43539, - [SMALL_STATE(1118)] = 43614, - [SMALL_STATE(1119)] = 43685, - [SMALL_STATE(1120)] = 43760, - [SMALL_STATE(1121)] = 43841, - [SMALL_STATE(1122)] = 43922, - [SMALL_STATE(1123)] = 43993, - [SMALL_STATE(1124)] = 44064, - [SMALL_STATE(1125)] = 44135, - [SMALL_STATE(1126)] = 44214, - [SMALL_STATE(1127)] = 44295, - [SMALL_STATE(1128)] = 44376, - [SMALL_STATE(1129)] = 44446, - [SMALL_STATE(1130)] = 44512, - [SMALL_STATE(1131)] = 44584, - [SMALL_STATE(1132)] = 44656, - [SMALL_STATE(1133)] = 44734, - [SMALL_STATE(1134)] = 44798, - [SMALL_STATE(1135)] = 44860, - [SMALL_STATE(1136)] = 44922, - [SMALL_STATE(1137)] = 44998, - [SMALL_STATE(1138)] = 45060, - [SMALL_STATE(1139)] = 45134, - [SMALL_STATE(1140)] = 45254, - [SMALL_STATE(1141)] = 45322, - [SMALL_STATE(1142)] = 45384, - [SMALL_STATE(1143)] = 45446, - [SMALL_STATE(1144)] = 45566, - [SMALL_STATE(1145)] = 45628, - [SMALL_STATE(1146)] = 45690, - [SMALL_STATE(1147)] = 45764, - [SMALL_STATE(1148)] = 45830, - [SMALL_STATE(1149)] = 45904, - [SMALL_STATE(1150)] = 45972, - [SMALL_STATE(1151)] = 46034, - [SMALL_STATE(1152)] = 46104, - [SMALL_STATE(1153)] = 46170, - [SMALL_STATE(1154)] = 46246, - [SMALL_STATE(1155)] = 46316, - [SMALL_STATE(1156)] = 46388, - [SMALL_STATE(1157)] = 46458, - [SMALL_STATE(1158)] = 46520, - [SMALL_STATE(1159)] = 46600, - [SMALL_STATE(1160)] = 46670, - [SMALL_STATE(1161)] = 46732, - [SMALL_STATE(1162)] = 46802, - [SMALL_STATE(1163)] = 46880, - [SMALL_STATE(1164)] = 46942, - [SMALL_STATE(1165)] = 47019, - [SMALL_STATE(1166)] = 47088, - [SMALL_STATE(1167)] = 47165, - [SMALL_STATE(1168)] = 47236, - [SMALL_STATE(1169)] = 47313, - [SMALL_STATE(1170)] = 47378, - [SMALL_STATE(1171)] = 47455, - [SMALL_STATE(1172)] = 47526, - [SMALL_STATE(1173)] = 47600, - [SMALL_STATE(1174)] = 47668, - [SMALL_STATE(1175)] = 47740, - [SMALL_STATE(1176)] = 47812, - [SMALL_STATE(1177)] = 47880, - [SMALL_STATE(1178)] = 47952, - [SMALL_STATE(1179)] = 48026, - [SMALL_STATE(1180)] = 48098, - [SMALL_STATE(1181)] = 48167, - [SMALL_STATE(1182)] = 48236, - [SMALL_STATE(1183)] = 48305, - [SMALL_STATE(1184)] = 48374, - [SMALL_STATE(1185)] = 48449, - [SMALL_STATE(1186)] = 48559, - [SMALL_STATE(1187)] = 48665, - [SMALL_STATE(1188)] = 48775, - [SMALL_STATE(1189)] = 48881, - [SMALL_STATE(1190)] = 48987, - [SMALL_STATE(1191)] = 49093, - [SMALL_STATE(1192)] = 49203, - [SMALL_STATE(1193)] = 49309, - [SMALL_STATE(1194)] = 49415, - [SMALL_STATE(1195)] = 49525, - [SMALL_STATE(1196)] = 49580, - [SMALL_STATE(1197)] = 49687, - [SMALL_STATE(1198)] = 49742, - [SMALL_STATE(1199)] = 49851, - [SMALL_STATE(1200)] = 49906, - [SMALL_STATE(1201)] = 49961, - [SMALL_STATE(1202)] = 50016, - [SMALL_STATE(1203)] = 50071, - [SMALL_STATE(1204)] = 50126, - [SMALL_STATE(1205)] = 50181, - [SMALL_STATE(1206)] = 50236, - [SMALL_STATE(1207)] = 50291, - [SMALL_STATE(1208)] = 50346, - [SMALL_STATE(1209)] = 50448, - [SMALL_STATE(1210)] = 50550, - [SMALL_STATE(1211)] = 50652, - [SMALL_STATE(1212)] = 50754, - [SMALL_STATE(1213)] = 50856, - [SMALL_STATE(1214)] = 50958, - [SMALL_STATE(1215)] = 51060, - [SMALL_STATE(1216)] = 51162, - [SMALL_STATE(1217)] = 51264, - [SMALL_STATE(1218)] = 51366, - [SMALL_STATE(1219)] = 51468, - [SMALL_STATE(1220)] = 51570, - [SMALL_STATE(1221)] = 51672, - [SMALL_STATE(1222)] = 51774, - [SMALL_STATE(1223)] = 51876, - [SMALL_STATE(1224)] = 51978, - [SMALL_STATE(1225)] = 52080, - [SMALL_STATE(1226)] = 52182, - [SMALL_STATE(1227)] = 52245, - [SMALL_STATE(1228)] = 52298, - [SMALL_STATE(1229)] = 52367, - [SMALL_STATE(1230)] = 52430, - [SMALL_STATE(1231)] = 52483, - [SMALL_STATE(1232)] = 52552, - [SMALL_STATE(1233)] = 52650, - [SMALL_STATE(1234)] = 52706, - [SMALL_STATE(1235)] = 52804, - [SMALL_STATE(1236)] = 52902, - [SMALL_STATE(1237)] = 53000, - [SMALL_STATE(1238)] = 53098, - [SMALL_STATE(1239)] = 53164, - [SMALL_STATE(1240)] = 53262, - [SMALL_STATE(1241)] = 53318, - [SMALL_STATE(1242)] = 53376, - [SMALL_STATE(1243)] = 53474, - [SMALL_STATE(1244)] = 53532, - [SMALL_STATE(1245)] = 53588, - [SMALL_STATE(1246)] = 53644, - [SMALL_STATE(1247)] = 53696, - [SMALL_STATE(1248)] = 53750, - [SMALL_STATE(1249)] = 53802, - [SMALL_STATE(1250)] = 53854, - [SMALL_STATE(1251)] = 53916, - [SMALL_STATE(1252)] = 53968, - [SMALL_STATE(1253)] = 54020, - [SMALL_STATE(1254)] = 54072, - [SMALL_STATE(1255)] = 54124, - [SMALL_STATE(1256)] = 54176, - [SMALL_STATE(1257)] = 54227, - [SMALL_STATE(1258)] = 54306, - [SMALL_STATE(1259)] = 54403, - [SMALL_STATE(1260)] = 54458, - [SMALL_STATE(1261)] = 54515, - [SMALL_STATE(1262)] = 54572, - [SMALL_STATE(1263)] = 54623, - [SMALL_STATE(1264)] = 54696, - [SMALL_STATE(1265)] = 54749, - [SMALL_STATE(1266)] = 54844, - [SMALL_STATE(1267)] = 54939, - [SMALL_STATE(1268)] = 54994, - [SMALL_STATE(1269)] = 55049, - [SMALL_STATE(1270)] = 55100, - [SMALL_STATE(1271)] = 55151, - [SMALL_STATE(1272)] = 55214, - [SMALL_STATE(1273)] = 55309, - [SMALL_STATE(1274)] = 55372, - [SMALL_STATE(1275)] = 55455, - [SMALL_STATE(1276)] = 55542, - [SMALL_STATE(1277)] = 55619, - [SMALL_STATE(1278)] = 55672, - [SMALL_STATE(1279)] = 55723, - [SMALL_STATE(1280)] = 55794, - [SMALL_STATE(1281)] = 55885, - [SMALL_STATE(1282)] = 55980, - [SMALL_STATE(1283)] = 56075, - [SMALL_STATE(1284)] = 56170, - [SMALL_STATE(1285)] = 56265, - [SMALL_STATE(1286)] = 56316, - [SMALL_STATE(1287)] = 56411, - [SMALL_STATE(1288)] = 56464, - [SMALL_STATE(1289)] = 56515, - [SMALL_STATE(1290)] = 56566, - [SMALL_STATE(1291)] = 56619, - [SMALL_STATE(1292)] = 56670, - [SMALL_STATE(1293)] = 56721, - [SMALL_STATE(1294)] = 56772, - [SMALL_STATE(1295)] = 56867, - [SMALL_STATE(1296)] = 56918, - [SMALL_STATE(1297)] = 56969, - [SMALL_STATE(1298)] = 57020, - [SMALL_STATE(1299)] = 57071, - [SMALL_STATE(1300)] = 57122, - [SMALL_STATE(1301)] = 57173, - [SMALL_STATE(1302)] = 57224, - [SMALL_STATE(1303)] = 57275, - [SMALL_STATE(1304)] = 57326, - [SMALL_STATE(1305)] = 57377, - [SMALL_STATE(1306)] = 57428, - [SMALL_STATE(1307)] = 57481, - [SMALL_STATE(1308)] = 57532, - [SMALL_STATE(1309)] = 57583, - [SMALL_STATE(1310)] = 57634, - [SMALL_STATE(1311)] = 57685, - [SMALL_STATE(1312)] = 57736, - [SMALL_STATE(1313)] = 57787, - [SMALL_STATE(1314)] = 57838, - [SMALL_STATE(1315)] = 57889, - [SMALL_STATE(1316)] = 57940, - [SMALL_STATE(1317)] = 57993, - [SMALL_STATE(1318)] = 58044, - [SMALL_STATE(1319)] = 58095, - [SMALL_STATE(1320)] = 58146, - [SMALL_STATE(1321)] = 58197, - [SMALL_STATE(1322)] = 58248, - [SMALL_STATE(1323)] = 58299, - [SMALL_STATE(1324)] = 58368, - [SMALL_STATE(1325)] = 58429, - [SMALL_STATE(1326)] = 58524, - [SMALL_STATE(1327)] = 58581, - [SMALL_STATE(1328)] = 58676, - [SMALL_STATE(1329)] = 58731, - [SMALL_STATE(1330)] = 58788, - [SMALL_STATE(1331)] = 58839, - [SMALL_STATE(1332)] = 58890, - [SMALL_STATE(1333)] = 58941, - [SMALL_STATE(1334)] = 59012, - [SMALL_STATE(1335)] = 59065, - [SMALL_STATE(1336)] = 59136, - [SMALL_STATE(1337)] = 59187, - [SMALL_STATE(1338)] = 59238, - [SMALL_STATE(1339)] = 59333, - [SMALL_STATE(1340)] = 59428, - [SMALL_STATE(1341)] = 59479, - [SMALL_STATE(1342)] = 59574, - [SMALL_STATE(1343)] = 59625, - [SMALL_STATE(1344)] = 59682, - [SMALL_STATE(1345)] = 59737, - [SMALL_STATE(1346)] = 59798, - [SMALL_STATE(1347)] = 59869, - [SMALL_STATE(1348)] = 59940, - [SMALL_STATE(1349)] = 60035, - [SMALL_STATE(1350)] = 60092, - [SMALL_STATE(1351)] = 60147, - [SMALL_STATE(1352)] = 60200, - [SMALL_STATE(1353)] = 60250, - [SMALL_STATE(1354)] = 60332, - [SMALL_STATE(1355)] = 60426, - [SMALL_STATE(1356)] = 60476, - [SMALL_STATE(1357)] = 60570, - [SMALL_STATE(1358)] = 60620, - [SMALL_STATE(1359)] = 60670, - [SMALL_STATE(1360)] = 60720, - [SMALL_STATE(1361)] = 60770, - [SMALL_STATE(1362)] = 60820, - [SMALL_STATE(1363)] = 60870, - [SMALL_STATE(1364)] = 60920, - [SMALL_STATE(1365)] = 61020, - [SMALL_STATE(1366)] = 61090, - [SMALL_STATE(1367)] = 61140, - [SMALL_STATE(1368)] = 61210, - [SMALL_STATE(1369)] = 61260, - [SMALL_STATE(1370)] = 61358, - [SMALL_STATE(1371)] = 61408, - [SMALL_STATE(1372)] = 61458, - [SMALL_STATE(1373)] = 61552, - [SMALL_STATE(1374)] = 61602, - [SMALL_STATE(1375)] = 61652, - [SMALL_STATE(1376)] = 61746, - [SMALL_STATE(1377)] = 61796, - [SMALL_STATE(1378)] = 61890, - [SMALL_STATE(1379)] = 61940, - [SMALL_STATE(1380)] = 61990, - [SMALL_STATE(1381)] = 62056, - [SMALL_STATE(1382)] = 62122, - [SMALL_STATE(1383)] = 62172, - [SMALL_STATE(1384)] = 62222, - [SMALL_STATE(1385)] = 62272, - [SMALL_STATE(1386)] = 62322, - [SMALL_STATE(1387)] = 62372, - [SMALL_STATE(1388)] = 62422, - [SMALL_STATE(1389)] = 62472, - [SMALL_STATE(1390)] = 62522, - [SMALL_STATE(1391)] = 62572, - [SMALL_STATE(1392)] = 62622, - [SMALL_STATE(1393)] = 62672, - [SMALL_STATE(1394)] = 62740, - [SMALL_STATE(1395)] = 62790, - [SMALL_STATE(1396)] = 62850, - [SMALL_STATE(1397)] = 62950, - [SMALL_STATE(1398)] = 63050, - [SMALL_STATE(1399)] = 63144, - [SMALL_STATE(1400)] = 63194, - [SMALL_STATE(1401)] = 63244, - [SMALL_STATE(1402)] = 63294, - [SMALL_STATE(1403)] = 63344, - [SMALL_STATE(1404)] = 63438, - [SMALL_STATE(1405)] = 63488, - [SMALL_STATE(1406)] = 63538, - [SMALL_STATE(1407)] = 63588, - [SMALL_STATE(1408)] = 63638, - [SMALL_STATE(1409)] = 63738, - [SMALL_STATE(1410)] = 63788, - [SMALL_STATE(1411)] = 63838, - [SMALL_STATE(1412)] = 63888, - [SMALL_STATE(1413)] = 63938, - [SMALL_STATE(1414)] = 63988, - [SMALL_STATE(1415)] = 64038, - [SMALL_STATE(1416)] = 64132, - [SMALL_STATE(1417)] = 64182, - [SMALL_STATE(1418)] = 64232, - [SMALL_STATE(1419)] = 64282, - [SMALL_STATE(1420)] = 64380, - [SMALL_STATE(1421)] = 64430, - [SMALL_STATE(1422)] = 64486, - [SMALL_STATE(1423)] = 64536, - [SMALL_STATE(1424)] = 64586, - [SMALL_STATE(1425)] = 64680, - [SMALL_STATE(1426)] = 64780, - [SMALL_STATE(1427)] = 64878, - [SMALL_STATE(1428)] = 64928, - [SMALL_STATE(1429)] = 64978, - [SMALL_STATE(1430)] = 65028, - [SMALL_STATE(1431)] = 65078, - [SMALL_STATE(1432)] = 65128, - [SMALL_STATE(1433)] = 65226, - [SMALL_STATE(1434)] = 65276, - [SMALL_STATE(1435)] = 65326, - [SMALL_STATE(1436)] = 65420, - [SMALL_STATE(1437)] = 65470, - [SMALL_STATE(1438)] = 65568, - [SMALL_STATE(1439)] = 65624, - [SMALL_STATE(1440)] = 65702, - [SMALL_STATE(1441)] = 65752, - [SMALL_STATE(1442)] = 65802, - [SMALL_STATE(1443)] = 65852, - [SMALL_STATE(1444)] = 65924, - [SMALL_STATE(1445)] = 65974, - [SMALL_STATE(1446)] = 66028, - [SMALL_STATE(1447)] = 66078, - [SMALL_STATE(1448)] = 66172, - [SMALL_STATE(1449)] = 66266, - [SMALL_STATE(1450)] = 66360, - [SMALL_STATE(1451)] = 66454, - [SMALL_STATE(1452)] = 66548, - [SMALL_STATE(1453)] = 66648, - [SMALL_STATE(1454)] = 66738, - [SMALL_STATE(1455)] = 66808, - [SMALL_STATE(1456)] = 66902, - [SMALL_STATE(1457)] = 66978, - [SMALL_STATE(1458)] = 67064, - [SMALL_STATE(1459)] = 67114, - [SMALL_STATE(1460)] = 67167, - [SMALL_STATE(1461)] = 67262, - [SMALL_STATE(1462)] = 67319, - [SMALL_STATE(1463)] = 67376, - [SMALL_STATE(1464)] = 67473, - [SMALL_STATE(1465)] = 67570, - [SMALL_STATE(1466)] = 67623, - [SMALL_STATE(1467)] = 67700, - [SMALL_STATE(1468)] = 67761, - [SMALL_STATE(1469)] = 67856, - [SMALL_STATE(1470)] = 67907, - [SMALL_STATE(1471)] = 68004, - [SMALL_STATE(1472)] = 68101, - [SMALL_STATE(1473)] = 68162, - [SMALL_STATE(1474)] = 68221, - [SMALL_STATE(1475)] = 68318, - [SMALL_STATE(1476)] = 68413, - [SMALL_STATE(1477)] = 68510, - [SMALL_STATE(1478)] = 68561, - [SMALL_STATE(1479)] = 68620, - [SMALL_STATE(1480)] = 68715, - [SMALL_STATE(1481)] = 68764, - [SMALL_STATE(1482)] = 68833, - [SMALL_STATE(1483)] = 68928, - [SMALL_STATE(1484)] = 68997, - [SMALL_STATE(1485)] = 69090, - [SMALL_STATE(1486)] = 69183, - [SMALL_STATE(1487)] = 69250, - [SMALL_STATE(1488)] = 69347, - [SMALL_STATE(1489)] = 69414, - [SMALL_STATE(1490)] = 69507, - [SMALL_STATE(1491)] = 69604, - [SMALL_STATE(1492)] = 69697, - [SMALL_STATE(1493)] = 69792, - [SMALL_STATE(1494)] = 69889, - [SMALL_STATE(1495)] = 69954, - [SMALL_STATE(1496)] = 70019, - [SMALL_STATE(1497)] = 70116, - [SMALL_STATE(1498)] = 70213, - [SMALL_STATE(1499)] = 70308, - [SMALL_STATE(1500)] = 70403, - [SMALL_STATE(1501)] = 70500, - [SMALL_STATE(1502)] = 70595, - [SMALL_STATE(1503)] = 70692, - [SMALL_STATE(1504)] = 70741, - [SMALL_STATE(1505)] = 70834, - [SMALL_STATE(1506)] = 70885, - [SMALL_STATE(1507)] = 70980, - [SMALL_STATE(1508)] = 71077, - [SMALL_STATE(1509)] = 71132, - [SMALL_STATE(1510)] = 71225, - [SMALL_STATE(1511)] = 71318, - [SMALL_STATE(1512)] = 71411, - [SMALL_STATE(1513)] = 71504, - [SMALL_STATE(1514)] = 71597, - [SMALL_STATE(1515)] = 71646, - [SMALL_STATE(1516)] = 71709, - [SMALL_STATE(1517)] = 71764, - [SMALL_STATE(1518)] = 71861, - [SMALL_STATE(1519)] = 71954, - [SMALL_STATE(1520)] = 72047, - [SMALL_STATE(1521)] = 72140, - [SMALL_STATE(1522)] = 72233, - [SMALL_STATE(1523)] = 72328, - [SMALL_STATE(1524)] = 72423, - [SMALL_STATE(1525)] = 72476, - [SMALL_STATE(1526)] = 72571, - [SMALL_STATE(1527)] = 72620, - [SMALL_STATE(1528)] = 72669, - [SMALL_STATE(1529)] = 72720, - [SMALL_STATE(1530)] = 72809, - [SMALL_STATE(1531)] = 72880, - [SMALL_STATE(1532)] = 72957, - [SMALL_STATE(1533)] = 73026, - [SMALL_STATE(1534)] = 73101, - [SMALL_STATE(1535)] = 73186, - [SMALL_STATE(1536)] = 73267, - [SMALL_STATE(1537)] = 73360, - [SMALL_STATE(1538)] = 73441, - [SMALL_STATE(1539)] = 73526, - [SMALL_STATE(1540)] = 73593, - [SMALL_STATE(1541)] = 73686, - [SMALL_STATE(1542)] = 73779, - [SMALL_STATE(1543)] = 73828, - [SMALL_STATE(1544)] = 73921, - [SMALL_STATE(1545)] = 74014, - [SMALL_STATE(1546)] = 74085, - [SMALL_STATE(1547)] = 74162, - [SMALL_STATE(1548)] = 74243, - [SMALL_STATE(1549)] = 74318, - [SMALL_STATE(1550)] = 74403, - [SMALL_STATE(1551)] = 74472, - [SMALL_STATE(1552)] = 74547, - [SMALL_STATE(1553)] = 74636, - [SMALL_STATE(1554)] = 74687, - [SMALL_STATE(1555)] = 74784, - [SMALL_STATE(1556)] = 74855, - [SMALL_STATE(1557)] = 74924, - [SMALL_STATE(1558)] = 75013, - [SMALL_STATE(1559)] = 75106, - [SMALL_STATE(1560)] = 75199, - [SMALL_STATE(1561)] = 75292, - [SMALL_STATE(1562)] = 75385, - [SMALL_STATE(1563)] = 75440, - [SMALL_STATE(1564)] = 75493, - [SMALL_STATE(1565)] = 75586, - [SMALL_STATE(1566)] = 75679, - [SMALL_STATE(1567)] = 75772, - [SMALL_STATE(1568)] = 75841, - [SMALL_STATE(1569)] = 75934, - [SMALL_STATE(1570)] = 76027, - [SMALL_STATE(1571)] = 76120, - [SMALL_STATE(1572)] = 76189, - [SMALL_STATE(1573)] = 76284, - [SMALL_STATE(1574)] = 76379, - [SMALL_STATE(1575)] = 76472, - [SMALL_STATE(1576)] = 76567, - [SMALL_STATE(1577)] = 76662, - [SMALL_STATE(1578)] = 76757, - [SMALL_STATE(1579)] = 76826, - [SMALL_STATE(1580)] = 76895, - [SMALL_STATE(1581)] = 76988, - [SMALL_STATE(1582)] = 77083, - [SMALL_STATE(1583)] = 77176, - [SMALL_STATE(1584)] = 77269, - [SMALL_STATE(1585)] = 77364, - [SMALL_STATE(1586)] = 77457, - [SMALL_STATE(1587)] = 77550, - [SMALL_STATE(1588)] = 77643, - [SMALL_STATE(1589)] = 77736, - [SMALL_STATE(1590)] = 77830, - [SMALL_STATE(1591)] = 77878, - [SMALL_STATE(1592)] = 77970, - [SMALL_STATE(1593)] = 78062, - [SMALL_STATE(1594)] = 78112, - [SMALL_STATE(1595)] = 78160, - [SMALL_STATE(1596)] = 78252, - [SMALL_STATE(1597)] = 78346, - [SMALL_STATE(1598)] = 78414, - [SMALL_STATE(1599)] = 78508, - [SMALL_STATE(1600)] = 78556, - [SMALL_STATE(1601)] = 78604, - [SMALL_STATE(1602)] = 78652, - [SMALL_STATE(1603)] = 78704, - [SMALL_STATE(1604)] = 78798, - [SMALL_STATE(1605)] = 78854, - [SMALL_STATE(1606)] = 78902, - [SMALL_STATE(1607)] = 78958, - [SMALL_STATE(1608)] = 79052, - [SMALL_STATE(1609)] = 79146, - [SMALL_STATE(1610)] = 79238, - [SMALL_STATE(1611)] = 79332, - [SMALL_STATE(1612)] = 79424, - [SMALL_STATE(1613)] = 79516, - [SMALL_STATE(1614)] = 79564, - [SMALL_STATE(1615)] = 79622, - [SMALL_STATE(1616)] = 79716, - [SMALL_STATE(1617)] = 79810, - [SMALL_STATE(1618)] = 79902, - [SMALL_STATE(1619)] = 79994, - [SMALL_STATE(1620)] = 80088, - [SMALL_STATE(1621)] = 80180, - [SMALL_STATE(1622)] = 80272, - [SMALL_STATE(1623)] = 80360, - [SMALL_STATE(1624)] = 80428, - [SMALL_STATE(1625)] = 80502, - [SMALL_STATE(1626)] = 80596, - [SMALL_STATE(1627)] = 80644, - [SMALL_STATE(1628)] = 80728, - [SMALL_STATE(1629)] = 80822, - [SMALL_STATE(1630)] = 80902, - [SMALL_STATE(1631)] = 80996, - [SMALL_STATE(1632)] = 81072, - [SMALL_STATE(1633)] = 81142, - [SMALL_STATE(1634)] = 81190, - [SMALL_STATE(1635)] = 81282, - [SMALL_STATE(1636)] = 81336, - [SMALL_STATE(1637)] = 81428, - [SMALL_STATE(1638)] = 81522, - [SMALL_STATE(1639)] = 81574, - [SMALL_STATE(1640)] = 81632, - [SMALL_STATE(1641)] = 81690, - [SMALL_STATE(1642)] = 81744, - [SMALL_STATE(1643)] = 81792, - [SMALL_STATE(1644)] = 81884, - [SMALL_STATE(1645)] = 81932, - [SMALL_STATE(1646)] = 81982, - [SMALL_STATE(1647)] = 82030, - [SMALL_STATE(1648)] = 82082, - [SMALL_STATE(1649)] = 82176, - [SMALL_STATE(1650)] = 82268, - [SMALL_STATE(1651)] = 82320, - [SMALL_STATE(1652)] = 82372, - [SMALL_STATE(1653)] = 82420, - [SMALL_STATE(1654)] = 82512, - [SMALL_STATE(1655)] = 82562, - [SMALL_STATE(1656)] = 82616, - [SMALL_STATE(1657)] = 82664, - [SMALL_STATE(1658)] = 82712, - [SMALL_STATE(1659)] = 82762, - [SMALL_STATE(1660)] = 82810, - [SMALL_STATE(1661)] = 82858, - [SMALL_STATE(1662)] = 82906, - [SMALL_STATE(1663)] = 82954, - [SMALL_STATE(1664)] = 83002, - [SMALL_STATE(1665)] = 83050, - [SMALL_STATE(1666)] = 83144, - [SMALL_STATE(1667)] = 83192, - [SMALL_STATE(1668)] = 83240, - [SMALL_STATE(1669)] = 83334, - [SMALL_STATE(1670)] = 83382, - [SMALL_STATE(1671)] = 83474, - [SMALL_STATE(1672)] = 83566, - [SMALL_STATE(1673)] = 83660, - [SMALL_STATE(1674)] = 83708, - [SMALL_STATE(1675)] = 83802, - [SMALL_STATE(1676)] = 83862, - [SMALL_STATE(1677)] = 83912, - [SMALL_STATE(1678)] = 83972, - [SMALL_STATE(1679)] = 84026, - [SMALL_STATE(1680)] = 84074, - [SMALL_STATE(1681)] = 84168, - [SMALL_STATE(1682)] = 84262, - [SMALL_STATE(1683)] = 84330, - [SMALL_STATE(1684)] = 84398, - [SMALL_STATE(1685)] = 84450, - [SMALL_STATE(1686)] = 84502, - [SMALL_STATE(1687)] = 84594, - [SMALL_STATE(1688)] = 84642, - [SMALL_STATE(1689)] = 84694, - [SMALL_STATE(1690)] = 84786, - [SMALL_STATE(1691)] = 84848, - [SMALL_STATE(1692)] = 84900, - [SMALL_STATE(1693)] = 84966, - [SMALL_STATE(1694)] = 85032, - [SMALL_STATE(1695)] = 85084, - [SMALL_STATE(1696)] = 85142, - [SMALL_STATE(1697)] = 85234, - [SMALL_STATE(1698)] = 85286, - [SMALL_STATE(1699)] = 85338, - [SMALL_STATE(1700)] = 85386, - [SMALL_STATE(1701)] = 85434, - [SMALL_STATE(1702)] = 85482, - [SMALL_STATE(1703)] = 85574, - [SMALL_STATE(1704)] = 85622, - [SMALL_STATE(1705)] = 85714, - [SMALL_STATE(1706)] = 85766, - [SMALL_STATE(1707)] = 85816, - [SMALL_STATE(1708)] = 85908, - [SMALL_STATE(1709)] = 85960, - [SMALL_STATE(1710)] = 86054, - [SMALL_STATE(1711)] = 86146, - [SMALL_STATE(1712)] = 86194, - [SMALL_STATE(1713)] = 86288, - [SMALL_STATE(1714)] = 86338, - [SMALL_STATE(1715)] = 86390, - [SMALL_STATE(1716)] = 86444, - [SMALL_STATE(1717)] = 86498, - [SMALL_STATE(1718)] = 86546, - [SMALL_STATE(1719)] = 86598, - [SMALL_STATE(1720)] = 86648, - [SMALL_STATE(1721)] = 86742, - [SMALL_STATE(1722)] = 86836, - [SMALL_STATE(1723)] = 86930, - [SMALL_STATE(1724)] = 86982, - [SMALL_STATE(1725)] = 87030, - [SMALL_STATE(1726)] = 87078, - [SMALL_STATE(1727)] = 87126, - [SMALL_STATE(1728)] = 87220, - [SMALL_STATE(1729)] = 87270, - [SMALL_STATE(1730)] = 87324, - [SMALL_STATE(1731)] = 87372, - [SMALL_STATE(1732)] = 87420, - [SMALL_STATE(1733)] = 87468, - [SMALL_STATE(1734)] = 87562, - [SMALL_STATE(1735)] = 87614, - [SMALL_STATE(1736)] = 87666, - [SMALL_STATE(1737)] = 87724, - [SMALL_STATE(1738)] = 87772, - [SMALL_STATE(1739)] = 87824, - [SMALL_STATE(1740)] = 87876, - [SMALL_STATE(1741)] = 87928, - [SMALL_STATE(1742)] = 87982, - [SMALL_STATE(1743)] = 88042, - [SMALL_STATE(1744)] = 88102, - [SMALL_STATE(1745)] = 88156, - [SMALL_STATE(1746)] = 88204, - [SMALL_STATE(1747)] = 88252, - [SMALL_STATE(1748)] = 88309, - [SMALL_STATE(1749)] = 88364, - [SMALL_STATE(1750)] = 88417, - [SMALL_STATE(1751)] = 88464, - [SMALL_STATE(1752)] = 88519, - [SMALL_STATE(1753)] = 88578, - [SMALL_STATE(1754)] = 88627, - [SMALL_STATE(1755)] = 88674, - [SMALL_STATE(1756)] = 88721, - [SMALL_STATE(1757)] = 88774, - [SMALL_STATE(1758)] = 88821, - [SMALL_STATE(1759)] = 88872, - [SMALL_STATE(1760)] = 88919, - [SMALL_STATE(1761)] = 88978, - [SMALL_STATE(1762)] = 89033, - [SMALL_STATE(1763)] = 89080, - [SMALL_STATE(1764)] = 89163, - [SMALL_STATE(1765)] = 89210, - [SMALL_STATE(1766)] = 89267, - [SMALL_STATE(1767)] = 89314, - [SMALL_STATE(1768)] = 89361, - [SMALL_STATE(1769)] = 89408, - [SMALL_STATE(1770)] = 89465, - [SMALL_STATE(1771)] = 89512, - [SMALL_STATE(1772)] = 89597, - [SMALL_STATE(1773)] = 89644, - [SMALL_STATE(1774)] = 89727, - [SMALL_STATE(1775)] = 89774, - [SMALL_STATE(1776)] = 89865, - [SMALL_STATE(1777)] = 89912, - [SMALL_STATE(1778)] = 89963, - [SMALL_STATE(1779)] = 90010, - [SMALL_STATE(1780)] = 90057, - [SMALL_STATE(1781)] = 90110, - [SMALL_STATE(1782)] = 90157, - [SMALL_STATE(1783)] = 90204, - [SMALL_STATE(1784)] = 90261, - [SMALL_STATE(1785)] = 90308, - [SMALL_STATE(1786)] = 90361, - [SMALL_STATE(1787)] = 90408, - [SMALL_STATE(1788)] = 90455, - [SMALL_STATE(1789)] = 90506, - [SMALL_STATE(1790)] = 90555, - [SMALL_STATE(1791)] = 90602, - [SMALL_STATE(1792)] = 90649, - [SMALL_STATE(1793)] = 90698, - [SMALL_STATE(1794)] = 90749, - [SMALL_STATE(1795)] = 90806, - [SMALL_STATE(1796)] = 90853, - [SMALL_STATE(1797)] = 90900, - [SMALL_STATE(1798)] = 90947, - [SMALL_STATE(1799)] = 90994, - [SMALL_STATE(1800)] = 91041, - [SMALL_STATE(1801)] = 91096, - [SMALL_STATE(1802)] = 91143, - [SMALL_STATE(1803)] = 91202, - [SMALL_STATE(1804)] = 91249, - [SMALL_STATE(1805)] = 91296, - [SMALL_STATE(1806)] = 91343, - [SMALL_STATE(1807)] = 91434, - [SMALL_STATE(1808)] = 91481, - [SMALL_STATE(1809)] = 91528, - [SMALL_STATE(1810)] = 91575, - [SMALL_STATE(1811)] = 91622, - [SMALL_STATE(1812)] = 91713, - [SMALL_STATE(1813)] = 91760, - [SMALL_STATE(1814)] = 91807, - [SMALL_STATE(1815)] = 91854, - [SMALL_STATE(1816)] = 91901, - [SMALL_STATE(1817)] = 91948, - [SMALL_STATE(1818)] = 91995, - [SMALL_STATE(1819)] = 92078, - [SMALL_STATE(1820)] = 92125, - [SMALL_STATE(1821)] = 92172, - [SMALL_STATE(1822)] = 92219, - [SMALL_STATE(1823)] = 92266, - [SMALL_STATE(1824)] = 92313, - [SMALL_STATE(1825)] = 92366, - [SMALL_STATE(1826)] = 92413, - [SMALL_STATE(1827)] = 92460, - [SMALL_STATE(1828)] = 92543, - [SMALL_STATE(1829)] = 92590, - [SMALL_STATE(1830)] = 92649, - [SMALL_STATE(1831)] = 92740, - [SMALL_STATE(1832)] = 92795, - [SMALL_STATE(1833)] = 92850, - [SMALL_STATE(1834)] = 92905, - [SMALL_STATE(1835)] = 92990, - [SMALL_STATE(1836)] = 93037, - [SMALL_STATE(1837)] = 93084, - [SMALL_STATE(1838)] = 93131, - [SMALL_STATE(1839)] = 93216, - [SMALL_STATE(1840)] = 93263, - [SMALL_STATE(1841)] = 93310, - [SMALL_STATE(1842)] = 93359, - [SMALL_STATE(1843)] = 93450, - [SMALL_STATE(1844)] = 93497, - [SMALL_STATE(1845)] = 93582, - [SMALL_STATE(1846)] = 93629, - [SMALL_STATE(1847)] = 93676, - [SMALL_STATE(1848)] = 93725, - [SMALL_STATE(1849)] = 93772, - [SMALL_STATE(1850)] = 93819, - [SMALL_STATE(1851)] = 93866, - [SMALL_STATE(1852)] = 93913, - [SMALL_STATE(1853)] = 93960, - [SMALL_STATE(1854)] = 94007, - [SMALL_STATE(1855)] = 94098, - [SMALL_STATE(1856)] = 94145, - [SMALL_STATE(1857)] = 94192, - [SMALL_STATE(1858)] = 94239, - [SMALL_STATE(1859)] = 94286, - [SMALL_STATE(1860)] = 94333, - [SMALL_STATE(1861)] = 94380, - [SMALL_STATE(1862)] = 94427, - [SMALL_STATE(1863)] = 94474, - [SMALL_STATE(1864)] = 94521, - [SMALL_STATE(1865)] = 94568, - [SMALL_STATE(1866)] = 94615, - [SMALL_STATE(1867)] = 94666, - [SMALL_STATE(1868)] = 94723, - [SMALL_STATE(1869)] = 94772, - [SMALL_STATE(1870)] = 94825, - [SMALL_STATE(1871)] = 94872, - [SMALL_STATE(1872)] = 94931, - [SMALL_STATE(1873)] = 95016, - [SMALL_STATE(1874)] = 95107, - [SMALL_STATE(1875)] = 95154, - [SMALL_STATE(1876)] = 95207, - [SMALL_STATE(1877)] = 95290, - [SMALL_STATE(1878)] = 95349, - [SMALL_STATE(1879)] = 95396, - [SMALL_STATE(1880)] = 95443, - [SMALL_STATE(1881)] = 95502, - [SMALL_STATE(1882)] = 95549, - [SMALL_STATE(1883)] = 95596, - [SMALL_STATE(1884)] = 95643, - [SMALL_STATE(1885)] = 95734, - [SMALL_STATE(1886)] = 95783, - [SMALL_STATE(1887)] = 95866, - [SMALL_STATE(1888)] = 95949, - [SMALL_STATE(1889)] = 95996, - [SMALL_STATE(1890)] = 96043, - [SMALL_STATE(1891)] = 96090, - [SMALL_STATE(1892)] = 96137, - [SMALL_STATE(1893)] = 96190, - [SMALL_STATE(1894)] = 96237, - [SMALL_STATE(1895)] = 96284, - [SMALL_STATE(1896)] = 96367, - [SMALL_STATE(1897)] = 96414, - [SMALL_STATE(1898)] = 96497, - [SMALL_STATE(1899)] = 96544, - [SMALL_STATE(1900)] = 96635, - [SMALL_STATE(1901)] = 96718, - [SMALL_STATE(1902)] = 96765, - [SMALL_STATE(1903)] = 96812, - [SMALL_STATE(1904)] = 96867, - [SMALL_STATE(1905)] = 96916, - [SMALL_STATE(1906)] = 96999, - [SMALL_STATE(1907)] = 97060, - [SMALL_STATE(1908)] = 97121, - [SMALL_STATE(1909)] = 97170, - [SMALL_STATE(1910)] = 97253, - [SMALL_STATE(1911)] = 97302, - [SMALL_STATE(1912)] = 97363, - [SMALL_STATE(1913)] = 97410, - [SMALL_STATE(1914)] = 97461, - [SMALL_STATE(1915)] = 97544, - [SMALL_STATE(1916)] = 97591, - [SMALL_STATE(1917)] = 97638, - [SMALL_STATE(1918)] = 97685, - [SMALL_STATE(1919)] = 97732, - [SMALL_STATE(1920)] = 97779, - [SMALL_STATE(1921)] = 97830, - [SMALL_STATE(1922)] = 97877, - [SMALL_STATE(1923)] = 97924, - [SMALL_STATE(1924)] = 97978, - [SMALL_STATE(1925)] = 98024, - [SMALL_STATE(1926)] = 98070, - [SMALL_STATE(1927)] = 98116, - [SMALL_STATE(1928)] = 98162, - [SMALL_STATE(1929)] = 98208, - [SMALL_STATE(1930)] = 98254, - [SMALL_STATE(1931)] = 98300, - [SMALL_STATE(1932)] = 98346, - [SMALL_STATE(1933)] = 98402, - [SMALL_STATE(1934)] = 98448, - [SMALL_STATE(1935)] = 98536, - [SMALL_STATE(1936)] = 98602, - [SMALL_STATE(1937)] = 98666, - [SMALL_STATE(1938)] = 98712, - [SMALL_STATE(1939)] = 98758, - [SMALL_STATE(1940)] = 98826, - [SMALL_STATE(1941)] = 98914, - [SMALL_STATE(1942)] = 98960, - [SMALL_STATE(1943)] = 99048, - [SMALL_STATE(1944)] = 99094, - [SMALL_STATE(1945)] = 99140, - [SMALL_STATE(1946)] = 99186, - [SMALL_STATE(1947)] = 99232, - [SMALL_STATE(1948)] = 99278, - [SMALL_STATE(1949)] = 99324, - [SMALL_STATE(1950)] = 99392, - [SMALL_STATE(1951)] = 99480, - [SMALL_STATE(1952)] = 99538, - [SMALL_STATE(1953)] = 99584, - [SMALL_STATE(1954)] = 99630, - [SMALL_STATE(1955)] = 99676, - [SMALL_STATE(1956)] = 99722, - [SMALL_STATE(1957)] = 99768, - [SMALL_STATE(1958)] = 99814, - [SMALL_STATE(1959)] = 99880, - [SMALL_STATE(1960)] = 99926, - [SMALL_STATE(1961)] = 99984, - [SMALL_STATE(1962)] = 100072, - [SMALL_STATE(1963)] = 100118, - [SMALL_STATE(1964)] = 100164, - [SMALL_STATE(1965)] = 100218, - [SMALL_STATE(1966)] = 100272, - [SMALL_STATE(1967)] = 100318, - [SMALL_STATE(1968)] = 100374, - [SMALL_STATE(1969)] = 100420, - [SMALL_STATE(1970)] = 100508, - [SMALL_STATE(1971)] = 100554, - [SMALL_STATE(1972)] = 100600, - [SMALL_STATE(1973)] = 100646, - [SMALL_STATE(1974)] = 100700, - [SMALL_STATE(1975)] = 100746, - [SMALL_STATE(1976)] = 100792, - [SMALL_STATE(1977)] = 100872, - [SMALL_STATE(1978)] = 100938, - [SMALL_STATE(1979)] = 100984, - [SMALL_STATE(1980)] = 101036, - [SMALL_STATE(1981)] = 101082, - [SMALL_STATE(1982)] = 101140, - [SMALL_STATE(1983)] = 101186, - [SMALL_STATE(1984)] = 101232, - [SMALL_STATE(1985)] = 101278, - [SMALL_STATE(1986)] = 101324, - [SMALL_STATE(1987)] = 101392, - [SMALL_STATE(1988)] = 101448, - [SMALL_STATE(1989)] = 101514, - [SMALL_STATE(1990)] = 101560, - [SMALL_STATE(1991)] = 101606, - [SMALL_STATE(1992)] = 101670, - [SMALL_STATE(1993)] = 101728, - [SMALL_STATE(1994)] = 101774, - [SMALL_STATE(1995)] = 101820, - [SMALL_STATE(1996)] = 101866, - [SMALL_STATE(1997)] = 101934, - [SMALL_STATE(1998)] = 101980, - [SMALL_STATE(1999)] = 102044, - [SMALL_STATE(2000)] = 102090, - [SMALL_STATE(2001)] = 102136, - [SMALL_STATE(2002)] = 102182, - [SMALL_STATE(2003)] = 102228, - [SMALL_STATE(2004)] = 102274, - [SMALL_STATE(2005)] = 102338, - [SMALL_STATE(2006)] = 102384, - [SMALL_STATE(2007)] = 102430, - [SMALL_STATE(2008)] = 102518, - [SMALL_STATE(2009)] = 102564, - [SMALL_STATE(2010)] = 102610, - [SMALL_STATE(2011)] = 102667, - [SMALL_STATE(2012)] = 102730, - [SMALL_STATE(2013)] = 102781, - [SMALL_STATE(2014)] = 102840, - [SMALL_STATE(2015)] = 102907, - [SMALL_STATE(2016)] = 102966, - [SMALL_STATE(2017)] = 103023, - [SMALL_STATE(2018)] = 103082, - [SMALL_STATE(2019)] = 103139, - [SMALL_STATE(2020)] = 103204, - [SMALL_STATE(2021)] = 103261, - [SMALL_STATE(2022)] = 103324, - [SMALL_STATE(2023)] = 103387, - [SMALL_STATE(2024)] = 103446, - [SMALL_STATE(2025)] = 103504, - [SMALL_STATE(2026)] = 103562, - [SMALL_STATE(2027)] = 103620, - [SMALL_STATE(2028)] = 103680, - [SMALL_STATE(2029)] = 103742, - [SMALL_STATE(2030)] = 103800, - [SMALL_STATE(2031)] = 103858, - [SMALL_STATE(2032)] = 103916, - [SMALL_STATE(2033)] = 103968, - [SMALL_STATE(2034)] = 104026, - [SMALL_STATE(2035)] = 104088, - [SMALL_STATE(2036)] = 104146, - [SMALL_STATE(2037)] = 104206, - [SMALL_STATE(2038)] = 104258, - [SMALL_STATE(2039)] = 104318, - [SMALL_STATE(2040)] = 104370, - [SMALL_STATE(2041)] = 104422, - [SMALL_STATE(2042)] = 104480, - [SMALL_STATE(2043)] = 104526, - [SMALL_STATE(2044)] = 104584, - [SMALL_STATE(2045)] = 104646, - [SMALL_STATE(2046)] = 104706, - [SMALL_STATE(2047)] = 104768, - [SMALL_STATE(2048)] = 104820, - [SMALL_STATE(2049)] = 104878, - [SMALL_STATE(2050)] = 104938, - [SMALL_STATE(2051)] = 104996, - [SMALL_STATE(2052)] = 105056, - [SMALL_STATE(2053)] = 105116, - [SMALL_STATE(2054)] = 105168, - [SMALL_STATE(2055)] = 105230, - [SMALL_STATE(2056)] = 105282, - [SMALL_STATE(2057)] = 105334, - [SMALL_STATE(2058)] = 105387, - [SMALL_STATE(2059)] = 105456, - [SMALL_STATE(2060)] = 105529, - [SMALL_STATE(2061)] = 105582, - [SMALL_STATE(2062)] = 105649, - [SMALL_STATE(2063)] = 105722, - [SMALL_STATE(2064)] = 105771, - [SMALL_STATE(2065)] = 105840, - [SMALL_STATE(2066)] = 105893, - [SMALL_STATE(2067)] = 105958, - [SMALL_STATE(2068)] = 106011, - [SMALL_STATE(2069)] = 106078, - [SMALL_STATE(2070)] = 106151, - [SMALL_STATE(2071)] = 106200, - [SMALL_STATE(2072)] = 106269, - [SMALL_STATE(2073)] = 106342, - [SMALL_STATE(2074)] = 106391, - [SMALL_STATE(2075)] = 106464, - [SMALL_STATE(2076)] = 106529, - [SMALL_STATE(2077)] = 106582, - [SMALL_STATE(2078)] = 106651, - [SMALL_STATE(2079)] = 106724, - [SMALL_STATE(2080)] = 106789, - [SMALL_STATE(2081)] = 106838, - [SMALL_STATE(2082)] = 106911, - [SMALL_STATE(2083)] = 106984, - [SMALL_STATE(2084)] = 107049, - [SMALL_STATE(2085)] = 107102, - [SMALL_STATE(2086)] = 107171, - [SMALL_STATE(2087)] = 107224, - [SMALL_STATE(2088)] = 107277, - [SMALL_STATE(2089)] = 107326, - [SMALL_STATE(2090)] = 107379, - [SMALL_STATE(2091)] = 107432, - [SMALL_STATE(2092)] = 107505, - [SMALL_STATE(2093)] = 107558, - [SMALL_STATE(2094)] = 107611, - [SMALL_STATE(2095)] = 107678, - [SMALL_STATE(2096)] = 107751, - [SMALL_STATE(2097)] = 107800, - [SMALL_STATE(2098)] = 107849, - [SMALL_STATE(2099)] = 107922, - [SMALL_STATE(2100)] = 107987, - [SMALL_STATE(2101)] = 108060, - [SMALL_STATE(2102)] = 108113, - [SMALL_STATE(2103)] = 108180, - [SMALL_STATE(2104)] = 108247, - [SMALL_STATE(2105)] = 108296, - [SMALL_STATE(2106)] = 108349, - [SMALL_STATE(2107)] = 108422, - [SMALL_STATE(2108)] = 108475, - [SMALL_STATE(2109)] = 108535, - [SMALL_STATE(2110)] = 108605, - [SMALL_STATE(2111)] = 108647, - [SMALL_STATE(2112)] = 108717, - [SMALL_STATE(2113)] = 108777, - [SMALL_STATE(2114)] = 108837, - [SMALL_STATE(2115)] = 108897, - [SMALL_STATE(2116)] = 108961, - [SMALL_STATE(2117)] = 109031, - [SMALL_STATE(2118)] = 109079, - [SMALL_STATE(2119)] = 109139, - [SMALL_STATE(2120)] = 109201, - [SMALL_STATE(2121)] = 109261, - [SMALL_STATE(2122)] = 109331, - [SMALL_STATE(2123)] = 109401, - [SMALL_STATE(2124)] = 109480, - [SMALL_STATE(2125)] = 109559, - [SMALL_STATE(2126)] = 109638, - [SMALL_STATE(2127)] = 109717, - [SMALL_STATE(2128)] = 109796, - [SMALL_STATE(2129)] = 109875, - [SMALL_STATE(2130)] = 109930, - [SMALL_STATE(2131)] = 110009, - [SMALL_STATE(2132)] = 110088, - [SMALL_STATE(2133)] = 110138, - [SMALL_STATE(2134)] = 110178, - [SMALL_STATE(2135)] = 110218, - [SMALL_STATE(2136)] = 110258, - [SMALL_STATE(2137)] = 110298, - [SMALL_STATE(2138)] = 110338, - [SMALL_STATE(2139)] = 110388, - [SMALL_STATE(2140)] = 110438, - [SMALL_STATE(2141)] = 110488, - [SMALL_STATE(2142)] = 110538, - [SMALL_STATE(2143)] = 110583, - [SMALL_STATE(2144)] = 110635, - [SMALL_STATE(2145)] = 110673, - [SMALL_STATE(2146)] = 110711, - [SMALL_STATE(2147)] = 110749, - [SMALL_STATE(2148)] = 110787, - [SMALL_STATE(2149)] = 110825, - [SMALL_STATE(2150)] = 110881, - [SMALL_STATE(2151)] = 110935, - [SMALL_STATE(2152)] = 110975, - [SMALL_STATE(2153)] = 111013, - [SMALL_STATE(2154)] = 111065, - [SMALL_STATE(2155)] = 111115, - [SMALL_STATE(2156)] = 111153, - [SMALL_STATE(2157)] = 111193, - [SMALL_STATE(2158)] = 111247, - [SMALL_STATE(2159)] = 111285, - [SMALL_STATE(2160)] = 111323, - [SMALL_STATE(2161)] = 111361, - [SMALL_STATE(2162)] = 111413, - [SMALL_STATE(2163)] = 111451, - [SMALL_STATE(2164)] = 111489, - [SMALL_STATE(2165)] = 111527, - [SMALL_STATE(2166)] = 111567, - [SMALL_STATE(2167)] = 111605, - [SMALL_STATE(2168)] = 111652, - [SMALL_STATE(2169)] = 111699, - [SMALL_STATE(2170)] = 111746, - [SMALL_STATE(2171)] = 111793, - [SMALL_STATE(2172)] = 111840, - [SMALL_STATE(2173)] = 111887, - [SMALL_STATE(2174)] = 111934, - [SMALL_STATE(2175)] = 111981, - [SMALL_STATE(2176)] = 112028, - [SMALL_STATE(2177)] = 112075, - [SMALL_STATE(2178)] = 112122, - [SMALL_STATE(2179)] = 112169, - [SMALL_STATE(2180)] = 112216, - [SMALL_STATE(2181)] = 112263, - [SMALL_STATE(2182)] = 112310, - [SMALL_STATE(2183)] = 112357, - [SMALL_STATE(2184)] = 112404, - [SMALL_STATE(2185)] = 112451, - [SMALL_STATE(2186)] = 112499, - [SMALL_STATE(2187)] = 112547, - [SMALL_STATE(2188)] = 112589, - [SMALL_STATE(2189)] = 112637, - [SMALL_STATE(2190)] = 112693, - [SMALL_STATE(2191)] = 112741, - [SMALL_STATE(2192)] = 112789, - [SMALL_STATE(2193)] = 112837, - [SMALL_STATE(2194)] = 112873, - [SMALL_STATE(2195)] = 112926, - [SMALL_STATE(2196)] = 112971, - [SMALL_STATE(2197)] = 113008, - [SMALL_STATE(2198)] = 113061, - [SMALL_STATE(2199)] = 113110, - [SMALL_STATE(2200)] = 113159, - [SMALL_STATE(2201)] = 113212, - [SMALL_STATE(2202)] = 113254, - [SMALL_STATE(2203)] = 113288, - [SMALL_STATE(2204)] = 113330, - [SMALL_STATE(2205)] = 113372, - [SMALL_STATE(2206)] = 113414, - [SMALL_STATE(2207)] = 113456, - [SMALL_STATE(2208)] = 113498, - [SMALL_STATE(2209)] = 113540, - [SMALL_STATE(2210)] = 113582, - [SMALL_STATE(2211)] = 113624, - [SMALL_STATE(2212)] = 113666, - [SMALL_STATE(2213)] = 113708, - [SMALL_STATE(2214)] = 113750, - [SMALL_STATE(2215)] = 113792, - [SMALL_STATE(2216)] = 113834, - [SMALL_STATE(2217)] = 113876, - [SMALL_STATE(2218)] = 113918, - [SMALL_STATE(2219)] = 113960, - [SMALL_STATE(2220)] = 114002, - [SMALL_STATE(2221)] = 114044, - [SMALL_STATE(2222)] = 114086, - [SMALL_STATE(2223)] = 114128, - [SMALL_STATE(2224)] = 114170, - [SMALL_STATE(2225)] = 114212, - [SMALL_STATE(2226)] = 114254, - [SMALL_STATE(2227)] = 114296, - [SMALL_STATE(2228)] = 114326, - [SMALL_STATE(2229)] = 114382, - [SMALL_STATE(2230)] = 114438, - [SMALL_STATE(2231)] = 114470, - [SMALL_STATE(2232)] = 114526, - [SMALL_STATE(2233)] = 114558, - [SMALL_STATE(2234)] = 114585, - [SMALL_STATE(2235)] = 114614, - [SMALL_STATE(2236)] = 114643, - [SMALL_STATE(2237)] = 114667, - [SMALL_STATE(2238)] = 114691, - [SMALL_STATE(2239)] = 114717, - [SMALL_STATE(2240)] = 114738, - [SMALL_STATE(2241)] = 114759, - [SMALL_STATE(2242)] = 114780, - [SMALL_STATE(2243)] = 114801, - [SMALL_STATE(2244)] = 114822, - [SMALL_STATE(2245)] = 114843, - [SMALL_STATE(2246)] = 114873, - [SMALL_STATE(2247)] = 114915, - [SMALL_STATE(2248)] = 114949, - [SMALL_STATE(2249)] = 114991, - [SMALL_STATE(2250)] = 115033, - [SMALL_STATE(2251)] = 115075, - [SMALL_STATE(2252)] = 115103, - [SMALL_STATE(2253)] = 115145, - [SMALL_STATE(2254)] = 115173, - [SMALL_STATE(2255)] = 115215, - [SMALL_STATE(2256)] = 115250, - [SMALL_STATE(2257)] = 115285, - [SMALL_STATE(2258)] = 115320, - [SMALL_STATE(2259)] = 115343, - [SMALL_STATE(2260)] = 115384, - [SMALL_STATE(2261)] = 115419, - [SMALL_STATE(2262)] = 115444, - [SMALL_STATE(2263)] = 115479, - [SMALL_STATE(2264)] = 115516, - [SMALL_STATE(2265)] = 115557, - [SMALL_STATE(2266)] = 115592, - [SMALL_STATE(2267)] = 115617, - [SMALL_STATE(2268)] = 115640, - [SMALL_STATE(2269)] = 115675, - [SMALL_STATE(2270)] = 115710, - [SMALL_STATE(2271)] = 115746, - [SMALL_STATE(2272)] = 115784, - [SMALL_STATE(2273)] = 115810, - [SMALL_STATE(2274)] = 115842, - [SMALL_STATE(2275)] = 115880, - [SMALL_STATE(2276)] = 115912, - [SMALL_STATE(2277)] = 115938, - [SMALL_STATE(2278)] = 115974, - [SMALL_STATE(2279)] = 116012, - [SMALL_STATE(2280)] = 116048, - [SMALL_STATE(2281)] = 116084, - [SMALL_STATE(2282)] = 116116, - [SMALL_STATE(2283)] = 116154, - [SMALL_STATE(2284)] = 116186, - [SMALL_STATE(2285)] = 116218, - [SMALL_STATE(2286)] = 116256, - [SMALL_STATE(2287)] = 116288, - [SMALL_STATE(2288)] = 116324, - [SMALL_STATE(2289)] = 116356, - [SMALL_STATE(2290)] = 116392, - [SMALL_STATE(2291)] = 116420, - [SMALL_STATE(2292)] = 116442, - [SMALL_STATE(2293)] = 116474, - [SMALL_STATE(2294)] = 116493, - [SMALL_STATE(2295)] = 116512, - [SMALL_STATE(2296)] = 116533, - [SMALL_STATE(2297)] = 116552, - [SMALL_STATE(2298)] = 116571, - [SMALL_STATE(2299)] = 116590, - [SMALL_STATE(2300)] = 116609, - [SMALL_STATE(2301)] = 116628, - [SMALL_STATE(2302)] = 116647, - [SMALL_STATE(2303)] = 116666, - [SMALL_STATE(2304)] = 116685, - [SMALL_STATE(2305)] = 116704, - [SMALL_STATE(2306)] = 116725, - [SMALL_STATE(2307)] = 116744, - [SMALL_STATE(2308)] = 116763, - [SMALL_STATE(2309)] = 116784, - [SMALL_STATE(2310)] = 116803, - [SMALL_STATE(2311)] = 116826, - [SMALL_STATE(2312)] = 116845, - [SMALL_STATE(2313)] = 116864, - [SMALL_STATE(2314)] = 116883, - [SMALL_STATE(2315)] = 116902, - [SMALL_STATE(2316)] = 116919, - [SMALL_STATE(2317)] = 116940, - [SMALL_STATE(2318)] = 116959, - [SMALL_STATE(2319)] = 116980, - [SMALL_STATE(2320)] = 117001, - [SMALL_STATE(2321)] = 117024, - [SMALL_STATE(2322)] = 117041, - [SMALL_STATE(2323)] = 117060, - [SMALL_STATE(2324)] = 117079, - [SMALL_STATE(2325)] = 117098, - [SMALL_STATE(2326)] = 117121, - [SMALL_STATE(2327)] = 117140, - [SMALL_STATE(2328)] = 117159, - [SMALL_STATE(2329)] = 117178, - [SMALL_STATE(2330)] = 117199, - [SMALL_STATE(2331)] = 117226, - [SMALL_STATE(2332)] = 117245, - [SMALL_STATE(2333)] = 117266, - [SMALL_STATE(2334)] = 117289, - [SMALL_STATE(2335)] = 117310, - [SMALL_STATE(2336)] = 117329, - [SMALL_STATE(2337)] = 117348, - [SMALL_STATE(2338)] = 117367, - [SMALL_STATE(2339)] = 117386, - [SMALL_STATE(2340)] = 117405, - [SMALL_STATE(2341)] = 117431, - [SMALL_STATE(2342)] = 117457, - [SMALL_STATE(2343)] = 117483, - [SMALL_STATE(2344)] = 117505, - [SMALL_STATE(2345)] = 117539, - [SMALL_STATE(2346)] = 117573, - [SMALL_STATE(2347)] = 117599, - [SMALL_STATE(2348)] = 117617, - [SMALL_STATE(2349)] = 117643, - [SMALL_STATE(2350)] = 117661, - [SMALL_STATE(2351)] = 117693, - [SMALL_STATE(2352)] = 117713, - [SMALL_STATE(2353)] = 117733, - [SMALL_STATE(2354)] = 117753, - [SMALL_STATE(2355)] = 117779, - [SMALL_STATE(2356)] = 117805, - [SMALL_STATE(2357)] = 117837, - [SMALL_STATE(2358)] = 117871, - [SMALL_STATE(2359)] = 117905, - [SMALL_STATE(2360)] = 117939, - [SMALL_STATE(2361)] = 117969, - [SMALL_STATE(2362)] = 118003, - [SMALL_STATE(2363)] = 118029, - [SMALL_STATE(2364)] = 118049, - [SMALL_STATE(2365)] = 118075, - [SMALL_STATE(2366)] = 118109, - [SMALL_STATE(2367)] = 118129, - [SMALL_STATE(2368)] = 118153, - [SMALL_STATE(2369)] = 118187, - [SMALL_STATE(2370)] = 118219, - [SMALL_STATE(2371)] = 118253, - [SMALL_STATE(2372)] = 118285, - [SMALL_STATE(2373)] = 118311, - [SMALL_STATE(2374)] = 118337, - [SMALL_STATE(2375)] = 118355, - [SMALL_STATE(2376)] = 118389, - [SMALL_STATE(2377)] = 118409, - [SMALL_STATE(2378)] = 118435, - [SMALL_STATE(2379)] = 118457, - [SMALL_STATE(2380)] = 118489, - [SMALL_STATE(2381)] = 118518, - [SMALL_STATE(2382)] = 118549, - [SMALL_STATE(2383)] = 118578, - [SMALL_STATE(2384)] = 118597, - [SMALL_STATE(2385)] = 118616, - [SMALL_STATE(2386)] = 118645, - [SMALL_STATE(2387)] = 118666, - [SMALL_STATE(2388)] = 118695, - [SMALL_STATE(2389)] = 118712, - [SMALL_STATE(2390)] = 118735, - [SMALL_STATE(2391)] = 118756, - [SMALL_STATE(2392)] = 118787, - [SMALL_STATE(2393)] = 118818, - [SMALL_STATE(2394)] = 118841, - [SMALL_STATE(2395)] = 118864, - [SMALL_STATE(2396)] = 118893, - [SMALL_STATE(2397)] = 118922, - [SMALL_STATE(2398)] = 118951, - [SMALL_STATE(2399)] = 118980, - [SMALL_STATE(2400)] = 119011, - [SMALL_STATE(2401)] = 119030, - [SMALL_STATE(2402)] = 119047, - [SMALL_STATE(2403)] = 119076, - [SMALL_STATE(2404)] = 119105, - [SMALL_STATE(2405)] = 119128, - [SMALL_STATE(2406)] = 119151, - [SMALL_STATE(2407)] = 119180, - [SMALL_STATE(2408)] = 119211, - [SMALL_STATE(2409)] = 119240, - [SMALL_STATE(2410)] = 119265, - [SMALL_STATE(2411)] = 119288, - [SMALL_STATE(2412)] = 119319, - [SMALL_STATE(2413)] = 119350, - [SMALL_STATE(2414)] = 119373, - [SMALL_STATE(2415)] = 119390, - [SMALL_STATE(2416)] = 119419, - [SMALL_STATE(2417)] = 119450, - [SMALL_STATE(2418)] = 119481, - [SMALL_STATE(2419)] = 119504, - [SMALL_STATE(2420)] = 119535, - [SMALL_STATE(2421)] = 119564, - [SMALL_STATE(2422)] = 119589, - [SMALL_STATE(2423)] = 119620, - [SMALL_STATE(2424)] = 119651, - [SMALL_STATE(2425)] = 119668, - [SMALL_STATE(2426)] = 119685, - [SMALL_STATE(2427)] = 119716, - [SMALL_STATE(2428)] = 119739, - [SMALL_STATE(2429)] = 119756, - [SMALL_STATE(2430)] = 119779, - [SMALL_STATE(2431)] = 119802, - [SMALL_STATE(2432)] = 119825, - [SMALL_STATE(2433)] = 119846, - [SMALL_STATE(2434)] = 119875, - [SMALL_STATE(2435)] = 119904, - [SMALL_STATE(2436)] = 119935, - [SMALL_STATE(2437)] = 119964, - [SMALL_STATE(2438)] = 119995, - [SMALL_STATE(2439)] = 120026, - [SMALL_STATE(2440)] = 120055, - [SMALL_STATE(2441)] = 120084, - [SMALL_STATE(2442)] = 120115, - [SMALL_STATE(2443)] = 120144, - [SMALL_STATE(2444)] = 120173, - [SMALL_STATE(2445)] = 120204, - [SMALL_STATE(2446)] = 120227, - [SMALL_STATE(2447)] = 120241, - [SMALL_STATE(2448)] = 120255, - [SMALL_STATE(2449)] = 120269, - [SMALL_STATE(2450)] = 120283, - [SMALL_STATE(2451)] = 120307, - [SMALL_STATE(2452)] = 120321, - [SMALL_STATE(2453)] = 120339, - [SMALL_STATE(2454)] = 120361, - [SMALL_STATE(2455)] = 120375, - [SMALL_STATE(2456)] = 120389, - [SMALL_STATE(2457)] = 120405, - [SMALL_STATE(2458)] = 120425, - [SMALL_STATE(2459)] = 120439, - [SMALL_STATE(2460)] = 120453, - [SMALL_STATE(2461)] = 120467, - [SMALL_STATE(2462)] = 120487, - [SMALL_STATE(2463)] = 120501, - [SMALL_STATE(2464)] = 120519, - [SMALL_STATE(2465)] = 120535, - [SMALL_STATE(2466)] = 120549, - [SMALL_STATE(2467)] = 120563, - [SMALL_STATE(2468)] = 120579, - [SMALL_STATE(2469)] = 120599, - [SMALL_STATE(2470)] = 120613, - [SMALL_STATE(2471)] = 120627, - [SMALL_STATE(2472)] = 120641, - [SMALL_STATE(2473)] = 120661, - [SMALL_STATE(2474)] = 120675, - [SMALL_STATE(2475)] = 120691, - [SMALL_STATE(2476)] = 120709, - [SMALL_STATE(2477)] = 120723, - [SMALL_STATE(2478)] = 120737, - [SMALL_STATE(2479)] = 120751, - [SMALL_STATE(2480)] = 120765, - [SMALL_STATE(2481)] = 120779, - [SMALL_STATE(2482)] = 120793, - [SMALL_STATE(2483)] = 120815, - [SMALL_STATE(2484)] = 120829, - [SMALL_STATE(2485)] = 120849, - [SMALL_STATE(2486)] = 120871, - [SMALL_STATE(2487)] = 120893, - [SMALL_STATE(2488)] = 120915, - [SMALL_STATE(2489)] = 120929, - [SMALL_STATE(2490)] = 120943, - [SMALL_STATE(2491)] = 120957, - [SMALL_STATE(2492)] = 120971, - [SMALL_STATE(2493)] = 120985, - [SMALL_STATE(2494)] = 120999, - [SMALL_STATE(2495)] = 121013, - [SMALL_STATE(2496)] = 121033, - [SMALL_STATE(2497)] = 121047, - [SMALL_STATE(2498)] = 121061, - [SMALL_STATE(2499)] = 121079, - [SMALL_STATE(2500)] = 121099, - [SMALL_STATE(2501)] = 121119, - [SMALL_STATE(2502)] = 121134, - [SMALL_STATE(2503)] = 121159, - [SMALL_STATE(2504)] = 121184, - [SMALL_STATE(2505)] = 121201, - [SMALL_STATE(2506)] = 121218, - [SMALL_STATE(2507)] = 121235, - [SMALL_STATE(2508)] = 121252, - [SMALL_STATE(2509)] = 121269, - [SMALL_STATE(2510)] = 121286, - [SMALL_STATE(2511)] = 121303, - [SMALL_STATE(2512)] = 121322, - [SMALL_STATE(2513)] = 121339, - [SMALL_STATE(2514)] = 121356, - [SMALL_STATE(2515)] = 121373, - [SMALL_STATE(2516)] = 121390, - [SMALL_STATE(2517)] = 121409, - [SMALL_STATE(2518)] = 121426, - [SMALL_STATE(2519)] = 121443, - [SMALL_STATE(2520)] = 121468, - [SMALL_STATE(2521)] = 121493, - [SMALL_STATE(2522)] = 121518, - [SMALL_STATE(2523)] = 121543, - [SMALL_STATE(2524)] = 121568, - [SMALL_STATE(2525)] = 121585, - [SMALL_STATE(2526)] = 121610, - [SMALL_STATE(2527)] = 121635, - [SMALL_STATE(2528)] = 121660, - [SMALL_STATE(2529)] = 121673, - [SMALL_STATE(2530)] = 121694, - [SMALL_STATE(2531)] = 121719, - [SMALL_STATE(2532)] = 121734, - [SMALL_STATE(2533)] = 121751, - [SMALL_STATE(2534)] = 121764, - [SMALL_STATE(2535)] = 121783, - [SMALL_STATE(2536)] = 121802, - [SMALL_STATE(2537)] = 121817, - [SMALL_STATE(2538)] = 121830, - [SMALL_STATE(2539)] = 121851, - [SMALL_STATE(2540)] = 121876, - [SMALL_STATE(2541)] = 121897, - [SMALL_STATE(2542)] = 121922, - [SMALL_STATE(2543)] = 121947, - [SMALL_STATE(2544)] = 121960, - [SMALL_STATE(2545)] = 121979, - [SMALL_STATE(2546)] = 122004, - [SMALL_STATE(2547)] = 122029, - [SMALL_STATE(2548)] = 122054, - [SMALL_STATE(2549)] = 122079, - [SMALL_STATE(2550)] = 122104, - [SMALL_STATE(2551)] = 122123, - [SMALL_STATE(2552)] = 122148, - [SMALL_STATE(2553)] = 122173, - [SMALL_STATE(2554)] = 122198, - [SMALL_STATE(2555)] = 122215, - [SMALL_STATE(2556)] = 122232, - [SMALL_STATE(2557)] = 122257, - [SMALL_STATE(2558)] = 122282, - [SMALL_STATE(2559)] = 122307, - [SMALL_STATE(2560)] = 122324, - [SMALL_STATE(2561)] = 122343, - [SMALL_STATE(2562)] = 122362, - [SMALL_STATE(2563)] = 122379, - [SMALL_STATE(2564)] = 122404, - [SMALL_STATE(2565)] = 122429, - [SMALL_STATE(2566)] = 122454, - [SMALL_STATE(2567)] = 122467, - [SMALL_STATE(2568)] = 122492, - [SMALL_STATE(2569)] = 122517, - [SMALL_STATE(2570)] = 122542, - [SMALL_STATE(2571)] = 122567, - [SMALL_STATE(2572)] = 122592, - [SMALL_STATE(2573)] = 122617, - [SMALL_STATE(2574)] = 122642, - [SMALL_STATE(2575)] = 122661, - [SMALL_STATE(2576)] = 122686, - [SMALL_STATE(2577)] = 122705, - [SMALL_STATE(2578)] = 122730, - [SMALL_STATE(2579)] = 122745, - [SMALL_STATE(2580)] = 122770, - [SMALL_STATE(2581)] = 122791, - [SMALL_STATE(2582)] = 122812, - [SMALL_STATE(2583)] = 122837, - [SMALL_STATE(2584)] = 122862, - [SMALL_STATE(2585)] = 122881, - [SMALL_STATE(2586)] = 122906, - [SMALL_STATE(2587)] = 122931, - [SMALL_STATE(2588)] = 122956, - [SMALL_STATE(2589)] = 122977, - [SMALL_STATE(2590)] = 122990, - [SMALL_STATE(2591)] = 123015, - [SMALL_STATE(2592)] = 123034, - [SMALL_STATE(2593)] = 123059, - [SMALL_STATE(2594)] = 123084, - [SMALL_STATE(2595)] = 123109, - [SMALL_STATE(2596)] = 123132, - [SMALL_STATE(2597)] = 123153, - [SMALL_STATE(2598)] = 123175, - [SMALL_STATE(2599)] = 123191, - [SMALL_STATE(2600)] = 123213, - [SMALL_STATE(2601)] = 123235, - [SMALL_STATE(2602)] = 123257, - [SMALL_STATE(2603)] = 123279, - [SMALL_STATE(2604)] = 123301, - [SMALL_STATE(2605)] = 123323, - [SMALL_STATE(2606)] = 123345, - [SMALL_STATE(2607)] = 123359, - [SMALL_STATE(2608)] = 123381, - [SMALL_STATE(2609)] = 123403, - [SMALL_STATE(2610)] = 123425, - [SMALL_STATE(2611)] = 123445, - [SMALL_STATE(2612)] = 123467, - [SMALL_STATE(2613)] = 123487, - [SMALL_STATE(2614)] = 123509, - [SMALL_STATE(2615)] = 123531, - [SMALL_STATE(2616)] = 123549, - [SMALL_STATE(2617)] = 123571, - [SMALL_STATE(2618)] = 123593, - [SMALL_STATE(2619)] = 123615, - [SMALL_STATE(2620)] = 123633, - [SMALL_STATE(2621)] = 123653, - [SMALL_STATE(2622)] = 123673, - [SMALL_STATE(2623)] = 123695, - [SMALL_STATE(2624)] = 123715, - [SMALL_STATE(2625)] = 123737, - [SMALL_STATE(2626)] = 123759, - [SMALL_STATE(2627)] = 123781, - [SMALL_STATE(2628)] = 123801, - [SMALL_STATE(2629)] = 123813, - [SMALL_STATE(2630)] = 123835, - [SMALL_STATE(2631)] = 123853, - [SMALL_STATE(2632)] = 123873, - [SMALL_STATE(2633)] = 123891, - [SMALL_STATE(2634)] = 123913, - [SMALL_STATE(2635)] = 123929, - [SMALL_STATE(2636)] = 123949, - [SMALL_STATE(2637)] = 123967, - [SMALL_STATE(2638)] = 123989, - [SMALL_STATE(2639)] = 124005, - [SMALL_STATE(2640)] = 124027, - [SMALL_STATE(2641)] = 124041, - [SMALL_STATE(2642)] = 124057, - [SMALL_STATE(2643)] = 124073, - [SMALL_STATE(2644)] = 124091, - [SMALL_STATE(2645)] = 124107, - [SMALL_STATE(2646)] = 124129, - [SMALL_STATE(2647)] = 124151, - [SMALL_STATE(2648)] = 124173, - [SMALL_STATE(2649)] = 124195, - [SMALL_STATE(2650)] = 124217, - [SMALL_STATE(2651)] = 124237, - [SMALL_STATE(2652)] = 124257, - [SMALL_STATE(2653)] = 124279, - [SMALL_STATE(2654)] = 124301, - [SMALL_STATE(2655)] = 124323, - [SMALL_STATE(2656)] = 124339, - [SMALL_STATE(2657)] = 124355, - [SMALL_STATE(2658)] = 124373, - [SMALL_STATE(2659)] = 124389, - [SMALL_STATE(2660)] = 124405, - [SMALL_STATE(2661)] = 124427, - [SMALL_STATE(2662)] = 124447, - [SMALL_STATE(2663)] = 124467, - [SMALL_STATE(2664)] = 124489, - [SMALL_STATE(2665)] = 124511, - [SMALL_STATE(2666)] = 124533, - [SMALL_STATE(2667)] = 124555, - [SMALL_STATE(2668)] = 124577, - [SMALL_STATE(2669)] = 124595, - [SMALL_STATE(2670)] = 124613, - [SMALL_STATE(2671)] = 124635, - [SMALL_STATE(2672)] = 124647, - [SMALL_STATE(2673)] = 124669, - [SMALL_STATE(2674)] = 124685, - [SMALL_STATE(2675)] = 124707, - [SMALL_STATE(2676)] = 124725, - [SMALL_STATE(2677)] = 124743, - [SMALL_STATE(2678)] = 124765, - [SMALL_STATE(2679)] = 124787, - [SMALL_STATE(2680)] = 124803, - [SMALL_STATE(2681)] = 124825, - [SMALL_STATE(2682)] = 124847, - [SMALL_STATE(2683)] = 124869, - [SMALL_STATE(2684)] = 124885, - [SMALL_STATE(2685)] = 124907, - [SMALL_STATE(2686)] = 124923, - [SMALL_STATE(2687)] = 124945, - [SMALL_STATE(2688)] = 124965, - [SMALL_STATE(2689)] = 124985, - [SMALL_STATE(2690)] = 125007, - [SMALL_STATE(2691)] = 125023, - [SMALL_STATE(2692)] = 125041, - [SMALL_STATE(2693)] = 125063, - [SMALL_STATE(2694)] = 125085, - [SMALL_STATE(2695)] = 125107, - [SMALL_STATE(2696)] = 125123, - [SMALL_STATE(2697)] = 125141, - [SMALL_STATE(2698)] = 125159, - [SMALL_STATE(2699)] = 125175, - [SMALL_STATE(2700)] = 125191, - [SMALL_STATE(2701)] = 125207, - [SMALL_STATE(2702)] = 125229, - [SMALL_STATE(2703)] = 125245, - [SMALL_STATE(2704)] = 125267, - [SMALL_STATE(2705)] = 125279, - [SMALL_STATE(2706)] = 125301, - [SMALL_STATE(2707)] = 125323, - [SMALL_STATE(2708)] = 125335, - [SMALL_STATE(2709)] = 125357, - [SMALL_STATE(2710)] = 125379, - [SMALL_STATE(2711)] = 125401, - [SMALL_STATE(2712)] = 125423, - [SMALL_STATE(2713)] = 125445, - [SMALL_STATE(2714)] = 125467, - [SMALL_STATE(2715)] = 125487, - [SMALL_STATE(2716)] = 125509, - [SMALL_STATE(2717)] = 125523, - [SMALL_STATE(2718)] = 125545, - [SMALL_STATE(2719)] = 125563, - [SMALL_STATE(2720)] = 125575, - [SMALL_STATE(2721)] = 125597, - [SMALL_STATE(2722)] = 125615, - [SMALL_STATE(2723)] = 125637, - [SMALL_STATE(2724)] = 125655, - [SMALL_STATE(2725)] = 125677, - [SMALL_STATE(2726)] = 125699, - [SMALL_STATE(2727)] = 125721, - [SMALL_STATE(2728)] = 125739, - [SMALL_STATE(2729)] = 125761, - [SMALL_STATE(2730)] = 125783, - [SMALL_STATE(2731)] = 125805, - [SMALL_STATE(2732)] = 125827, - [SMALL_STATE(2733)] = 125845, - [SMALL_STATE(2734)] = 125867, - [SMALL_STATE(2735)] = 125885, - [SMALL_STATE(2736)] = 125901, - [SMALL_STATE(2737)] = 125919, - [SMALL_STATE(2738)] = 125941, - [SMALL_STATE(2739)] = 125961, - [SMALL_STATE(2740)] = 125979, - [SMALL_STATE(2741)] = 125997, - [SMALL_STATE(2742)] = 126015, - [SMALL_STATE(2743)] = 126037, - [SMALL_STATE(2744)] = 126059, - [SMALL_STATE(2745)] = 126077, - [SMALL_STATE(2746)] = 126093, - [SMALL_STATE(2747)] = 126109, - [SMALL_STATE(2748)] = 126131, - [SMALL_STATE(2749)] = 126153, - [SMALL_STATE(2750)] = 126175, - [SMALL_STATE(2751)] = 126197, - [SMALL_STATE(2752)] = 126219, - [SMALL_STATE(2753)] = 126231, - [SMALL_STATE(2754)] = 126253, - [SMALL_STATE(2755)] = 126275, - [SMALL_STATE(2756)] = 126297, - [SMALL_STATE(2757)] = 126313, - [SMALL_STATE(2758)] = 126331, - [SMALL_STATE(2759)] = 126347, - [SMALL_STATE(2760)] = 126369, - [SMALL_STATE(2761)] = 126389, - [SMALL_STATE(2762)] = 126407, - [SMALL_STATE(2763)] = 126423, - [SMALL_STATE(2764)] = 126443, - [SMALL_STATE(2765)] = 126465, - [SMALL_STATE(2766)] = 126481, - [SMALL_STATE(2767)] = 126500, - [SMALL_STATE(2768)] = 126519, - [SMALL_STATE(2769)] = 126530, - [SMALL_STATE(2770)] = 126545, - [SMALL_STATE(2771)] = 126560, - [SMALL_STATE(2772)] = 126579, - [SMALL_STATE(2773)] = 126590, - [SMALL_STATE(2774)] = 126605, - [SMALL_STATE(2775)] = 126624, - [SMALL_STATE(2776)] = 126637, - [SMALL_STATE(2777)] = 126650, - [SMALL_STATE(2778)] = 126661, - [SMALL_STATE(2779)] = 126674, - [SMALL_STATE(2780)] = 126687, - [SMALL_STATE(2781)] = 126706, - [SMALL_STATE(2782)] = 126725, - [SMALL_STATE(2783)] = 126742, - [SMALL_STATE(2784)] = 126753, - [SMALL_STATE(2785)] = 126764, - [SMALL_STATE(2786)] = 126779, - [SMALL_STATE(2787)] = 126794, - [SMALL_STATE(2788)] = 126811, - [SMALL_STATE(2789)] = 126822, - [SMALL_STATE(2790)] = 126839, - [SMALL_STATE(2791)] = 126850, - [SMALL_STATE(2792)] = 126861, - [SMALL_STATE(2793)] = 126872, - [SMALL_STATE(2794)] = 126885, - [SMALL_STATE(2795)] = 126898, - [SMALL_STATE(2796)] = 126913, - [SMALL_STATE(2797)] = 126926, - [SMALL_STATE(2798)] = 126939, - [SMALL_STATE(2799)] = 126954, - [SMALL_STATE(2800)] = 126973, - [SMALL_STATE(2801)] = 126992, - [SMALL_STATE(2802)] = 127005, - [SMALL_STATE(2803)] = 127016, - [SMALL_STATE(2804)] = 127031, - [SMALL_STATE(2805)] = 127046, - [SMALL_STATE(2806)] = 127065, - [SMALL_STATE(2807)] = 127076, - [SMALL_STATE(2808)] = 127091, - [SMALL_STATE(2809)] = 127102, - [SMALL_STATE(2810)] = 127113, - [SMALL_STATE(2811)] = 127124, - [SMALL_STATE(2812)] = 127135, - [SMALL_STATE(2813)] = 127154, - [SMALL_STATE(2814)] = 127169, - [SMALL_STATE(2815)] = 127182, - [SMALL_STATE(2816)] = 127193, - [SMALL_STATE(2817)] = 127204, - [SMALL_STATE(2818)] = 127219, - [SMALL_STATE(2819)] = 127234, - [SMALL_STATE(2820)] = 127251, - [SMALL_STATE(2821)] = 127270, - [SMALL_STATE(2822)] = 127289, - [SMALL_STATE(2823)] = 127302, - [SMALL_STATE(2824)] = 127317, - [SMALL_STATE(2825)] = 127332, - [SMALL_STATE(2826)] = 127345, - [SMALL_STATE(2827)] = 127358, - [SMALL_STATE(2828)] = 127373, - [SMALL_STATE(2829)] = 127388, - [SMALL_STATE(2830)] = 127399, - [SMALL_STATE(2831)] = 127414, - [SMALL_STATE(2832)] = 127425, - [SMALL_STATE(2833)] = 127444, - [SMALL_STATE(2834)] = 127463, - [SMALL_STATE(2835)] = 127474, - [SMALL_STATE(2836)] = 127493, - [SMALL_STATE(2837)] = 127508, - [SMALL_STATE(2838)] = 127519, - [SMALL_STATE(2839)] = 127530, - [SMALL_STATE(2840)] = 127549, - [SMALL_STATE(2841)] = 127560, - [SMALL_STATE(2842)] = 127571, - [SMALL_STATE(2843)] = 127586, - [SMALL_STATE(2844)] = 127605, - [SMALL_STATE(2845)] = 127616, - [SMALL_STATE(2846)] = 127627, - [SMALL_STATE(2847)] = 127638, - [SMALL_STATE(2848)] = 127651, - [SMALL_STATE(2849)] = 127670, - [SMALL_STATE(2850)] = 127683, - [SMALL_STATE(2851)] = 127694, - [SMALL_STATE(2852)] = 127705, - [SMALL_STATE(2853)] = 127716, - [SMALL_STATE(2854)] = 127731, - [SMALL_STATE(2855)] = 127750, - [SMALL_STATE(2856)] = 127769, - [SMALL_STATE(2857)] = 127784, - [SMALL_STATE(2858)] = 127801, - [SMALL_STATE(2859)] = 127812, - [SMALL_STATE(2860)] = 127823, - [SMALL_STATE(2861)] = 127840, - [SMALL_STATE(2862)] = 127851, - [SMALL_STATE(2863)] = 127862, - [SMALL_STATE(2864)] = 127873, - [SMALL_STATE(2865)] = 127884, - [SMALL_STATE(2866)] = 127899, - [SMALL_STATE(2867)] = 127910, - [SMALL_STATE(2868)] = 127925, - [SMALL_STATE(2869)] = 127936, - [SMALL_STATE(2870)] = 127951, - [SMALL_STATE(2871)] = 127962, - [SMALL_STATE(2872)] = 127973, - [SMALL_STATE(2873)] = 127984, - [SMALL_STATE(2874)] = 127995, - [SMALL_STATE(2875)] = 128006, - [SMALL_STATE(2876)] = 128017, - [SMALL_STATE(2877)] = 128028, - [SMALL_STATE(2878)] = 128047, - [SMALL_STATE(2879)] = 128062, - [SMALL_STATE(2880)] = 128073, - [SMALL_STATE(2881)] = 128084, - [SMALL_STATE(2882)] = 128103, - [SMALL_STATE(2883)] = 128114, - [SMALL_STATE(2884)] = 128125, - [SMALL_STATE(2885)] = 128140, - [SMALL_STATE(2886)] = 128159, - [SMALL_STATE(2887)] = 128170, - [SMALL_STATE(2888)] = 128189, - [SMALL_STATE(2889)] = 128208, - [SMALL_STATE(2890)] = 128223, - [SMALL_STATE(2891)] = 128234, - [SMALL_STATE(2892)] = 128253, - [SMALL_STATE(2893)] = 128272, - [SMALL_STATE(2894)] = 128287, - [SMALL_STATE(2895)] = 128302, - [SMALL_STATE(2896)] = 128319, - [SMALL_STATE(2897)] = 128330, - [SMALL_STATE(2898)] = 128349, - [SMALL_STATE(2899)] = 128364, - [SMALL_STATE(2900)] = 128381, - [SMALL_STATE(2901)] = 128392, - [SMALL_STATE(2902)] = 128403, - [SMALL_STATE(2903)] = 128422, - [SMALL_STATE(2904)] = 128441, - [SMALL_STATE(2905)] = 128460, - [SMALL_STATE(2906)] = 128479, - [SMALL_STATE(2907)] = 128498, - [SMALL_STATE(2908)] = 128509, - [SMALL_STATE(2909)] = 128524, - [SMALL_STATE(2910)] = 128539, - [SMALL_STATE(2911)] = 128550, - [SMALL_STATE(2912)] = 128561, - [SMALL_STATE(2913)] = 128580, - [SMALL_STATE(2914)] = 128591, - [SMALL_STATE(2915)] = 128602, - [SMALL_STATE(2916)] = 128619, - [SMALL_STATE(2917)] = 128630, - [SMALL_STATE(2918)] = 128647, - [SMALL_STATE(2919)] = 128658, - [SMALL_STATE(2920)] = 128677, - [SMALL_STATE(2921)] = 128688, - [SMALL_STATE(2922)] = 128699, - [SMALL_STATE(2923)] = 128718, - [SMALL_STATE(2924)] = 128733, - [SMALL_STATE(2925)] = 128744, - [SMALL_STATE(2926)] = 128763, - [SMALL_STATE(2927)] = 128774, - [SMALL_STATE(2928)] = 128785, - [SMALL_STATE(2929)] = 128804, - [SMALL_STATE(2930)] = 128823, - [SMALL_STATE(2931)] = 128838, - [SMALL_STATE(2932)] = 128857, - [SMALL_STATE(2933)] = 128870, - [SMALL_STATE(2934)] = 128889, - [SMALL_STATE(2935)] = 128900, - [SMALL_STATE(2936)] = 128911, - [SMALL_STATE(2937)] = 128922, - [SMALL_STATE(2938)] = 128937, - [SMALL_STATE(2939)] = 128952, - [SMALL_STATE(2940)] = 128971, - [SMALL_STATE(2941)] = 128984, - [SMALL_STATE(2942)] = 128995, - [SMALL_STATE(2943)] = 129012, - [SMALL_STATE(2944)] = 129023, - [SMALL_STATE(2945)] = 129038, - [SMALL_STATE(2946)] = 129049, - [SMALL_STATE(2947)] = 129060, - [SMALL_STATE(2948)] = 129075, - [SMALL_STATE(2949)] = 129094, - [SMALL_STATE(2950)] = 129109, - [SMALL_STATE(2951)] = 129120, - [SMALL_STATE(2952)] = 129131, - [SMALL_STATE(2953)] = 129142, - [SMALL_STATE(2954)] = 129153, - [SMALL_STATE(2955)] = 129166, - [SMALL_STATE(2956)] = 129181, - [SMALL_STATE(2957)] = 129200, - [SMALL_STATE(2958)] = 129219, - [SMALL_STATE(2959)] = 129238, - [SMALL_STATE(2960)] = 129249, - [SMALL_STATE(2961)] = 129260, - [SMALL_STATE(2962)] = 129275, - [SMALL_STATE(2963)] = 129288, - [SMALL_STATE(2964)] = 129303, - [SMALL_STATE(2965)] = 129318, - [SMALL_STATE(2966)] = 129329, - [SMALL_STATE(2967)] = 129340, - [SMALL_STATE(2968)] = 129351, - [SMALL_STATE(2969)] = 129366, - [SMALL_STATE(2970)] = 129377, - [SMALL_STATE(2971)] = 129388, - [SMALL_STATE(2972)] = 129407, - [SMALL_STATE(2973)] = 129422, - [SMALL_STATE(2974)] = 129441, - [SMALL_STATE(2975)] = 129458, - [SMALL_STATE(2976)] = 129469, - [SMALL_STATE(2977)] = 129486, - [SMALL_STATE(2978)] = 129505, - [SMALL_STATE(2979)] = 129518, - [SMALL_STATE(2980)] = 129529, - [SMALL_STATE(2981)] = 129540, - [SMALL_STATE(2982)] = 129551, - [SMALL_STATE(2983)] = 129570, - [SMALL_STATE(2984)] = 129585, - [SMALL_STATE(2985)] = 129596, - [SMALL_STATE(2986)] = 129615, - [SMALL_STATE(2987)] = 129628, - [SMALL_STATE(2988)] = 129647, - [SMALL_STATE(2989)] = 129666, - [SMALL_STATE(2990)] = 129677, - [SMALL_STATE(2991)] = 129696, - [SMALL_STATE(2992)] = 129707, - [SMALL_STATE(2993)] = 129722, - [SMALL_STATE(2994)] = 129737, - [SMALL_STATE(2995)] = 129748, - [SMALL_STATE(2996)] = 129759, - [SMALL_STATE(2997)] = 129778, - [SMALL_STATE(2998)] = 129789, - [SMALL_STATE(2999)] = 129804, - [SMALL_STATE(3000)] = 129815, - [SMALL_STATE(3001)] = 129834, - [SMALL_STATE(3002)] = 129845, - [SMALL_STATE(3003)] = 129862, - [SMALL_STATE(3004)] = 129881, - [SMALL_STATE(3005)] = 129892, - [SMALL_STATE(3006)] = 129903, - [SMALL_STATE(3007)] = 129914, - [SMALL_STATE(3008)] = 129931, - [SMALL_STATE(3009)] = 129950, - [SMALL_STATE(3010)] = 129965, - [SMALL_STATE(3011)] = 129984, - [SMALL_STATE(3012)] = 129995, - [SMALL_STATE(3013)] = 130006, - [SMALL_STATE(3014)] = 130025, - [SMALL_STATE(3015)] = 130036, - [SMALL_STATE(3016)] = 130047, - [SMALL_STATE(3017)] = 130058, - [SMALL_STATE(3018)] = 130073, - [SMALL_STATE(3019)] = 130084, - [SMALL_STATE(3020)] = 130095, - [SMALL_STATE(3021)] = 130106, - [SMALL_STATE(3022)] = 130117, - [SMALL_STATE(3023)] = 130128, - [SMALL_STATE(3024)] = 130139, - [SMALL_STATE(3025)] = 130154, - [SMALL_STATE(3026)] = 130173, - [SMALL_STATE(3027)] = 130186, - [SMALL_STATE(3028)] = 130201, - [SMALL_STATE(3029)] = 130212, - [SMALL_STATE(3030)] = 130223, - [SMALL_STATE(3031)] = 130240, - [SMALL_STATE(3032)] = 130251, - [SMALL_STATE(3033)] = 130266, - [SMALL_STATE(3034)] = 130277, - [SMALL_STATE(3035)] = 130292, - [SMALL_STATE(3036)] = 130303, - [SMALL_STATE(3037)] = 130322, - [SMALL_STATE(3038)] = 130333, - [SMALL_STATE(3039)] = 130344, - [SMALL_STATE(3040)] = 130355, - [SMALL_STATE(3041)] = 130366, - [SMALL_STATE(3042)] = 130381, - [SMALL_STATE(3043)] = 130400, - [SMALL_STATE(3044)] = 130411, - [SMALL_STATE(3045)] = 130422, - [SMALL_STATE(3046)] = 130437, - [SMALL_STATE(3047)] = 130448, - [SMALL_STATE(3048)] = 130467, - [SMALL_STATE(3049)] = 130481, - [SMALL_STATE(3050)] = 130495, - [SMALL_STATE(3051)] = 130511, - [SMALL_STATE(3052)] = 130527, - [SMALL_STATE(3053)] = 130541, - [SMALL_STATE(3054)] = 130555, - [SMALL_STATE(3055)] = 130571, - [SMALL_STATE(3056)] = 130585, - [SMALL_STATE(3057)] = 130599, - [SMALL_STATE(3058)] = 130615, - [SMALL_STATE(3059)] = 130629, - [SMALL_STATE(3060)] = 130645, - [SMALL_STATE(3061)] = 130661, - [SMALL_STATE(3062)] = 130675, - [SMALL_STATE(3063)] = 130691, - [SMALL_STATE(3064)] = 130705, - [SMALL_STATE(3065)] = 130721, - [SMALL_STATE(3066)] = 130735, - [SMALL_STATE(3067)] = 130751, - [SMALL_STATE(3068)] = 130767, - [SMALL_STATE(3069)] = 130783, - [SMALL_STATE(3070)] = 130799, - [SMALL_STATE(3071)] = 130815, - [SMALL_STATE(3072)] = 130831, - [SMALL_STATE(3073)] = 130845, - [SMALL_STATE(3074)] = 130861, - [SMALL_STATE(3075)] = 130877, - [SMALL_STATE(3076)] = 130893, - [SMALL_STATE(3077)] = 130909, - [SMALL_STATE(3078)] = 130921, - [SMALL_STATE(3079)] = 130935, - [SMALL_STATE(3080)] = 130951, - [SMALL_STATE(3081)] = 130967, - [SMALL_STATE(3082)] = 130979, - [SMALL_STATE(3083)] = 130991, - [SMALL_STATE(3084)] = 131005, - [SMALL_STATE(3085)] = 131019, - [SMALL_STATE(3086)] = 131035, - [SMALL_STATE(3087)] = 131051, - [SMALL_STATE(3088)] = 131067, - [SMALL_STATE(3089)] = 131083, - [SMALL_STATE(3090)] = 131095, - [SMALL_STATE(3091)] = 131111, - [SMALL_STATE(3092)] = 131123, - [SMALL_STATE(3093)] = 131137, - [SMALL_STATE(3094)] = 131153, - [SMALL_STATE(3095)] = 131169, - [SMALL_STATE(3096)] = 131185, - [SMALL_STATE(3097)] = 131201, - [SMALL_STATE(3098)] = 131217, - [SMALL_STATE(3099)] = 131233, - [SMALL_STATE(3100)] = 131245, - [SMALL_STATE(3101)] = 131261, - [SMALL_STATE(3102)] = 131277, - [SMALL_STATE(3103)] = 131293, - [SMALL_STATE(3104)] = 131309, - [SMALL_STATE(3105)] = 131321, - [SMALL_STATE(3106)] = 131337, - [SMALL_STATE(3107)] = 131351, - [SMALL_STATE(3108)] = 131367, - [SMALL_STATE(3109)] = 131383, - [SMALL_STATE(3110)] = 131397, - [SMALL_STATE(3111)] = 131413, - [SMALL_STATE(3112)] = 131427, - [SMALL_STATE(3113)] = 131443, - [SMALL_STATE(3114)] = 131459, - [SMALL_STATE(3115)] = 131473, - [SMALL_STATE(3116)] = 131489, - [SMALL_STATE(3117)] = 131505, - [SMALL_STATE(3118)] = 131521, - [SMALL_STATE(3119)] = 131537, - [SMALL_STATE(3120)] = 131553, - [SMALL_STATE(3121)] = 131567, - [SMALL_STATE(3122)] = 131583, - [SMALL_STATE(3123)] = 131597, - [SMALL_STATE(3124)] = 131613, - [SMALL_STATE(3125)] = 131627, - [SMALL_STATE(3126)] = 131643, - [SMALL_STATE(3127)] = 131659, - [SMALL_STATE(3128)] = 131675, - [SMALL_STATE(3129)] = 131691, - [SMALL_STATE(3130)] = 131707, - [SMALL_STATE(3131)] = 131723, - [SMALL_STATE(3132)] = 131733, - [SMALL_STATE(3133)] = 131747, - [SMALL_STATE(3134)] = 131761, - [SMALL_STATE(3135)] = 131775, - [SMALL_STATE(3136)] = 131789, - [SMALL_STATE(3137)] = 131805, - [SMALL_STATE(3138)] = 131821, - [SMALL_STATE(3139)] = 131837, - [SMALL_STATE(3140)] = 131853, - [SMALL_STATE(3141)] = 131863, - [SMALL_STATE(3142)] = 131873, - [SMALL_STATE(3143)] = 131889, - [SMALL_STATE(3144)] = 131903, - [SMALL_STATE(3145)] = 131919, - [SMALL_STATE(3146)] = 131935, - [SMALL_STATE(3147)] = 131951, - [SMALL_STATE(3148)] = 131967, - [SMALL_STATE(3149)] = 131983, - [SMALL_STATE(3150)] = 131999, - [SMALL_STATE(3151)] = 132015, - [SMALL_STATE(3152)] = 132031, - [SMALL_STATE(3153)] = 132047, - [SMALL_STATE(3154)] = 132063, - [SMALL_STATE(3155)] = 132077, - [SMALL_STATE(3156)] = 132093, - [SMALL_STATE(3157)] = 132109, - [SMALL_STATE(3158)] = 132125, - [SMALL_STATE(3159)] = 132135, - [SMALL_STATE(3160)] = 132151, - [SMALL_STATE(3161)] = 132167, - [SMALL_STATE(3162)] = 132179, - [SMALL_STATE(3163)] = 132195, - [SMALL_STATE(3164)] = 132211, - [SMALL_STATE(3165)] = 132227, - [SMALL_STATE(3166)] = 132243, - [SMALL_STATE(3167)] = 132259, - [SMALL_STATE(3168)] = 132275, - [SMALL_STATE(3169)] = 132291, - [SMALL_STATE(3170)] = 132307, - [SMALL_STATE(3171)] = 132323, - [SMALL_STATE(3172)] = 132339, - [SMALL_STATE(3173)] = 132355, - [SMALL_STATE(3174)] = 132371, - [SMALL_STATE(3175)] = 132387, - [SMALL_STATE(3176)] = 132403, - [SMALL_STATE(3177)] = 132419, - [SMALL_STATE(3178)] = 132435, - [SMALL_STATE(3179)] = 132451, - [SMALL_STATE(3180)] = 132467, - [SMALL_STATE(3181)] = 132483, - [SMALL_STATE(3182)] = 132493, - [SMALL_STATE(3183)] = 132509, - [SMALL_STATE(3184)] = 132525, - [SMALL_STATE(3185)] = 132541, - [SMALL_STATE(3186)] = 132557, - [SMALL_STATE(3187)] = 132573, - [SMALL_STATE(3188)] = 132589, - [SMALL_STATE(3189)] = 132605, - [SMALL_STATE(3190)] = 132621, - [SMALL_STATE(3191)] = 132637, - [SMALL_STATE(3192)] = 132653, - [SMALL_STATE(3193)] = 132669, - [SMALL_STATE(3194)] = 132685, - [SMALL_STATE(3195)] = 132701, - [SMALL_STATE(3196)] = 132717, - [SMALL_STATE(3197)] = 132733, - [SMALL_STATE(3198)] = 132749, - [SMALL_STATE(3199)] = 132763, - [SMALL_STATE(3200)] = 132779, - [SMALL_STATE(3201)] = 132795, - [SMALL_STATE(3202)] = 132811, - [SMALL_STATE(3203)] = 132824, - [SMALL_STATE(3204)] = 132833, - [SMALL_STATE(3205)] = 132846, - [SMALL_STATE(3206)] = 132859, - [SMALL_STATE(3207)] = 132872, - [SMALL_STATE(3208)] = 132885, - [SMALL_STATE(3209)] = 132898, - [SMALL_STATE(3210)] = 132907, - [SMALL_STATE(3211)] = 132920, - [SMALL_STATE(3212)] = 132933, - [SMALL_STATE(3213)] = 132942, - [SMALL_STATE(3214)] = 132955, - [SMALL_STATE(3215)] = 132968, - [SMALL_STATE(3216)] = 132981, - [SMALL_STATE(3217)] = 132994, - [SMALL_STATE(3218)] = 133007, - [SMALL_STATE(3219)] = 133020, - [SMALL_STATE(3220)] = 133033, - [SMALL_STATE(3221)] = 133046, - [SMALL_STATE(3222)] = 133059, - [SMALL_STATE(3223)] = 133068, - [SMALL_STATE(3224)] = 133081, - [SMALL_STATE(3225)] = 133094, - [SMALL_STATE(3226)] = 133107, - [SMALL_STATE(3227)] = 133120, - [SMALL_STATE(3228)] = 133133, - [SMALL_STATE(3229)] = 133146, - [SMALL_STATE(3230)] = 133157, - [SMALL_STATE(3231)] = 133170, - [SMALL_STATE(3232)] = 133183, - [SMALL_STATE(3233)] = 133196, - [SMALL_STATE(3234)] = 133209, - [SMALL_STATE(3235)] = 133222, - [SMALL_STATE(3236)] = 133235, - [SMALL_STATE(3237)] = 133244, - [SMALL_STATE(3238)] = 133257, - [SMALL_STATE(3239)] = 133268, - [SMALL_STATE(3240)] = 133281, - [SMALL_STATE(3241)] = 133290, - [SMALL_STATE(3242)] = 133303, - [SMALL_STATE(3243)] = 133316, - [SMALL_STATE(3244)] = 133329, - [SMALL_STATE(3245)] = 133342, - [SMALL_STATE(3246)] = 133355, - [SMALL_STATE(3247)] = 133368, - [SMALL_STATE(3248)] = 133381, - [SMALL_STATE(3249)] = 133394, - [SMALL_STATE(3250)] = 133407, - [SMALL_STATE(3251)] = 133420, - [SMALL_STATE(3252)] = 133433, - [SMALL_STATE(3253)] = 133446, - [SMALL_STATE(3254)] = 133457, - [SMALL_STATE(3255)] = 133470, - [SMALL_STATE(3256)] = 133481, - [SMALL_STATE(3257)] = 133494, - [SMALL_STATE(3258)] = 133507, - [SMALL_STATE(3259)] = 133520, - [SMALL_STATE(3260)] = 133531, - [SMALL_STATE(3261)] = 133542, - [SMALL_STATE(3262)] = 133555, - [SMALL_STATE(3263)] = 133564, - [SMALL_STATE(3264)] = 133577, - [SMALL_STATE(3265)] = 133586, - [SMALL_STATE(3266)] = 133599, - [SMALL_STATE(3267)] = 133612, - [SMALL_STATE(3268)] = 133621, - [SMALL_STATE(3269)] = 133630, - [SMALL_STATE(3270)] = 133643, - [SMALL_STATE(3271)] = 133652, - [SMALL_STATE(3272)] = 133665, - [SMALL_STATE(3273)] = 133674, - [SMALL_STATE(3274)] = 133687, - [SMALL_STATE(3275)] = 133696, - [SMALL_STATE(3276)] = 133709, - [SMALL_STATE(3277)] = 133722, - [SMALL_STATE(3278)] = 133731, - [SMALL_STATE(3279)] = 133744, - [SMALL_STATE(3280)] = 133753, - [SMALL_STATE(3281)] = 133766, - [SMALL_STATE(3282)] = 133775, - [SMALL_STATE(3283)] = 133788, - [SMALL_STATE(3284)] = 133801, - [SMALL_STATE(3285)] = 133814, - [SMALL_STATE(3286)] = 133823, - [SMALL_STATE(3287)] = 133834, - [SMALL_STATE(3288)] = 133847, - [SMALL_STATE(3289)] = 133860, - [SMALL_STATE(3290)] = 133873, - [SMALL_STATE(3291)] = 133886, - [SMALL_STATE(3292)] = 133895, - [SMALL_STATE(3293)] = 133908, - [SMALL_STATE(3294)] = 133917, - [SMALL_STATE(3295)] = 133930, - [SMALL_STATE(3296)] = 133939, - [SMALL_STATE(3297)] = 133948, - [SMALL_STATE(3298)] = 133957, - [SMALL_STATE(3299)] = 133970, - [SMALL_STATE(3300)] = 133983, - [SMALL_STATE(3301)] = 133996, - [SMALL_STATE(3302)] = 134009, - [SMALL_STATE(3303)] = 134018, - [SMALL_STATE(3304)] = 134031, - [SMALL_STATE(3305)] = 134044, - [SMALL_STATE(3306)] = 134053, - [SMALL_STATE(3307)] = 134062, - [SMALL_STATE(3308)] = 134075, - [SMALL_STATE(3309)] = 134088, - [SMALL_STATE(3310)] = 134097, - [SMALL_STATE(3311)] = 134110, - [SMALL_STATE(3312)] = 134119, - [SMALL_STATE(3313)] = 134128, - [SMALL_STATE(3314)] = 134137, - [SMALL_STATE(3315)] = 134150, - [SMALL_STATE(3316)] = 134159, - [SMALL_STATE(3317)] = 134172, - [SMALL_STATE(3318)] = 134185, - [SMALL_STATE(3319)] = 134198, - [SMALL_STATE(3320)] = 134207, - [SMALL_STATE(3321)] = 134216, - [SMALL_STATE(3322)] = 134225, - [SMALL_STATE(3323)] = 134238, - [SMALL_STATE(3324)] = 134249, - [SMALL_STATE(3325)] = 134262, - [SMALL_STATE(3326)] = 134275, - [SMALL_STATE(3327)] = 134284, - [SMALL_STATE(3328)] = 134297, - [SMALL_STATE(3329)] = 134306, - [SMALL_STATE(3330)] = 134319, - [SMALL_STATE(3331)] = 134332, - [SMALL_STATE(3332)] = 134341, - [SMALL_STATE(3333)] = 134350, - [SMALL_STATE(3334)] = 134359, - [SMALL_STATE(3335)] = 134370, - [SMALL_STATE(3336)] = 134381, - [SMALL_STATE(3337)] = 134392, - [SMALL_STATE(3338)] = 134405, - [SMALL_STATE(3339)] = 134418, - [SMALL_STATE(3340)] = 134427, - [SMALL_STATE(3341)] = 134436, - [SMALL_STATE(3342)] = 134445, - [SMALL_STATE(3343)] = 134454, - [SMALL_STATE(3344)] = 134465, - [SMALL_STATE(3345)] = 134478, - [SMALL_STATE(3346)] = 134487, - [SMALL_STATE(3347)] = 134500, - [SMALL_STATE(3348)] = 134513, - [SMALL_STATE(3349)] = 134522, - [SMALL_STATE(3350)] = 134535, - [SMALL_STATE(3351)] = 134548, - [SMALL_STATE(3352)] = 134557, - [SMALL_STATE(3353)] = 134570, - [SMALL_STATE(3354)] = 134583, - [SMALL_STATE(3355)] = 134592, - [SMALL_STATE(3356)] = 134605, - [SMALL_STATE(3357)] = 134618, - [SMALL_STATE(3358)] = 134631, - [SMALL_STATE(3359)] = 134644, - [SMALL_STATE(3360)] = 134653, - [SMALL_STATE(3361)] = 134662, - [SMALL_STATE(3362)] = 134671, - [SMALL_STATE(3363)] = 134684, - [SMALL_STATE(3364)] = 134697, - [SMALL_STATE(3365)] = 134710, - [SMALL_STATE(3366)] = 134719, - [SMALL_STATE(3367)] = 134732, - [SMALL_STATE(3368)] = 134745, - [SMALL_STATE(3369)] = 134758, - [SMALL_STATE(3370)] = 134771, - [SMALL_STATE(3371)] = 134780, - [SMALL_STATE(3372)] = 134789, - [SMALL_STATE(3373)] = 134802, - [SMALL_STATE(3374)] = 134811, - [SMALL_STATE(3375)] = 134824, - [SMALL_STATE(3376)] = 134837, - [SMALL_STATE(3377)] = 134848, - [SMALL_STATE(3378)] = 134861, - [SMALL_STATE(3379)] = 134870, - [SMALL_STATE(3380)] = 134883, - [SMALL_STATE(3381)] = 134896, - [SMALL_STATE(3382)] = 134909, - [SMALL_STATE(3383)] = 134922, - [SMALL_STATE(3384)] = 134935, - [SMALL_STATE(3385)] = 134948, - [SMALL_STATE(3386)] = 134957, - [SMALL_STATE(3387)] = 134970, - [SMALL_STATE(3388)] = 134981, - [SMALL_STATE(3389)] = 134994, - [SMALL_STATE(3390)] = 135007, - [SMALL_STATE(3391)] = 135020, - [SMALL_STATE(3392)] = 135033, - [SMALL_STATE(3393)] = 135046, - [SMALL_STATE(3394)] = 135059, - [SMALL_STATE(3395)] = 135072, - [SMALL_STATE(3396)] = 135085, - [SMALL_STATE(3397)] = 135098, - [SMALL_STATE(3398)] = 135111, - [SMALL_STATE(3399)] = 135124, - [SMALL_STATE(3400)] = 135133, - [SMALL_STATE(3401)] = 135146, - [SMALL_STATE(3402)] = 135159, - [SMALL_STATE(3403)] = 135172, - [SMALL_STATE(3404)] = 135185, - [SMALL_STATE(3405)] = 135198, - [SMALL_STATE(3406)] = 135211, - [SMALL_STATE(3407)] = 135224, - [SMALL_STATE(3408)] = 135235, - [SMALL_STATE(3409)] = 135248, - [SMALL_STATE(3410)] = 135261, - [SMALL_STATE(3411)] = 135274, - [SMALL_STATE(3412)] = 135287, - [SMALL_STATE(3413)] = 135300, - [SMALL_STATE(3414)] = 135313, - [SMALL_STATE(3415)] = 135326, - [SMALL_STATE(3416)] = 135339, - [SMALL_STATE(3417)] = 135352, - [SMALL_STATE(3418)] = 135361, - [SMALL_STATE(3419)] = 135374, - [SMALL_STATE(3420)] = 135387, - [SMALL_STATE(3421)] = 135396, - [SMALL_STATE(3422)] = 135409, - [SMALL_STATE(3423)] = 135422, - [SMALL_STATE(3424)] = 135432, - [SMALL_STATE(3425)] = 135440, - [SMALL_STATE(3426)] = 135450, - [SMALL_STATE(3427)] = 135458, - [SMALL_STATE(3428)] = 135468, - [SMALL_STATE(3429)] = 135478, - [SMALL_STATE(3430)] = 135486, - [SMALL_STATE(3431)] = 135494, - [SMALL_STATE(3432)] = 135504, - [SMALL_STATE(3433)] = 135514, - [SMALL_STATE(3434)] = 135522, - [SMALL_STATE(3435)] = 135532, - [SMALL_STATE(3436)] = 135542, - [SMALL_STATE(3437)] = 135550, - [SMALL_STATE(3438)] = 135558, - [SMALL_STATE(3439)] = 135568, - [SMALL_STATE(3440)] = 135576, - [SMALL_STATE(3441)] = 135584, - [SMALL_STATE(3442)] = 135592, - [SMALL_STATE(3443)] = 135602, - [SMALL_STATE(3444)] = 135610, - [SMALL_STATE(3445)] = 135620, - [SMALL_STATE(3446)] = 135630, - [SMALL_STATE(3447)] = 135640, - [SMALL_STATE(3448)] = 135650, - [SMALL_STATE(3449)] = 135660, - [SMALL_STATE(3450)] = 135670, - [SMALL_STATE(3451)] = 135680, - [SMALL_STATE(3452)] = 135688, - [SMALL_STATE(3453)] = 135696, - [SMALL_STATE(3454)] = 135706, - [SMALL_STATE(3455)] = 135716, - [SMALL_STATE(3456)] = 135726, - [SMALL_STATE(3457)] = 135736, - [SMALL_STATE(3458)] = 135746, - [SMALL_STATE(3459)] = 135756, - [SMALL_STATE(3460)] = 135766, - [SMALL_STATE(3461)] = 135776, - [SMALL_STATE(3462)] = 135786, - [SMALL_STATE(3463)] = 135794, - [SMALL_STATE(3464)] = 135804, - [SMALL_STATE(3465)] = 135814, - [SMALL_STATE(3466)] = 135824, - [SMALL_STATE(3467)] = 135832, - [SMALL_STATE(3468)] = 135842, - [SMALL_STATE(3469)] = 135852, - [SMALL_STATE(3470)] = 135860, - [SMALL_STATE(3471)] = 135870, - [SMALL_STATE(3472)] = 135880, - [SMALL_STATE(3473)] = 135888, - [SMALL_STATE(3474)] = 135898, - [SMALL_STATE(3475)] = 135908, - [SMALL_STATE(3476)] = 135916, - [SMALL_STATE(3477)] = 135924, - [SMALL_STATE(3478)] = 135934, - [SMALL_STATE(3479)] = 135944, - [SMALL_STATE(3480)] = 135954, - [SMALL_STATE(3481)] = 135964, - [SMALL_STATE(3482)] = 135974, - [SMALL_STATE(3483)] = 135984, - [SMALL_STATE(3484)] = 135994, - [SMALL_STATE(3485)] = 136004, - [SMALL_STATE(3486)] = 136014, - [SMALL_STATE(3487)] = 136024, - [SMALL_STATE(3488)] = 136034, - [SMALL_STATE(3489)] = 136042, - [SMALL_STATE(3490)] = 136052, - [SMALL_STATE(3491)] = 136062, - [SMALL_STATE(3492)] = 136072, - [SMALL_STATE(3493)] = 136082, - [SMALL_STATE(3494)] = 136092, - [SMALL_STATE(3495)] = 136100, - [SMALL_STATE(3496)] = 136110, - [SMALL_STATE(3497)] = 136120, - [SMALL_STATE(3498)] = 136130, - [SMALL_STATE(3499)] = 136138, - [SMALL_STATE(3500)] = 136148, - [SMALL_STATE(3501)] = 136156, - [SMALL_STATE(3502)] = 136166, - [SMALL_STATE(3503)] = 136176, - [SMALL_STATE(3504)] = 136186, - [SMALL_STATE(3505)] = 136196, - [SMALL_STATE(3506)] = 136206, - [SMALL_STATE(3507)] = 136216, - [SMALL_STATE(3508)] = 136226, - [SMALL_STATE(3509)] = 136236, - [SMALL_STATE(3510)] = 136244, - [SMALL_STATE(3511)] = 136254, - [SMALL_STATE(3512)] = 136264, - [SMALL_STATE(3513)] = 136272, - [SMALL_STATE(3514)] = 136282, - [SMALL_STATE(3515)] = 136290, - [SMALL_STATE(3516)] = 136300, - [SMALL_STATE(3517)] = 136310, - [SMALL_STATE(3518)] = 136320, - [SMALL_STATE(3519)] = 136330, - [SMALL_STATE(3520)] = 136340, - [SMALL_STATE(3521)] = 136350, - [SMALL_STATE(3522)] = 136360, - [SMALL_STATE(3523)] = 136370, - [SMALL_STATE(3524)] = 136380, - [SMALL_STATE(3525)] = 136390, - [SMALL_STATE(3526)] = 136400, - [SMALL_STATE(3527)] = 136410, - [SMALL_STATE(3528)] = 136420, - [SMALL_STATE(3529)] = 136430, - [SMALL_STATE(3530)] = 136440, - [SMALL_STATE(3531)] = 136448, - [SMALL_STATE(3532)] = 136458, - [SMALL_STATE(3533)] = 136468, - [SMALL_STATE(3534)] = 136476, - [SMALL_STATE(3535)] = 136486, - [SMALL_STATE(3536)] = 136494, - [SMALL_STATE(3537)] = 136504, - [SMALL_STATE(3538)] = 136514, - [SMALL_STATE(3539)] = 136522, - [SMALL_STATE(3540)] = 136530, - [SMALL_STATE(3541)] = 136538, - [SMALL_STATE(3542)] = 136548, - [SMALL_STATE(3543)] = 136558, - [SMALL_STATE(3544)] = 136568, - [SMALL_STATE(3545)] = 136578, - [SMALL_STATE(3546)] = 136588, - [SMALL_STATE(3547)] = 136598, - [SMALL_STATE(3548)] = 136606, - [SMALL_STATE(3549)] = 136616, - [SMALL_STATE(3550)] = 136626, - [SMALL_STATE(3551)] = 136636, - [SMALL_STATE(3552)] = 136646, - [SMALL_STATE(3553)] = 136656, - [SMALL_STATE(3554)] = 136666, - [SMALL_STATE(3555)] = 136674, - [SMALL_STATE(3556)] = 136684, - [SMALL_STATE(3557)] = 136694, - [SMALL_STATE(3558)] = 136704, - [SMALL_STATE(3559)] = 136714, - [SMALL_STATE(3560)] = 136724, - [SMALL_STATE(3561)] = 136734, - [SMALL_STATE(3562)] = 136744, - [SMALL_STATE(3563)] = 136754, - [SMALL_STATE(3564)] = 136762, - [SMALL_STATE(3565)] = 136772, - [SMALL_STATE(3566)] = 136780, - [SMALL_STATE(3567)] = 136790, - [SMALL_STATE(3568)] = 136800, - [SMALL_STATE(3569)] = 136810, - [SMALL_STATE(3570)] = 136820, - [SMALL_STATE(3571)] = 136830, - [SMALL_STATE(3572)] = 136840, - [SMALL_STATE(3573)] = 136850, - [SMALL_STATE(3574)] = 136858, - [SMALL_STATE(3575)] = 136868, - [SMALL_STATE(3576)] = 136878, - [SMALL_STATE(3577)] = 136886, - [SMALL_STATE(3578)] = 136896, - [SMALL_STATE(3579)] = 136906, - [SMALL_STATE(3580)] = 136916, - [SMALL_STATE(3581)] = 136926, - [SMALL_STATE(3582)] = 136936, - [SMALL_STATE(3583)] = 136946, - [SMALL_STATE(3584)] = 136954, - [SMALL_STATE(3585)] = 136964, - [SMALL_STATE(3586)] = 136974, - [SMALL_STATE(3587)] = 136984, - [SMALL_STATE(3588)] = 136994, - [SMALL_STATE(3589)] = 137004, - [SMALL_STATE(3590)] = 137014, - [SMALL_STATE(3591)] = 137024, - [SMALL_STATE(3592)] = 137034, - [SMALL_STATE(3593)] = 137044, - [SMALL_STATE(3594)] = 137054, - [SMALL_STATE(3595)] = 137064, - [SMALL_STATE(3596)] = 137074, - [SMALL_STATE(3597)] = 137084, - [SMALL_STATE(3598)] = 137094, - [SMALL_STATE(3599)] = 137104, - [SMALL_STATE(3600)] = 137114, - [SMALL_STATE(3601)] = 137124, - [SMALL_STATE(3602)] = 137134, - [SMALL_STATE(3603)] = 137144, - [SMALL_STATE(3604)] = 137152, - [SMALL_STATE(3605)] = 137162, - [SMALL_STATE(3606)] = 137170, - [SMALL_STATE(3607)] = 137180, - [SMALL_STATE(3608)] = 137190, - [SMALL_STATE(3609)] = 137200, - [SMALL_STATE(3610)] = 137210, - [SMALL_STATE(3611)] = 137220, - [SMALL_STATE(3612)] = 137230, - [SMALL_STATE(3613)] = 137240, - [SMALL_STATE(3614)] = 137250, - [SMALL_STATE(3615)] = 137260, - [SMALL_STATE(3616)] = 137270, - [SMALL_STATE(3617)] = 137280, - [SMALL_STATE(3618)] = 137290, - [SMALL_STATE(3619)] = 137298, - [SMALL_STATE(3620)] = 137308, - [SMALL_STATE(3621)] = 137318, - [SMALL_STATE(3622)] = 137328, - [SMALL_STATE(3623)] = 137338, - [SMALL_STATE(3624)] = 137348, - [SMALL_STATE(3625)] = 137358, - [SMALL_STATE(3626)] = 137368, - [SMALL_STATE(3627)] = 137376, - [SMALL_STATE(3628)] = 137386, - [SMALL_STATE(3629)] = 137396, - [SMALL_STATE(3630)] = 137404, - [SMALL_STATE(3631)] = 137412, - [SMALL_STATE(3632)] = 137422, - [SMALL_STATE(3633)] = 137432, - [SMALL_STATE(3634)] = 137442, - [SMALL_STATE(3635)] = 137450, - [SMALL_STATE(3636)] = 137460, - [SMALL_STATE(3637)] = 137470, - [SMALL_STATE(3638)] = 137478, - [SMALL_STATE(3639)] = 137488, - [SMALL_STATE(3640)] = 137498, - [SMALL_STATE(3641)] = 137508, - [SMALL_STATE(3642)] = 137518, - [SMALL_STATE(3643)] = 137528, - [SMALL_STATE(3644)] = 137538, - [SMALL_STATE(3645)] = 137548, - [SMALL_STATE(3646)] = 137556, - [SMALL_STATE(3647)] = 137566, - [SMALL_STATE(3648)] = 137576, - [SMALL_STATE(3649)] = 137586, - [SMALL_STATE(3650)] = 137596, - [SMALL_STATE(3651)] = 137604, - [SMALL_STATE(3652)] = 137614, - [SMALL_STATE(3653)] = 137624, - [SMALL_STATE(3654)] = 137634, - [SMALL_STATE(3655)] = 137644, - [SMALL_STATE(3656)] = 137654, - [SMALL_STATE(3657)] = 137664, - [SMALL_STATE(3658)] = 137674, - [SMALL_STATE(3659)] = 137682, - [SMALL_STATE(3660)] = 137692, - [SMALL_STATE(3661)] = 137702, - [SMALL_STATE(3662)] = 137712, - [SMALL_STATE(3663)] = 137722, - [SMALL_STATE(3664)] = 137732, - [SMALL_STATE(3665)] = 137742, - [SMALL_STATE(3666)] = 137752, - [SMALL_STATE(3667)] = 137760, - [SMALL_STATE(3668)] = 137770, - [SMALL_STATE(3669)] = 137780, - [SMALL_STATE(3670)] = 137790, - [SMALL_STATE(3671)] = 137798, - [SMALL_STATE(3672)] = 137808, - [SMALL_STATE(3673)] = 137816, - [SMALL_STATE(3674)] = 137824, - [SMALL_STATE(3675)] = 137832, - [SMALL_STATE(3676)] = 137842, - [SMALL_STATE(3677)] = 137850, - [SMALL_STATE(3678)] = 137860, - [SMALL_STATE(3679)] = 137870, - [SMALL_STATE(3680)] = 137878, - [SMALL_STATE(3681)] = 137888, - [SMALL_STATE(3682)] = 137898, - [SMALL_STATE(3683)] = 137908, - [SMALL_STATE(3684)] = 137918, - [SMALL_STATE(3685)] = 137926, - [SMALL_STATE(3686)] = 137936, - [SMALL_STATE(3687)] = 137943, - [SMALL_STATE(3688)] = 137950, - [SMALL_STATE(3689)] = 137957, - [SMALL_STATE(3690)] = 137964, - [SMALL_STATE(3691)] = 137971, - [SMALL_STATE(3692)] = 137978, - [SMALL_STATE(3693)] = 137985, - [SMALL_STATE(3694)] = 137992, - [SMALL_STATE(3695)] = 137999, - [SMALL_STATE(3696)] = 138006, - [SMALL_STATE(3697)] = 138013, - [SMALL_STATE(3698)] = 138020, - [SMALL_STATE(3699)] = 138027, - [SMALL_STATE(3700)] = 138034, - [SMALL_STATE(3701)] = 138041, - [SMALL_STATE(3702)] = 138048, - [SMALL_STATE(3703)] = 138055, - [SMALL_STATE(3704)] = 138062, - [SMALL_STATE(3705)] = 138069, - [SMALL_STATE(3706)] = 138076, - [SMALL_STATE(3707)] = 138083, - [SMALL_STATE(3708)] = 138090, - [SMALL_STATE(3709)] = 138097, - [SMALL_STATE(3710)] = 138104, - [SMALL_STATE(3711)] = 138111, - [SMALL_STATE(3712)] = 138118, - [SMALL_STATE(3713)] = 138125, - [SMALL_STATE(3714)] = 138132, - [SMALL_STATE(3715)] = 138139, - [SMALL_STATE(3716)] = 138146, - [SMALL_STATE(3717)] = 138153, - [SMALL_STATE(3718)] = 138160, - [SMALL_STATE(3719)] = 138167, - [SMALL_STATE(3720)] = 138174, - [SMALL_STATE(3721)] = 138181, - [SMALL_STATE(3722)] = 138188, - [SMALL_STATE(3723)] = 138195, - [SMALL_STATE(3724)] = 138202, - [SMALL_STATE(3725)] = 138209, - [SMALL_STATE(3726)] = 138216, - [SMALL_STATE(3727)] = 138223, - [SMALL_STATE(3728)] = 138230, - [SMALL_STATE(3729)] = 138237, - [SMALL_STATE(3730)] = 138244, - [SMALL_STATE(3731)] = 138251, - [SMALL_STATE(3732)] = 138258, - [SMALL_STATE(3733)] = 138265, - [SMALL_STATE(3734)] = 138272, - [SMALL_STATE(3735)] = 138279, - [SMALL_STATE(3736)] = 138286, - [SMALL_STATE(3737)] = 138293, - [SMALL_STATE(3738)] = 138300, - [SMALL_STATE(3739)] = 138307, - [SMALL_STATE(3740)] = 138314, - [SMALL_STATE(3741)] = 138321, - [SMALL_STATE(3742)] = 138328, - [SMALL_STATE(3743)] = 138335, - [SMALL_STATE(3744)] = 138342, - [SMALL_STATE(3745)] = 138349, - [SMALL_STATE(3746)] = 138356, - [SMALL_STATE(3747)] = 138363, - [SMALL_STATE(3748)] = 138370, - [SMALL_STATE(3749)] = 138377, - [SMALL_STATE(3750)] = 138384, - [SMALL_STATE(3751)] = 138391, - [SMALL_STATE(3752)] = 138398, - [SMALL_STATE(3753)] = 138405, - [SMALL_STATE(3754)] = 138412, - [SMALL_STATE(3755)] = 138419, - [SMALL_STATE(3756)] = 138426, - [SMALL_STATE(3757)] = 138433, - [SMALL_STATE(3758)] = 138440, - [SMALL_STATE(3759)] = 138447, - [SMALL_STATE(3760)] = 138454, - [SMALL_STATE(3761)] = 138461, - [SMALL_STATE(3762)] = 138468, - [SMALL_STATE(3763)] = 138475, - [SMALL_STATE(3764)] = 138482, - [SMALL_STATE(3765)] = 138489, - [SMALL_STATE(3766)] = 138496, - [SMALL_STATE(3767)] = 138503, - [SMALL_STATE(3768)] = 138510, - [SMALL_STATE(3769)] = 138517, - [SMALL_STATE(3770)] = 138524, - [SMALL_STATE(3771)] = 138531, - [SMALL_STATE(3772)] = 138538, - [SMALL_STATE(3773)] = 138545, - [SMALL_STATE(3774)] = 138552, - [SMALL_STATE(3775)] = 138559, - [SMALL_STATE(3776)] = 138566, - [SMALL_STATE(3777)] = 138573, - [SMALL_STATE(3778)] = 138580, - [SMALL_STATE(3779)] = 138587, - [SMALL_STATE(3780)] = 138594, - [SMALL_STATE(3781)] = 138601, - [SMALL_STATE(3782)] = 138608, - [SMALL_STATE(3783)] = 138615, - [SMALL_STATE(3784)] = 138622, - [SMALL_STATE(3785)] = 138629, - [SMALL_STATE(3786)] = 138636, - [SMALL_STATE(3787)] = 138643, - [SMALL_STATE(3788)] = 138650, - [SMALL_STATE(3789)] = 138657, - [SMALL_STATE(3790)] = 138664, - [SMALL_STATE(3791)] = 138671, - [SMALL_STATE(3792)] = 138678, - [SMALL_STATE(3793)] = 138685, - [SMALL_STATE(3794)] = 138692, - [SMALL_STATE(3795)] = 138699, - [SMALL_STATE(3796)] = 138706, - [SMALL_STATE(3797)] = 138713, - [SMALL_STATE(3798)] = 138720, - [SMALL_STATE(3799)] = 138727, - [SMALL_STATE(3800)] = 138734, - [SMALL_STATE(3801)] = 138741, - [SMALL_STATE(3802)] = 138748, - [SMALL_STATE(3803)] = 138755, - [SMALL_STATE(3804)] = 138762, - [SMALL_STATE(3805)] = 138769, - [SMALL_STATE(3806)] = 138776, - [SMALL_STATE(3807)] = 138783, - [SMALL_STATE(3808)] = 138790, - [SMALL_STATE(3809)] = 138797, - [SMALL_STATE(3810)] = 138804, - [SMALL_STATE(3811)] = 138811, - [SMALL_STATE(3812)] = 138818, - [SMALL_STATE(3813)] = 138825, - [SMALL_STATE(3814)] = 138832, - [SMALL_STATE(3815)] = 138839, - [SMALL_STATE(3816)] = 138846, - [SMALL_STATE(3817)] = 138853, - [SMALL_STATE(3818)] = 138860, - [SMALL_STATE(3819)] = 138867, - [SMALL_STATE(3820)] = 138874, - [SMALL_STATE(3821)] = 138881, - [SMALL_STATE(3822)] = 138888, - [SMALL_STATE(3823)] = 138895, - [SMALL_STATE(3824)] = 138902, - [SMALL_STATE(3825)] = 138909, - [SMALL_STATE(3826)] = 138916, - [SMALL_STATE(3827)] = 138923, - [SMALL_STATE(3828)] = 138930, - [SMALL_STATE(3829)] = 138937, - [SMALL_STATE(3830)] = 138944, - [SMALL_STATE(3831)] = 138951, - [SMALL_STATE(3832)] = 138958, - [SMALL_STATE(3833)] = 138965, - [SMALL_STATE(3834)] = 138972, - [SMALL_STATE(3835)] = 138979, - [SMALL_STATE(3836)] = 138986, - [SMALL_STATE(3837)] = 138993, - [SMALL_STATE(3838)] = 139000, - [SMALL_STATE(3839)] = 139007, - [SMALL_STATE(3840)] = 139014, - [SMALL_STATE(3841)] = 139021, - [SMALL_STATE(3842)] = 139028, - [SMALL_STATE(3843)] = 139035, - [SMALL_STATE(3844)] = 139042, - [SMALL_STATE(3845)] = 139049, - [SMALL_STATE(3846)] = 139056, - [SMALL_STATE(3847)] = 139063, - [SMALL_STATE(3848)] = 139070, - [SMALL_STATE(3849)] = 139077, - [SMALL_STATE(3850)] = 139084, - [SMALL_STATE(3851)] = 139091, - [SMALL_STATE(3852)] = 139098, - [SMALL_STATE(3853)] = 139105, - [SMALL_STATE(3854)] = 139112, - [SMALL_STATE(3855)] = 139119, - [SMALL_STATE(3856)] = 139126, - [SMALL_STATE(3857)] = 139133, - [SMALL_STATE(3858)] = 139140, - [SMALL_STATE(3859)] = 139147, - [SMALL_STATE(3860)] = 139154, - [SMALL_STATE(3861)] = 139161, - [SMALL_STATE(3862)] = 139168, - [SMALL_STATE(3863)] = 139175, - [SMALL_STATE(3864)] = 139182, - [SMALL_STATE(3865)] = 139189, - [SMALL_STATE(3866)] = 139196, - [SMALL_STATE(3867)] = 139203, - [SMALL_STATE(3868)] = 139210, - [SMALL_STATE(3869)] = 139217, - [SMALL_STATE(3870)] = 139224, - [SMALL_STATE(3871)] = 139231, - [SMALL_STATE(3872)] = 139238, - [SMALL_STATE(3873)] = 139245, - [SMALL_STATE(3874)] = 139252, - [SMALL_STATE(3875)] = 139259, - [SMALL_STATE(3876)] = 139266, - [SMALL_STATE(3877)] = 139273, - [SMALL_STATE(3878)] = 139280, - [SMALL_STATE(3879)] = 139287, - [SMALL_STATE(3880)] = 139294, - [SMALL_STATE(3881)] = 139301, - [SMALL_STATE(3882)] = 139308, - [SMALL_STATE(3883)] = 139315, - [SMALL_STATE(3884)] = 139322, - [SMALL_STATE(3885)] = 139329, - [SMALL_STATE(3886)] = 139336, - [SMALL_STATE(3887)] = 139343, - [SMALL_STATE(3888)] = 139350, - [SMALL_STATE(3889)] = 139357, - [SMALL_STATE(3890)] = 139364, - [SMALL_STATE(3891)] = 139371, - [SMALL_STATE(3892)] = 139378, - [SMALL_STATE(3893)] = 139385, - [SMALL_STATE(3894)] = 139392, - [SMALL_STATE(3895)] = 139399, - [SMALL_STATE(3896)] = 139406, - [SMALL_STATE(3897)] = 139413, - [SMALL_STATE(3898)] = 139420, - [SMALL_STATE(3899)] = 139427, - [SMALL_STATE(3900)] = 139434, - [SMALL_STATE(3901)] = 139441, - [SMALL_STATE(3902)] = 139448, - [SMALL_STATE(3903)] = 139455, - [SMALL_STATE(3904)] = 139462, - [SMALL_STATE(3905)] = 139469, - [SMALL_STATE(3906)] = 139476, - [SMALL_STATE(3907)] = 139483, - [SMALL_STATE(3908)] = 139490, - [SMALL_STATE(3909)] = 139497, - [SMALL_STATE(3910)] = 139504, - [SMALL_STATE(3911)] = 139511, - [SMALL_STATE(3912)] = 139518, - [SMALL_STATE(3913)] = 139525, - [SMALL_STATE(3914)] = 139532, - [SMALL_STATE(3915)] = 139539, - [SMALL_STATE(3916)] = 139546, - [SMALL_STATE(3917)] = 139553, - [SMALL_STATE(3918)] = 139560, - [SMALL_STATE(3919)] = 139567, - [SMALL_STATE(3920)] = 139574, - [SMALL_STATE(3921)] = 139581, - [SMALL_STATE(3922)] = 139588, - [SMALL_STATE(3923)] = 139595, - [SMALL_STATE(3924)] = 139602, - [SMALL_STATE(3925)] = 139609, - [SMALL_STATE(3926)] = 139616, - [SMALL_STATE(3927)] = 139623, - [SMALL_STATE(3928)] = 139630, - [SMALL_STATE(3929)] = 139637, - [SMALL_STATE(3930)] = 139644, - [SMALL_STATE(3931)] = 139651, - [SMALL_STATE(3932)] = 139658, - [SMALL_STATE(3933)] = 139665, - [SMALL_STATE(3934)] = 139672, - [SMALL_STATE(3935)] = 139679, - [SMALL_STATE(3936)] = 139686, - [SMALL_STATE(3937)] = 139693, - [SMALL_STATE(3938)] = 139700, - [SMALL_STATE(3939)] = 139707, - [SMALL_STATE(3940)] = 139714, - [SMALL_STATE(3941)] = 139721, - [SMALL_STATE(3942)] = 139728, - [SMALL_STATE(3943)] = 139735, - [SMALL_STATE(3944)] = 139742, - [SMALL_STATE(3945)] = 139749, - [SMALL_STATE(3946)] = 139756, - [SMALL_STATE(3947)] = 139763, - [SMALL_STATE(3948)] = 139770, - [SMALL_STATE(3949)] = 139777, - [SMALL_STATE(3950)] = 139784, - [SMALL_STATE(3951)] = 139791, - [SMALL_STATE(3952)] = 139798, - [SMALL_STATE(3953)] = 139805, - [SMALL_STATE(3954)] = 139812, - [SMALL_STATE(3955)] = 139819, - [SMALL_STATE(3956)] = 139826, - [SMALL_STATE(3957)] = 139833, - [SMALL_STATE(3958)] = 139840, - [SMALL_STATE(3959)] = 139847, - [SMALL_STATE(3960)] = 139854, - [SMALL_STATE(3961)] = 139861, - [SMALL_STATE(3962)] = 139868, - [SMALL_STATE(3963)] = 139875, - [SMALL_STATE(3964)] = 139882, - [SMALL_STATE(3965)] = 139889, - [SMALL_STATE(3966)] = 139896, - [SMALL_STATE(3967)] = 139903, - [SMALL_STATE(3968)] = 139910, - [SMALL_STATE(3969)] = 139917, - [SMALL_STATE(3970)] = 139924, - [SMALL_STATE(3971)] = 139931, - [SMALL_STATE(3972)] = 139938, - [SMALL_STATE(3973)] = 139945, - [SMALL_STATE(3974)] = 139952, - [SMALL_STATE(3975)] = 139959, - [SMALL_STATE(3976)] = 139966, - [SMALL_STATE(3977)] = 139973, - [SMALL_STATE(3978)] = 139980, - [SMALL_STATE(3979)] = 139987, - [SMALL_STATE(3980)] = 139994, - [SMALL_STATE(3981)] = 140001, - [SMALL_STATE(3982)] = 140008, - [SMALL_STATE(3983)] = 140015, - [SMALL_STATE(3984)] = 140022, - [SMALL_STATE(3985)] = 140029, - [SMALL_STATE(3986)] = 140036, - [SMALL_STATE(3987)] = 140043, - [SMALL_STATE(3988)] = 140050, - [SMALL_STATE(3989)] = 140057, - [SMALL_STATE(3990)] = 140064, - [SMALL_STATE(3991)] = 140071, - [SMALL_STATE(3992)] = 140078, - [SMALL_STATE(3993)] = 140085, - [SMALL_STATE(3994)] = 140092, - [SMALL_STATE(3995)] = 140099, - [SMALL_STATE(3996)] = 140106, - [SMALL_STATE(3997)] = 140113, - [SMALL_STATE(3998)] = 140120, - [SMALL_STATE(3999)] = 140127, - [SMALL_STATE(4000)] = 140134, - [SMALL_STATE(4001)] = 140141, - [SMALL_STATE(4002)] = 140148, + [SMALL_STATE(797)] = 0, + [SMALL_STATE(798)] = 105, + [SMALL_STATE(799)] = 212, + [SMALL_STATE(800)] = 309, + [SMALL_STATE(801)] = 405, + [SMALL_STATE(802)] = 507, + [SMALL_STATE(803)] = 613, + [SMALL_STATE(804)] = 713, + [SMALL_STATE(805)] = 821, + [SMALL_STATE(806)] = 929, + [SMALL_STATE(807)] = 1031, + [SMALL_STATE(808)] = 1133, + [SMALL_STATE(809)] = 1236, + [SMALL_STATE(810)] = 1335, + [SMALL_STATE(811)] = 1438, + [SMALL_STATE(812)] = 1541, + [SMALL_STATE(813)] = 1640, + [SMALL_STATE(814)] = 1743, + [SMALL_STATE(815)] = 1842, + [SMALL_STATE(816)] = 1927, + [SMALL_STATE(817)] = 2022, + [SMALL_STATE(818)] = 2121, + [SMALL_STATE(819)] = 2224, + [SMALL_STATE(820)] = 2327, + [SMALL_STATE(821)] = 2426, + [SMALL_STATE(822)] = 2529, + [SMALL_STATE(823)] = 2632, + [SMALL_STATE(824)] = 2735, + [SMALL_STATE(825)] = 2816, + [SMALL_STATE(826)] = 2915, + [SMALL_STATE(827)] = 3018, + [SMALL_STATE(828)] = 3115, + [SMALL_STATE(829)] = 3191, + [SMALL_STATE(830)] = 3291, + [SMALL_STATE(831)] = 3385, + [SMALL_STATE(832)] = 3479, + [SMALL_STATE(833)] = 3581, + [SMALL_STATE(834)] = 3675, + [SMALL_STATE(835)] = 3777, + [SMALL_STATE(836)] = 3869, + [SMALL_STATE(837)] = 3995, + [SMALL_STATE(838)] = 4079, + [SMALL_STATE(839)] = 4159, + [SMALL_STATE(840)] = 4259, + [SMALL_STATE(841)] = 4353, + [SMALL_STATE(842)] = 4457, + [SMALL_STATE(843)] = 4555, + [SMALL_STATE(844)] = 4622, + [SMALL_STATE(845)] = 4697, + [SMALL_STATE(846)] = 4790, + [SMALL_STATE(847)] = 4879, + [SMALL_STATE(848)] = 4972, + [SMALL_STATE(849)] = 5061, + [SMALL_STATE(850)] = 5154, + [SMALL_STATE(851)] = 5247, + [SMALL_STATE(852)] = 5314, + [SMALL_STATE(853)] = 5405, + [SMALL_STATE(854)] = 5472, + [SMALL_STATE(855)] = 5565, + [SMALL_STATE(856)] = 5656, + [SMALL_STATE(857)] = 5747, + [SMALL_STATE(858)] = 5838, + [SMALL_STATE(859)] = 5913, + [SMALL_STATE(860)] = 6004, + [SMALL_STATE(861)] = 6093, + [SMALL_STATE(862)] = 6182, + [SMALL_STATE(863)] = 6271, + [SMALL_STATE(864)] = 6338, + [SMALL_STATE(865)] = 6437, + [SMALL_STATE(866)] = 6528, + [SMALL_STATE(867)] = 6619, + [SMALL_STATE(868)] = 6686, + [SMALL_STATE(869)] = 6777, + [SMALL_STATE(870)] = 6866, + [SMALL_STATE(871)] = 6959, + [SMALL_STATE(872)] = 7026, + [SMALL_STATE(873)] = 7093, + [SMALL_STATE(874)] = 7182, + [SMALL_STATE(875)] = 7283, + [SMALL_STATE(876)] = 7350, + [SMALL_STATE(877)] = 7443, + [SMALL_STATE(878)] = 7536, + [SMALL_STATE(879)] = 7631, + [SMALL_STATE(880)] = 7698, + [SMALL_STATE(881)] = 7789, + [SMALL_STATE(882)] = 7882, + [SMALL_STATE(883)] = 7971, + [SMALL_STATE(884)] = 8063, + [SMALL_STATE(885)] = 8189, + [SMALL_STATE(886)] = 8277, + [SMALL_STATE(887)] = 8403, + [SMALL_STATE(888)] = 8529, + [SMALL_STATE(889)] = 8655, + [SMALL_STATE(890)] = 8781, + [SMALL_STATE(891)] = 8907, + [SMALL_STATE(892)] = 9033, + [SMALL_STATE(893)] = 9121, + [SMALL_STATE(894)] = 9207, + [SMALL_STATE(895)] = 9333, + [SMALL_STATE(896)] = 9421, + [SMALL_STATE(897)] = 9495, + [SMALL_STATE(898)] = 9589, + [SMALL_STATE(899)] = 9715, + [SMALL_STATE(900)] = 9841, + [SMALL_STATE(901)] = 9929, + [SMALL_STATE(902)] = 10055, + [SMALL_STATE(903)] = 10181, + [SMALL_STATE(904)] = 10267, + [SMALL_STATE(905)] = 10355, + [SMALL_STATE(906)] = 10445, + [SMALL_STATE(907)] = 10571, + [SMALL_STATE(908)] = 10659, + [SMALL_STATE(909)] = 10785, + [SMALL_STATE(910)] = 10911, + [SMALL_STATE(911)] = 11001, + [SMALL_STATE(912)] = 11127, + [SMALL_STATE(913)] = 11253, + [SMALL_STATE(914)] = 11341, + [SMALL_STATE(915)] = 11431, + [SMALL_STATE(916)] = 11525, + [SMALL_STATE(917)] = 11619, + [SMALL_STATE(918)] = 11745, + [SMALL_STATE(919)] = 11833, + [SMALL_STATE(920)] = 11921, + [SMALL_STATE(921)] = 12047, + [SMALL_STATE(922)] = 12173, + [SMALL_STATE(923)] = 12299, + [SMALL_STATE(924)] = 12387, + [SMALL_STATE(925)] = 12513, + [SMALL_STATE(926)] = 12607, + [SMALL_STATE(927)] = 12693, + [SMALL_STATE(928)] = 12779, + [SMALL_STATE(929)] = 12905, + [SMALL_STATE(930)] = 13031, + [SMALL_STATE(931)] = 13123, + [SMALL_STATE(932)] = 13249, + [SMALL_STATE(933)] = 13341, + [SMALL_STATE(934)] = 13467, + [SMALL_STATE(935)] = 13559, + [SMALL_STATE(936)] = 13647, + [SMALL_STATE(937)] = 13773, + [SMALL_STATE(938)] = 13861, + [SMALL_STATE(939)] = 13953, + [SMALL_STATE(940)] = 14079, + [SMALL_STATE(941)] = 14202, + [SMALL_STATE(942)] = 14289, + [SMALL_STATE(943)] = 14412, + [SMALL_STATE(944)] = 14535, + [SMALL_STATE(945)] = 14658, + [SMALL_STATE(946)] = 14743, + [SMALL_STATE(947)] = 14874, + [SMALL_STATE(948)] = 14997, + [SMALL_STATE(949)] = 15120, + [SMALL_STATE(950)] = 15243, + [SMALL_STATE(951)] = 15366, + [SMALL_STATE(952)] = 15489, + [SMALL_STATE(953)] = 15612, + [SMALL_STATE(954)] = 15743, + [SMALL_STATE(955)] = 15866, + [SMALL_STATE(956)] = 15951, + [SMALL_STATE(957)] = 16074, + [SMALL_STATE(958)] = 16197, + [SMALL_STATE(959)] = 16320, + [SMALL_STATE(960)] = 16409, + [SMALL_STATE(961)] = 16532, + [SMALL_STATE(962)] = 16621, + [SMALL_STATE(963)] = 16706, + [SMALL_STATE(964)] = 16837, + [SMALL_STATE(965)] = 16928, + [SMALL_STATE(966)] = 17051, + [SMALL_STATE(967)] = 17174, + [SMALL_STATE(968)] = 17297, + [SMALL_STATE(969)] = 17382, + [SMALL_STATE(970)] = 17505, + [SMALL_STATE(971)] = 17628, + [SMALL_STATE(972)] = 17751, + [SMALL_STATE(973)] = 17874, + [SMALL_STATE(974)] = 18005, + [SMALL_STATE(975)] = 18128, + [SMALL_STATE(976)] = 18251, + [SMALL_STATE(977)] = 18374, + [SMALL_STATE(978)] = 18447, + [SMALL_STATE(979)] = 18570, + [SMALL_STATE(980)] = 18643, + [SMALL_STATE(981)] = 18766, + [SMALL_STATE(982)] = 18889, + [SMALL_STATE(983)] = 18974, + [SMALL_STATE(984)] = 19097, + [SMALL_STATE(985)] = 19220, + [SMALL_STATE(986)] = 19343, + [SMALL_STATE(987)] = 19466, + [SMALL_STATE(988)] = 19589, + [SMALL_STATE(989)] = 19720, + [SMALL_STATE(990)] = 19843, + [SMALL_STATE(991)] = 19928, + [SMALL_STATE(992)] = 20051, + [SMALL_STATE(993)] = 20174, + [SMALL_STATE(994)] = 20305, + [SMALL_STATE(995)] = 20425, + [SMALL_STATE(996)] = 20545, + [SMALL_STATE(997)] = 20665, + [SMALL_STATE(998)] = 20785, + [SMALL_STATE(999)] = 20849, + [SMALL_STATE(1000)] = 20969, + [SMALL_STATE(1001)] = 21089, + [SMALL_STATE(1002)] = 21209, + [SMALL_STATE(1003)] = 21329, + [SMALL_STATE(1004)] = 21449, + [SMALL_STATE(1005)] = 21569, + [SMALL_STATE(1006)] = 21689, + [SMALL_STATE(1007)] = 21809, + [SMALL_STATE(1008)] = 21929, + [SMALL_STATE(1009)] = 22049, + [SMALL_STATE(1010)] = 22169, + [SMALL_STATE(1011)] = 22289, + [SMALL_STATE(1012)] = 22409, + [SMALL_STATE(1013)] = 22529, + [SMALL_STATE(1014)] = 22649, + [SMALL_STATE(1015)] = 22769, + [SMALL_STATE(1016)] = 22889, + [SMALL_STATE(1017)] = 23009, + [SMALL_STATE(1018)] = 23129, + [SMALL_STATE(1019)] = 23249, + [SMALL_STATE(1020)] = 23369, + [SMALL_STATE(1021)] = 23489, + [SMALL_STATE(1022)] = 23609, + [SMALL_STATE(1023)] = 23729, + [SMALL_STATE(1024)] = 23849, + [SMALL_STATE(1025)] = 23969, + [SMALL_STATE(1026)] = 24089, + [SMALL_STATE(1027)] = 24209, + [SMALL_STATE(1028)] = 24329, + [SMALL_STATE(1029)] = 24449, + [SMALL_STATE(1030)] = 24569, + [SMALL_STATE(1031)] = 24689, + [SMALL_STATE(1032)] = 24809, + [SMALL_STATE(1033)] = 24929, + [SMALL_STATE(1034)] = 25049, + [SMALL_STATE(1035)] = 25169, + [SMALL_STATE(1036)] = 25289, + [SMALL_STATE(1037)] = 25409, + [SMALL_STATE(1038)] = 25529, + [SMALL_STATE(1039)] = 25649, + [SMALL_STATE(1040)] = 25769, + [SMALL_STATE(1041)] = 25889, + [SMALL_STATE(1042)] = 26009, + [SMALL_STATE(1043)] = 26129, + [SMALL_STATE(1044)] = 26249, + [SMALL_STATE(1045)] = 26369, + [SMALL_STATE(1046)] = 26489, + [SMALL_STATE(1047)] = 26609, + [SMALL_STATE(1048)] = 26729, + [SMALL_STATE(1049)] = 26849, + [SMALL_STATE(1050)] = 26969, + [SMALL_STATE(1051)] = 27089, + [SMALL_STATE(1052)] = 27209, + [SMALL_STATE(1053)] = 27281, + [SMALL_STATE(1054)] = 27401, + [SMALL_STATE(1055)] = 27521, + [SMALL_STATE(1056)] = 27641, + [SMALL_STATE(1057)] = 27761, + [SMALL_STATE(1058)] = 27881, + [SMALL_STATE(1059)] = 27971, + [SMALL_STATE(1060)] = 28091, + [SMALL_STATE(1061)] = 28211, + [SMALL_STATE(1062)] = 28331, + [SMALL_STATE(1063)] = 28451, + [SMALL_STATE(1064)] = 28571, + [SMALL_STATE(1065)] = 28691, + [SMALL_STATE(1066)] = 28811, + [SMALL_STATE(1067)] = 28931, + [SMALL_STATE(1068)] = 29051, + [SMALL_STATE(1069)] = 29171, + [SMALL_STATE(1070)] = 29291, + [SMALL_STATE(1071)] = 29411, + [SMALL_STATE(1072)] = 29531, + [SMALL_STATE(1073)] = 29651, + [SMALL_STATE(1074)] = 29771, + [SMALL_STATE(1075)] = 29891, + [SMALL_STATE(1076)] = 30011, + [SMALL_STATE(1077)] = 30131, + [SMALL_STATE(1078)] = 30251, + [SMALL_STATE(1079)] = 30371, + [SMALL_STATE(1080)] = 30435, + [SMALL_STATE(1081)] = 30555, + [SMALL_STATE(1082)] = 30675, + [SMALL_STATE(1083)] = 30795, + [SMALL_STATE(1084)] = 30915, + [SMALL_STATE(1085)] = 30979, + [SMALL_STATE(1086)] = 31099, + [SMALL_STATE(1087)] = 31219, + [SMALL_STATE(1088)] = 31339, + [SMALL_STATE(1089)] = 31459, + [SMALL_STATE(1090)] = 31579, + [SMALL_STATE(1091)] = 31699, + [SMALL_STATE(1092)] = 31819, + [SMALL_STATE(1093)] = 31939, + [SMALL_STATE(1094)] = 32059, + [SMALL_STATE(1095)] = 32179, + [SMALL_STATE(1096)] = 32299, + [SMALL_STATE(1097)] = 32419, + [SMALL_STATE(1098)] = 32539, + [SMALL_STATE(1099)] = 32659, + [SMALL_STATE(1100)] = 32779, + [SMALL_STATE(1101)] = 32899, + [SMALL_STATE(1102)] = 33019, + [SMALL_STATE(1103)] = 33139, + [SMALL_STATE(1104)] = 33259, + [SMALL_STATE(1105)] = 33379, + [SMALL_STATE(1106)] = 33499, + [SMALL_STATE(1107)] = 33619, + [SMALL_STATE(1108)] = 33739, + [SMALL_STATE(1109)] = 33859, + [SMALL_STATE(1110)] = 33979, + [SMALL_STATE(1111)] = 34099, + [SMALL_STATE(1112)] = 34219, + [SMALL_STATE(1113)] = 34309, + [SMALL_STATE(1114)] = 34429, + [SMALL_STATE(1115)] = 34519, + [SMALL_STATE(1116)] = 34639, + [SMALL_STATE(1117)] = 34759, + [SMALL_STATE(1118)] = 34879, + [SMALL_STATE(1119)] = 34999, + [SMALL_STATE(1120)] = 35119, + [SMALL_STATE(1121)] = 35239, + [SMALL_STATE(1122)] = 35359, + [SMALL_STATE(1123)] = 35479, + [SMALL_STATE(1124)] = 35599, + [SMALL_STATE(1125)] = 35719, + [SMALL_STATE(1126)] = 35839, + [SMALL_STATE(1127)] = 35959, + [SMALL_STATE(1128)] = 36079, + [SMALL_STATE(1129)] = 36143, + [SMALL_STATE(1130)] = 36263, + [SMALL_STATE(1131)] = 36383, + [SMALL_STATE(1132)] = 36503, + [SMALL_STATE(1133)] = 36623, + [SMALL_STATE(1134)] = 36743, + [SMALL_STATE(1135)] = 36863, + [SMALL_STATE(1136)] = 36983, + [SMALL_STATE(1137)] = 37103, + [SMALL_STATE(1138)] = 37223, + [SMALL_STATE(1139)] = 37287, + [SMALL_STATE(1140)] = 37407, + [SMALL_STATE(1141)] = 37527, + [SMALL_STATE(1142)] = 37647, + [SMALL_STATE(1143)] = 37767, + [SMALL_STATE(1144)] = 37887, + [SMALL_STATE(1145)] = 38007, + [SMALL_STATE(1146)] = 38127, + [SMALL_STATE(1147)] = 38247, + [SMALL_STATE(1148)] = 38367, + [SMALL_STATE(1149)] = 38487, + [SMALL_STATE(1150)] = 38607, + [SMALL_STATE(1151)] = 38727, + [SMALL_STATE(1152)] = 38847, + [SMALL_STATE(1153)] = 38967, + [SMALL_STATE(1154)] = 39087, + [SMALL_STATE(1155)] = 39207, + [SMALL_STATE(1156)] = 39327, + [SMALL_STATE(1157)] = 39447, + [SMALL_STATE(1158)] = 39567, + [SMALL_STATE(1159)] = 39687, + [SMALL_STATE(1160)] = 39751, + [SMALL_STATE(1161)] = 39871, + [SMALL_STATE(1162)] = 39991, + [SMALL_STATE(1163)] = 40111, + [SMALL_STATE(1164)] = 40231, + [SMALL_STATE(1165)] = 40351, + [SMALL_STATE(1166)] = 40471, + [SMALL_STATE(1167)] = 40591, + [SMALL_STATE(1168)] = 40711, + [SMALL_STATE(1169)] = 40831, + [SMALL_STATE(1170)] = 40951, + [SMALL_STATE(1171)] = 41071, + [SMALL_STATE(1172)] = 41191, + [SMALL_STATE(1173)] = 41311, + [SMALL_STATE(1174)] = 41431, + [SMALL_STATE(1175)] = 41551, + [SMALL_STATE(1176)] = 41671, + [SMALL_STATE(1177)] = 41791, + [SMALL_STATE(1178)] = 41911, + [SMALL_STATE(1179)] = 42031, + [SMALL_STATE(1180)] = 42151, + [SMALL_STATE(1181)] = 42271, + [SMALL_STATE(1182)] = 42335, + [SMALL_STATE(1183)] = 42455, + [SMALL_STATE(1184)] = 42575, + [SMALL_STATE(1185)] = 42695, + [SMALL_STATE(1186)] = 42815, + [SMALL_STATE(1187)] = 42935, + [SMALL_STATE(1188)] = 43055, + [SMALL_STATE(1189)] = 43175, + [SMALL_STATE(1190)] = 43295, + [SMALL_STATE(1191)] = 43415, + [SMALL_STATE(1192)] = 43535, + [SMALL_STATE(1193)] = 43655, + [SMALL_STATE(1194)] = 43775, + [SMALL_STATE(1195)] = 43895, + [SMALL_STATE(1196)] = 44015, + [SMALL_STATE(1197)] = 44135, + [SMALL_STATE(1198)] = 44255, + [SMALL_STATE(1199)] = 44375, + [SMALL_STATE(1200)] = 44495, + [SMALL_STATE(1201)] = 44615, + [SMALL_STATE(1202)] = 44735, + [SMALL_STATE(1203)] = 44855, + [SMALL_STATE(1204)] = 44975, + [SMALL_STATE(1205)] = 45095, + [SMALL_STATE(1206)] = 45215, + [SMALL_STATE(1207)] = 45335, + [SMALL_STATE(1208)] = 45455, + [SMALL_STATE(1209)] = 45575, + [SMALL_STATE(1210)] = 45695, + [SMALL_STATE(1211)] = 45815, + [SMALL_STATE(1212)] = 45935, + [SMALL_STATE(1213)] = 46055, + [SMALL_STATE(1214)] = 46175, + [SMALL_STATE(1215)] = 46295, + [SMALL_STATE(1216)] = 46415, + [SMALL_STATE(1217)] = 46535, + [SMALL_STATE(1218)] = 46655, + [SMALL_STATE(1219)] = 46775, + [SMALL_STATE(1220)] = 46895, + [SMALL_STATE(1221)] = 47015, + [SMALL_STATE(1222)] = 47135, + [SMALL_STATE(1223)] = 47255, + [SMALL_STATE(1224)] = 47375, + [SMALL_STATE(1225)] = 47495, + [SMALL_STATE(1226)] = 47615, + [SMALL_STATE(1227)] = 47735, + [SMALL_STATE(1228)] = 47855, + [SMALL_STATE(1229)] = 47975, + [SMALL_STATE(1230)] = 48095, + [SMALL_STATE(1231)] = 48215, + [SMALL_STATE(1232)] = 48335, + [SMALL_STATE(1233)] = 48407, + [SMALL_STATE(1234)] = 48527, + [SMALL_STATE(1235)] = 48647, + [SMALL_STATE(1236)] = 48767, + [SMALL_STATE(1237)] = 48887, + [SMALL_STATE(1238)] = 49007, + [SMALL_STATE(1239)] = 49127, + [SMALL_STATE(1240)] = 49247, + [SMALL_STATE(1241)] = 49331, + [SMALL_STATE(1242)] = 49451, + [SMALL_STATE(1243)] = 49571, + [SMALL_STATE(1244)] = 49691, + [SMALL_STATE(1245)] = 49811, + [SMALL_STATE(1246)] = 49931, + [SMALL_STATE(1247)] = 50051, + [SMALL_STATE(1248)] = 50171, + [SMALL_STATE(1249)] = 50291, + [SMALL_STATE(1250)] = 50411, + [SMALL_STATE(1251)] = 50531, + [SMALL_STATE(1252)] = 50651, + [SMALL_STATE(1253)] = 50771, + [SMALL_STATE(1254)] = 50891, + [SMALL_STATE(1255)] = 51011, + [SMALL_STATE(1256)] = 51131, + [SMALL_STATE(1257)] = 51251, + [SMALL_STATE(1258)] = 51371, + [SMALL_STATE(1259)] = 51491, + [SMALL_STATE(1260)] = 51611, + [SMALL_STATE(1261)] = 51731, + [SMALL_STATE(1262)] = 51851, + [SMALL_STATE(1263)] = 51971, + [SMALL_STATE(1264)] = 52091, + [SMALL_STATE(1265)] = 52211, + [SMALL_STATE(1266)] = 52283, + [SMALL_STATE(1267)] = 52403, + [SMALL_STATE(1268)] = 52523, + [SMALL_STATE(1269)] = 52643, + [SMALL_STATE(1270)] = 52763, + [SMALL_STATE(1271)] = 52883, + [SMALL_STATE(1272)] = 53003, + [SMALL_STATE(1273)] = 53123, + [SMALL_STATE(1274)] = 53243, + [SMALL_STATE(1275)] = 53363, + [SMALL_STATE(1276)] = 53483, + [SMALL_STATE(1277)] = 53603, + [SMALL_STATE(1278)] = 53723, + [SMALL_STATE(1279)] = 53843, + [SMALL_STATE(1280)] = 53963, + [SMALL_STATE(1281)] = 54083, + [SMALL_STATE(1282)] = 54203, + [SMALL_STATE(1283)] = 54323, + [SMALL_STATE(1284)] = 54443, + [SMALL_STATE(1285)] = 54563, + [SMALL_STATE(1286)] = 54627, + [SMALL_STATE(1287)] = 54747, + [SMALL_STATE(1288)] = 54867, + [SMALL_STATE(1289)] = 54987, + [SMALL_STATE(1290)] = 55107, + [SMALL_STATE(1291)] = 55227, + [SMALL_STATE(1292)] = 55347, + [SMALL_STATE(1293)] = 55467, + [SMALL_STATE(1294)] = 55587, + [SMALL_STATE(1295)] = 55707, + [SMALL_STATE(1296)] = 55827, + [SMALL_STATE(1297)] = 55947, + [SMALL_STATE(1298)] = 56067, + [SMALL_STATE(1299)] = 56187, + [SMALL_STATE(1300)] = 56307, + [SMALL_STATE(1301)] = 56427, + [SMALL_STATE(1302)] = 56547, + [SMALL_STATE(1303)] = 56667, + [SMALL_STATE(1304)] = 56787, + [SMALL_STATE(1305)] = 56907, + [SMALL_STATE(1306)] = 57027, + [SMALL_STATE(1307)] = 57147, + [SMALL_STATE(1308)] = 57267, + [SMALL_STATE(1309)] = 57387, + [SMALL_STATE(1310)] = 57507, + [SMALL_STATE(1311)] = 57627, + [SMALL_STATE(1312)] = 57747, + [SMALL_STATE(1313)] = 57867, + [SMALL_STATE(1314)] = 57931, + [SMALL_STATE(1315)] = 58051, + [SMALL_STATE(1316)] = 58171, + [SMALL_STATE(1317)] = 58291, + [SMALL_STATE(1318)] = 58411, + [SMALL_STATE(1319)] = 58501, + [SMALL_STATE(1320)] = 58621, + [SMALL_STATE(1321)] = 58741, + [SMALL_STATE(1322)] = 58808, + [SMALL_STATE(1323)] = 58881, + [SMALL_STATE(1324)] = 58966, + [SMALL_STATE(1325)] = 59053, + [SMALL_STATE(1326)] = 59138, + [SMALL_STATE(1327)] = 59223, + [SMALL_STATE(1328)] = 59308, + [SMALL_STATE(1329)] = 59379, + [SMALL_STATE(1330)] = 59464, + [SMALL_STATE(1331)] = 59537, + [SMALL_STATE(1332)] = 59622, + [SMALL_STATE(1333)] = 59693, + [SMALL_STATE(1334)] = 59778, + [SMALL_STATE(1335)] = 59863, + [SMALL_STATE(1336)] = 59948, + [SMALL_STATE(1337)] = 60035, + [SMALL_STATE(1338)] = 60120, + [SMALL_STATE(1339)] = 60205, + [SMALL_STATE(1340)] = 60290, + [SMALL_STATE(1341)] = 60375, + [SMALL_STATE(1342)] = 60460, + [SMALL_STATE(1343)] = 60527, + [SMALL_STATE(1344)] = 60612, + [SMALL_STATE(1345)] = 60683, + [SMALL_STATE(1346)] = 60768, + [SMALL_STATE(1347)] = 60838, + [SMALL_STATE(1348)] = 60920, + [SMALL_STATE(1349)] = 61040, + [SMALL_STATE(1350)] = 61122, + [SMALL_STATE(1351)] = 61184, + [SMALL_STATE(1352)] = 61246, + [SMALL_STATE(1353)] = 61308, + [SMALL_STATE(1354)] = 61378, + [SMALL_STATE(1355)] = 61442, + [SMALL_STATE(1356)] = 61524, + [SMALL_STATE(1357)] = 61606, + [SMALL_STATE(1358)] = 61676, + [SMALL_STATE(1359)] = 61738, + [SMALL_STATE(1360)] = 61804, + [SMALL_STATE(1361)] = 61874, + [SMALL_STATE(1362)] = 61956, + [SMALL_STATE(1363)] = 62018, + [SMALL_STATE(1364)] = 62100, + [SMALL_STATE(1365)] = 62182, + [SMALL_STATE(1366)] = 62252, + [SMALL_STATE(1367)] = 62372, + [SMALL_STATE(1368)] = 62434, + [SMALL_STATE(1369)] = 62496, + [SMALL_STATE(1370)] = 62578, + [SMALL_STATE(1371)] = 62648, + [SMALL_STATE(1372)] = 62714, + [SMALL_STATE(1373)] = 62776, + [SMALL_STATE(1374)] = 62838, + [SMALL_STATE(1375)] = 62904, + [SMALL_STATE(1376)] = 62974, + [SMALL_STATE(1377)] = 63036, + [SMALL_STATE(1378)] = 63104, + [SMALL_STATE(1379)] = 63186, + [SMALL_STATE(1380)] = 63268, + [SMALL_STATE(1381)] = 63338, + [SMALL_STATE(1382)] = 63400, + [SMALL_STATE(1383)] = 63468, + [SMALL_STATE(1384)] = 63533, + [SMALL_STATE(1385)] = 63602, + [SMALL_STATE(1386)] = 63667, + [SMALL_STATE(1387)] = 63736, + [SMALL_STATE(1388)] = 63805, + [SMALL_STATE(1389)] = 63869, + [SMALL_STATE(1390)] = 63933, + [SMALL_STATE(1391)] = 63997, + [SMALL_STATE(1392)] = 64063, + [SMALL_STATE(1393)] = 64129, + [SMALL_STATE(1394)] = 64204, + [SMALL_STATE(1395)] = 64310, + [SMALL_STATE(1396)] = 64416, + [SMALL_STATE(1397)] = 64522, + [SMALL_STATE(1398)] = 64596, + [SMALL_STATE(1399)] = 64702, + [SMALL_STATE(1400)] = 64808, + [SMALL_STATE(1401)] = 64914, + [SMALL_STATE(1402)] = 65020, + [SMALL_STATE(1403)] = 65130, + [SMALL_STATE(1404)] = 65240, + [SMALL_STATE(1405)] = 65295, + [SMALL_STATE(1406)] = 65350, + [SMALL_STATE(1407)] = 65405, + [SMALL_STATE(1408)] = 65460, + [SMALL_STATE(1409)] = 65517, + [SMALL_STATE(1410)] = 65572, + [SMALL_STATE(1411)] = 65627, + [SMALL_STATE(1412)] = 65682, + [SMALL_STATE(1413)] = 65737, + [SMALL_STATE(1414)] = 65844, + [SMALL_STATE(1415)] = 65899, + [SMALL_STATE(1416)] = 65954, + [SMALL_STATE(1417)] = 66009, + [SMALL_STATE(1418)] = 66064, + [SMALL_STATE(1419)] = 66173, + [SMALL_STATE(1420)] = 66228, + [SMALL_STATE(1421)] = 66330, + [SMALL_STATE(1422)] = 66392, + [SMALL_STATE(1423)] = 66494, + [SMALL_STATE(1424)] = 66578, + [SMALL_STATE(1425)] = 66680, + [SMALL_STATE(1426)] = 66782, + [SMALL_STATE(1427)] = 66884, + [SMALL_STATE(1428)] = 66986, + [SMALL_STATE(1429)] = 67088, + [SMALL_STATE(1430)] = 67190, + [SMALL_STATE(1431)] = 67292, + [SMALL_STATE(1432)] = 67350, + [SMALL_STATE(1433)] = 67452, + [SMALL_STATE(1434)] = 67554, + [SMALL_STATE(1435)] = 67656, + [SMALL_STATE(1436)] = 67728, + [SMALL_STATE(1437)] = 67830, + [SMALL_STATE(1438)] = 67914, + [SMALL_STATE(1439)] = 68016, + [SMALL_STATE(1440)] = 68118, + [SMALL_STATE(1441)] = 68220, + [SMALL_STATE(1442)] = 68322, + [SMALL_STATE(1443)] = 68424, + [SMALL_STATE(1444)] = 68526, + [SMALL_STATE(1445)] = 68628, + [SMALL_STATE(1446)] = 68730, + [SMALL_STATE(1447)] = 68799, + [SMALL_STATE(1448)] = 68852, + [SMALL_STATE(1449)] = 68921, + [SMALL_STATE(1450)] = 68974, + [SMALL_STATE(1451)] = 69029, + [SMALL_STATE(1452)] = 69101, + [SMALL_STATE(1453)] = 69159, + [SMALL_STATE(1454)] = 69211, + [SMALL_STATE(1455)] = 69309, + [SMALL_STATE(1456)] = 69407, + [SMALL_STATE(1457)] = 69459, + [SMALL_STATE(1458)] = 69511, + [SMALL_STATE(1459)] = 69567, + [SMALL_STATE(1460)] = 69623, + [SMALL_STATE(1461)] = 69675, + [SMALL_STATE(1462)] = 69773, + [SMALL_STATE(1463)] = 69871, + [SMALL_STATE(1464)] = 69927, + [SMALL_STATE(1465)] = 70001, + [SMALL_STATE(1466)] = 70099, + [SMALL_STATE(1467)] = 70151, + [SMALL_STATE(1468)] = 70249, + [SMALL_STATE(1469)] = 70323, + [SMALL_STATE(1470)] = 70421, + [SMALL_STATE(1471)] = 70473, + [SMALL_STATE(1472)] = 70525, + [SMALL_STATE(1473)] = 70623, + [SMALL_STATE(1474)] = 70675, + [SMALL_STATE(1475)] = 70729, + [SMALL_STATE(1476)] = 70798, + [SMALL_STATE(1477)] = 70849, + [SMALL_STATE(1478)] = 70918, + [SMALL_STATE(1479)] = 70971, + [SMALL_STATE(1480)] = 71022, + [SMALL_STATE(1481)] = 71073, + [SMALL_STATE(1482)] = 71124, + [SMALL_STATE(1483)] = 71175, + [SMALL_STATE(1484)] = 71226, + [SMALL_STATE(1485)] = 71277, + [SMALL_STATE(1486)] = 71328, + [SMALL_STATE(1487)] = 71397, + [SMALL_STATE(1488)] = 71448, + [SMALL_STATE(1489)] = 71499, + [SMALL_STATE(1490)] = 71550, + [SMALL_STATE(1491)] = 71601, + [SMALL_STATE(1492)] = 71654, + [SMALL_STATE(1493)] = 71705, + [SMALL_STATE(1494)] = 71764, + [SMALL_STATE(1495)] = 71815, + [SMALL_STATE(1496)] = 71866, + [SMALL_STATE(1497)] = 71935, + [SMALL_STATE(1498)] = 71986, + [SMALL_STATE(1499)] = 72039, + [SMALL_STATE(1500)] = 72090, + [SMALL_STATE(1501)] = 72141, + [SMALL_STATE(1502)] = 72222, + [SMALL_STATE(1503)] = 72291, + [SMALL_STATE(1504)] = 72342, + [SMALL_STATE(1505)] = 72411, + [SMALL_STATE(1506)] = 72462, + [SMALL_STATE(1507)] = 72513, + [SMALL_STATE(1508)] = 72564, + [SMALL_STATE(1509)] = 72615, + [SMALL_STATE(1510)] = 72666, + [SMALL_STATE(1511)] = 72719, + [SMALL_STATE(1512)] = 72770, + [SMALL_STATE(1513)] = 72839, + [SMALL_STATE(1514)] = 72890, + [SMALL_STATE(1515)] = 72947, + [SMALL_STATE(1516)] = 73016, + [SMALL_STATE(1517)] = 73069, + [SMALL_STATE(1518)] = 73120, + [SMALL_STATE(1519)] = 73171, + [SMALL_STATE(1520)] = 73222, + [SMALL_STATE(1521)] = 73275, + [SMALL_STATE(1522)] = 73326, + [SMALL_STATE(1523)] = 73381, + [SMALL_STATE(1524)] = 73438, + [SMALL_STATE(1525)] = 73493, + [SMALL_STATE(1526)] = 73562, + [SMALL_STATE(1527)] = 73613, + [SMALL_STATE(1528)] = 73664, + [SMALL_STATE(1529)] = 73715, + [SMALL_STATE(1530)] = 73766, + [SMALL_STATE(1531)] = 73821, + [SMALL_STATE(1532)] = 73872, + [SMALL_STATE(1533)] = 73923, + [SMALL_STATE(1534)] = 74002, + [SMALL_STATE(1535)] = 74053, + [SMALL_STATE(1536)] = 74104, + [SMALL_STATE(1537)] = 74155, + [SMALL_STATE(1538)] = 74206, + [SMALL_STATE(1539)] = 74257, + [SMALL_STATE(1540)] = 74308, + [SMALL_STATE(1541)] = 74359, + [SMALL_STATE(1542)] = 74410, + [SMALL_STATE(1543)] = 74461, + [SMALL_STATE(1544)] = 74534, + [SMALL_STATE(1545)] = 74589, + [SMALL_STATE(1546)] = 74662, + [SMALL_STATE(1547)] = 74713, + [SMALL_STATE(1548)] = 74764, + [SMALL_STATE(1549)] = 74814, + [SMALL_STATE(1550)] = 74886, + [SMALL_STATE(1551)] = 74936, + [SMALL_STATE(1552)] = 74986, + [SMALL_STATE(1553)] = 75054, + [SMALL_STATE(1554)] = 75122, + [SMALL_STATE(1555)] = 75178, + [SMALL_STATE(1556)] = 75236, + [SMALL_STATE(1557)] = 75286, + [SMALL_STATE(1558)] = 75336, + [SMALL_STATE(1559)] = 75386, + [SMALL_STATE(1560)] = 75460, + [SMALL_STATE(1561)] = 75534, + [SMALL_STATE(1562)] = 75588, + [SMALL_STATE(1563)] = 75662, + [SMALL_STATE(1564)] = 75716, + [SMALL_STATE(1565)] = 75766, + [SMALL_STATE(1566)] = 75822, + [SMALL_STATE(1567)] = 75872, + [SMALL_STATE(1568)] = 75922, + [SMALL_STATE(1569)] = 75982, + [SMALL_STATE(1570)] = 76042, + [SMALL_STATE(1571)] = 76094, + [SMALL_STATE(1572)] = 76164, + [SMALL_STATE(1573)] = 76214, + [SMALL_STATE(1574)] = 76264, + [SMALL_STATE(1575)] = 76314, + [SMALL_STATE(1576)] = 76364, + [SMALL_STATE(1577)] = 76418, + [SMALL_STATE(1578)] = 76468, + [SMALL_STATE(1579)] = 76536, + [SMALL_STATE(1580)] = 76604, + [SMALL_STATE(1581)] = 76654, + [SMALL_STATE(1582)] = 76704, + [SMALL_STATE(1583)] = 76760, + [SMALL_STATE(1584)] = 76810, + [SMALL_STATE(1585)] = 76866, + [SMALL_STATE(1586)] = 76916, + [SMALL_STATE(1587)] = 76984, + [SMALL_STATE(1588)] = 77052, + [SMALL_STATE(1589)] = 77106, + [SMALL_STATE(1590)] = 77158, + [SMALL_STATE(1591)] = 77208, + [SMALL_STATE(1592)] = 77258, + [SMALL_STATE(1593)] = 77308, + [SMALL_STATE(1594)] = 77360, + [SMALL_STATE(1595)] = 77412, + [SMALL_STATE(1596)] = 77462, + [SMALL_STATE(1597)] = 77512, + [SMALL_STATE(1598)] = 77566, + [SMALL_STATE(1599)] = 77616, + [SMALL_STATE(1600)] = 77670, + [SMALL_STATE(1601)] = 77720, + [SMALL_STATE(1602)] = 77790, + [SMALL_STATE(1603)] = 77846, + [SMALL_STATE(1604)] = 77896, + [SMALL_STATE(1605)] = 77968, + [SMALL_STATE(1606)] = 78018, + [SMALL_STATE(1607)] = 78068, + [SMALL_STATE(1608)] = 78118, + [SMALL_STATE(1609)] = 78168, + [SMALL_STATE(1610)] = 78220, + [SMALL_STATE(1611)] = 78292, + [SMALL_STATE(1612)] = 78344, + [SMALL_STATE(1613)] = 78394, + [SMALL_STATE(1614)] = 78444, + [SMALL_STATE(1615)] = 78494, + [SMALL_STATE(1616)] = 78544, + [SMALL_STATE(1617)] = 78594, + [SMALL_STATE(1618)] = 78646, + [SMALL_STATE(1619)] = 78696, + [SMALL_STATE(1620)] = 78746, + [SMALL_STATE(1621)] = 78806, + [SMALL_STATE(1622)] = 78860, + [SMALL_STATE(1623)] = 78914, + [SMALL_STATE(1624)] = 78968, + [SMALL_STATE(1625)] = 79022, + [SMALL_STATE(1626)] = 79072, + [SMALL_STATE(1627)] = 79122, + [SMALL_STATE(1628)] = 79172, + [SMALL_STATE(1629)] = 79222, + [SMALL_STATE(1630)] = 79288, + [SMALL_STATE(1631)] = 79354, + [SMALL_STATE(1632)] = 79404, + [SMALL_STATE(1633)] = 79472, + [SMALL_STATE(1634)] = 79522, + [SMALL_STATE(1635)] = 79572, + [SMALL_STATE(1636)] = 79622, + [SMALL_STATE(1637)] = 79672, + [SMALL_STATE(1638)] = 79722, + [SMALL_STATE(1639)] = 79790, + [SMALL_STATE(1640)] = 79840, + [SMALL_STATE(1641)] = 79894, + [SMALL_STATE(1642)] = 79962, + [SMALL_STATE(1643)] = 80012, + [SMALL_STATE(1644)] = 80064, + [SMALL_STATE(1645)] = 80114, + [SMALL_STATE(1646)] = 80182, + [SMALL_STATE(1647)] = 80234, + [SMALL_STATE(1648)] = 80284, + [SMALL_STATE(1649)] = 80352, + [SMALL_STATE(1650)] = 80402, + [SMALL_STATE(1651)] = 80470, + [SMALL_STATE(1652)] = 80538, + [SMALL_STATE(1653)] = 80590, + [SMALL_STATE(1654)] = 80640, + [SMALL_STATE(1655)] = 80690, + [SMALL_STATE(1656)] = 80740, + [SMALL_STATE(1657)] = 80790, + [SMALL_STATE(1658)] = 80840, + [SMALL_STATE(1659)] = 80890, + [SMALL_STATE(1660)] = 80958, + [SMALL_STATE(1661)] = 81026, + [SMALL_STATE(1662)] = 81098, + [SMALL_STATE(1663)] = 81148, + [SMALL_STATE(1664)] = 81198, + [SMALL_STATE(1665)] = 81256, + [SMALL_STATE(1666)] = 81323, + [SMALL_STATE(1667)] = 81372, + [SMALL_STATE(1668)] = 81423, + [SMALL_STATE(1669)] = 81472, + [SMALL_STATE(1670)] = 81537, + [SMALL_STATE(1671)] = 81588, + [SMALL_STATE(1672)] = 81659, + [SMALL_STATE(1673)] = 81708, + [SMALL_STATE(1674)] = 81779, + [SMALL_STATE(1675)] = 81846, + [SMALL_STATE(1676)] = 81899, + [SMALL_STATE(1677)] = 81954, + [SMALL_STATE(1678)] = 82007, + [SMALL_STATE(1679)] = 82058, + [SMALL_STATE(1680)] = 82125, + [SMALL_STATE(1681)] = 82190, + [SMALL_STATE(1682)] = 82257, + [SMALL_STATE(1683)] = 82324, + [SMALL_STATE(1684)] = 82393, + [SMALL_STATE(1685)] = 82442, + [SMALL_STATE(1686)] = 82491, + [SMALL_STATE(1687)] = 82540, + [SMALL_STATE(1688)] = 82611, + [SMALL_STATE(1689)] = 82680, + [SMALL_STATE(1690)] = 82731, + [SMALL_STATE(1691)] = 82784, + [SMALL_STATE(1692)] = 82855, + [SMALL_STATE(1693)] = 82922, + [SMALL_STATE(1694)] = 82973, + [SMALL_STATE(1695)] = 83021, + [SMALL_STATE(1696)] = 83069, + [SMALL_STATE(1697)] = 83121, + [SMALL_STATE(1698)] = 83169, + [SMALL_STATE(1699)] = 83217, + [SMALL_STATE(1700)] = 83271, + [SMALL_STATE(1701)] = 83319, + [SMALL_STATE(1702)] = 83373, + [SMALL_STATE(1703)] = 83425, + [SMALL_STATE(1704)] = 83473, + [SMALL_STATE(1705)] = 83521, + [SMALL_STATE(1706)] = 83569, + [SMALL_STATE(1707)] = 83619, + [SMALL_STATE(1708)] = 83667, + [SMALL_STATE(1709)] = 83719, + [SMALL_STATE(1710)] = 83767, + [SMALL_STATE(1711)] = 83819, + [SMALL_STATE(1712)] = 83867, + [SMALL_STATE(1713)] = 83917, + [SMALL_STATE(1714)] = 83969, + [SMALL_STATE(1715)] = 84023, + [SMALL_STATE(1716)] = 84075, + [SMALL_STATE(1717)] = 84123, + [SMALL_STATE(1718)] = 84175, + [SMALL_STATE(1719)] = 84225, + [SMALL_STATE(1720)] = 84273, + [SMALL_STATE(1721)] = 84321, + [SMALL_STATE(1722)] = 84369, + [SMALL_STATE(1723)] = 84417, + [SMALL_STATE(1724)] = 84469, + [SMALL_STATE(1725)] = 84517, + [SMALL_STATE(1726)] = 84565, + [SMALL_STATE(1727)] = 84613, + [SMALL_STATE(1728)] = 84661, + [SMALL_STATE(1729)] = 84715, + [SMALL_STATE(1730)] = 84763, + [SMALL_STATE(1731)] = 84811, + [SMALL_STATE(1732)] = 84859, + [SMALL_STATE(1733)] = 84909, + [SMALL_STATE(1734)] = 84957, + [SMALL_STATE(1735)] = 85005, + [SMALL_STATE(1736)] = 85053, + [SMALL_STATE(1737)] = 85117, + [SMALL_STATE(1738)] = 85165, + [SMALL_STATE(1739)] = 85217, + [SMALL_STATE(1740)] = 85265, + [SMALL_STATE(1741)] = 85313, + [SMALL_STATE(1742)] = 85365, + [SMALL_STATE(1743)] = 85417, + [SMALL_STATE(1744)] = 85469, + [SMALL_STATE(1745)] = 85521, + [SMALL_STATE(1746)] = 85569, + [SMALL_STATE(1747)] = 85617, + [SMALL_STATE(1748)] = 85665, + [SMALL_STATE(1749)] = 85713, + [SMALL_STATE(1750)] = 85783, + [SMALL_STATE(1751)] = 85853, + [SMALL_STATE(1752)] = 85907, + [SMALL_STATE(1753)] = 85957, + [SMALL_STATE(1754)] = 86005, + [SMALL_STATE(1755)] = 86053, + [SMALL_STATE(1756)] = 86105, + [SMALL_STATE(1757)] = 86155, + [SMALL_STATE(1758)] = 86203, + [SMALL_STATE(1759)] = 86251, + [SMALL_STATE(1760)] = 86299, + [SMALL_STATE(1761)] = 86347, + [SMALL_STATE(1762)] = 86399, + [SMALL_STATE(1763)] = 86447, + [SMALL_STATE(1764)] = 86501, + [SMALL_STATE(1765)] = 86553, + [SMALL_STATE(1766)] = 86605, + [SMALL_STATE(1767)] = 86655, + [SMALL_STATE(1768)] = 86703, + [SMALL_STATE(1769)] = 86751, + [SMALL_STATE(1770)] = 86805, + [SMALL_STATE(1771)] = 86859, + [SMALL_STATE(1772)] = 86929, + [SMALL_STATE(1773)] = 86999, + [SMALL_STATE(1774)] = 87053, + [SMALL_STATE(1775)] = 87105, + [SMALL_STATE(1776)] = 87157, + [SMALL_STATE(1777)] = 87209, + [SMALL_STATE(1778)] = 87257, + [SMALL_STATE(1779)] = 87305, + [SMALL_STATE(1780)] = 87353, + [SMALL_STATE(1781)] = 87400, + [SMALL_STATE(1782)] = 87451, + [SMALL_STATE(1783)] = 87534, + [SMALL_STATE(1784)] = 87581, + [SMALL_STATE(1785)] = 87628, + [SMALL_STATE(1786)] = 87675, + [SMALL_STATE(1787)] = 87722, + [SMALL_STATE(1788)] = 87769, + [SMALL_STATE(1789)] = 87816, + [SMALL_STATE(1790)] = 87863, + [SMALL_STATE(1791)] = 87928, + [SMALL_STATE(1792)] = 87975, + [SMALL_STATE(1793)] = 88022, + [SMALL_STATE(1794)] = 88069, + [SMALL_STATE(1795)] = 88116, + [SMALL_STATE(1796)] = 88163, + [SMALL_STATE(1797)] = 88210, + [SMALL_STATE(1798)] = 88257, + [SMALL_STATE(1799)] = 88304, + [SMALL_STATE(1800)] = 88355, + [SMALL_STATE(1801)] = 88440, + [SMALL_STATE(1802)] = 88487, + [SMALL_STATE(1803)] = 88534, + [SMALL_STATE(1804)] = 88615, + [SMALL_STATE(1805)] = 88666, + [SMALL_STATE(1806)] = 88719, + [SMALL_STATE(1807)] = 88770, + [SMALL_STATE(1808)] = 88817, + [SMALL_STATE(1809)] = 88898, + [SMALL_STATE(1810)] = 88945, + [SMALL_STATE(1811)] = 89028, + [SMALL_STATE(1812)] = 89079, + [SMALL_STATE(1813)] = 89160, + [SMALL_STATE(1814)] = 89207, + [SMALL_STATE(1815)] = 89288, + [SMALL_STATE(1816)] = 89369, + [SMALL_STATE(1817)] = 89418, + [SMALL_STATE(1818)] = 89465, + [SMALL_STATE(1819)] = 89512, + [SMALL_STATE(1820)] = 89571, + [SMALL_STATE(1821)] = 89620, + [SMALL_STATE(1822)] = 89685, + [SMALL_STATE(1823)] = 89754, + [SMALL_STATE(1824)] = 89827, + [SMALL_STATE(1825)] = 89874, + [SMALL_STATE(1826)] = 89937, + [SMALL_STATE(1827)] = 89984, + [SMALL_STATE(1828)] = 90049, + [SMALL_STATE(1829)] = 90114, + [SMALL_STATE(1830)] = 90191, + [SMALL_STATE(1831)] = 90272, + [SMALL_STATE(1832)] = 90353, + [SMALL_STATE(1833)] = 90400, + [SMALL_STATE(1834)] = 90447, + [SMALL_STATE(1835)] = 90528, + [SMALL_STATE(1836)] = 90609, + [SMALL_STATE(1837)] = 90656, + [SMALL_STATE(1838)] = 90707, + [SMALL_STATE(1839)] = 90758, + [SMALL_STATE(1840)] = 90805, + [SMALL_STATE(1841)] = 90886, + [SMALL_STATE(1842)] = 90937, + [SMALL_STATE(1843)] = 90984, + [SMALL_STATE(1844)] = 91049, + [SMALL_STATE(1845)] = 91096, + [SMALL_STATE(1846)] = 91179, + [SMALL_STATE(1847)] = 91226, + [SMALL_STATE(1848)] = 91275, + [SMALL_STATE(1849)] = 91322, + [SMALL_STATE(1850)] = 91369, + [SMALL_STATE(1851)] = 91416, + [SMALL_STATE(1852)] = 91481, + [SMALL_STATE(1853)] = 91532, + [SMALL_STATE(1854)] = 91583, + [SMALL_STATE(1855)] = 91634, + [SMALL_STATE(1856)] = 91681, + [SMALL_STATE(1857)] = 91764, + [SMALL_STATE(1858)] = 91845, + [SMALL_STATE(1859)] = 91910, + [SMALL_STATE(1860)] = 91975, + [SMALL_STATE(1861)] = 92022, + [SMALL_STATE(1862)] = 92069, + [SMALL_STATE(1863)] = 92150, + [SMALL_STATE(1864)] = 92231, + [SMALL_STATE(1865)] = 92278, + [SMALL_STATE(1866)] = 92325, + [SMALL_STATE(1867)] = 92380, + [SMALL_STATE(1868)] = 92431, + [SMALL_STATE(1869)] = 92512, + [SMALL_STATE(1870)] = 92565, + [SMALL_STATE(1871)] = 92646, + [SMALL_STATE(1872)] = 92693, + [SMALL_STATE(1873)] = 92740, + [SMALL_STATE(1874)] = 92793, + [SMALL_STATE(1875)] = 92876, + [SMALL_STATE(1876)] = 92929, + [SMALL_STATE(1877)] = 93010, + [SMALL_STATE(1878)] = 93057, + [SMALL_STATE(1879)] = 93138, + [SMALL_STATE(1880)] = 93185, + [SMALL_STATE(1881)] = 93232, + [SMALL_STATE(1882)] = 93285, + [SMALL_STATE(1883)] = 93336, + [SMALL_STATE(1884)] = 93419, + [SMALL_STATE(1885)] = 93500, + [SMALL_STATE(1886)] = 93581, + [SMALL_STATE(1887)] = 93662, + [SMALL_STATE(1888)] = 93727, + [SMALL_STATE(1889)] = 93774, + [SMALL_STATE(1890)] = 93821, + [SMALL_STATE(1891)] = 93868, + [SMALL_STATE(1892)] = 93915, + [SMALL_STATE(1893)] = 93962, + [SMALL_STATE(1894)] = 94009, + [SMALL_STATE(1895)] = 94056, + [SMALL_STATE(1896)] = 94113, + [SMALL_STATE(1897)] = 94194, + [SMALL_STATE(1898)] = 94241, + [SMALL_STATE(1899)] = 94288, + [SMALL_STATE(1900)] = 94341, + [SMALL_STATE(1901)] = 94388, + [SMALL_STATE(1902)] = 94435, + [SMALL_STATE(1903)] = 94484, + [SMALL_STATE(1904)] = 94537, + [SMALL_STATE(1905)] = 94584, + [SMALL_STATE(1906)] = 94631, + [SMALL_STATE(1907)] = 94680, + [SMALL_STATE(1908)] = 94733, + [SMALL_STATE(1909)] = 94780, + [SMALL_STATE(1910)] = 94827, + [SMALL_STATE(1911)] = 94880, + [SMALL_STATE(1912)] = 94927, + [SMALL_STATE(1913)] = 95010, + [SMALL_STATE(1914)] = 95057, + [SMALL_STATE(1915)] = 95104, + [SMALL_STATE(1916)] = 95153, + [SMALL_STATE(1917)] = 95200, + [SMALL_STATE(1918)] = 95247, + [SMALL_STATE(1919)] = 95294, + [SMALL_STATE(1920)] = 95341, + [SMALL_STATE(1921)] = 95388, + [SMALL_STATE(1922)] = 95435, + [SMALL_STATE(1923)] = 95482, + [SMALL_STATE(1924)] = 95547, + [SMALL_STATE(1925)] = 95594, + [SMALL_STATE(1926)] = 95641, + [SMALL_STATE(1927)] = 95706, + [SMALL_STATE(1928)] = 95753, + [SMALL_STATE(1929)] = 95834, + [SMALL_STATE(1930)] = 95881, + [SMALL_STATE(1931)] = 95930, + [SMALL_STATE(1932)] = 95977, + [SMALL_STATE(1933)] = 96060, + [SMALL_STATE(1934)] = 96145, + [SMALL_STATE(1935)] = 96226, + [SMALL_STATE(1936)] = 96307, + [SMALL_STATE(1937)] = 96388, + [SMALL_STATE(1938)] = 96435, + [SMALL_STATE(1939)] = 96482, + [SMALL_STATE(1940)] = 96531, + [SMALL_STATE(1941)] = 96578, + [SMALL_STATE(1942)] = 96627, + [SMALL_STATE(1943)] = 96680, + [SMALL_STATE(1944)] = 96727, + [SMALL_STATE(1945)] = 96792, + [SMALL_STATE(1946)] = 96857, + [SMALL_STATE(1947)] = 96904, + [SMALL_STATE(1948)] = 96985, + [SMALL_STATE(1949)] = 97032, + [SMALL_STATE(1950)] = 97079, + [SMALL_STATE(1951)] = 97138, + [SMALL_STATE(1952)] = 97185, + [SMALL_STATE(1953)] = 97232, + [SMALL_STATE(1954)] = 97297, + [SMALL_STATE(1955)] = 97366, + [SMALL_STATE(1956)] = 97439, + [SMALL_STATE(1957)] = 97502, + [SMALL_STATE(1958)] = 97549, + [SMALL_STATE(1959)] = 97626, + [SMALL_STATE(1960)] = 97707, + [SMALL_STATE(1961)] = 97788, + [SMALL_STATE(1962)] = 97835, + [SMALL_STATE(1963)] = 97900, + [SMALL_STATE(1964)] = 97947, + [SMALL_STATE(1965)] = 98028, + [SMALL_STATE(1966)] = 98111, + [SMALL_STATE(1967)] = 98168, + [SMALL_STATE(1968)] = 98215, + [SMALL_STATE(1969)] = 98280, + [SMALL_STATE(1970)] = 98327, + [SMALL_STATE(1971)] = 98392, + [SMALL_STATE(1972)] = 98439, + [SMALL_STATE(1973)] = 98504, + [SMALL_STATE(1974)] = 98589, + [SMALL_STATE(1975)] = 98672, + [SMALL_STATE(1976)] = 98719, + [SMALL_STATE(1977)] = 98804, + [SMALL_STATE(1978)] = 98851, + [SMALL_STATE(1979)] = 98902, + [SMALL_STATE(1980)] = 98949, + [SMALL_STATE(1981)] = 98996, + [SMALL_STATE(1982)] = 99043, + [SMALL_STATE(1983)] = 99108, + [SMALL_STATE(1984)] = 99173, + [SMALL_STATE(1985)] = 99230, + [SMALL_STATE(1986)] = 99277, + [SMALL_STATE(1987)] = 99326, + [SMALL_STATE(1988)] = 99373, + [SMALL_STATE(1989)] = 99454, + [SMALL_STATE(1990)] = 99503, + [SMALL_STATE(1991)] = 99552, + [SMALL_STATE(1992)] = 99599, + [SMALL_STATE(1993)] = 99682, + [SMALL_STATE(1994)] = 99747, + [SMALL_STATE(1995)] = 99812, + [SMALL_STATE(1996)] = 99895, + [SMALL_STATE(1997)] = 99944, + [SMALL_STATE(1998)] = 99993, + [SMALL_STATE(1999)] = 100042, + [SMALL_STATE(2000)] = 100091, + [SMALL_STATE(2001)] = 100138, + [SMALL_STATE(2002)] = 100223, + [SMALL_STATE(2003)] = 100306, + [SMALL_STATE(2004)] = 100368, + [SMALL_STATE(2005)] = 100420, + [SMALL_STATE(2006)] = 100466, + [SMALL_STATE(2007)] = 100512, + [SMALL_STATE(2008)] = 100594, + [SMALL_STATE(2009)] = 100640, + [SMALL_STATE(2010)] = 100686, + [SMALL_STATE(2011)] = 100768, + [SMALL_STATE(2012)] = 100814, + [SMALL_STATE(2013)] = 100896, + [SMALL_STATE(2014)] = 100942, + [SMALL_STATE(2015)] = 101006, + [SMALL_STATE(2016)] = 101052, + [SMALL_STATE(2017)] = 101120, + [SMALL_STATE(2018)] = 101192, + [SMALL_STATE(2019)] = 101272, + [SMALL_STATE(2020)] = 101348, + [SMALL_STATE(2021)] = 101410, + [SMALL_STATE(2022)] = 101490, + [SMALL_STATE(2023)] = 101536, + [SMALL_STATE(2024)] = 101582, + [SMALL_STATE(2025)] = 101644, + [SMALL_STATE(2026)] = 101720, + [SMALL_STATE(2027)] = 101800, + [SMALL_STATE(2028)] = 101880, + [SMALL_STATE(2029)] = 101960, + [SMALL_STATE(2030)] = 102012, + [SMALL_STATE(2031)] = 102080, + [SMALL_STATE(2032)] = 102144, + [SMALL_STATE(2033)] = 102190, + [SMALL_STATE(2034)] = 102248, + [SMALL_STATE(2035)] = 102294, + [SMALL_STATE(2036)] = 102346, + [SMALL_STATE(2037)] = 102428, + [SMALL_STATE(2038)] = 102490, + [SMALL_STATE(2039)] = 102542, + [SMALL_STATE(2040)] = 102594, + [SMALL_STATE(2041)] = 102652, + [SMALL_STATE(2042)] = 102698, + [SMALL_STATE(2043)] = 102744, + [SMALL_STATE(2044)] = 102790, + [SMALL_STATE(2045)] = 102836, + [SMALL_STATE(2046)] = 102886, + [SMALL_STATE(2047)] = 102934, + [SMALL_STATE(2048)] = 103014, + [SMALL_STATE(2049)] = 103064, + [SMALL_STATE(2050)] = 103144, + [SMALL_STATE(2051)] = 103224, + [SMALL_STATE(2052)] = 103270, + [SMALL_STATE(2053)] = 103350, + [SMALL_STATE(2054)] = 103432, + [SMALL_STATE(2055)] = 103478, + [SMALL_STATE(2056)] = 103560, + [SMALL_STATE(2057)] = 103640, + [SMALL_STATE(2058)] = 103720, + [SMALL_STATE(2059)] = 103766, + [SMALL_STATE(2060)] = 103846, + [SMALL_STATE(2061)] = 103926, + [SMALL_STATE(2062)] = 104008, + [SMALL_STATE(2063)] = 104054, + [SMALL_STATE(2064)] = 104116, + [SMALL_STATE(2065)] = 104168, + [SMALL_STATE(2066)] = 104216, + [SMALL_STATE(2067)] = 104268, + [SMALL_STATE(2068)] = 104314, + [SMALL_STATE(2069)] = 104360, + [SMALL_STATE(2070)] = 104406, + [SMALL_STATE(2071)] = 104452, + [SMALL_STATE(2072)] = 104498, + [SMALL_STATE(2073)] = 104544, + [SMALL_STATE(2074)] = 104590, + [SMALL_STATE(2075)] = 104670, + [SMALL_STATE(2076)] = 104750, + [SMALL_STATE(2077)] = 104796, + [SMALL_STATE(2078)] = 104846, + [SMALL_STATE(2079)] = 104896, + [SMALL_STATE(2080)] = 104942, + [SMALL_STATE(2081)] = 104988, + [SMALL_STATE(2082)] = 105040, + [SMALL_STATE(2083)] = 105102, + [SMALL_STATE(2084)] = 105154, + [SMALL_STATE(2085)] = 105204, + [SMALL_STATE(2086)] = 105284, + [SMALL_STATE(2087)] = 105330, + [SMALL_STATE(2088)] = 105382, + [SMALL_STATE(2089)] = 105428, + [SMALL_STATE(2090)] = 105478, + [SMALL_STATE(2091)] = 105524, + [SMALL_STATE(2092)] = 105574, + [SMALL_STATE(2093)] = 105630, + [SMALL_STATE(2094)] = 105686, + [SMALL_STATE(2095)] = 105732, + [SMALL_STATE(2096)] = 105812, + [SMALL_STATE(2097)] = 105892, + [SMALL_STATE(2098)] = 105972, + [SMALL_STATE(2099)] = 106018, + [SMALL_STATE(2100)] = 106080, + [SMALL_STATE(2101)] = 106144, + [SMALL_STATE(2102)] = 106206, + [SMALL_STATE(2103)] = 106260, + [SMALL_STATE(2104)] = 106306, + [SMALL_STATE(2105)] = 106352, + [SMALL_STATE(2106)] = 106420, + [SMALL_STATE(2107)] = 106470, + [SMALL_STATE(2108)] = 106520, + [SMALL_STATE(2109)] = 106602, + [SMALL_STATE(2110)] = 106684, + [SMALL_STATE(2111)] = 106764, + [SMALL_STATE(2112)] = 106810, + [SMALL_STATE(2113)] = 106872, + [SMALL_STATE(2114)] = 106918, + [SMALL_STATE(2115)] = 107000, + [SMALL_STATE(2116)] = 107046, + [SMALL_STATE(2117)] = 107126, + [SMALL_STATE(2118)] = 107172, + [SMALL_STATE(2119)] = 107252, + [SMALL_STATE(2120)] = 107308, + [SMALL_STATE(2121)] = 107374, + [SMALL_STATE(2122)] = 107446, + [SMALL_STATE(2123)] = 107526, + [SMALL_STATE(2124)] = 107572, + [SMALL_STATE(2125)] = 107618, + [SMALL_STATE(2126)] = 107664, + [SMALL_STATE(2127)] = 107746, + [SMALL_STATE(2128)] = 107792, + [SMALL_STATE(2129)] = 107838, + [SMALL_STATE(2130)] = 107884, + [SMALL_STATE(2131)] = 107946, + [SMALL_STATE(2132)] = 107992, + [SMALL_STATE(2133)] = 108044, + [SMALL_STATE(2134)] = 108090, + [SMALL_STATE(2135)] = 108136, + [SMALL_STATE(2136)] = 108182, + [SMALL_STATE(2137)] = 108228, + [SMALL_STATE(2138)] = 108280, + [SMALL_STATE(2139)] = 108342, + [SMALL_STATE(2140)] = 108388, + [SMALL_STATE(2141)] = 108434, + [SMALL_STATE(2142)] = 108498, + [SMALL_STATE(2143)] = 108544, + [SMALL_STATE(2144)] = 108624, + [SMALL_STATE(2145)] = 108704, + [SMALL_STATE(2146)] = 108750, + [SMALL_STATE(2147)] = 108818, + [SMALL_STATE(2148)] = 108864, + [SMALL_STATE(2149)] = 108910, + [SMALL_STATE(2150)] = 108992, + [SMALL_STATE(2151)] = 109058, + [SMALL_STATE(2152)] = 109104, + [SMALL_STATE(2153)] = 109184, + [SMALL_STATE(2154)] = 109230, + [SMALL_STATE(2155)] = 109310, + [SMALL_STATE(2156)] = 109368, + [SMALL_STATE(2157)] = 109432, + [SMALL_STATE(2158)] = 109500, + [SMALL_STATE(2159)] = 109572, + [SMALL_STATE(2160)] = 109634, + [SMALL_STATE(2161)] = 109710, + [SMALL_STATE(2162)] = 109790, + [SMALL_STATE(2163)] = 109870, + [SMALL_STATE(2164)] = 109932, + [SMALL_STATE(2165)] = 110012, + [SMALL_STATE(2166)] = 110092, + [SMALL_STATE(2167)] = 110138, + [SMALL_STATE(2168)] = 110184, + [SMALL_STATE(2169)] = 110266, + [SMALL_STATE(2170)] = 110312, + [SMALL_STATE(2171)] = 110358, + [SMALL_STATE(2172)] = 110440, + [SMALL_STATE(2173)] = 110486, + [SMALL_STATE(2174)] = 110568, + [SMALL_STATE(2175)] = 110647, + [SMALL_STATE(2176)] = 110730, + [SMALL_STATE(2177)] = 110805, + [SMALL_STATE(2178)] = 110862, + [SMALL_STATE(2179)] = 110941, + [SMALL_STATE(2180)] = 110992, + [SMALL_STATE(2181)] = 111041, + [SMALL_STATE(2182)] = 111126, + [SMALL_STATE(2183)] = 111205, + [SMALL_STATE(2184)] = 111284, + [SMALL_STATE(2185)] = 111367, + [SMALL_STATE(2186)] = 111450, + [SMALL_STATE(2187)] = 111517, + [SMALL_STATE(2188)] = 111602, + [SMALL_STATE(2189)] = 111681, + [SMALL_STATE(2190)] = 111740, + [SMALL_STATE(2191)] = 111791, + [SMALL_STATE(2192)] = 111852, + [SMALL_STATE(2193)] = 111931, + [SMALL_STATE(2194)] = 112010, + [SMALL_STATE(2195)] = 112089, + [SMALL_STATE(2196)] = 112152, + [SMALL_STATE(2197)] = 112235, + [SMALL_STATE(2198)] = 112320, + [SMALL_STATE(2199)] = 112399, + [SMALL_STATE(2200)] = 112478, + [SMALL_STATE(2201)] = 112557, + [SMALL_STATE(2202)] = 112636, + [SMALL_STATE(2203)] = 112715, + [SMALL_STATE(2204)] = 112794, + [SMALL_STATE(2205)] = 112877, + [SMALL_STATE(2206)] = 112962, + [SMALL_STATE(2207)] = 113025, + [SMALL_STATE(2208)] = 113076, + [SMALL_STATE(2209)] = 113143, + [SMALL_STATE(2210)] = 113222, + [SMALL_STATE(2211)] = 113301, + [SMALL_STATE(2212)] = 113376, + [SMALL_STATE(2213)] = 113441, + [SMALL_STATE(2214)] = 113526, + [SMALL_STATE(2215)] = 113611, + [SMALL_STATE(2216)] = 113690, + [SMALL_STATE(2217)] = 113741, + [SMALL_STATE(2218)] = 113822, + [SMALL_STATE(2219)] = 113871, + [SMALL_STATE(2220)] = 113932, + [SMALL_STATE(2221)] = 113995, + [SMALL_STATE(2222)] = 114054, + [SMALL_STATE(2223)] = 114133, + [SMALL_STATE(2224)] = 114204, + [SMALL_STATE(2225)] = 114255, + [SMALL_STATE(2226)] = 114322, + [SMALL_STATE(2227)] = 114379, + [SMALL_STATE(2228)] = 114442, + [SMALL_STATE(2229)] = 114513, + [SMALL_STATE(2230)] = 114592, + [SMALL_STATE(2231)] = 114643, + [SMALL_STATE(2232)] = 114706, + [SMALL_STATE(2233)] = 114788, + [SMALL_STATE(2234)] = 114846, + [SMALL_STATE(2235)] = 114924, + [SMALL_STATE(2236)] = 114984, + [SMALL_STATE(2237)] = 115030, + [SMALL_STATE(2238)] = 115108, + [SMALL_STATE(2239)] = 115170, + [SMALL_STATE(2240)] = 115252, + [SMALL_STATE(2241)] = 115310, + [SMALL_STATE(2242)] = 115388, + [SMALL_STATE(2243)] = 115448, + [SMALL_STATE(2244)] = 115530, + [SMALL_STATE(2245)] = 115592, + [SMALL_STATE(2246)] = 115674, + [SMALL_STATE(2247)] = 115736, + [SMALL_STATE(2248)] = 115816, + [SMALL_STATE(2249)] = 115896, + [SMALL_STATE(2250)] = 115974, + [SMALL_STATE(2251)] = 116032, + [SMALL_STATE(2252)] = 116090, + [SMALL_STATE(2253)] = 116172, + [SMALL_STATE(2254)] = 116230, + [SMALL_STATE(2255)] = 116292, + [SMALL_STATE(2256)] = 116370, + [SMALL_STATE(2257)] = 116452, + [SMALL_STATE(2258)] = 116510, + [SMALL_STATE(2259)] = 116588, + [SMALL_STATE(2260)] = 116668, + [SMALL_STATE(2261)] = 116748, + [SMALL_STATE(2262)] = 116814, + [SMALL_STATE(2263)] = 116876, + [SMALL_STATE(2264)] = 116954, + [SMALL_STATE(2265)] = 117020, + [SMALL_STATE(2266)] = 117080, + [SMALL_STATE(2267)] = 117150, + [SMALL_STATE(2268)] = 117210, + [SMALL_STATE(2269)] = 117270, + [SMALL_STATE(2270)] = 117352, + [SMALL_STATE(2271)] = 117430, + [SMALL_STATE(2272)] = 117504, + [SMALL_STATE(2273)] = 117584, + [SMALL_STATE(2274)] = 117642, + [SMALL_STATE(2275)] = 117720, + [SMALL_STATE(2276)] = 117776, + [SMALL_STATE(2277)] = 117854, + [SMALL_STATE(2278)] = 117912, + [SMALL_STATE(2279)] = 117990, + [SMALL_STATE(2280)] = 118068, + [SMALL_STATE(2281)] = 118146, + [SMALL_STATE(2282)] = 118202, + [SMALL_STATE(2283)] = 118284, + [SMALL_STATE(2284)] = 118354, + [SMALL_STATE(2285)] = 118414, + [SMALL_STATE(2286)] = 118488, + [SMALL_STATE(2287)] = 118566, + [SMALL_STATE(2288)] = 118626, + [SMALL_STATE(2289)] = 118704, + [SMALL_STATE(2290)] = 118782, + [SMALL_STATE(2291)] = 118860, + [SMALL_STATE(2292)] = 118938, + [SMALL_STATE(2293)] = 119016, + [SMALL_STATE(2294)] = 119094, + [SMALL_STATE(2295)] = 119174, + [SMALL_STATE(2296)] = 119254, + [SMALL_STATE(2297)] = 119312, + [SMALL_STATE(2298)] = 119394, + [SMALL_STATE(2299)] = 119474, + [SMALL_STATE(2300)] = 119536, + [SMALL_STATE(2301)] = 119616, + [SMALL_STATE(2302)] = 119698, + [SMALL_STATE(2303)] = 119758, + [SMALL_STATE(2304)] = 119836, + [SMALL_STATE(2305)] = 119894, + [SMALL_STATE(2306)] = 119956, + [SMALL_STATE(2307)] = 120034, + [SMALL_STATE(2308)] = 120116, + [SMALL_STATE(2309)] = 120174, + [SMALL_STATE(2310)] = 120252, + [SMALL_STATE(2311)] = 120332, + [SMALL_STATE(2312)] = 120388, + [SMALL_STATE(2313)] = 120450, + [SMALL_STATE(2314)] = 120516, + [SMALL_STATE(2315)] = 120586, + [SMALL_STATE(2316)] = 120646, + [SMALL_STATE(2317)] = 120720, + [SMALL_STATE(2318)] = 120800, + [SMALL_STATE(2319)] = 120880, + [SMALL_STATE(2320)] = 120962, + [SMALL_STATE(2321)] = 121042, + [SMALL_STATE(2322)] = 121124, + [SMALL_STATE(2323)] = 121204, + [SMALL_STATE(2324)] = 121286, + [SMALL_STATE(2325)] = 121364, + [SMALL_STATE(2326)] = 121446, + [SMALL_STATE(2327)] = 121528, + [SMALL_STATE(2328)] = 121586, + [SMALL_STATE(2329)] = 121668, + [SMALL_STATE(2330)] = 121746, + [SMALL_STATE(2331)] = 121806, + [SMALL_STATE(2332)] = 121879, + [SMALL_STATE(2333)] = 121944, + [SMALL_STATE(2334)] = 122023, + [SMALL_STATE(2335)] = 122076, + [SMALL_STATE(2336)] = 122129, + [SMALL_STATE(2337)] = 122182, + [SMALL_STATE(2338)] = 122259, + [SMALL_STATE(2339)] = 122308, + [SMALL_STATE(2340)] = 122387, + [SMALL_STATE(2341)] = 122440, + [SMALL_STATE(2342)] = 122513, + [SMALL_STATE(2343)] = 122592, + [SMALL_STATE(2344)] = 122671, + [SMALL_STATE(2345)] = 122744, + [SMALL_STATE(2346)] = 122811, + [SMALL_STATE(2347)] = 122890, + [SMALL_STATE(2348)] = 122939, + [SMALL_STATE(2349)] = 122992, + [SMALL_STATE(2350)] = 123061, + [SMALL_STATE(2351)] = 123140, + [SMALL_STATE(2352)] = 123205, + [SMALL_STATE(2353)] = 123284, + [SMALL_STATE(2354)] = 123363, + [SMALL_STATE(2355)] = 123412, + [SMALL_STATE(2356)] = 123491, + [SMALL_STATE(2357)] = 123568, + [SMALL_STATE(2358)] = 123647, + [SMALL_STATE(2359)] = 123720, + [SMALL_STATE(2360)] = 123773, + [SMALL_STATE(2361)] = 123826, + [SMALL_STATE(2362)] = 123899, + [SMALL_STATE(2363)] = 123978, + [SMALL_STATE(2364)] = 124051, + [SMALL_STATE(2365)] = 124124, + [SMALL_STATE(2366)] = 124203, + [SMALL_STATE(2367)] = 124256, + [SMALL_STATE(2368)] = 124329, + [SMALL_STATE(2369)] = 124402, + [SMALL_STATE(2370)] = 124481, + [SMALL_STATE(2371)] = 124560, + [SMALL_STATE(2372)] = 124639, + [SMALL_STATE(2373)] = 124718, + [SMALL_STATE(2374)] = 124785, + [SMALL_STATE(2375)] = 124864, + [SMALL_STATE(2376)] = 124943, + [SMALL_STATE(2377)] = 125016, + [SMALL_STATE(2378)] = 125095, + [SMALL_STATE(2379)] = 125174, + [SMALL_STATE(2380)] = 125253, + [SMALL_STATE(2381)] = 125306, + [SMALL_STATE(2382)] = 125385, + [SMALL_STATE(2383)] = 125438, + [SMALL_STATE(2384)] = 125517, + [SMALL_STATE(2385)] = 125594, + [SMALL_STATE(2386)] = 125671, + [SMALL_STATE(2387)] = 125738, + [SMALL_STATE(2388)] = 125807, + [SMALL_STATE(2389)] = 125884, + [SMALL_STATE(2390)] = 125963, + [SMALL_STATE(2391)] = 126042, + [SMALL_STATE(2392)] = 126111, + [SMALL_STATE(2393)] = 126190, + [SMALL_STATE(2394)] = 126243, + [SMALL_STATE(2395)] = 126308, + [SMALL_STATE(2396)] = 126373, + [SMALL_STATE(2397)] = 126426, + [SMALL_STATE(2398)] = 126491, + [SMALL_STATE(2399)] = 126544, + [SMALL_STATE(2400)] = 126613, + [SMALL_STATE(2401)] = 126686, + [SMALL_STATE(2402)] = 126765, + [SMALL_STATE(2403)] = 126832, + [SMALL_STATE(2404)] = 126911, + [SMALL_STATE(2405)] = 126988, + [SMALL_STATE(2406)] = 127067, + [SMALL_STATE(2407)] = 127144, + [SMALL_STATE(2408)] = 127221, + [SMALL_STATE(2409)] = 127288, + [SMALL_STATE(2410)] = 127361, + [SMALL_STATE(2411)] = 127414, + [SMALL_STATE(2412)] = 127467, + [SMALL_STATE(2413)] = 127536, + [SMALL_STATE(2414)] = 127613, + [SMALL_STATE(2415)] = 127686, + [SMALL_STATE(2416)] = 127746, + [SMALL_STATE(2417)] = 127822, + [SMALL_STATE(2418)] = 127898, + [SMALL_STATE(2419)] = 127968, + [SMALL_STATE(2420)] = 128044, + [SMALL_STATE(2421)] = 128120, + [SMALL_STATE(2422)] = 128180, + [SMALL_STATE(2423)] = 128250, + [SMALL_STATE(2424)] = 128310, + [SMALL_STATE(2425)] = 128370, + [SMALL_STATE(2426)] = 128446, + [SMALL_STATE(2427)] = 128516, + [SMALL_STATE(2428)] = 128592, + [SMALL_STATE(2429)] = 128668, + [SMALL_STATE(2430)] = 128730, + [SMALL_STATE(2431)] = 128806, + [SMALL_STATE(2432)] = 128882, + [SMALL_STATE(2433)] = 128946, + [SMALL_STATE(2434)] = 129006, + [SMALL_STATE(2435)] = 129082, + [SMALL_STATE(2436)] = 129130, + [SMALL_STATE(2437)] = 129190, + [SMALL_STATE(2438)] = 129266, + [SMALL_STATE(2439)] = 129308, + [SMALL_STATE(2440)] = 129378, + [SMALL_STATE(2441)] = 129454, + [SMALL_STATE(2442)] = 129524, + [SMALL_STATE(2443)] = 129597, + [SMALL_STATE(2444)] = 129676, + [SMALL_STATE(2445)] = 129731, + [SMALL_STATE(2446)] = 129810, + [SMALL_STATE(2447)] = 129889, + [SMALL_STATE(2448)] = 129968, + [SMALL_STATE(2449)] = 130047, + [SMALL_STATE(2450)] = 130126, + [SMALL_STATE(2451)] = 130205, + [SMALL_STATE(2452)] = 130284, + [SMALL_STATE(2453)] = 130324, + [SMALL_STATE(2454)] = 130374, + [SMALL_STATE(2455)] = 130424, + [SMALL_STATE(2456)] = 130474, + [SMALL_STATE(2457)] = 130514, + [SMALL_STATE(2458)] = 130554, + [SMALL_STATE(2459)] = 130604, + [SMALL_STATE(2460)] = 130644, + [SMALL_STATE(2461)] = 130684, + [SMALL_STATE(2462)] = 130734, + [SMALL_STATE(2463)] = 130779, + [SMALL_STATE(2464)] = 130819, + [SMALL_STATE(2465)] = 130857, + [SMALL_STATE(2466)] = 130895, + [SMALL_STATE(2467)] = 130949, + [SMALL_STATE(2468)] = 130987, + [SMALL_STATE(2469)] = 131025, + [SMALL_STATE(2470)] = 131063, + [SMALL_STATE(2471)] = 131101, + [SMALL_STATE(2472)] = 131139, + [SMALL_STATE(2473)] = 131177, + [SMALL_STATE(2474)] = 131229, + [SMALL_STATE(2475)] = 131279, + [SMALL_STATE(2476)] = 131317, + [SMALL_STATE(2477)] = 131355, + [SMALL_STATE(2478)] = 131395, + [SMALL_STATE(2479)] = 131447, + [SMALL_STATE(2480)] = 131487, + [SMALL_STATE(2481)] = 131543, + [SMALL_STATE(2482)] = 131597, + [SMALL_STATE(2483)] = 131635, + [SMALL_STATE(2484)] = 131673, + [SMALL_STATE(2485)] = 131711, + [SMALL_STATE(2486)] = 131749, + [SMALL_STATE(2487)] = 131801, + [SMALL_STATE(2488)] = 131848, + [SMALL_STATE(2489)] = 131895, + [SMALL_STATE(2490)] = 131942, + [SMALL_STATE(2491)] = 131989, + [SMALL_STATE(2492)] = 132036, + [SMALL_STATE(2493)] = 132083, + [SMALL_STATE(2494)] = 132130, + [SMALL_STATE(2495)] = 132177, + [SMALL_STATE(2496)] = 132224, + [SMALL_STATE(2497)] = 132271, + [SMALL_STATE(2498)] = 132318, + [SMALL_STATE(2499)] = 132365, + [SMALL_STATE(2500)] = 132412, + [SMALL_STATE(2501)] = 132459, + [SMALL_STATE(2502)] = 132506, + [SMALL_STATE(2503)] = 132553, + [SMALL_STATE(2504)] = 132600, + [SMALL_STATE(2505)] = 132647, + [SMALL_STATE(2506)] = 132695, + [SMALL_STATE(2507)] = 132743, + [SMALL_STATE(2508)] = 132779, + [SMALL_STATE(2509)] = 132827, + [SMALL_STATE(2510)] = 132875, + [SMALL_STATE(2511)] = 132923, + [SMALL_STATE(2512)] = 132971, + [SMALL_STATE(2513)] = 133027, + [SMALL_STATE(2514)] = 133069, + [SMALL_STATE(2515)] = 133122, + [SMALL_STATE(2516)] = 133171, + [SMALL_STATE(2517)] = 133208, + [SMALL_STATE(2518)] = 133261, + [SMALL_STATE(2519)] = 133306, + [SMALL_STATE(2520)] = 133359, + [SMALL_STATE(2521)] = 133408, + [SMALL_STATE(2522)] = 133450, + [SMALL_STATE(2523)] = 133492, + [SMALL_STATE(2524)] = 133534, + [SMALL_STATE(2525)] = 133576, + [SMALL_STATE(2526)] = 133618, + [SMALL_STATE(2527)] = 133660, + [SMALL_STATE(2528)] = 133702, + [SMALL_STATE(2529)] = 133744, + [SMALL_STATE(2530)] = 133786, + [SMALL_STATE(2531)] = 133828, + [SMALL_STATE(2532)] = 133870, + [SMALL_STATE(2533)] = 133912, + [SMALL_STATE(2534)] = 133954, + [SMALL_STATE(2535)] = 133996, + [SMALL_STATE(2536)] = 134038, + [SMALL_STATE(2537)] = 134080, + [SMALL_STATE(2538)] = 134122, + [SMALL_STATE(2539)] = 134164, + [SMALL_STATE(2540)] = 134206, + [SMALL_STATE(2541)] = 134248, + [SMALL_STATE(2542)] = 134290, + [SMALL_STATE(2543)] = 134332, + [SMALL_STATE(2544)] = 134374, + [SMALL_STATE(2545)] = 134416, + [SMALL_STATE(2546)] = 134450, + [SMALL_STATE(2547)] = 134492, + [SMALL_STATE(2548)] = 134522, + [SMALL_STATE(2549)] = 134578, + [SMALL_STATE(2550)] = 134634, + [SMALL_STATE(2551)] = 134666, + [SMALL_STATE(2552)] = 134722, + [SMALL_STATE(2553)] = 134754, + [SMALL_STATE(2554)] = 134781, + [SMALL_STATE(2555)] = 134810, + [SMALL_STATE(2556)] = 134839, + [SMALL_STATE(2557)] = 134863, + [SMALL_STATE(2558)] = 134887, + [SMALL_STATE(2559)] = 134913, + [SMALL_STATE(2560)] = 134934, + [SMALL_STATE(2561)] = 134955, + [SMALL_STATE(2562)] = 134976, + [SMALL_STATE(2563)] = 134997, + [SMALL_STATE(2564)] = 135018, + [SMALL_STATE(2565)] = 135039, + [SMALL_STATE(2566)] = 135060, + [SMALL_STATE(2567)] = 135081, + [SMALL_STATE(2568)] = 135102, + [SMALL_STATE(2569)] = 135123, + [SMALL_STATE(2570)] = 135165, + [SMALL_STATE(2571)] = 135207, + [SMALL_STATE(2572)] = 135237, + [SMALL_STATE(2573)] = 135265, + [SMALL_STATE(2574)] = 135307, + [SMALL_STATE(2575)] = 135335, + [SMALL_STATE(2576)] = 135375, + [SMALL_STATE(2577)] = 135417, + [SMALL_STATE(2578)] = 135459, + [SMALL_STATE(2579)] = 135493, + [SMALL_STATE(2580)] = 135535, + [SMALL_STATE(2581)] = 135570, + [SMALL_STATE(2582)] = 135611, + [SMALL_STATE(2583)] = 135634, + [SMALL_STATE(2584)] = 135669, + [SMALL_STATE(2585)] = 135704, + [SMALL_STATE(2586)] = 135739, + [SMALL_STATE(2587)] = 135774, + [SMALL_STATE(2588)] = 135799, + [SMALL_STATE(2589)] = 135822, + [SMALL_STATE(2590)] = 135857, + [SMALL_STATE(2591)] = 135892, + [SMALL_STATE(2592)] = 135933, + [SMALL_STATE(2593)] = 135958, + [SMALL_STATE(2594)] = 135993, + [SMALL_STATE(2595)] = 136025, + [SMALL_STATE(2596)] = 136063, + [SMALL_STATE(2597)] = 136095, + [SMALL_STATE(2598)] = 136131, + [SMALL_STATE(2599)] = 136163, + [SMALL_STATE(2600)] = 136201, + [SMALL_STATE(2601)] = 136237, + [SMALL_STATE(2602)] = 136269, + [SMALL_STATE(2603)] = 136301, + [SMALL_STATE(2604)] = 136327, + [SMALL_STATE(2605)] = 136365, + [SMALL_STATE(2606)] = 136397, + [SMALL_STATE(2607)] = 136419, + [SMALL_STATE(2608)] = 136455, + [SMALL_STATE(2609)] = 136493, + [SMALL_STATE(2610)] = 136531, + [SMALL_STATE(2611)] = 136559, + [SMALL_STATE(2612)] = 136595, + [SMALL_STATE(2613)] = 136631, + [SMALL_STATE(2614)] = 136657, + [SMALL_STATE(2615)] = 136689, + [SMALL_STATE(2616)] = 136721, + [SMALL_STATE(2617)] = 136757, + [SMALL_STATE(2618)] = 136776, + [SMALL_STATE(2619)] = 136795, + [SMALL_STATE(2620)] = 136814, + [SMALL_STATE(2621)] = 136835, + [SMALL_STATE(2622)] = 136852, + [SMALL_STATE(2623)] = 136871, + [SMALL_STATE(2624)] = 136890, + [SMALL_STATE(2625)] = 136909, + [SMALL_STATE(2626)] = 136932, + [SMALL_STATE(2627)] = 136953, + [SMALL_STATE(2628)] = 136974, + [SMALL_STATE(2629)] = 136993, + [SMALL_STATE(2630)] = 137012, + [SMALL_STATE(2631)] = 137033, + [SMALL_STATE(2632)] = 137056, + [SMALL_STATE(2633)] = 137075, + [SMALL_STATE(2634)] = 137094, + [SMALL_STATE(2635)] = 137113, + [SMALL_STATE(2636)] = 137132, + [SMALL_STATE(2637)] = 137151, + [SMALL_STATE(2638)] = 137168, + [SMALL_STATE(2639)] = 137187, + [SMALL_STATE(2640)] = 137206, + [SMALL_STATE(2641)] = 137227, + [SMALL_STATE(2642)] = 137246, + [SMALL_STATE(2643)] = 137265, + [SMALL_STATE(2644)] = 137284, + [SMALL_STATE(2645)] = 137303, + [SMALL_STATE(2646)] = 137324, + [SMALL_STATE(2647)] = 137343, + [SMALL_STATE(2648)] = 137362, + [SMALL_STATE(2649)] = 137381, + [SMALL_STATE(2650)] = 137400, + [SMALL_STATE(2651)] = 137419, + [SMALL_STATE(2652)] = 137438, + [SMALL_STATE(2653)] = 137457, + [SMALL_STATE(2654)] = 137476, + [SMALL_STATE(2655)] = 137503, + [SMALL_STATE(2656)] = 137522, + [SMALL_STATE(2657)] = 137541, + [SMALL_STATE(2658)] = 137560, + [SMALL_STATE(2659)] = 137579, + [SMALL_STATE(2660)] = 137605, + [SMALL_STATE(2661)] = 137627, + [SMALL_STATE(2662)] = 137653, + [SMALL_STATE(2663)] = 137675, + [SMALL_STATE(2664)] = 137695, + [SMALL_STATE(2665)] = 137713, + [SMALL_STATE(2666)] = 137747, + [SMALL_STATE(2667)] = 137781, + [SMALL_STATE(2668)] = 137799, + [SMALL_STATE(2669)] = 137821, + [SMALL_STATE(2670)] = 137841, + [SMALL_STATE(2671)] = 137867, + [SMALL_STATE(2672)] = 137891, + [SMALL_STATE(2673)] = 137925, + [SMALL_STATE(2674)] = 137945, + [SMALL_STATE(2675)] = 137979, + [SMALL_STATE(2676)] = 138011, + [SMALL_STATE(2677)] = 138043, + [SMALL_STATE(2678)] = 138069, + [SMALL_STATE(2679)] = 138091, + [SMALL_STATE(2680)] = 138113, + [SMALL_STATE(2681)] = 138139, + [SMALL_STATE(2682)] = 138173, + [SMALL_STATE(2683)] = 138199, + [SMALL_STATE(2684)] = 138219, + [SMALL_STATE(2685)] = 138239, + [SMALL_STATE(2686)] = 138265, + [SMALL_STATE(2687)] = 138297, + [SMALL_STATE(2688)] = 138331, + [SMALL_STATE(2689)] = 138365, + [SMALL_STATE(2690)] = 138391, + [SMALL_STATE(2691)] = 138413, + [SMALL_STATE(2692)] = 138433, + [SMALL_STATE(2693)] = 138451, + [SMALL_STATE(2694)] = 138481, + [SMALL_STATE(2695)] = 138515, + [SMALL_STATE(2696)] = 138547, + [SMALL_STATE(2697)] = 138573, + [SMALL_STATE(2698)] = 138599, + [SMALL_STATE(2699)] = 138633, + [SMALL_STATE(2700)] = 138659, + [SMALL_STATE(2701)] = 138685, + [SMALL_STATE(2702)] = 138719, + [SMALL_STATE(2703)] = 138751, + [SMALL_STATE(2704)] = 138771, + [SMALL_STATE(2705)] = 138800, + [SMALL_STATE(2706)] = 138819, + [SMALL_STATE(2707)] = 138836, + [SMALL_STATE(2708)] = 138867, + [SMALL_STATE(2709)] = 138896, + [SMALL_STATE(2710)] = 138927, + [SMALL_STATE(2711)] = 138956, + [SMALL_STATE(2712)] = 138979, + [SMALL_STATE(2713)] = 139002, + [SMALL_STATE(2714)] = 139031, + [SMALL_STATE(2715)] = 139056, + [SMALL_STATE(2716)] = 139075, + [SMALL_STATE(2717)] = 139106, + [SMALL_STATE(2718)] = 139135, + [SMALL_STATE(2719)] = 139166, + [SMALL_STATE(2720)] = 139195, + [SMALL_STATE(2721)] = 139224, + [SMALL_STATE(2722)] = 139247, + [SMALL_STATE(2723)] = 139278, + [SMALL_STATE(2724)] = 139301, + [SMALL_STATE(2725)] = 139330, + [SMALL_STATE(2726)] = 139359, + [SMALL_STATE(2727)] = 139388, + [SMALL_STATE(2728)] = 139419, + [SMALL_STATE(2729)] = 139442, + [SMALL_STATE(2730)] = 139473, + [SMALL_STATE(2731)] = 139494, + [SMALL_STATE(2732)] = 139517, + [SMALL_STATE(2733)] = 139548, + [SMALL_STATE(2734)] = 139569, + [SMALL_STATE(2735)] = 139598, + [SMALL_STATE(2736)] = 139629, + [SMALL_STATE(2737)] = 139658, + [SMALL_STATE(2738)] = 139687, + [SMALL_STATE(2739)] = 139718, + [SMALL_STATE(2740)] = 139749, + [SMALL_STATE(2741)] = 139778, + [SMALL_STATE(2742)] = 139809, + [SMALL_STATE(2743)] = 139826, + [SMALL_STATE(2744)] = 139845, + [SMALL_STATE(2745)] = 139862, + [SMALL_STATE(2746)] = 139893, + [SMALL_STATE(2747)] = 139910, + [SMALL_STATE(2748)] = 139929, + [SMALL_STATE(2749)] = 139958, + [SMALL_STATE(2750)] = 139987, + [SMALL_STATE(2751)] = 140010, + [SMALL_STATE(2752)] = 140027, + [SMALL_STATE(2753)] = 140050, + [SMALL_STATE(2754)] = 140081, + [SMALL_STATE(2755)] = 140110, + [SMALL_STATE(2756)] = 140139, + [SMALL_STATE(2757)] = 140168, + [SMALL_STATE(2758)] = 140191, + [SMALL_STATE(2759)] = 140222, + [SMALL_STATE(2760)] = 140251, + [SMALL_STATE(2761)] = 140268, + [SMALL_STATE(2762)] = 140299, + [SMALL_STATE(2763)] = 140322, + [SMALL_STATE(2764)] = 140339, + [SMALL_STATE(2765)] = 140356, + [SMALL_STATE(2766)] = 140379, + [SMALL_STATE(2767)] = 140408, + [SMALL_STATE(2768)] = 140439, + [SMALL_STATE(2769)] = 140462, + [SMALL_STATE(2770)] = 140493, + [SMALL_STATE(2771)] = 140518, + [SMALL_STATE(2772)] = 140539, + [SMALL_STATE(2773)] = 140562, + [SMALL_STATE(2774)] = 140581, + [SMALL_STATE(2775)] = 140595, + [SMALL_STATE(2776)] = 140609, + [SMALL_STATE(2777)] = 140631, + [SMALL_STATE(2778)] = 140657, + [SMALL_STATE(2779)] = 140683, + [SMALL_STATE(2780)] = 140701, + [SMALL_STATE(2781)] = 140723, + [SMALL_STATE(2782)] = 140739, + [SMALL_STATE(2783)] = 140753, + [SMALL_STATE(2784)] = 140779, + [SMALL_STATE(2785)] = 140795, + [SMALL_STATE(2786)] = 140809, + [SMALL_STATE(2787)] = 140835, + [SMALL_STATE(2788)] = 140849, + [SMALL_STATE(2789)] = 140875, + [SMALL_STATE(2790)] = 140889, + [SMALL_STATE(2791)] = 140915, + [SMALL_STATE(2792)] = 140933, + [SMALL_STATE(2793)] = 140959, + [SMALL_STATE(2794)] = 140977, + [SMALL_STATE(2795)] = 140991, + [SMALL_STATE(2796)] = 141005, + [SMALL_STATE(2797)] = 141019, + [SMALL_STATE(2798)] = 141033, + [SMALL_STATE(2799)] = 141047, + [SMALL_STATE(2800)] = 141067, + [SMALL_STATE(2801)] = 141089, + [SMALL_STATE(2802)] = 141115, + [SMALL_STATE(2803)] = 141129, + [SMALL_STATE(2804)] = 141145, + [SMALL_STATE(2805)] = 141159, + [SMALL_STATE(2806)] = 141181, + [SMALL_STATE(2807)] = 141207, + [SMALL_STATE(2808)] = 141221, + [SMALL_STATE(2809)] = 141235, + [SMALL_STATE(2810)] = 141253, + [SMALL_STATE(2811)] = 141279, + [SMALL_STATE(2812)] = 141305, + [SMALL_STATE(2813)] = 141319, + [SMALL_STATE(2814)] = 141345, + [SMALL_STATE(2815)] = 141371, + [SMALL_STATE(2816)] = 141387, + [SMALL_STATE(2817)] = 141413, + [SMALL_STATE(2818)] = 141427, + [SMALL_STATE(2819)] = 141453, + [SMALL_STATE(2820)] = 141473, + [SMALL_STATE(2821)] = 141487, + [SMALL_STATE(2822)] = 141501, + [SMALL_STATE(2823)] = 141521, + [SMALL_STATE(2824)] = 141535, + [SMALL_STATE(2825)] = 141561, + [SMALL_STATE(2826)] = 141587, + [SMALL_STATE(2827)] = 141613, + [SMALL_STATE(2828)] = 141637, + [SMALL_STATE(2829)] = 141663, + [SMALL_STATE(2830)] = 141683, + [SMALL_STATE(2831)] = 141703, + [SMALL_STATE(2832)] = 141729, + [SMALL_STATE(2833)] = 141755, + [SMALL_STATE(2834)] = 141781, + [SMALL_STATE(2835)] = 141807, + [SMALL_STATE(2836)] = 141821, + [SMALL_STATE(2837)] = 141835, + [SMALL_STATE(2838)] = 141849, + [SMALL_STATE(2839)] = 141869, + [SMALL_STATE(2840)] = 141883, + [SMALL_STATE(2841)] = 141909, + [SMALL_STATE(2842)] = 141935, + [SMALL_STATE(2843)] = 141949, + [SMALL_STATE(2844)] = 141975, + [SMALL_STATE(2845)] = 142001, + [SMALL_STATE(2846)] = 142015, + [SMALL_STATE(2847)] = 142031, + [SMALL_STATE(2848)] = 142045, + [SMALL_STATE(2849)] = 142059, + [SMALL_STATE(2850)] = 142085, + [SMALL_STATE(2851)] = 142099, + [SMALL_STATE(2852)] = 142119, + [SMALL_STATE(2853)] = 142139, + [SMALL_STATE(2854)] = 142153, + [SMALL_STATE(2855)] = 142175, + [SMALL_STATE(2856)] = 142189, + [SMALL_STATE(2857)] = 142203, + [SMALL_STATE(2858)] = 142217, + [SMALL_STATE(2859)] = 142234, + [SMALL_STATE(2860)] = 142259, + [SMALL_STATE(2861)] = 142272, + [SMALL_STATE(2862)] = 142289, + [SMALL_STATE(2863)] = 142314, + [SMALL_STATE(2864)] = 142339, + [SMALL_STATE(2865)] = 142352, + [SMALL_STATE(2866)] = 142377, + [SMALL_STATE(2867)] = 142390, + [SMALL_STATE(2868)] = 142407, + [SMALL_STATE(2869)] = 142420, + [SMALL_STATE(2870)] = 142433, + [SMALL_STATE(2871)] = 142458, + [SMALL_STATE(2872)] = 142479, + [SMALL_STATE(2873)] = 142504, + [SMALL_STATE(2874)] = 142519, + [SMALL_STATE(2875)] = 142532, + [SMALL_STATE(2876)] = 142557, + [SMALL_STATE(2877)] = 142582, + [SMALL_STATE(2878)] = 142595, + [SMALL_STATE(2879)] = 142620, + [SMALL_STATE(2880)] = 142645, + [SMALL_STATE(2881)] = 142670, + [SMALL_STATE(2882)] = 142691, + [SMALL_STATE(2883)] = 142708, + [SMALL_STATE(2884)] = 142733, + [SMALL_STATE(2885)] = 142758, + [SMALL_STATE(2886)] = 142771, + [SMALL_STATE(2887)] = 142788, + [SMALL_STATE(2888)] = 142813, + [SMALL_STATE(2889)] = 142826, + [SMALL_STATE(2890)] = 142839, + [SMALL_STATE(2891)] = 142864, + [SMALL_STATE(2892)] = 142889, + [SMALL_STATE(2893)] = 142904, + [SMALL_STATE(2894)] = 142917, + [SMALL_STATE(2895)] = 142930, + [SMALL_STATE(2896)] = 142955, + [SMALL_STATE(2897)] = 142980, + [SMALL_STATE(2898)] = 142999, + [SMALL_STATE(2899)] = 143018, + [SMALL_STATE(2900)] = 143031, + [SMALL_STATE(2901)] = 143056, + [SMALL_STATE(2902)] = 143075, + [SMALL_STATE(2903)] = 143100, + [SMALL_STATE(2904)] = 143113, + [SMALL_STATE(2905)] = 143138, + [SMALL_STATE(2906)] = 143157, + [SMALL_STATE(2907)] = 143170, + [SMALL_STATE(2908)] = 143183, + [SMALL_STATE(2909)] = 143196, + [SMALL_STATE(2910)] = 143209, + [SMALL_STATE(2911)] = 143222, + [SMALL_STATE(2912)] = 143241, + [SMALL_STATE(2913)] = 143254, + [SMALL_STATE(2914)] = 143279, + [SMALL_STATE(2915)] = 143292, + [SMALL_STATE(2916)] = 143305, + [SMALL_STATE(2917)] = 143330, + [SMALL_STATE(2918)] = 143351, + [SMALL_STATE(2919)] = 143376, + [SMALL_STATE(2920)] = 143401, + [SMALL_STATE(2921)] = 143422, + [SMALL_STATE(2922)] = 143435, + [SMALL_STATE(2923)] = 143448, + [SMALL_STATE(2924)] = 143461, + [SMALL_STATE(2925)] = 143474, + [SMALL_STATE(2926)] = 143499, + [SMALL_STATE(2927)] = 143516, + [SMALL_STATE(2928)] = 143533, + [SMALL_STATE(2929)] = 143558, + [SMALL_STATE(2930)] = 143583, + [SMALL_STATE(2931)] = 143608, + [SMALL_STATE(2932)] = 143623, + [SMALL_STATE(2933)] = 143636, + [SMALL_STATE(2934)] = 143661, + [SMALL_STATE(2935)] = 143686, + [SMALL_STATE(2936)] = 143711, + [SMALL_STATE(2937)] = 143724, + [SMALL_STATE(2938)] = 143749, + [SMALL_STATE(2939)] = 143762, + [SMALL_STATE(2940)] = 143787, + [SMALL_STATE(2941)] = 143810, + [SMALL_STATE(2942)] = 143835, + [SMALL_STATE(2943)] = 143848, + [SMALL_STATE(2944)] = 143861, + [SMALL_STATE(2945)] = 143880, + [SMALL_STATE(2946)] = 143893, + [SMALL_STATE(2947)] = 143912, + [SMALL_STATE(2948)] = 143927, + [SMALL_STATE(2949)] = 143952, + [SMALL_STATE(2950)] = 143971, + [SMALL_STATE(2951)] = 143984, + [SMALL_STATE(2952)] = 143997, + [SMALL_STATE(2953)] = 144014, + [SMALL_STATE(2954)] = 144031, + [SMALL_STATE(2955)] = 144044, + [SMALL_STATE(2956)] = 144057, + [SMALL_STATE(2957)] = 144076, + [SMALL_STATE(2958)] = 144101, + [SMALL_STATE(2959)] = 144126, + [SMALL_STATE(2960)] = 144145, + [SMALL_STATE(2961)] = 144170, + [SMALL_STATE(2962)] = 144195, + [SMALL_STATE(2963)] = 144220, + [SMALL_STATE(2964)] = 144245, + [SMALL_STATE(2965)] = 144262, + [SMALL_STATE(2966)] = 144279, + [SMALL_STATE(2967)] = 144304, + [SMALL_STATE(2968)] = 144323, + [SMALL_STATE(2969)] = 144340, + [SMALL_STATE(2970)] = 144357, + [SMALL_STATE(2971)] = 144374, + [SMALL_STATE(2972)] = 144391, + [SMALL_STATE(2973)] = 144408, + [SMALL_STATE(2974)] = 144425, + [SMALL_STATE(2975)] = 144450, + [SMALL_STATE(2976)] = 144469, + [SMALL_STATE(2977)] = 144494, + [SMALL_STATE(2978)] = 144519, + [SMALL_STATE(2979)] = 144536, + [SMALL_STATE(2980)] = 144561, + [SMALL_STATE(2981)] = 144574, + [SMALL_STATE(2982)] = 144591, + [SMALL_STATE(2983)] = 144616, + [SMALL_STATE(2984)] = 144629, + [SMALL_STATE(2985)] = 144654, + [SMALL_STATE(2986)] = 144679, + [SMALL_STATE(2987)] = 144704, + [SMALL_STATE(2988)] = 144717, + [SMALL_STATE(2989)] = 144738, + [SMALL_STATE(2990)] = 144763, + [SMALL_STATE(2991)] = 144784, + [SMALL_STATE(2992)] = 144805, + [SMALL_STATE(2993)] = 144830, + [SMALL_STATE(2994)] = 144855, + [SMALL_STATE(2995)] = 144874, + [SMALL_STATE(2996)] = 144893, + [SMALL_STATE(2997)] = 144910, + [SMALL_STATE(2998)] = 144935, + [SMALL_STATE(2999)] = 144957, + [SMALL_STATE(3000)] = 144979, + [SMALL_STATE(3001)] = 144995, + [SMALL_STATE(3002)] = 145017, + [SMALL_STATE(3003)] = 145035, + [SMALL_STATE(3004)] = 145049, + [SMALL_STATE(3005)] = 145071, + [SMALL_STATE(3006)] = 145091, + [SMALL_STATE(3007)] = 145109, + [SMALL_STATE(3008)] = 145127, + [SMALL_STATE(3009)] = 145145, + [SMALL_STATE(3010)] = 145161, + [SMALL_STATE(3011)] = 145183, + [SMALL_STATE(3012)] = 145203, + [SMALL_STATE(3013)] = 145223, + [SMALL_STATE(3014)] = 145241, + [SMALL_STATE(3015)] = 145259, + [SMALL_STATE(3016)] = 145279, + [SMALL_STATE(3017)] = 145301, + [SMALL_STATE(3018)] = 145321, + [SMALL_STATE(3019)] = 145343, + [SMALL_STATE(3020)] = 145365, + [SMALL_STATE(3021)] = 145385, + [SMALL_STATE(3022)] = 145407, + [SMALL_STATE(3023)] = 145423, + [SMALL_STATE(3024)] = 145443, + [SMALL_STATE(3025)] = 145463, + [SMALL_STATE(3026)] = 145485, + [SMALL_STATE(3027)] = 145507, + [SMALL_STATE(3028)] = 145523, + [SMALL_STATE(3029)] = 145545, + [SMALL_STATE(3030)] = 145561, + [SMALL_STATE(3031)] = 145579, + [SMALL_STATE(3032)] = 145599, + [SMALL_STATE(3033)] = 145617, + [SMALL_STATE(3034)] = 145639, + [SMALL_STATE(3035)] = 145655, + [SMALL_STATE(3036)] = 145675, + [SMALL_STATE(3037)] = 145695, + [SMALL_STATE(3038)] = 145715, + [SMALL_STATE(3039)] = 145737, + [SMALL_STATE(3040)] = 145759, + [SMALL_STATE(3041)] = 145781, + [SMALL_STATE(3042)] = 145799, + [SMALL_STATE(3043)] = 145821, + [SMALL_STATE(3044)] = 145841, + [SMALL_STATE(3045)] = 145861, + [SMALL_STATE(3046)] = 145883, + [SMALL_STATE(3047)] = 145899, + [SMALL_STATE(3048)] = 145919, + [SMALL_STATE(3049)] = 145941, + [SMALL_STATE(3050)] = 145957, + [SMALL_STATE(3051)] = 145979, + [SMALL_STATE(3052)] = 145995, + [SMALL_STATE(3053)] = 146011, + [SMALL_STATE(3054)] = 146033, + [SMALL_STATE(3055)] = 146055, + [SMALL_STATE(3056)] = 146077, + [SMALL_STATE(3057)] = 146093, + [SMALL_STATE(3058)] = 146115, + [SMALL_STATE(3059)] = 146137, + [SMALL_STATE(3060)] = 146155, + [SMALL_STATE(3061)] = 146173, + [SMALL_STATE(3062)] = 146195, + [SMALL_STATE(3063)] = 146217, + [SMALL_STATE(3064)] = 146237, + [SMALL_STATE(3065)] = 146255, + [SMALL_STATE(3066)] = 146277, + [SMALL_STATE(3067)] = 146293, + [SMALL_STATE(3068)] = 146307, + [SMALL_STATE(3069)] = 146325, + [SMALL_STATE(3070)] = 146347, + [SMALL_STATE(3071)] = 146367, + [SMALL_STATE(3072)] = 146389, + [SMALL_STATE(3073)] = 146411, + [SMALL_STATE(3074)] = 146433, + [SMALL_STATE(3075)] = 146449, + [SMALL_STATE(3076)] = 146471, + [SMALL_STATE(3077)] = 146487, + [SMALL_STATE(3078)] = 146509, + [SMALL_STATE(3079)] = 146529, + [SMALL_STATE(3080)] = 146547, + [SMALL_STATE(3081)] = 146569, + [SMALL_STATE(3082)] = 146587, + [SMALL_STATE(3083)] = 146609, + [SMALL_STATE(3084)] = 146631, + [SMALL_STATE(3085)] = 146649, + [SMALL_STATE(3086)] = 146669, + [SMALL_STATE(3087)] = 146689, + [SMALL_STATE(3088)] = 146709, + [SMALL_STATE(3089)] = 146731, + [SMALL_STATE(3090)] = 146747, + [SMALL_STATE(3091)] = 146763, + [SMALL_STATE(3092)] = 146785, + [SMALL_STATE(3093)] = 146801, + [SMALL_STATE(3094)] = 146817, + [SMALL_STATE(3095)] = 146839, + [SMALL_STATE(3096)] = 146857, + [SMALL_STATE(3097)] = 146873, + [SMALL_STATE(3098)] = 146891, + [SMALL_STATE(3099)] = 146913, + [SMALL_STATE(3100)] = 146935, + [SMALL_STATE(3101)] = 146953, + [SMALL_STATE(3102)] = 146965, + [SMALL_STATE(3103)] = 146985, + [SMALL_STATE(3104)] = 147007, + [SMALL_STATE(3105)] = 147029, + [SMALL_STATE(3106)] = 147047, + [SMALL_STATE(3107)] = 147069, + [SMALL_STATE(3108)] = 147091, + [SMALL_STATE(3109)] = 147111, + [SMALL_STATE(3110)] = 147133, + [SMALL_STATE(3111)] = 147155, + [SMALL_STATE(3112)] = 147171, + [SMALL_STATE(3113)] = 147183, + [SMALL_STATE(3114)] = 147201, + [SMALL_STATE(3115)] = 147219, + [SMALL_STATE(3116)] = 147241, + [SMALL_STATE(3117)] = 147253, + [SMALL_STATE(3118)] = 147265, + [SMALL_STATE(3119)] = 147283, + [SMALL_STATE(3120)] = 147299, + [SMALL_STATE(3121)] = 147315, + [SMALL_STATE(3122)] = 147337, + [SMALL_STATE(3123)] = 147359, + [SMALL_STATE(3124)] = 147377, + [SMALL_STATE(3125)] = 147395, + [SMALL_STATE(3126)] = 147417, + [SMALL_STATE(3127)] = 147439, + [SMALL_STATE(3128)] = 147461, + [SMALL_STATE(3129)] = 147483, + [SMALL_STATE(3130)] = 147499, + [SMALL_STATE(3131)] = 147517, + [SMALL_STATE(3132)] = 147539, + [SMALL_STATE(3133)] = 147555, + [SMALL_STATE(3134)] = 147571, + [SMALL_STATE(3135)] = 147593, + [SMALL_STATE(3136)] = 147609, + [SMALL_STATE(3137)] = 147631, + [SMALL_STATE(3138)] = 147647, + [SMALL_STATE(3139)] = 147669, + [SMALL_STATE(3140)] = 147691, + [SMALL_STATE(3141)] = 147711, + [SMALL_STATE(3142)] = 147733, + [SMALL_STATE(3143)] = 147749, + [SMALL_STATE(3144)] = 147771, + [SMALL_STATE(3145)] = 147783, + [SMALL_STATE(3146)] = 147799, + [SMALL_STATE(3147)] = 147817, + [SMALL_STATE(3148)] = 147833, + [SMALL_STATE(3149)] = 147855, + [SMALL_STATE(3150)] = 147877, + [SMALL_STATE(3151)] = 147899, + [SMALL_STATE(3152)] = 147921, + [SMALL_STATE(3153)] = 147943, + [SMALL_STATE(3154)] = 147961, + [SMALL_STATE(3155)] = 147983, + [SMALL_STATE(3156)] = 147997, + [SMALL_STATE(3157)] = 148019, + [SMALL_STATE(3158)] = 148041, + [SMALL_STATE(3159)] = 148061, + [SMALL_STATE(3160)] = 148083, + [SMALL_STATE(3161)] = 148103, + [SMALL_STATE(3162)] = 148121, + [SMALL_STATE(3163)] = 148143, + [SMALL_STATE(3164)] = 148161, + [SMALL_STATE(3165)] = 148183, + [SMALL_STATE(3166)] = 148199, + [SMALL_STATE(3167)] = 148217, + [SMALL_STATE(3168)] = 148235, + [SMALL_STATE(3169)] = 148251, + [SMALL_STATE(3170)] = 148273, + [SMALL_STATE(3171)] = 148295, + [SMALL_STATE(3172)] = 148317, + [SMALL_STATE(3173)] = 148332, + [SMALL_STATE(3174)] = 148349, + [SMALL_STATE(3175)] = 148362, + [SMALL_STATE(3176)] = 148375, + [SMALL_STATE(3177)] = 148388, + [SMALL_STATE(3178)] = 148399, + [SMALL_STATE(3179)] = 148410, + [SMALL_STATE(3180)] = 148423, + [SMALL_STATE(3181)] = 148434, + [SMALL_STATE(3182)] = 148447, + [SMALL_STATE(3183)] = 148466, + [SMALL_STATE(3184)] = 148485, + [SMALL_STATE(3185)] = 148504, + [SMALL_STATE(3186)] = 148523, + [SMALL_STATE(3187)] = 148542, + [SMALL_STATE(3188)] = 148555, + [SMALL_STATE(3189)] = 148566, + [SMALL_STATE(3190)] = 148585, + [SMALL_STATE(3191)] = 148604, + [SMALL_STATE(3192)] = 148619, + [SMALL_STATE(3193)] = 148630, + [SMALL_STATE(3194)] = 148649, + [SMALL_STATE(3195)] = 148664, + [SMALL_STATE(3196)] = 148683, + [SMALL_STATE(3197)] = 148698, + [SMALL_STATE(3198)] = 148711, + [SMALL_STATE(3199)] = 148722, + [SMALL_STATE(3200)] = 148739, + [SMALL_STATE(3201)] = 148754, + [SMALL_STATE(3202)] = 148773, + [SMALL_STATE(3203)] = 148792, + [SMALL_STATE(3204)] = 148803, + [SMALL_STATE(3205)] = 148816, + [SMALL_STATE(3206)] = 148835, + [SMALL_STATE(3207)] = 148848, + [SMALL_STATE(3208)] = 148867, + [SMALL_STATE(3209)] = 148882, + [SMALL_STATE(3210)] = 148901, + [SMALL_STATE(3211)] = 148920, + [SMALL_STATE(3212)] = 148939, + [SMALL_STATE(3213)] = 148952, + [SMALL_STATE(3214)] = 148963, + [SMALL_STATE(3215)] = 148978, + [SMALL_STATE(3216)] = 148989, + [SMALL_STATE(3217)] = 149000, + [SMALL_STATE(3218)] = 149019, + [SMALL_STATE(3219)] = 149034, + [SMALL_STATE(3220)] = 149053, + [SMALL_STATE(3221)] = 149070, + [SMALL_STATE(3222)] = 149089, + [SMALL_STATE(3223)] = 149106, + [SMALL_STATE(3224)] = 149119, + [SMALL_STATE(3225)] = 149134, + [SMALL_STATE(3226)] = 149147, + [SMALL_STATE(3227)] = 149160, + [SMALL_STATE(3228)] = 149179, + [SMALL_STATE(3229)] = 149190, + [SMALL_STATE(3230)] = 149201, + [SMALL_STATE(3231)] = 149214, + [SMALL_STATE(3232)] = 149233, + [SMALL_STATE(3233)] = 149244, + [SMALL_STATE(3234)] = 149257, + [SMALL_STATE(3235)] = 149268, + [SMALL_STATE(3236)] = 149281, + [SMALL_STATE(3237)] = 149292, + [SMALL_STATE(3238)] = 149305, + [SMALL_STATE(3239)] = 149316, + [SMALL_STATE(3240)] = 149327, + [SMALL_STATE(3241)] = 149338, + [SMALL_STATE(3242)] = 149349, + [SMALL_STATE(3243)] = 149360, + [SMALL_STATE(3244)] = 149371, + [SMALL_STATE(3245)] = 149382, + [SMALL_STATE(3246)] = 149393, + [SMALL_STATE(3247)] = 149412, + [SMALL_STATE(3248)] = 149427, + [SMALL_STATE(3249)] = 149446, + [SMALL_STATE(3250)] = 149457, + [SMALL_STATE(3251)] = 149472, + [SMALL_STATE(3252)] = 149483, + [SMALL_STATE(3253)] = 149502, + [SMALL_STATE(3254)] = 149521, + [SMALL_STATE(3255)] = 149538, + [SMALL_STATE(3256)] = 149555, + [SMALL_STATE(3257)] = 149568, + [SMALL_STATE(3258)] = 149585, + [SMALL_STATE(3259)] = 149602, + [SMALL_STATE(3260)] = 149621, + [SMALL_STATE(3261)] = 149636, + [SMALL_STATE(3262)] = 149651, + [SMALL_STATE(3263)] = 149670, + [SMALL_STATE(3264)] = 149685, + [SMALL_STATE(3265)] = 149700, + [SMALL_STATE(3266)] = 149713, + [SMALL_STATE(3267)] = 149730, + [SMALL_STATE(3268)] = 149741, + [SMALL_STATE(3269)] = 149754, + [SMALL_STATE(3270)] = 149765, + [SMALL_STATE(3271)] = 149776, + [SMALL_STATE(3272)] = 149791, + [SMALL_STATE(3273)] = 149806, + [SMALL_STATE(3274)] = 149817, + [SMALL_STATE(3275)] = 149832, + [SMALL_STATE(3276)] = 149843, + [SMALL_STATE(3277)] = 149860, + [SMALL_STATE(3278)] = 149877, + [SMALL_STATE(3279)] = 149894, + [SMALL_STATE(3280)] = 149905, + [SMALL_STATE(3281)] = 149916, + [SMALL_STATE(3282)] = 149931, + [SMALL_STATE(3283)] = 149942, + [SMALL_STATE(3284)] = 149953, + [SMALL_STATE(3285)] = 149964, + [SMALL_STATE(3286)] = 149975, + [SMALL_STATE(3287)] = 149986, + [SMALL_STATE(3288)] = 149997, + [SMALL_STATE(3289)] = 150008, + [SMALL_STATE(3290)] = 150019, + [SMALL_STATE(3291)] = 150030, + [SMALL_STATE(3292)] = 150045, + [SMALL_STATE(3293)] = 150060, + [SMALL_STATE(3294)] = 150071, + [SMALL_STATE(3295)] = 150082, + [SMALL_STATE(3296)] = 150097, + [SMALL_STATE(3297)] = 150116, + [SMALL_STATE(3298)] = 150127, + [SMALL_STATE(3299)] = 150142, + [SMALL_STATE(3300)] = 150153, + [SMALL_STATE(3301)] = 150164, + [SMALL_STATE(3302)] = 150179, + [SMALL_STATE(3303)] = 150192, + [SMALL_STATE(3304)] = 150203, + [SMALL_STATE(3305)] = 150214, + [SMALL_STATE(3306)] = 150225, + [SMALL_STATE(3307)] = 150236, + [SMALL_STATE(3308)] = 150247, + [SMALL_STATE(3309)] = 150258, + [SMALL_STATE(3310)] = 150269, + [SMALL_STATE(3311)] = 150280, + [SMALL_STATE(3312)] = 150291, + [SMALL_STATE(3313)] = 150310, + [SMALL_STATE(3314)] = 150325, + [SMALL_STATE(3315)] = 150336, + [SMALL_STATE(3316)] = 150347, + [SMALL_STATE(3317)] = 150358, + [SMALL_STATE(3318)] = 150373, + [SMALL_STATE(3319)] = 150388, + [SMALL_STATE(3320)] = 150399, + [SMALL_STATE(3321)] = 150414, + [SMALL_STATE(3322)] = 150425, + [SMALL_STATE(3323)] = 150444, + [SMALL_STATE(3324)] = 150461, + [SMALL_STATE(3325)] = 150476, + [SMALL_STATE(3326)] = 150487, + [SMALL_STATE(3327)] = 150502, + [SMALL_STATE(3328)] = 150521, + [SMALL_STATE(3329)] = 150532, + [SMALL_STATE(3330)] = 150551, + [SMALL_STATE(3331)] = 150562, + [SMALL_STATE(3332)] = 150577, + [SMALL_STATE(3333)] = 150592, + [SMALL_STATE(3334)] = 150603, + [SMALL_STATE(3335)] = 150622, + [SMALL_STATE(3336)] = 150641, + [SMALL_STATE(3337)] = 150660, + [SMALL_STATE(3338)] = 150675, + [SMALL_STATE(3339)] = 150686, + [SMALL_STATE(3340)] = 150699, + [SMALL_STATE(3341)] = 150710, + [SMALL_STATE(3342)] = 150729, + [SMALL_STATE(3343)] = 150740, + [SMALL_STATE(3344)] = 150751, + [SMALL_STATE(3345)] = 150762, + [SMALL_STATE(3346)] = 150781, + [SMALL_STATE(3347)] = 150800, + [SMALL_STATE(3348)] = 150819, + [SMALL_STATE(3349)] = 150830, + [SMALL_STATE(3350)] = 150841, + [SMALL_STATE(3351)] = 150852, + [SMALL_STATE(3352)] = 150867, + [SMALL_STATE(3353)] = 150886, + [SMALL_STATE(3354)] = 150901, + [SMALL_STATE(3355)] = 150918, + [SMALL_STATE(3356)] = 150933, + [SMALL_STATE(3357)] = 150944, + [SMALL_STATE(3358)] = 150955, + [SMALL_STATE(3359)] = 150974, + [SMALL_STATE(3360)] = 150989, + [SMALL_STATE(3361)] = 151000, + [SMALL_STATE(3362)] = 151019, + [SMALL_STATE(3363)] = 151034, + [SMALL_STATE(3364)] = 151045, + [SMALL_STATE(3365)] = 151060, + [SMALL_STATE(3366)] = 151071, + [SMALL_STATE(3367)] = 151086, + [SMALL_STATE(3368)] = 151097, + [SMALL_STATE(3369)] = 151108, + [SMALL_STATE(3370)] = 151123, + [SMALL_STATE(3371)] = 151134, + [SMALL_STATE(3372)] = 151145, + [SMALL_STATE(3373)] = 151162, + [SMALL_STATE(3374)] = 151173, + [SMALL_STATE(3375)] = 151184, + [SMALL_STATE(3376)] = 151199, + [SMALL_STATE(3377)] = 151218, + [SMALL_STATE(3378)] = 151229, + [SMALL_STATE(3379)] = 151248, + [SMALL_STATE(3380)] = 151259, + [SMALL_STATE(3381)] = 151270, + [SMALL_STATE(3382)] = 151281, + [SMALL_STATE(3383)] = 151296, + [SMALL_STATE(3384)] = 151311, + [SMALL_STATE(3385)] = 151322, + [SMALL_STATE(3386)] = 151333, + [SMALL_STATE(3387)] = 151348, + [SMALL_STATE(3388)] = 151367, + [SMALL_STATE(3389)] = 151386, + [SMALL_STATE(3390)] = 151405, + [SMALL_STATE(3391)] = 151424, + [SMALL_STATE(3392)] = 151443, + [SMALL_STATE(3393)] = 151462, + [SMALL_STATE(3394)] = 151481, + [SMALL_STATE(3395)] = 151496, + [SMALL_STATE(3396)] = 151515, + [SMALL_STATE(3397)] = 151532, + [SMALL_STATE(3398)] = 151547, + [SMALL_STATE(3399)] = 151558, + [SMALL_STATE(3400)] = 151569, + [SMALL_STATE(3401)] = 151580, + [SMALL_STATE(3402)] = 151591, + [SMALL_STATE(3403)] = 151602, + [SMALL_STATE(3404)] = 151615, + [SMALL_STATE(3405)] = 151630, + [SMALL_STATE(3406)] = 151649, + [SMALL_STATE(3407)] = 151668, + [SMALL_STATE(3408)] = 151685, + [SMALL_STATE(3409)] = 151700, + [SMALL_STATE(3410)] = 151719, + [SMALL_STATE(3411)] = 151738, + [SMALL_STATE(3412)] = 151757, + [SMALL_STATE(3413)] = 151770, + [SMALL_STATE(3414)] = 151787, + [SMALL_STATE(3415)] = 151798, + [SMALL_STATE(3416)] = 151813, + [SMALL_STATE(3417)] = 151832, + [SMALL_STATE(3418)] = 151851, + [SMALL_STATE(3419)] = 151870, + [SMALL_STATE(3420)] = 151885, + [SMALL_STATE(3421)] = 151896, + [SMALL_STATE(3422)] = 151907, + [SMALL_STATE(3423)] = 151918, + [SMALL_STATE(3424)] = 151929, + [SMALL_STATE(3425)] = 151940, + [SMALL_STATE(3426)] = 151955, + [SMALL_STATE(3427)] = 151970, + [SMALL_STATE(3428)] = 151981, + [SMALL_STATE(3429)] = 151992, + [SMALL_STATE(3430)] = 152007, + [SMALL_STATE(3431)] = 152018, + [SMALL_STATE(3432)] = 152029, + [SMALL_STATE(3433)] = 152048, + [SMALL_STATE(3434)] = 152059, + [SMALL_STATE(3435)] = 152070, + [SMALL_STATE(3436)] = 152089, + [SMALL_STATE(3437)] = 152104, + [SMALL_STATE(3438)] = 152115, + [SMALL_STATE(3439)] = 152126, + [SMALL_STATE(3440)] = 152137, + [SMALL_STATE(3441)] = 152148, + [SMALL_STATE(3442)] = 152159, + [SMALL_STATE(3443)] = 152178, + [SMALL_STATE(3444)] = 152189, + [SMALL_STATE(3445)] = 152200, + [SMALL_STATE(3446)] = 152217, + [SMALL_STATE(3447)] = 152228, + [SMALL_STATE(3448)] = 152241, + [SMALL_STATE(3449)] = 152252, + [SMALL_STATE(3450)] = 152263, + [SMALL_STATE(3451)] = 152274, + [SMALL_STATE(3452)] = 152285, + [SMALL_STATE(3453)] = 152304, + [SMALL_STATE(3454)] = 152315, + [SMALL_STATE(3455)] = 152326, + [SMALL_STATE(3456)] = 152337, + [SMALL_STATE(3457)] = 152348, + [SMALL_STATE(3458)] = 152362, + [SMALL_STATE(3459)] = 152378, + [SMALL_STATE(3460)] = 152392, + [SMALL_STATE(3461)] = 152408, + [SMALL_STATE(3462)] = 152422, + [SMALL_STATE(3463)] = 152438, + [SMALL_STATE(3464)] = 152454, + [SMALL_STATE(3465)] = 152470, + [SMALL_STATE(3466)] = 152484, + [SMALL_STATE(3467)] = 152500, + [SMALL_STATE(3468)] = 152514, + [SMALL_STATE(3469)] = 152530, + [SMALL_STATE(3470)] = 152546, + [SMALL_STATE(3471)] = 152558, + [SMALL_STATE(3472)] = 152572, + [SMALL_STATE(3473)] = 152586, + [SMALL_STATE(3474)] = 152602, + [SMALL_STATE(3475)] = 152616, + [SMALL_STATE(3476)] = 152632, + [SMALL_STATE(3477)] = 152648, + [SMALL_STATE(3478)] = 152664, + [SMALL_STATE(3479)] = 152680, + [SMALL_STATE(3480)] = 152696, + [SMALL_STATE(3481)] = 152710, + [SMALL_STATE(3482)] = 152726, + [SMALL_STATE(3483)] = 152742, + [SMALL_STATE(3484)] = 152758, + [SMALL_STATE(3485)] = 152772, + [SMALL_STATE(3486)] = 152788, + [SMALL_STATE(3487)] = 152804, + [SMALL_STATE(3488)] = 152820, + [SMALL_STATE(3489)] = 152834, + [SMALL_STATE(3490)] = 152850, + [SMALL_STATE(3491)] = 152866, + [SMALL_STATE(3492)] = 152882, + [SMALL_STATE(3493)] = 152898, + [SMALL_STATE(3494)] = 152914, + [SMALL_STATE(3495)] = 152928, + [SMALL_STATE(3496)] = 152942, + [SMALL_STATE(3497)] = 152954, + [SMALL_STATE(3498)] = 152970, + [SMALL_STATE(3499)] = 152986, + [SMALL_STATE(3500)] = 153002, + [SMALL_STATE(3501)] = 153016, + [SMALL_STATE(3502)] = 153026, + [SMALL_STATE(3503)] = 153036, + [SMALL_STATE(3504)] = 153048, + [SMALL_STATE(3505)] = 153064, + [SMALL_STATE(3506)] = 153080, + [SMALL_STATE(3507)] = 153096, + [SMALL_STATE(3508)] = 153110, + [SMALL_STATE(3509)] = 153124, + [SMALL_STATE(3510)] = 153140, + [SMALL_STATE(3511)] = 153156, + [SMALL_STATE(3512)] = 153172, + [SMALL_STATE(3513)] = 153186, + [SMALL_STATE(3514)] = 153200, + [SMALL_STATE(3515)] = 153214, + [SMALL_STATE(3516)] = 153230, + [SMALL_STATE(3517)] = 153246, + [SMALL_STATE(3518)] = 153260, + [SMALL_STATE(3519)] = 153272, + [SMALL_STATE(3520)] = 153286, + [SMALL_STATE(3521)] = 153300, + [SMALL_STATE(3522)] = 153316, + [SMALL_STATE(3523)] = 153332, + [SMALL_STATE(3524)] = 153348, + [SMALL_STATE(3525)] = 153364, + [SMALL_STATE(3526)] = 153380, + [SMALL_STATE(3527)] = 153394, + [SMALL_STATE(3528)] = 153408, + [SMALL_STATE(3529)] = 153424, + [SMALL_STATE(3530)] = 153438, + [SMALL_STATE(3531)] = 153448, + [SMALL_STATE(3532)] = 153464, + [SMALL_STATE(3533)] = 153480, + [SMALL_STATE(3534)] = 153492, + [SMALL_STATE(3535)] = 153508, + [SMALL_STATE(3536)] = 153522, + [SMALL_STATE(3537)] = 153534, + [SMALL_STATE(3538)] = 153550, + [SMALL_STATE(3539)] = 153564, + [SMALL_STATE(3540)] = 153580, + [SMALL_STATE(3541)] = 153596, + [SMALL_STATE(3542)] = 153612, + [SMALL_STATE(3543)] = 153626, + [SMALL_STATE(3544)] = 153640, + [SMALL_STATE(3545)] = 153654, + [SMALL_STATE(3546)] = 153670, + [SMALL_STATE(3547)] = 153686, + [SMALL_STATE(3548)] = 153702, + [SMALL_STATE(3549)] = 153716, + [SMALL_STATE(3550)] = 153732, + [SMALL_STATE(3551)] = 153748, + [SMALL_STATE(3552)] = 153764, + [SMALL_STATE(3553)] = 153778, + [SMALL_STATE(3554)] = 153794, + [SMALL_STATE(3555)] = 153810, + [SMALL_STATE(3556)] = 153826, + [SMALL_STATE(3557)] = 153842, + [SMALL_STATE(3558)] = 153858, + [SMALL_STATE(3559)] = 153874, + [SMALL_STATE(3560)] = 153890, + [SMALL_STATE(3561)] = 153906, + [SMALL_STATE(3562)] = 153922, + [SMALL_STATE(3563)] = 153938, + [SMALL_STATE(3564)] = 153954, + [SMALL_STATE(3565)] = 153964, + [SMALL_STATE(3566)] = 153980, + [SMALL_STATE(3567)] = 153996, + [SMALL_STATE(3568)] = 154012, + [SMALL_STATE(3569)] = 154026, + [SMALL_STATE(3570)] = 154042, + [SMALL_STATE(3571)] = 154058, + [SMALL_STATE(3572)] = 154074, + [SMALL_STATE(3573)] = 154090, + [SMALL_STATE(3574)] = 154106, + [SMALL_STATE(3575)] = 154122, + [SMALL_STATE(3576)] = 154138, + [SMALL_STATE(3577)] = 154154, + [SMALL_STATE(3578)] = 154170, + [SMALL_STATE(3579)] = 154184, + [SMALL_STATE(3580)] = 154200, + [SMALL_STATE(3581)] = 154216, + [SMALL_STATE(3582)] = 154232, + [SMALL_STATE(3583)] = 154248, + [SMALL_STATE(3584)] = 154262, + [SMALL_STATE(3585)] = 154276, + [SMALL_STATE(3586)] = 154290, + [SMALL_STATE(3587)] = 154304, + [SMALL_STATE(3588)] = 154318, + [SMALL_STATE(3589)] = 154332, + [SMALL_STATE(3590)] = 154346, + [SMALL_STATE(3591)] = 154360, + [SMALL_STATE(3592)] = 154374, + [SMALL_STATE(3593)] = 154388, + [SMALL_STATE(3594)] = 154402, + [SMALL_STATE(3595)] = 154416, + [SMALL_STATE(3596)] = 154430, + [SMALL_STATE(3597)] = 154444, + [SMALL_STATE(3598)] = 154458, + [SMALL_STATE(3599)] = 154468, + [SMALL_STATE(3600)] = 154484, + [SMALL_STATE(3601)] = 154500, + [SMALL_STATE(3602)] = 154514, + [SMALL_STATE(3603)] = 154530, + [SMALL_STATE(3604)] = 154546, + [SMALL_STATE(3605)] = 154560, + [SMALL_STATE(3606)] = 154574, + [SMALL_STATE(3607)] = 154590, + [SMALL_STATE(3608)] = 154604, + [SMALL_STATE(3609)] = 154620, + [SMALL_STATE(3610)] = 154636, + [SMALL_STATE(3611)] = 154652, + [SMALL_STATE(3612)] = 154668, + [SMALL_STATE(3613)] = 154684, + [SMALL_STATE(3614)] = 154700, + [SMALL_STATE(3615)] = 154716, + [SMALL_STATE(3616)] = 154730, + [SMALL_STATE(3617)] = 154746, + [SMALL_STATE(3618)] = 154760, + [SMALL_STATE(3619)] = 154776, + [SMALL_STATE(3620)] = 154792, + [SMALL_STATE(3621)] = 154806, + [SMALL_STATE(3622)] = 154822, + [SMALL_STATE(3623)] = 154838, + [SMALL_STATE(3624)] = 154854, + [SMALL_STATE(3625)] = 154870, + [SMALL_STATE(3626)] = 154884, + [SMALL_STATE(3627)] = 154900, + [SMALL_STATE(3628)] = 154916, + [SMALL_STATE(3629)] = 154932, + [SMALL_STATE(3630)] = 154946, + [SMALL_STATE(3631)] = 154960, + [SMALL_STATE(3632)] = 154974, + [SMALL_STATE(3633)] = 154988, + [SMALL_STATE(3634)] = 155002, + [SMALL_STATE(3635)] = 155016, + [SMALL_STATE(3636)] = 155030, + [SMALL_STATE(3637)] = 155044, + [SMALL_STATE(3638)] = 155060, + [SMALL_STATE(3639)] = 155076, + [SMALL_STATE(3640)] = 155092, + [SMALL_STATE(3641)] = 155108, + [SMALL_STATE(3642)] = 155124, + [SMALL_STATE(3643)] = 155140, + [SMALL_STATE(3644)] = 155156, + [SMALL_STATE(3645)] = 155172, + [SMALL_STATE(3646)] = 155188, + [SMALL_STATE(3647)] = 155204, + [SMALL_STATE(3648)] = 155218, + [SMALL_STATE(3649)] = 155232, + [SMALL_STATE(3650)] = 155246, + [SMALL_STATE(3651)] = 155262, + [SMALL_STATE(3652)] = 155274, + [SMALL_STATE(3653)] = 155286, + [SMALL_STATE(3654)] = 155300, + [SMALL_STATE(3655)] = 155316, + [SMALL_STATE(3656)] = 155330, + [SMALL_STATE(3657)] = 155346, + [SMALL_STATE(3658)] = 155362, + [SMALL_STATE(3659)] = 155378, + [SMALL_STATE(3660)] = 155394, + [SMALL_STATE(3661)] = 155410, + [SMALL_STATE(3662)] = 155426, + [SMALL_STATE(3663)] = 155442, + [SMALL_STATE(3664)] = 155458, + [SMALL_STATE(3665)] = 155474, + [SMALL_STATE(3666)] = 155490, + [SMALL_STATE(3667)] = 155506, + [SMALL_STATE(3668)] = 155522, + [SMALL_STATE(3669)] = 155538, + [SMALL_STATE(3670)] = 155554, + [SMALL_STATE(3671)] = 155570, + [SMALL_STATE(3672)] = 155586, + [SMALL_STATE(3673)] = 155602, + [SMALL_STATE(3674)] = 155618, + [SMALL_STATE(3675)] = 155634, + [SMALL_STATE(3676)] = 155648, + [SMALL_STATE(3677)] = 155664, + [SMALL_STATE(3678)] = 155678, + [SMALL_STATE(3679)] = 155694, + [SMALL_STATE(3680)] = 155710, + [SMALL_STATE(3681)] = 155726, + [SMALL_STATE(3682)] = 155742, + [SMALL_STATE(3683)] = 155758, + [SMALL_STATE(3684)] = 155774, + [SMALL_STATE(3685)] = 155790, + [SMALL_STATE(3686)] = 155806, + [SMALL_STATE(3687)] = 155820, + [SMALL_STATE(3688)] = 155836, + [SMALL_STATE(3689)] = 155848, + [SMALL_STATE(3690)] = 155864, + [SMALL_STATE(3691)] = 155880, + [SMALL_STATE(3692)] = 155896, + [SMALL_STATE(3693)] = 155912, + [SMALL_STATE(3694)] = 155928, + [SMALL_STATE(3695)] = 155937, + [SMALL_STATE(3696)] = 155950, + [SMALL_STATE(3697)] = 155963, + [SMALL_STATE(3698)] = 155976, + [SMALL_STATE(3699)] = 155989, + [SMALL_STATE(3700)] = 156002, + [SMALL_STATE(3701)] = 156015, + [SMALL_STATE(3702)] = 156028, + [SMALL_STATE(3703)] = 156041, + [SMALL_STATE(3704)] = 156050, + [SMALL_STATE(3705)] = 156063, + [SMALL_STATE(3706)] = 156076, + [SMALL_STATE(3707)] = 156089, + [SMALL_STATE(3708)] = 156102, + [SMALL_STATE(3709)] = 156115, + [SMALL_STATE(3710)] = 156128, + [SMALL_STATE(3711)] = 156141, + [SMALL_STATE(3712)] = 156154, + [SMALL_STATE(3713)] = 156167, + [SMALL_STATE(3714)] = 156180, + [SMALL_STATE(3715)] = 156193, + [SMALL_STATE(3716)] = 156206, + [SMALL_STATE(3717)] = 156219, + [SMALL_STATE(3718)] = 156232, + [SMALL_STATE(3719)] = 156245, + [SMALL_STATE(3720)] = 156258, + [SMALL_STATE(3721)] = 156271, + [SMALL_STATE(3722)] = 156284, + [SMALL_STATE(3723)] = 156297, + [SMALL_STATE(3724)] = 156310, + [SMALL_STATE(3725)] = 156323, + [SMALL_STATE(3726)] = 156336, + [SMALL_STATE(3727)] = 156349, + [SMALL_STATE(3728)] = 156362, + [SMALL_STATE(3729)] = 156375, + [SMALL_STATE(3730)] = 156388, + [SMALL_STATE(3731)] = 156401, + [SMALL_STATE(3732)] = 156414, + [SMALL_STATE(3733)] = 156423, + [SMALL_STATE(3734)] = 156436, + [SMALL_STATE(3735)] = 156449, + [SMALL_STATE(3736)] = 156462, + [SMALL_STATE(3737)] = 156475, + [SMALL_STATE(3738)] = 156484, + [SMALL_STATE(3739)] = 156495, + [SMALL_STATE(3740)] = 156504, + [SMALL_STATE(3741)] = 156517, + [SMALL_STATE(3742)] = 156528, + [SMALL_STATE(3743)] = 156541, + [SMALL_STATE(3744)] = 156554, + [SMALL_STATE(3745)] = 156567, + [SMALL_STATE(3746)] = 156580, + [SMALL_STATE(3747)] = 156593, + [SMALL_STATE(3748)] = 156602, + [SMALL_STATE(3749)] = 156615, + [SMALL_STATE(3750)] = 156628, + [SMALL_STATE(3751)] = 156641, + [SMALL_STATE(3752)] = 156652, + [SMALL_STATE(3753)] = 156665, + [SMALL_STATE(3754)] = 156678, + [SMALL_STATE(3755)] = 156691, + [SMALL_STATE(3756)] = 156704, + [SMALL_STATE(3757)] = 156715, + [SMALL_STATE(3758)] = 156728, + [SMALL_STATE(3759)] = 156739, + [SMALL_STATE(3760)] = 156752, + [SMALL_STATE(3761)] = 156765, + [SMALL_STATE(3762)] = 156778, + [SMALL_STATE(3763)] = 156791, + [SMALL_STATE(3764)] = 156800, + [SMALL_STATE(3765)] = 156813, + [SMALL_STATE(3766)] = 156824, + [SMALL_STATE(3767)] = 156837, + [SMALL_STATE(3768)] = 156850, + [SMALL_STATE(3769)] = 156859, + [SMALL_STATE(3770)] = 156870, + [SMALL_STATE(3771)] = 156883, + [SMALL_STATE(3772)] = 156896, + [SMALL_STATE(3773)] = 156909, + [SMALL_STATE(3774)] = 156922, + [SMALL_STATE(3775)] = 156935, + [SMALL_STATE(3776)] = 156948, + [SMALL_STATE(3777)] = 156961, + [SMALL_STATE(3778)] = 156974, + [SMALL_STATE(3779)] = 156987, + [SMALL_STATE(3780)] = 157000, + [SMALL_STATE(3781)] = 157013, + [SMALL_STATE(3782)] = 157026, + [SMALL_STATE(3783)] = 157039, + [SMALL_STATE(3784)] = 157052, + [SMALL_STATE(3785)] = 157065, + [SMALL_STATE(3786)] = 157078, + [SMALL_STATE(3787)] = 157091, + [SMALL_STATE(3788)] = 157104, + [SMALL_STATE(3789)] = 157113, + [SMALL_STATE(3790)] = 157126, + [SMALL_STATE(3791)] = 157139, + [SMALL_STATE(3792)] = 157152, + [SMALL_STATE(3793)] = 157165, + [SMALL_STATE(3794)] = 157178, + [SMALL_STATE(3795)] = 157187, + [SMALL_STATE(3796)] = 157196, + [SMALL_STATE(3797)] = 157209, + [SMALL_STATE(3798)] = 157222, + [SMALL_STATE(3799)] = 157231, + [SMALL_STATE(3800)] = 157244, + [SMALL_STATE(3801)] = 157253, + [SMALL_STATE(3802)] = 157266, + [SMALL_STATE(3803)] = 157279, + [SMALL_STATE(3804)] = 157288, + [SMALL_STATE(3805)] = 157297, + [SMALL_STATE(3806)] = 157306, + [SMALL_STATE(3807)] = 157319, + [SMALL_STATE(3808)] = 157328, + [SMALL_STATE(3809)] = 157337, + [SMALL_STATE(3810)] = 157346, + [SMALL_STATE(3811)] = 157359, + [SMALL_STATE(3812)] = 157368, + [SMALL_STATE(3813)] = 157381, + [SMALL_STATE(3814)] = 157394, + [SMALL_STATE(3815)] = 157407, + [SMALL_STATE(3816)] = 157420, + [SMALL_STATE(3817)] = 157433, + [SMALL_STATE(3818)] = 157446, + [SMALL_STATE(3819)] = 157459, + [SMALL_STATE(3820)] = 157472, + [SMALL_STATE(3821)] = 157485, + [SMALL_STATE(3822)] = 157498, + [SMALL_STATE(3823)] = 157511, + [SMALL_STATE(3824)] = 157520, + [SMALL_STATE(3825)] = 157533, + [SMALL_STATE(3826)] = 157546, + [SMALL_STATE(3827)] = 157555, + [SMALL_STATE(3828)] = 157568, + [SMALL_STATE(3829)] = 157581, + [SMALL_STATE(3830)] = 157590, + [SMALL_STATE(3831)] = 157603, + [SMALL_STATE(3832)] = 157616, + [SMALL_STATE(3833)] = 157625, + [SMALL_STATE(3834)] = 157638, + [SMALL_STATE(3835)] = 157651, + [SMALL_STATE(3836)] = 157664, + [SMALL_STATE(3837)] = 157677, + [SMALL_STATE(3838)] = 157690, + [SMALL_STATE(3839)] = 157703, + [SMALL_STATE(3840)] = 157712, + [SMALL_STATE(3841)] = 157725, + [SMALL_STATE(3842)] = 157738, + [SMALL_STATE(3843)] = 157751, + [SMALL_STATE(3844)] = 157764, + [SMALL_STATE(3845)] = 157773, + [SMALL_STATE(3846)] = 157786, + [SMALL_STATE(3847)] = 157799, + [SMALL_STATE(3848)] = 157812, + [SMALL_STATE(3849)] = 157825, + [SMALL_STATE(3850)] = 157838, + [SMALL_STATE(3851)] = 157851, + [SMALL_STATE(3852)] = 157860, + [SMALL_STATE(3853)] = 157873, + [SMALL_STATE(3854)] = 157886, + [SMALL_STATE(3855)] = 157899, + [SMALL_STATE(3856)] = 157912, + [SMALL_STATE(3857)] = 157921, + [SMALL_STATE(3858)] = 157934, + [SMALL_STATE(3859)] = 157945, + [SMALL_STATE(3860)] = 157958, + [SMALL_STATE(3861)] = 157971, + [SMALL_STATE(3862)] = 157984, + [SMALL_STATE(3863)] = 157993, + [SMALL_STATE(3864)] = 158002, + [SMALL_STATE(3865)] = 158011, + [SMALL_STATE(3866)] = 158020, + [SMALL_STATE(3867)] = 158033, + [SMALL_STATE(3868)] = 158046, + [SMALL_STATE(3869)] = 158055, + [SMALL_STATE(3870)] = 158064, + [SMALL_STATE(3871)] = 158077, + [SMALL_STATE(3872)] = 158086, + [SMALL_STATE(3873)] = 158095, + [SMALL_STATE(3874)] = 158108, + [SMALL_STATE(3875)] = 158117, + [SMALL_STATE(3876)] = 158130, + [SMALL_STATE(3877)] = 158141, + [SMALL_STATE(3878)] = 158154, + [SMALL_STATE(3879)] = 158167, + [SMALL_STATE(3880)] = 158180, + [SMALL_STATE(3881)] = 158189, + [SMALL_STATE(3882)] = 158202, + [SMALL_STATE(3883)] = 158211, + [SMALL_STATE(3884)] = 158224, + [SMALL_STATE(3885)] = 158235, + [SMALL_STATE(3886)] = 158248, + [SMALL_STATE(3887)] = 158261, + [SMALL_STATE(3888)] = 158270, + [SMALL_STATE(3889)] = 158279, + [SMALL_STATE(3890)] = 158288, + [SMALL_STATE(3891)] = 158297, + [SMALL_STATE(3892)] = 158310, + [SMALL_STATE(3893)] = 158323, + [SMALL_STATE(3894)] = 158334, + [SMALL_STATE(3895)] = 158345, + [SMALL_STATE(3896)] = 158354, + [SMALL_STATE(3897)] = 158367, + [SMALL_STATE(3898)] = 158376, + [SMALL_STATE(3899)] = 158387, + [SMALL_STATE(3900)] = 158396, + [SMALL_STATE(3901)] = 158405, + [SMALL_STATE(3902)] = 158418, + [SMALL_STATE(3903)] = 158431, + [SMALL_STATE(3904)] = 158444, + [SMALL_STATE(3905)] = 158453, + [SMALL_STATE(3906)] = 158462, + [SMALL_STATE(3907)] = 158475, + [SMALL_STATE(3908)] = 158484, + [SMALL_STATE(3909)] = 158497, + [SMALL_STATE(3910)] = 158510, + [SMALL_STATE(3911)] = 158523, + [SMALL_STATE(3912)] = 158532, + [SMALL_STATE(3913)] = 158541, + [SMALL_STATE(3914)] = 158554, + [SMALL_STATE(3915)] = 158567, + [SMALL_STATE(3916)] = 158580, + [SMALL_STATE(3917)] = 158593, + [SMALL_STATE(3918)] = 158606, + [SMALL_STATE(3919)] = 158615, + [SMALL_STATE(3920)] = 158624, + [SMALL_STATE(3921)] = 158633, + [SMALL_STATE(3922)] = 158646, + [SMALL_STATE(3923)] = 158659, + [SMALL_STATE(3924)] = 158670, + [SMALL_STATE(3925)] = 158679, + [SMALL_STATE(3926)] = 158692, + [SMALL_STATE(3927)] = 158701, + [SMALL_STATE(3928)] = 158714, + [SMALL_STATE(3929)] = 158725, + [SMALL_STATE(3930)] = 158738, + [SMALL_STATE(3931)] = 158747, + [SMALL_STATE(3932)] = 158757, + [SMALL_STATE(3933)] = 158767, + [SMALL_STATE(3934)] = 158777, + [SMALL_STATE(3935)] = 158787, + [SMALL_STATE(3936)] = 158797, + [SMALL_STATE(3937)] = 158805, + [SMALL_STATE(3938)] = 158815, + [SMALL_STATE(3939)] = 158825, + [SMALL_STATE(3940)] = 158835, + [SMALL_STATE(3941)] = 158845, + [SMALL_STATE(3942)] = 158853, + [SMALL_STATE(3943)] = 158863, + [SMALL_STATE(3944)] = 158873, + [SMALL_STATE(3945)] = 158883, + [SMALL_STATE(3946)] = 158893, + [SMALL_STATE(3947)] = 158903, + [SMALL_STATE(3948)] = 158913, + [SMALL_STATE(3949)] = 158921, + [SMALL_STATE(3950)] = 158931, + [SMALL_STATE(3951)] = 158941, + [SMALL_STATE(3952)] = 158951, + [SMALL_STATE(3953)] = 158959, + [SMALL_STATE(3954)] = 158969, + [SMALL_STATE(3955)] = 158979, + [SMALL_STATE(3956)] = 158989, + [SMALL_STATE(3957)] = 158999, + [SMALL_STATE(3958)] = 159007, + [SMALL_STATE(3959)] = 159015, + [SMALL_STATE(3960)] = 159025, + [SMALL_STATE(3961)] = 159033, + [SMALL_STATE(3962)] = 159043, + [SMALL_STATE(3963)] = 159051, + [SMALL_STATE(3964)] = 159061, + [SMALL_STATE(3965)] = 159071, + [SMALL_STATE(3966)] = 159079, + [SMALL_STATE(3967)] = 159087, + [SMALL_STATE(3968)] = 159097, + [SMALL_STATE(3969)] = 159107, + [SMALL_STATE(3970)] = 159115, + [SMALL_STATE(3971)] = 159125, + [SMALL_STATE(3972)] = 159135, + [SMALL_STATE(3973)] = 159143, + [SMALL_STATE(3974)] = 159153, + [SMALL_STATE(3975)] = 159163, + [SMALL_STATE(3976)] = 159173, + [SMALL_STATE(3977)] = 159183, + [SMALL_STATE(3978)] = 159193, + [SMALL_STATE(3979)] = 159203, + [SMALL_STATE(3980)] = 159213, + [SMALL_STATE(3981)] = 159223, + [SMALL_STATE(3982)] = 159233, + [SMALL_STATE(3983)] = 159241, + [SMALL_STATE(3984)] = 159249, + [SMALL_STATE(3985)] = 159259, + [SMALL_STATE(3986)] = 159269, + [SMALL_STATE(3987)] = 159279, + [SMALL_STATE(3988)] = 159287, + [SMALL_STATE(3989)] = 159297, + [SMALL_STATE(3990)] = 159305, + [SMALL_STATE(3991)] = 159315, + [SMALL_STATE(3992)] = 159323, + [SMALL_STATE(3993)] = 159331, + [SMALL_STATE(3994)] = 159341, + [SMALL_STATE(3995)] = 159351, + [SMALL_STATE(3996)] = 159361, + [SMALL_STATE(3997)] = 159369, + [SMALL_STATE(3998)] = 159379, + [SMALL_STATE(3999)] = 159387, + [SMALL_STATE(4000)] = 159397, + [SMALL_STATE(4001)] = 159407, + [SMALL_STATE(4002)] = 159417, + [SMALL_STATE(4003)] = 159427, + [SMALL_STATE(4004)] = 159437, + [SMALL_STATE(4005)] = 159447, + [SMALL_STATE(4006)] = 159455, + [SMALL_STATE(4007)] = 159463, + [SMALL_STATE(4008)] = 159473, + [SMALL_STATE(4009)] = 159481, + [SMALL_STATE(4010)] = 159491, + [SMALL_STATE(4011)] = 159501, + [SMALL_STATE(4012)] = 159511, + [SMALL_STATE(4013)] = 159521, + [SMALL_STATE(4014)] = 159531, + [SMALL_STATE(4015)] = 159541, + [SMALL_STATE(4016)] = 159551, + [SMALL_STATE(4017)] = 159561, + [SMALL_STATE(4018)] = 159571, + [SMALL_STATE(4019)] = 159581, + [SMALL_STATE(4020)] = 159589, + [SMALL_STATE(4021)] = 159597, + [SMALL_STATE(4022)] = 159607, + [SMALL_STATE(4023)] = 159615, + [SMALL_STATE(4024)] = 159623, + [SMALL_STATE(4025)] = 159631, + [SMALL_STATE(4026)] = 159641, + [SMALL_STATE(4027)] = 159651, + [SMALL_STATE(4028)] = 159661, + [SMALL_STATE(4029)] = 159669, + [SMALL_STATE(4030)] = 159679, + [SMALL_STATE(4031)] = 159689, + [SMALL_STATE(4032)] = 159699, + [SMALL_STATE(4033)] = 159709, + [SMALL_STATE(4034)] = 159719, + [SMALL_STATE(4035)] = 159729, + [SMALL_STATE(4036)] = 159739, + [SMALL_STATE(4037)] = 159747, + [SMALL_STATE(4038)] = 159755, + [SMALL_STATE(4039)] = 159765, + [SMALL_STATE(4040)] = 159775, + [SMALL_STATE(4041)] = 159785, + [SMALL_STATE(4042)] = 159795, + [SMALL_STATE(4043)] = 159805, + [SMALL_STATE(4044)] = 159815, + [SMALL_STATE(4045)] = 159823, + [SMALL_STATE(4046)] = 159833, + [SMALL_STATE(4047)] = 159843, + [SMALL_STATE(4048)] = 159853, + [SMALL_STATE(4049)] = 159863, + [SMALL_STATE(4050)] = 159873, + [SMALL_STATE(4051)] = 159881, + [SMALL_STATE(4052)] = 159891, + [SMALL_STATE(4053)] = 159899, + [SMALL_STATE(4054)] = 159909, + [SMALL_STATE(4055)] = 159919, + [SMALL_STATE(4056)] = 159929, + [SMALL_STATE(4057)] = 159937, + [SMALL_STATE(4058)] = 159947, + [SMALL_STATE(4059)] = 159955, + [SMALL_STATE(4060)] = 159965, + [SMALL_STATE(4061)] = 159975, + [SMALL_STATE(4062)] = 159985, + [SMALL_STATE(4063)] = 159993, + [SMALL_STATE(4064)] = 160003, + [SMALL_STATE(4065)] = 160013, + [SMALL_STATE(4066)] = 160023, + [SMALL_STATE(4067)] = 160033, + [SMALL_STATE(4068)] = 160043, + [SMALL_STATE(4069)] = 160053, + [SMALL_STATE(4070)] = 160061, + [SMALL_STATE(4071)] = 160069, + [SMALL_STATE(4072)] = 160079, + [SMALL_STATE(4073)] = 160089, + [SMALL_STATE(4074)] = 160099, + [SMALL_STATE(4075)] = 160109, + [SMALL_STATE(4076)] = 160119, + [SMALL_STATE(4077)] = 160127, + [SMALL_STATE(4078)] = 160137, + [SMALL_STATE(4079)] = 160147, + [SMALL_STATE(4080)] = 160157, + [SMALL_STATE(4081)] = 160167, + [SMALL_STATE(4082)] = 160177, + [SMALL_STATE(4083)] = 160187, + [SMALL_STATE(4084)] = 160197, + [SMALL_STATE(4085)] = 160207, + [SMALL_STATE(4086)] = 160215, + [SMALL_STATE(4087)] = 160225, + [SMALL_STATE(4088)] = 160235, + [SMALL_STATE(4089)] = 160245, + [SMALL_STATE(4090)] = 160255, + [SMALL_STATE(4091)] = 160265, + [SMALL_STATE(4092)] = 160275, + [SMALL_STATE(4093)] = 160285, + [SMALL_STATE(4094)] = 160295, + [SMALL_STATE(4095)] = 160303, + [SMALL_STATE(4096)] = 160311, + [SMALL_STATE(4097)] = 160321, + [SMALL_STATE(4098)] = 160331, + [SMALL_STATE(4099)] = 160339, + [SMALL_STATE(4100)] = 160349, + [SMALL_STATE(4101)] = 160359, + [SMALL_STATE(4102)] = 160369, + [SMALL_STATE(4103)] = 160377, + [SMALL_STATE(4104)] = 160387, + [SMALL_STATE(4105)] = 160397, + [SMALL_STATE(4106)] = 160407, + [SMALL_STATE(4107)] = 160415, + [SMALL_STATE(4108)] = 160425, + [SMALL_STATE(4109)] = 160435, + [SMALL_STATE(4110)] = 160445, + [SMALL_STATE(4111)] = 160455, + [SMALL_STATE(4112)] = 160465, + [SMALL_STATE(4113)] = 160473, + [SMALL_STATE(4114)] = 160481, + [SMALL_STATE(4115)] = 160491, + [SMALL_STATE(4116)] = 160501, + [SMALL_STATE(4117)] = 160511, + [SMALL_STATE(4118)] = 160519, + [SMALL_STATE(4119)] = 160529, + [SMALL_STATE(4120)] = 160539, + [SMALL_STATE(4121)] = 160549, + [SMALL_STATE(4122)] = 160557, + [SMALL_STATE(4123)] = 160567, + [SMALL_STATE(4124)] = 160575, + [SMALL_STATE(4125)] = 160585, + [SMALL_STATE(4126)] = 160595, + [SMALL_STATE(4127)] = 160603, + [SMALL_STATE(4128)] = 160613, + [SMALL_STATE(4129)] = 160623, + [SMALL_STATE(4130)] = 160633, + [SMALL_STATE(4131)] = 160643, + [SMALL_STATE(4132)] = 160653, + [SMALL_STATE(4133)] = 160661, + [SMALL_STATE(4134)] = 160671, + [SMALL_STATE(4135)] = 160679, + [SMALL_STATE(4136)] = 160689, + [SMALL_STATE(4137)] = 160699, + [SMALL_STATE(4138)] = 160707, + [SMALL_STATE(4139)] = 160717, + [SMALL_STATE(4140)] = 160725, + [SMALL_STATE(4141)] = 160735, + [SMALL_STATE(4142)] = 160743, + [SMALL_STATE(4143)] = 160753, + [SMALL_STATE(4144)] = 160763, + [SMALL_STATE(4145)] = 160773, + [SMALL_STATE(4146)] = 160783, + [SMALL_STATE(4147)] = 160793, + [SMALL_STATE(4148)] = 160803, + [SMALL_STATE(4149)] = 160813, + [SMALL_STATE(4150)] = 160823, + [SMALL_STATE(4151)] = 160833, + [SMALL_STATE(4152)] = 160843, + [SMALL_STATE(4153)] = 160853, + [SMALL_STATE(4154)] = 160863, + [SMALL_STATE(4155)] = 160873, + [SMALL_STATE(4156)] = 160883, + [SMALL_STATE(4157)] = 160893, + [SMALL_STATE(4158)] = 160901, + [SMALL_STATE(4159)] = 160911, + [SMALL_STATE(4160)] = 160921, + [SMALL_STATE(4161)] = 160931, + [SMALL_STATE(4162)] = 160939, + [SMALL_STATE(4163)] = 160949, + [SMALL_STATE(4164)] = 160959, + [SMALL_STATE(4165)] = 160969, + [SMALL_STATE(4166)] = 160979, + [SMALL_STATE(4167)] = 160989, + [SMALL_STATE(4168)] = 160999, + [SMALL_STATE(4169)] = 161009, + [SMALL_STATE(4170)] = 161019, + [SMALL_STATE(4171)] = 161029, + [SMALL_STATE(4172)] = 161039, + [SMALL_STATE(4173)] = 161049, + [SMALL_STATE(4174)] = 161059, + [SMALL_STATE(4175)] = 161069, + [SMALL_STATE(4176)] = 161079, + [SMALL_STATE(4177)] = 161089, + [SMALL_STATE(4178)] = 161099, + [SMALL_STATE(4179)] = 161109, + [SMALL_STATE(4180)] = 161117, + [SMALL_STATE(4181)] = 161127, + [SMALL_STATE(4182)] = 161137, + [SMALL_STATE(4183)] = 161147, + [SMALL_STATE(4184)] = 161157, + [SMALL_STATE(4185)] = 161167, + [SMALL_STATE(4186)] = 161177, + [SMALL_STATE(4187)] = 161187, + [SMALL_STATE(4188)] = 161197, + [SMALL_STATE(4189)] = 161207, + [SMALL_STATE(4190)] = 161217, + [SMALL_STATE(4191)] = 161227, + [SMALL_STATE(4192)] = 161237, + [SMALL_STATE(4193)] = 161247, + [SMALL_STATE(4194)] = 161257, + [SMALL_STATE(4195)] = 161267, + [SMALL_STATE(4196)] = 161277, + [SMALL_STATE(4197)] = 161287, + [SMALL_STATE(4198)] = 161297, + [SMALL_STATE(4199)] = 161307, + [SMALL_STATE(4200)] = 161317, + [SMALL_STATE(4201)] = 161327, + [SMALL_STATE(4202)] = 161335, + [SMALL_STATE(4203)] = 161342, + [SMALL_STATE(4204)] = 161349, + [SMALL_STATE(4205)] = 161356, + [SMALL_STATE(4206)] = 161363, + [SMALL_STATE(4207)] = 161370, + [SMALL_STATE(4208)] = 161377, + [SMALL_STATE(4209)] = 161384, + [SMALL_STATE(4210)] = 161391, + [SMALL_STATE(4211)] = 161398, + [SMALL_STATE(4212)] = 161405, + [SMALL_STATE(4213)] = 161412, + [SMALL_STATE(4214)] = 161419, + [SMALL_STATE(4215)] = 161426, + [SMALL_STATE(4216)] = 161433, + [SMALL_STATE(4217)] = 161440, + [SMALL_STATE(4218)] = 161447, + [SMALL_STATE(4219)] = 161454, + [SMALL_STATE(4220)] = 161461, + [SMALL_STATE(4221)] = 161468, + [SMALL_STATE(4222)] = 161475, + [SMALL_STATE(4223)] = 161482, + [SMALL_STATE(4224)] = 161489, + [SMALL_STATE(4225)] = 161496, + [SMALL_STATE(4226)] = 161503, + [SMALL_STATE(4227)] = 161510, + [SMALL_STATE(4228)] = 161517, + [SMALL_STATE(4229)] = 161524, + [SMALL_STATE(4230)] = 161531, + [SMALL_STATE(4231)] = 161538, + [SMALL_STATE(4232)] = 161545, + [SMALL_STATE(4233)] = 161552, + [SMALL_STATE(4234)] = 161559, + [SMALL_STATE(4235)] = 161566, + [SMALL_STATE(4236)] = 161573, + [SMALL_STATE(4237)] = 161580, + [SMALL_STATE(4238)] = 161587, + [SMALL_STATE(4239)] = 161594, + [SMALL_STATE(4240)] = 161601, + [SMALL_STATE(4241)] = 161608, + [SMALL_STATE(4242)] = 161615, + [SMALL_STATE(4243)] = 161622, + [SMALL_STATE(4244)] = 161629, + [SMALL_STATE(4245)] = 161636, + [SMALL_STATE(4246)] = 161643, + [SMALL_STATE(4247)] = 161650, + [SMALL_STATE(4248)] = 161657, + [SMALL_STATE(4249)] = 161664, + [SMALL_STATE(4250)] = 161671, + [SMALL_STATE(4251)] = 161678, + [SMALL_STATE(4252)] = 161685, + [SMALL_STATE(4253)] = 161692, + [SMALL_STATE(4254)] = 161699, + [SMALL_STATE(4255)] = 161706, + [SMALL_STATE(4256)] = 161713, + [SMALL_STATE(4257)] = 161720, + [SMALL_STATE(4258)] = 161727, + [SMALL_STATE(4259)] = 161734, + [SMALL_STATE(4260)] = 161741, + [SMALL_STATE(4261)] = 161748, + [SMALL_STATE(4262)] = 161755, + [SMALL_STATE(4263)] = 161762, + [SMALL_STATE(4264)] = 161769, + [SMALL_STATE(4265)] = 161776, + [SMALL_STATE(4266)] = 161783, + [SMALL_STATE(4267)] = 161790, + [SMALL_STATE(4268)] = 161797, + [SMALL_STATE(4269)] = 161804, + [SMALL_STATE(4270)] = 161811, + [SMALL_STATE(4271)] = 161818, + [SMALL_STATE(4272)] = 161825, + [SMALL_STATE(4273)] = 161832, + [SMALL_STATE(4274)] = 161839, + [SMALL_STATE(4275)] = 161846, + [SMALL_STATE(4276)] = 161853, + [SMALL_STATE(4277)] = 161860, + [SMALL_STATE(4278)] = 161867, + [SMALL_STATE(4279)] = 161874, + [SMALL_STATE(4280)] = 161881, + [SMALL_STATE(4281)] = 161888, + [SMALL_STATE(4282)] = 161895, + [SMALL_STATE(4283)] = 161902, + [SMALL_STATE(4284)] = 161909, + [SMALL_STATE(4285)] = 161916, + [SMALL_STATE(4286)] = 161923, + [SMALL_STATE(4287)] = 161930, + [SMALL_STATE(4288)] = 161937, + [SMALL_STATE(4289)] = 161944, + [SMALL_STATE(4290)] = 161951, + [SMALL_STATE(4291)] = 161958, + [SMALL_STATE(4292)] = 161965, + [SMALL_STATE(4293)] = 161972, + [SMALL_STATE(4294)] = 161979, + [SMALL_STATE(4295)] = 161986, + [SMALL_STATE(4296)] = 161993, + [SMALL_STATE(4297)] = 162000, + [SMALL_STATE(4298)] = 162007, + [SMALL_STATE(4299)] = 162014, + [SMALL_STATE(4300)] = 162021, + [SMALL_STATE(4301)] = 162028, + [SMALL_STATE(4302)] = 162035, + [SMALL_STATE(4303)] = 162042, + [SMALL_STATE(4304)] = 162049, + [SMALL_STATE(4305)] = 162056, + [SMALL_STATE(4306)] = 162063, + [SMALL_STATE(4307)] = 162070, + [SMALL_STATE(4308)] = 162077, + [SMALL_STATE(4309)] = 162084, + [SMALL_STATE(4310)] = 162091, + [SMALL_STATE(4311)] = 162098, + [SMALL_STATE(4312)] = 162105, + [SMALL_STATE(4313)] = 162112, + [SMALL_STATE(4314)] = 162119, + [SMALL_STATE(4315)] = 162126, + [SMALL_STATE(4316)] = 162133, + [SMALL_STATE(4317)] = 162140, + [SMALL_STATE(4318)] = 162147, + [SMALL_STATE(4319)] = 162154, + [SMALL_STATE(4320)] = 162161, + [SMALL_STATE(4321)] = 162168, + [SMALL_STATE(4322)] = 162175, + [SMALL_STATE(4323)] = 162182, + [SMALL_STATE(4324)] = 162189, + [SMALL_STATE(4325)] = 162196, + [SMALL_STATE(4326)] = 162203, + [SMALL_STATE(4327)] = 162210, + [SMALL_STATE(4328)] = 162217, + [SMALL_STATE(4329)] = 162224, + [SMALL_STATE(4330)] = 162231, + [SMALL_STATE(4331)] = 162238, + [SMALL_STATE(4332)] = 162245, + [SMALL_STATE(4333)] = 162252, + [SMALL_STATE(4334)] = 162259, + [SMALL_STATE(4335)] = 162266, + [SMALL_STATE(4336)] = 162273, + [SMALL_STATE(4337)] = 162280, + [SMALL_STATE(4338)] = 162287, + [SMALL_STATE(4339)] = 162294, + [SMALL_STATE(4340)] = 162301, + [SMALL_STATE(4341)] = 162308, + [SMALL_STATE(4342)] = 162315, + [SMALL_STATE(4343)] = 162322, + [SMALL_STATE(4344)] = 162329, + [SMALL_STATE(4345)] = 162336, + [SMALL_STATE(4346)] = 162343, + [SMALL_STATE(4347)] = 162350, + [SMALL_STATE(4348)] = 162357, + [SMALL_STATE(4349)] = 162364, + [SMALL_STATE(4350)] = 162371, + [SMALL_STATE(4351)] = 162378, + [SMALL_STATE(4352)] = 162385, + [SMALL_STATE(4353)] = 162392, + [SMALL_STATE(4354)] = 162399, + [SMALL_STATE(4355)] = 162406, + [SMALL_STATE(4356)] = 162413, + [SMALL_STATE(4357)] = 162420, + [SMALL_STATE(4358)] = 162427, + [SMALL_STATE(4359)] = 162434, + [SMALL_STATE(4360)] = 162441, + [SMALL_STATE(4361)] = 162448, + [SMALL_STATE(4362)] = 162455, + [SMALL_STATE(4363)] = 162462, + [SMALL_STATE(4364)] = 162469, + [SMALL_STATE(4365)] = 162476, + [SMALL_STATE(4366)] = 162483, + [SMALL_STATE(4367)] = 162490, + [SMALL_STATE(4368)] = 162497, + [SMALL_STATE(4369)] = 162504, + [SMALL_STATE(4370)] = 162511, + [SMALL_STATE(4371)] = 162518, + [SMALL_STATE(4372)] = 162525, + [SMALL_STATE(4373)] = 162532, + [SMALL_STATE(4374)] = 162539, + [SMALL_STATE(4375)] = 162546, + [SMALL_STATE(4376)] = 162553, + [SMALL_STATE(4377)] = 162560, + [SMALL_STATE(4378)] = 162567, + [SMALL_STATE(4379)] = 162574, + [SMALL_STATE(4380)] = 162581, + [SMALL_STATE(4381)] = 162588, + [SMALL_STATE(4382)] = 162595, + [SMALL_STATE(4383)] = 162602, + [SMALL_STATE(4384)] = 162609, + [SMALL_STATE(4385)] = 162616, + [SMALL_STATE(4386)] = 162623, + [SMALL_STATE(4387)] = 162630, + [SMALL_STATE(4388)] = 162637, + [SMALL_STATE(4389)] = 162644, + [SMALL_STATE(4390)] = 162651, + [SMALL_STATE(4391)] = 162658, + [SMALL_STATE(4392)] = 162665, + [SMALL_STATE(4393)] = 162672, + [SMALL_STATE(4394)] = 162679, + [SMALL_STATE(4395)] = 162686, + [SMALL_STATE(4396)] = 162693, + [SMALL_STATE(4397)] = 162700, + [SMALL_STATE(4398)] = 162707, + [SMALL_STATE(4399)] = 162714, + [SMALL_STATE(4400)] = 162721, + [SMALL_STATE(4401)] = 162728, + [SMALL_STATE(4402)] = 162735, + [SMALL_STATE(4403)] = 162742, + [SMALL_STATE(4404)] = 162749, + [SMALL_STATE(4405)] = 162756, + [SMALL_STATE(4406)] = 162763, + [SMALL_STATE(4407)] = 162770, + [SMALL_STATE(4408)] = 162777, + [SMALL_STATE(4409)] = 162784, + [SMALL_STATE(4410)] = 162791, + [SMALL_STATE(4411)] = 162798, + [SMALL_STATE(4412)] = 162805, + [SMALL_STATE(4413)] = 162812, + [SMALL_STATE(4414)] = 162819, + [SMALL_STATE(4415)] = 162826, + [SMALL_STATE(4416)] = 162833, + [SMALL_STATE(4417)] = 162840, + [SMALL_STATE(4418)] = 162847, + [SMALL_STATE(4419)] = 162854, + [SMALL_STATE(4420)] = 162861, + [SMALL_STATE(4421)] = 162868, + [SMALL_STATE(4422)] = 162875, + [SMALL_STATE(4423)] = 162882, + [SMALL_STATE(4424)] = 162889, + [SMALL_STATE(4425)] = 162896, + [SMALL_STATE(4426)] = 162903, + [SMALL_STATE(4427)] = 162910, + [SMALL_STATE(4428)] = 162917, + [SMALL_STATE(4429)] = 162924, + [SMALL_STATE(4430)] = 162931, + [SMALL_STATE(4431)] = 162938, + [SMALL_STATE(4432)] = 162945, + [SMALL_STATE(4433)] = 162952, + [SMALL_STATE(4434)] = 162959, + [SMALL_STATE(4435)] = 162966, + [SMALL_STATE(4436)] = 162973, + [SMALL_STATE(4437)] = 162980, + [SMALL_STATE(4438)] = 162987, + [SMALL_STATE(4439)] = 162994, + [SMALL_STATE(4440)] = 163001, + [SMALL_STATE(4441)] = 163008, + [SMALL_STATE(4442)] = 163015, + [SMALL_STATE(4443)] = 163022, + [SMALL_STATE(4444)] = 163029, + [SMALL_STATE(4445)] = 163036, + [SMALL_STATE(4446)] = 163043, + [SMALL_STATE(4447)] = 163050, + [SMALL_STATE(4448)] = 163057, + [SMALL_STATE(4449)] = 163064, + [SMALL_STATE(4450)] = 163071, + [SMALL_STATE(4451)] = 163078, + [SMALL_STATE(4452)] = 163085, + [SMALL_STATE(4453)] = 163092, + [SMALL_STATE(4454)] = 163099, + [SMALL_STATE(4455)] = 163106, + [SMALL_STATE(4456)] = 163113, + [SMALL_STATE(4457)] = 163120, + [SMALL_STATE(4458)] = 163127, + [SMALL_STATE(4459)] = 163134, + [SMALL_STATE(4460)] = 163141, + [SMALL_STATE(4461)] = 163148, + [SMALL_STATE(4462)] = 163155, + [SMALL_STATE(4463)] = 163162, + [SMALL_STATE(4464)] = 163169, + [SMALL_STATE(4465)] = 163176, + [SMALL_STATE(4466)] = 163183, + [SMALL_STATE(4467)] = 163190, + [SMALL_STATE(4468)] = 163197, + [SMALL_STATE(4469)] = 163204, + [SMALL_STATE(4470)] = 163211, + [SMALL_STATE(4471)] = 163218, + [SMALL_STATE(4472)] = 163225, + [SMALL_STATE(4473)] = 163232, + [SMALL_STATE(4474)] = 163239, + [SMALL_STATE(4475)] = 163246, + [SMALL_STATE(4476)] = 163253, + [SMALL_STATE(4477)] = 163260, + [SMALL_STATE(4478)] = 163267, + [SMALL_STATE(4479)] = 163274, + [SMALL_STATE(4480)] = 163281, + [SMALL_STATE(4481)] = 163288, + [SMALL_STATE(4482)] = 163295, + [SMALL_STATE(4483)] = 163302, + [SMALL_STATE(4484)] = 163309, + [SMALL_STATE(4485)] = 163316, + [SMALL_STATE(4486)] = 163323, + [SMALL_STATE(4487)] = 163330, + [SMALL_STATE(4488)] = 163337, + [SMALL_STATE(4489)] = 163344, + [SMALL_STATE(4490)] = 163351, + [SMALL_STATE(4491)] = 163358, + [SMALL_STATE(4492)] = 163365, + [SMALL_STATE(4493)] = 163372, + [SMALL_STATE(4494)] = 163379, + [SMALL_STATE(4495)] = 163386, + [SMALL_STATE(4496)] = 163393, + [SMALL_STATE(4497)] = 163400, + [SMALL_STATE(4498)] = 163407, + [SMALL_STATE(4499)] = 163414, + [SMALL_STATE(4500)] = 163421, + [SMALL_STATE(4501)] = 163428, + [SMALL_STATE(4502)] = 163435, + [SMALL_STATE(4503)] = 163442, + [SMALL_STATE(4504)] = 163449, + [SMALL_STATE(4505)] = 163456, + [SMALL_STATE(4506)] = 163463, + [SMALL_STATE(4507)] = 163470, + [SMALL_STATE(4508)] = 163477, + [SMALL_STATE(4509)] = 163484, + [SMALL_STATE(4510)] = 163491, + [SMALL_STATE(4511)] = 163498, + [SMALL_STATE(4512)] = 163505, + [SMALL_STATE(4513)] = 163512, + [SMALL_STATE(4514)] = 163519, + [SMALL_STATE(4515)] = 163526, + [SMALL_STATE(4516)] = 163533, + [SMALL_STATE(4517)] = 163540, + [SMALL_STATE(4518)] = 163547, + [SMALL_STATE(4519)] = 163554, + [SMALL_STATE(4520)] = 163561, + [SMALL_STATE(4521)] = 163568, + [SMALL_STATE(4522)] = 163575, + [SMALL_STATE(4523)] = 163582, + [SMALL_STATE(4524)] = 163589, + [SMALL_STATE(4525)] = 163596, + [SMALL_STATE(4526)] = 163603, + [SMALL_STATE(4527)] = 163610, + [SMALL_STATE(4528)] = 163617, + [SMALL_STATE(4529)] = 163624, + [SMALL_STATE(4530)] = 163631, + [SMALL_STATE(4531)] = 163638, + [SMALL_STATE(4532)] = 163645, + [SMALL_STATE(4533)] = 163652, + [SMALL_STATE(4534)] = 163659, + [SMALL_STATE(4535)] = 163666, + [SMALL_STATE(4536)] = 163673, + [SMALL_STATE(4537)] = 163680, + [SMALL_STATE(4538)] = 163687, }; static TSParseActionEntry ts_parse_actions[] = { @@ -191775,3457 +218345,3748 @@ static 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(1095), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1095), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(189), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(880), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(154), [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(714), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(788), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(322), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1184), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2622), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2626), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2520), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(441), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3635), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3631), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3250), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(139), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(449), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3627), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(54), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3624), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3623), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3255), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3260), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3603), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(211), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(281), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(581), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(86), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(159), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2748), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3974), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2368), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(528), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2525), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(304), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(337), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(346), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3186), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3183), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2744), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1749), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1749), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3278), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1094), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3966), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(289), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(716), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3965), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3962), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(784), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(830), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(332), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1393), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3151), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3139), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2883), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(367), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3973), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3971), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3885), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(138), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(387), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3959), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(45), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3946), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3937), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3928), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3923), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3936), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(185), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(286), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(649), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(77), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(162), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3062), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4367), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2674), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(576), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2933), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(280), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(460), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(461), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3622), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3621), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3084), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1630), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1630), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3776), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(868), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4210), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(179), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(775), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4303), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4261), [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 83), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 83), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 81), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 81), [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 83), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 83), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 81), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 81), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 60), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 60), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 60), - [961] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 60), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 60), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(390), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 102), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 102), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 102), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 102), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 110), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 110), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 110), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 110), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 135), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 135), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 135), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 135), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 169), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 169), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 169), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 169), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 51), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 51), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 101), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 101), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 101), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 101), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 139), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 139), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 139), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 139), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 139), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 139), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 139), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 139), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 116), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 116), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 116), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 116), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 146), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 146), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 146), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 146), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 166), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 166), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 166), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 166), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 145), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 145), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 28), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 28), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 114), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 114), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 27), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 27), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 78), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 78), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 67), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 67), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 61), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 61), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(38), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2201), - [1737] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2074), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1743] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3465), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 4), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 4), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 3), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 3), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 2), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 2), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 52), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 52), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2074), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3465), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(230), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(969), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, .production_id = 52), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, .production_id = 52), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(969), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 168), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 168), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 204), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 204), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(256), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 36), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 36), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 179), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 179), - [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_catch_clause, 5, .production_id = 178), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 178), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 180), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 180), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 141), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 141), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 124), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 124), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 123), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 123), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 166), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 166), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 151), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 151), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 148), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 148), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 51), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 51), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 189), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 189), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 116), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 116), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 144), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 144), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 128), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 128), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 95), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 95), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 73), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 73), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 76), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 76), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 102), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 102), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 47), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 47), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 90), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 90), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 47), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 47), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 139), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 139), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 46), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 46), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 45), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 45), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 177), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 177), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 171), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 171), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 170), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 170), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 139), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 139), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 43), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 43), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 167), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 167), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 89), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 89), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 88), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 88), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 138), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 138), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 154), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 154), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 110), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 110), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 102), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 102), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 109), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 109), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 37), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 37), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 115), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 115), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 155), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 155), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 152), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 152), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 176), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 176), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 156), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 156), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 174), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 174), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 175), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 175), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 153), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 153), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 173), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 173), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(969), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 60), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(943), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(257), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 113), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 113), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 121), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 121), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 140), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 140), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 25), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 25), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 77), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 77), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 60), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(924), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rest_identifier, 2), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 52), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 52), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(937), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_identifier, 1), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [3052] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(3753), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(351), - [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [3068] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [3141] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(228), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__rest_identifier, 2), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(1052), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1052), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 29), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 29), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 29), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 29), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 65), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 62), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(83), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 59), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 59), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 69), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 71), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 62), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 26), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 105), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 107), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 108), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 9), - [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(260), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), - [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(263), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 143), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 58), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 58), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 55), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 55), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 68), REDUCE(sym_assignment_expression, 3, .production_id = 68), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 68), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 70), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 70), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 71), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 26), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 19), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 19), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 129), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 129), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 147), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 147), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 137), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 137), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 48), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 48), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 98), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 98), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 96), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 96), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 118), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 118), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 117), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 117), - [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 69), REDUCE(sym_assignment_expression, 3, .production_id = 69), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 69), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 99), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 99), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 13), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 13), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 79), REDUCE(sym_assignment_expression, 3, .production_id = 62), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 79), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 112), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 112), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 111), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 111), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 106), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 106), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 108), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 107), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 106), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 106), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 79), REDUCE(sym_assignment_expression, 3, .production_id = 23), - [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(82), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 105), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(76), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 83), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 143), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(81), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(76), - [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(79), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(79), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 50), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 50), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(1003), - [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1003), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 69), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 62), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(77), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(914), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(914), - [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 80), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(77), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), - [4053] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(227), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(226), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2315), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2211), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(280), - [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2048), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3842), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3139), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3138), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2249), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3278), - [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2044), - [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2198), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2105), - [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2042), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2022), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 11), SHIFT(328), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(325), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 11), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 60), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 60), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 172), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 172), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 81), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 81), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 139), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 139), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 166), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 166), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 205), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 205), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 200), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 200), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 199), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 199), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 191), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 191), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 190), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 190), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 150), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 150), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 122), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 122), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 110), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 110), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), SHIFT_REPEAT(3278), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), SHIFT(3371), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 48), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_jsx_namespace_name, 3), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 165), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 130), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 130), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 165), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 48), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_type_parameter, 1, .production_id = 14), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(1044), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 130), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 48), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 48), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 130), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 165), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 165), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(3753), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 5), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(2576), - [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(177), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 97), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 97), - [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(2576), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [5065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(176), - [5068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2957), - [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2430), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 158), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 138), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 181), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 182), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 193), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 194), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 134), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 109), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 201), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 202), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 207), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 157), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 126), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 100), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2615), - [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [5315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(237), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 66), - [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1242), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 72), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3748), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(231), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 184), - [5643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 197), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), - [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 103), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 188), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 132), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 31), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 92), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 84), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 160), - [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 162), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 160), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 162), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 192), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 206), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 39), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 84), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 91), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 188), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 93), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 184), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 31), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 91), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 197), - [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 49), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 49), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 132), - [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 35), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 41), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 192), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(158), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 14), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2672), - [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 52), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(180), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), - [5996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 52), - [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 1), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 14), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(188), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3156), - [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3156), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [6051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3157), - [6054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3157), - [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 96), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 120), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 203), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 48), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(956), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 120), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1976), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 163), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 133), - [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2116), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 22), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 129), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 87), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 193), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 198), - [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3198), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 196), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 86), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 158), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 138), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 85), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 164), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 131), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 84), - [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 183), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 195), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 161), - [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 185), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 186), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 181), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 109), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 187), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 182), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 48), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 159), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 98), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3595), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3109), - [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), SHIFT_REPEAT(697), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(2195), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 85), - [6491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(859), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 14), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 82), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 42), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, .production_id = 125), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 42), - [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_tuple_type_member, 2), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 127), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 119), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 94), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 120), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 94), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 149), - [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 74), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 82), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_identifier, 2), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 82), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 82), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [7024] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_identifier, 1), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(298), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(325), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), + [900] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 120), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 6), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 6), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 107), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 107), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 107), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 107), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 51), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 51), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 147), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 147), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 147), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 147), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 138), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 138), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 138), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 138), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 7), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 7), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 146), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 146), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 146), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 146), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 167), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 167), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 167), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 167), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 138), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 138), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 138), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 138), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 135), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 135), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 135), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 135), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 115), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 115), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 115), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 115), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 28), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 28), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 100), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 100), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 100), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 100), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 99), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 99), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 170), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 170), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 170), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 170), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 26), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 26), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 113), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 113), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 5), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 5), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 16), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 16), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 27), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 27), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 59), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 59), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 60), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 60), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 76), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 76), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(159), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(48), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1384] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(1082), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 8), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1082), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2536), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(135), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1628] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(944), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 120), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 120), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 9), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 9), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 3), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 3), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 2), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 2), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 4), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 4), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 52), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 52), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(275), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(944), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(129), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3064), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(135), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3084), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(130), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3006), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(136), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, .production_id = 52), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, .production_id = 52), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1305), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(254), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 14), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 14), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 120), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(1305), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 169), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 169), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 200), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 200), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 179), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 179), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 180), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 180), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 14), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 14), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 181), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 181), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 36), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 36), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 47), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 47), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 137), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 137), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 106), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 106), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 149), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 149), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 123), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 123), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 145), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 145), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 114), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 114), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 45), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 45), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 46), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 46), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 143), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 143), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 93), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 93), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 124), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 124), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 14), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 14), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 63), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 63), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 190), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 190), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 170), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 170), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 100), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 100), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 73), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 73), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 47), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 47), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 70), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 70), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 152), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 152), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 167), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 167), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 128), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 128), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 7), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 7), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 138), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 138), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 138), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 138), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 107), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 107), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 168), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 168), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 155), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 155), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 178), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 178), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 88), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 88), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 100), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 100), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 146), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 146), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 171), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 171), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 172), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 172), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 43), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 43), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 51), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 51), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 87), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 87), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 37), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 37), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 86), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 86), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 175), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 175), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 177), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 177), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 156), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 156), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 176), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 176), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 153), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 153), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 154), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 154), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 157), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 157), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 174), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 174), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(168), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(159), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1215), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(171), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1023), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 6), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(253), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1082), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2647] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(1082), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 8), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1189), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 120), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 52), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1309), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 52), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(383), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2703] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_identifier, 1), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [2718] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(4485), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rest_identifier, 2), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(346), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1057), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 24), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 24), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(159), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3084), + [2780] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(168), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3064), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 121), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 121), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 141), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 141), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(273), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 112), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 112), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(171), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3006), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__rest_identifier, 2), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 120), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 11), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(251), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(252), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1290), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 29), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 29), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1290), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 29), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 29), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 120), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), + [3677] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(270), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(271), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 25), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 25), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 9), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 9), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 148), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 148), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 14), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 14), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), + [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 13), SHIFT(314), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 13), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 13), + [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 13), + [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(317), + [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 113), REDUCE(sym_new_expression, 5, .production_id = 140), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 113), REDUCE(sym_new_expression, 5, .production_id = 140), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 140), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 76), REDUCE(sym_new_expression, 5, .production_id = 139), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 76), REDUCE(sym_new_expression, 5, .production_id = 139), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 139), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 136), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 136), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 96), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 96), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 55), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 55), + [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 5), REDUCE(sym_new_expression, 3, .production_id = 56), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 5), REDUCE(sym_new_expression, 3, .production_id = 56), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 16), REDUCE(sym_new_expression, 3, .production_id = 57), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 16), REDUCE(sym_new_expression, 3, .production_id = 57), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1), SHIFT(159), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [3860] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), SHIFT(1082), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 18), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 18), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 13), SHIFT(424), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 62), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 62), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 59), REDUCE(sym_new_expression, 4, .production_id = 110), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 59), REDUCE(sym_new_expression, 4, .production_id = 110), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 110), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(419), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 27), REDUCE(sym_new_expression, 4, .production_id = 109), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 27), REDUCE(sym_new_expression, 4, .production_id = 109), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 109), + [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 117), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 117), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 116), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 116), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 129), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 129), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 26), REDUCE(sym_new_expression, 4, .production_id = 108), + [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 26), REDUCE(sym_new_expression, 4, .production_id = 108), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 108), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 64), + [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 60), REDUCE(sym_new_expression, 4, .production_id = 111), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 60), REDUCE(sym_new_expression, 4, .production_id = 111), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 67), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 67), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 68), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 68), + [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 103), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 103), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 105), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 105), + [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 104), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 104), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 103), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 103), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 102), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 102), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 101), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 101), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 97), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 97), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 48), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 48), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1078), + [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1078), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 50), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 50), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1075), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [4021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1075), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 61), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 61), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 144), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2637), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2526), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(287), + [4190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2327), + [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4263), + [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3582), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3580), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2579), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3776), + [4208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2299), + [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2520), + [4214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2411), + [4217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2236), + [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2220), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 61), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 108), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 109), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 110), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 139), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 140), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 144), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 61), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), REDUCE(sym_assignment_expression, 3, .production_id = 66), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 77), REDUCE(sym_assignment_expression, 3, .production_id = 22), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 77), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 77), REDUCE(sym_assignment_expression, 3, .production_id = 61), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), REDUCE(sym_assignment_expression, 3, .production_id = 65), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 61), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 81), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 78), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 16), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 16), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 138), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 138), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 202), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 202), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 122), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 122), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 206), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 206), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 173), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 173), + [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 191), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 191), + [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 167), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 167), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 107), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 107), + [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 79), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 79), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 151), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 151), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 192), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 192), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 201), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 201), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), + [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT_REPEAT(3776), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 15), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 15), SHIFT(3795), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 130), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 48), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), REDUCE(sym_type_parameter, 1, .production_id = 15), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1283), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 166), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), REDUCE(sym_jsx_namespace_name, 3), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 6), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 166), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 130), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 6), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 48), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 166), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 48), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 48), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 130), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 130), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 6), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 166), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 6), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(4485), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 95), SHIFT_REPEAT(2949), + [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 95), SHIFT_REPEAT(174), + [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 95), + [5427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 95), + [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 95), SHIFT_REPEAT(2949), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(175), + [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(3345), + [5464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2728), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 5), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 98), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 126), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 106), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 134), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 8), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 8), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 159), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 137), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 182), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 183), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 194), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 195), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 203), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 204), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 208), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 158), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3002), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(240), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1465), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4353), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(276), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 69), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 185), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 8), + [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 8), + [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 163), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 161), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 189), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 35), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 41), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 207), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 163), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 161), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 49), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 49), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 31), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 89), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 31), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 198), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 132), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 82), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 185), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 198), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 91), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), + [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 89), + [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 189), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 193), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 82), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 193), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 132), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 39), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 75), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 52), + [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 52), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(213), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(3099), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [6427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3522), + [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3522), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3525), + [6442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3525), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 1), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [6535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(203), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 15), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 15), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(160), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1158), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [6710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1217), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 6), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [6753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3535), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [6758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 129), + [6760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), SHIFT_REPEAT(774), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), + [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 48), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1277), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1061), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 182), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 160), + [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 48), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 162), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 164), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 119), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 187), + [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 186), + [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(4068), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 184), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 137), + [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 159), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3488), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 119), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 205), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 165), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 183), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 188), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 82), + [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 83), + [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 84), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 85), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 196), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), SHIFT_REPEAT(2426), + [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), + [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), + [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 131), + [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2018), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [6991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 96), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 197), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 83), + [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 199), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 133), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 106), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 194), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [7053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(2518), + [7056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 94), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 92), + [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 15), + [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 92), + [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 42), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 118), + [7102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 119), + [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_type_arguments, 3), + [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 42), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 150), + [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [7124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_tuple_type_member, 2), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_type_arguments, 4), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 71), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 80), + [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_type_arguments, 5), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, .production_id = 125), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 127), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 80), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7308] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_identifier, 1), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 80), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_identifier, 2), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 80), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), }; #ifdef __cplusplus diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index f0e76ad1..394d97fe 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -3113,99 +3113,57 @@ ] }, "call_expression": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "PREC", - "value": 11, + "type": "FIELD", + "name": "function", "content": { - "type": "SEQ", + "type": "SYMBOL", + "name": "_primary_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?." + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "type_arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "call_type_arguments" }, { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "arguments" - }, - { - "type": "SYMBOL", - "name": "template_string" - } - ] - } + "type": "BLANK" } ] } }, { - "type": "PREC", - "value": 14, + "type": "FIELD", + "name": "arguments", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_primary_expression" - } - }, - { - "type": "STRING", - "value": "?." - }, - { - "type": "FIELD", - "name": "type_arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "arguments" }, { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "arguments" - } + "type": "SYMBOL", + "name": "template_string" } ] } @@ -3213,57 +3171,71 @@ ] }, "new_expression": { - "type": "PREC_RIGHT", - "value": 12, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "new" - }, - { - "type": "FIELD", - "name": "constructor", - "content": { - "type": "SYMBOL", - "name": "_primary_expression" - } - }, - { - "type": "FIELD", - "name": "type_arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "constructor", + "content": { + "type": "SYMBOL", + "name": "_primary_expression" + } + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "arguments" + "type": "STRING", + "value": "?." }, { "type": "BLANK" } ] + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "call_type_arguments" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "SYMBOL", + "name": "template_string" + } + ] + } } - } - ] - } + ] + } + ] }, "await_expression": { "type": "SEQ", @@ -8163,7 +8135,7 @@ }, "type_query": { "type": "PREC", - "value": 7, + "value": 18, "content": { "type": "SEQ", "members": [ @@ -8456,6 +8428,56 @@ } ] }, + "call_type_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_call_type_arguments_closing_bracket" + } + ] + }, "object_type": { "type": "SEQ", "members": [ @@ -9246,13 +9268,53 @@ "_expression" ], [ + "_expression", + "call_expression" + ], + [ + "_expression", + "arrow_function", + "call_expression" + ], + [ + "arrow_function", + "call_expression", + "_property_name" + ], + [ + "_expression", + "arrow_function", + "call_expression", + "_property_name" + ], + [ + "call_expression", + "_property_name" + ], + [ + "_expression", + "call_expression", + "_property_name" + ], + [ + "_expression", + "call_expression", + "generic_type" + ], + [ + "_expression", + "call_expression", + "new_expression" + ], + [ + "_expression", + "arrow_function", "call_expression", - "binary_expression" + "new_expression" ], [ "call_expression", - "binary_expression", - "unary_expression" + "new_expression" ], [ "nested_type_identifier", @@ -9393,6 +9455,10 @@ { "type": "SYMBOL", "name": "_function_signature_automatic_semicolon" + }, + { + "type": "SYMBOL", + "name": "_call_type_arguments_closing_bracket" } ], "inline": [ diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index c1f8119d..7f3d5822 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -1257,7 +1257,95 @@ "required": true, "types": [ { - "type": "_expression", + "type": "array", + "named": true + }, + { + "type": "arrow_function", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "class", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "function", + "named": true + }, + { + "type": "generator_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "import", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "meta_property", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "regex", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "template_string", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "undefined", "named": true } ] @@ -1267,7 +1355,7 @@ "required": false, "types": [ { - "type": "type_arguments", + "type": "call_type_arguments", "named": true } ] @@ -1318,6 +1406,101 @@ } } }, + { + "type": "call_type_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "array_type", + "named": true + }, + { + "type": "conditional_type", + "named": true + }, + { + "type": "constructor_type", + "named": true + }, + { + "type": "existential_type", + "named": true + }, + { + "type": "flow_maybe_type", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "generic_type", + "named": true + }, + { + "type": "index_type_query", + "named": true + }, + { + "type": "infer_type", + "named": true + }, + { + "type": "intersection_type", + "named": true + }, + { + "type": "literal_type", + "named": true + }, + { + "type": "lookup_type", + "named": true + }, + { + "type": "nested_type_identifier", + "named": true + }, + { + "type": "object_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "predefined_type", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "tuple_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_query", + "named": true + }, + { + "type": "union_type", + "named": true + } + ] + } + }, { "type": "catch_clause", "named": true, @@ -4732,11 +4915,15 @@ "fields": { "arguments": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "arguments", "named": true + }, + { + "type": "template_string", + "named": true } ] }, @@ -4843,7 +5030,7 @@ "required": false, "types": [ { - "type": "type_arguments", + "type": "call_type_arguments", "named": true } ] @@ -7480,11 +7667,11 @@ }, { "type": "number", - "named": true + "named": false }, { "type": "number", - "named": false + "named": true }, { "type": "of", diff --git a/typescript/src/parser.c b/typescript/src/parser.c index daf47392..61b41efc 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -6,12 +6,12 @@ #endif #define LANGUAGE_VERSION 12 -#define STATE_COUNT 3757 -#define LARGE_STATE_COUNT 693 -#define SYMBOL_COUNT 326 +#define STATE_COUNT 4301 +#define LARGE_STATE_COUNT 788 +#define SYMBOL_COUNT 328 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 150 -#define EXTERNAL_TOKEN_COUNT 4 +#define TOKEN_COUNT 151 +#define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -165,189 +165,191 @@ enum { sym__automatic_semicolon = 147, sym__template_chars = 148, sym__function_signature_automatic_semicolon = 149, - sym_program = 150, - sym_export_statement = 151, - sym_export_clause = 152, - sym__import_export_specifier = 153, - sym__declaration = 154, - sym_import = 155, - sym_import_statement = 156, - sym_import_clause = 157, - sym__from_clause = 158, - sym_namespace_import = 159, - sym_named_imports = 160, - sym_expression_statement = 161, - sym_variable_declaration = 162, - sym_lexical_declaration = 163, - sym_variable_declarator = 164, - sym_statement_block = 165, - sym_else_clause = 166, - sym_if_statement = 167, - sym_switch_statement = 168, - sym_for_statement = 169, - sym_for_in_statement = 170, - sym__for_header = 171, - sym_while_statement = 172, - sym_do_statement = 173, - sym_try_statement = 174, - sym_with_statement = 175, - sym_break_statement = 176, - sym_continue_statement = 177, - sym_debugger_statement = 178, - sym_return_statement = 179, - sym_throw_statement = 180, - sym_empty_statement = 181, - sym_labeled_statement = 182, - sym_switch_body = 183, - sym_switch_case = 184, - sym_switch_default = 185, - sym_catch_clause = 186, - sym_finally_clause = 187, - sym_parenthesized_expression = 188, - sym__expression = 189, - sym_yield_expression = 190, - sym_object = 191, - sym_assignment_pattern = 192, - sym_array = 193, - sym_nested_identifier = 194, - sym_class = 195, - sym_class_declaration = 196, - sym_class_heritage = 197, - sym_function = 198, - sym_function_declaration = 199, - sym_generator_function = 200, - sym_generator_function_declaration = 201, - sym_arrow_function = 202, - sym__call_signature = 203, - sym_call_expression = 204, - sym_new_expression = 205, - sym_await_expression = 206, - sym_member_expression = 207, - sym_subscript_expression = 208, - sym_assignment_expression = 209, - sym__augmented_assignment_lhs = 210, - sym_augmented_assignment_expression = 211, - sym__initializer = 212, - sym_spread_element = 213, - sym_ternary_expression = 214, - sym_binary_expression = 215, - sym_unary_expression = 216, - sym_update_expression = 217, - sym_sequence_expression = 218, - sym_string = 219, - sym_template_string = 220, - sym_template_substitution = 221, - sym_regex = 222, - sym_meta_property = 223, - sym_arguments = 224, - sym_decorator = 225, - sym_decorator_member_expression = 226, - sym_decorator_call_expression = 227, - sym_class_body = 228, - sym_public_field_definition = 229, - sym_formal_parameters = 230, - sym_rest_parameter = 231, - sym_method_definition = 232, - sym_pair = 233, - sym__property_name = 234, - sym_computed_property_name = 235, - sym_non_null_expression = 236, - sym_method_signature = 237, - sym_abstract_method_signature = 238, - sym_function_signature = 239, - sym_type_assertion = 240, - sym_as_expression = 241, - sym_import_require_clause = 242, - sym_implements_clause = 243, - sym_ambient_declaration = 244, - sym_abstract_class_declaration = 245, - sym_module = 246, - sym_internal_module = 247, - sym__module = 248, - sym_import_alias = 249, - sym_nested_type_identifier = 250, - sym_interface_declaration = 251, - sym_extends_clause = 252, - sym_enum_declaration = 253, - sym_enum_body = 254, - sym_enum_assignment = 255, - sym_type_alias_declaration = 256, - sym_accessibility_modifier = 257, - sym_required_parameter = 258, - sym_optional_parameter = 259, - sym__parameter_name = 260, - sym__rest_identifier = 261, - sym_rest_identifier = 262, - sym_omitting_type_annotation = 263, - sym_opting_type_annotation = 264, - sym_type_annotation = 265, - sym_asserts = 266, - sym__type = 267, - sym_optional_identifier = 268, - sym__tuple_type_identifier = 269, - sym_labeled_tuple_type_member = 270, - sym_optional_type = 271, - sym_rest_type = 272, - sym__tuple_type_member = 273, - sym_constructor_type = 274, - sym__primary_type = 275, - sym_infer_type = 276, - sym_conditional_type = 277, - sym_generic_type = 278, - sym_type_predicate = 279, - sym_type_predicate_annotation = 280, - sym_type_query = 281, - sym_index_type_query = 282, - sym_lookup_type = 283, - sym_mapped_type_clause = 284, - sym_literal_type = 285, - sym__number = 286, - sym_existential_type = 287, - sym_flow_maybe_type = 288, - sym_parenthesized_type = 289, - sym_predefined_type = 290, - sym_type_arguments = 291, - sym_object_type = 292, - sym_call_signature = 293, - sym_property_signature = 294, - sym_type_parameters = 295, - sym_type_parameter = 296, - sym_default_type = 297, - sym_constraint = 298, - sym_construct_signature = 299, - sym_index_signature = 300, - sym_array_type = 301, - sym__tuple_type_body = 302, - sym_tuple_type = 303, - sym_union_type = 304, - sym_intersection_type = 305, - sym_function_type = 306, - aux_sym_program_repeat1 = 307, - aux_sym_export_statement_repeat1 = 308, - aux_sym_export_clause_repeat1 = 309, - aux_sym_named_imports_repeat1 = 310, - aux_sym_variable_declaration_repeat1 = 311, - aux_sym_switch_body_repeat1 = 312, - aux_sym_object_repeat1 = 313, - aux_sym_array_repeat1 = 314, - aux_sym_string_repeat1 = 315, - aux_sym_string_repeat2 = 316, - aux_sym_template_string_repeat1 = 317, - aux_sym_class_body_repeat1 = 318, - aux_sym_formal_parameters_repeat1 = 319, - aux_sym_implements_clause_repeat1 = 320, - aux_sym_extends_clause_repeat1 = 321, - aux_sym_enum_body_repeat1 = 322, - aux_sym_object_type_repeat1 = 323, - aux_sym_type_parameters_repeat1 = 324, - aux_sym__tuple_type_body_repeat1 = 325, - alias_sym_array_pattern = 326, - alias_sym_import_specifier = 327, - alias_sym_object_pattern = 328, - alias_sym_property_identifier = 329, - alias_sym_shorthand_property_identifier = 330, - alias_sym_statement_identifier = 331, - alias_sym_type_identifier = 332, + sym__call_type_arguments_closing_bracket = 150, + sym_program = 151, + sym_export_statement = 152, + sym_export_clause = 153, + sym__import_export_specifier = 154, + sym__declaration = 155, + sym_import = 156, + sym_import_statement = 157, + sym_import_clause = 158, + sym__from_clause = 159, + sym_namespace_import = 160, + sym_named_imports = 161, + sym_expression_statement = 162, + sym_variable_declaration = 163, + sym_lexical_declaration = 164, + sym_variable_declarator = 165, + sym_statement_block = 166, + sym_else_clause = 167, + sym_if_statement = 168, + sym_switch_statement = 169, + sym_for_statement = 170, + sym_for_in_statement = 171, + sym__for_header = 172, + sym_while_statement = 173, + sym_do_statement = 174, + sym_try_statement = 175, + sym_with_statement = 176, + sym_break_statement = 177, + sym_continue_statement = 178, + sym_debugger_statement = 179, + sym_return_statement = 180, + sym_throw_statement = 181, + sym_empty_statement = 182, + sym_labeled_statement = 183, + sym_switch_body = 184, + sym_switch_case = 185, + sym_switch_default = 186, + sym_catch_clause = 187, + sym_finally_clause = 188, + sym_parenthesized_expression = 189, + sym__expression = 190, + sym_yield_expression = 191, + sym_object = 192, + sym_assignment_pattern = 193, + sym_array = 194, + sym_nested_identifier = 195, + sym_class = 196, + sym_class_declaration = 197, + sym_class_heritage = 198, + sym_function = 199, + sym_function_declaration = 200, + sym_generator_function = 201, + sym_generator_function_declaration = 202, + sym_arrow_function = 203, + sym__call_signature = 204, + sym_call_expression = 205, + sym_new_expression = 206, + sym_await_expression = 207, + sym_member_expression = 208, + sym_subscript_expression = 209, + sym_assignment_expression = 210, + sym__augmented_assignment_lhs = 211, + sym_augmented_assignment_expression = 212, + sym__initializer = 213, + sym_spread_element = 214, + sym_ternary_expression = 215, + sym_binary_expression = 216, + sym_unary_expression = 217, + sym_update_expression = 218, + sym_sequence_expression = 219, + sym_string = 220, + sym_template_string = 221, + sym_template_substitution = 222, + sym_regex = 223, + sym_meta_property = 224, + sym_arguments = 225, + sym_decorator = 226, + sym_decorator_member_expression = 227, + sym_decorator_call_expression = 228, + sym_class_body = 229, + sym_public_field_definition = 230, + sym_formal_parameters = 231, + sym_rest_parameter = 232, + sym_method_definition = 233, + sym_pair = 234, + sym__property_name = 235, + sym_computed_property_name = 236, + sym_non_null_expression = 237, + sym_method_signature = 238, + sym_abstract_method_signature = 239, + sym_function_signature = 240, + sym_type_assertion = 241, + sym_as_expression = 242, + sym_import_require_clause = 243, + sym_implements_clause = 244, + sym_ambient_declaration = 245, + sym_abstract_class_declaration = 246, + sym_module = 247, + sym_internal_module = 248, + sym__module = 249, + sym_import_alias = 250, + sym_nested_type_identifier = 251, + sym_interface_declaration = 252, + sym_extends_clause = 253, + sym_enum_declaration = 254, + sym_enum_body = 255, + sym_enum_assignment = 256, + sym_type_alias_declaration = 257, + sym_accessibility_modifier = 258, + sym_required_parameter = 259, + sym_optional_parameter = 260, + sym__parameter_name = 261, + sym__rest_identifier = 262, + sym_rest_identifier = 263, + sym_omitting_type_annotation = 264, + sym_opting_type_annotation = 265, + sym_type_annotation = 266, + sym_asserts = 267, + sym__type = 268, + sym_optional_identifier = 269, + sym__tuple_type_identifier = 270, + sym_labeled_tuple_type_member = 271, + sym_optional_type = 272, + sym_rest_type = 273, + sym__tuple_type_member = 274, + sym_constructor_type = 275, + sym__primary_type = 276, + sym_infer_type = 277, + sym_conditional_type = 278, + sym_generic_type = 279, + sym_type_predicate = 280, + sym_type_predicate_annotation = 281, + sym_type_query = 282, + sym_index_type_query = 283, + sym_lookup_type = 284, + sym_mapped_type_clause = 285, + sym_literal_type = 286, + sym__number = 287, + sym_existential_type = 288, + sym_flow_maybe_type = 289, + sym_parenthesized_type = 290, + sym_predefined_type = 291, + sym_type_arguments = 292, + sym_call_type_arguments = 293, + sym_object_type = 294, + sym_call_signature = 295, + sym_property_signature = 296, + sym_type_parameters = 297, + sym_type_parameter = 298, + sym_default_type = 299, + sym_constraint = 300, + sym_construct_signature = 301, + sym_index_signature = 302, + sym_array_type = 303, + sym__tuple_type_body = 304, + sym_tuple_type = 305, + sym_union_type = 306, + sym_intersection_type = 307, + sym_function_type = 308, + aux_sym_program_repeat1 = 309, + aux_sym_export_statement_repeat1 = 310, + aux_sym_export_clause_repeat1 = 311, + aux_sym_named_imports_repeat1 = 312, + aux_sym_variable_declaration_repeat1 = 313, + aux_sym_switch_body_repeat1 = 314, + aux_sym_object_repeat1 = 315, + aux_sym_array_repeat1 = 316, + aux_sym_string_repeat1 = 317, + aux_sym_string_repeat2 = 318, + aux_sym_template_string_repeat1 = 319, + aux_sym_class_body_repeat1 = 320, + aux_sym_formal_parameters_repeat1 = 321, + aux_sym_implements_clause_repeat1 = 322, + aux_sym_extends_clause_repeat1 = 323, + aux_sym_enum_body_repeat1 = 324, + aux_sym_object_type_repeat1 = 325, + aux_sym_type_parameters_repeat1 = 326, + aux_sym__tuple_type_body_repeat1 = 327, + alias_sym_array_pattern = 328, + alias_sym_import_specifier = 329, + alias_sym_object_pattern = 330, + alias_sym_property_identifier = 331, + alias_sym_shorthand_property_identifier = 332, + alias_sym_statement_identifier = 333, + alias_sym_type_identifier = 334, }; static const char *ts_symbol_names[] = { @@ -501,6 +503,7 @@ static const char *ts_symbol_names[] = { [sym__automatic_semicolon] = "_automatic_semicolon", [sym__template_chars] = "_template_chars", [sym__function_signature_automatic_semicolon] = "_function_signature_automatic_semicolon", + [sym__call_type_arguments_closing_bracket] = "_call_type_arguments_closing_bracket", [sym_program] = "program", [sym_export_statement] = "export_statement", [sym_export_clause] = "export_clause", @@ -643,6 +646,7 @@ static const char *ts_symbol_names[] = { [sym_parenthesized_type] = "parenthesized_type", [sym_predefined_type] = "predefined_type", [sym_type_arguments] = "type_arguments", + [sym_call_type_arguments] = "call_type_arguments", [sym_object_type] = "object_type", [sym_call_signature] = "call_signature", [sym_property_signature] = "property_signature", @@ -837,6 +841,7 @@ static TSSymbol ts_symbol_map[] = { [sym__automatic_semicolon] = sym__automatic_semicolon, [sym__template_chars] = sym__template_chars, [sym__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, + [sym__call_type_arguments_closing_bracket] = sym__call_type_arguments_closing_bracket, [sym_program] = sym_program, [sym_export_statement] = sym_export_statement, [sym_export_clause] = sym_export_clause, @@ -979,6 +984,7 @@ static TSSymbol ts_symbol_map[] = { [sym_parenthesized_type] = sym_parenthesized_type, [sym_predefined_type] = sym_predefined_type, [sym_type_arguments] = sym_type_arguments, + [sym_call_type_arguments] = sym_call_type_arguments, [sym_object_type] = sym_object_type, [sym_call_signature] = sym_call_signature, [sym_property_signature] = sym_property_signature, @@ -1623,6 +1629,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__call_type_arguments_closing_bracket] = { + .visible = false, + .named = true, + }, [sym_program] = { .visible = true, .named = true, @@ -2193,6 +2203,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_call_type_arguments] = { + .visible = true, + .named = true, + }, [sym_object_type] = { .visible = true, .named = true, @@ -2438,192 +2452,194 @@ static const char *ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[200] = { +static const TSFieldMapSlice ts_field_map_slices[202] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 1}, - [5] = {.index = 3, .length = 1}, - [6] = {.index = 4, .length = 2}, - [8] = {.index = 6, .length = 2}, - [9] = {.index = 3, .length = 1}, - [10] = {.index = 3, .length = 1}, - [13] = {.index = 8, .length = 1}, - [15] = {.index = 9, .length = 1}, - [16] = {.index = 9, .length = 1}, - [17] = {.index = 10, .length = 2}, - [18] = {.index = 12, .length = 2}, - [19] = {.index = 14, .length = 2}, - [20] = {.index = 16, .length = 2}, - [21] = {.index = 18, .length = 2}, - [22] = {.index = 20, .length = 2}, - [23] = {.index = 22, .length = 1}, - [24] = {.index = 23, .length = 2}, - [25] = {.index = 25, .length = 2}, - [26] = {.index = 27, .length = 2}, - [27] = {.index = 29, .length = 2}, - [29] = {.index = 31, .length = 2}, - [30] = {.index = 33, .length = 2}, - [31] = {.index = 31, .length = 2}, - [32] = {.index = 33, .length = 2}, - [33] = {.index = 31, .length = 2}, - [34] = {.index = 33, .length = 2}, - [35] = {.index = 35, .length = 2}, - [36] = {.index = 37, .length = 2}, - [37] = {.index = 39, .length = 3}, - [41] = {.index = 42, .length = 1}, - [42] = {.index = 43, .length = 2}, - [43] = {.index = 45, .length = 2}, - [44] = {.index = 47, .length = 2}, - [45] = {.index = 49, .length = 2}, - [46] = {.index = 51, .length = 1}, - [47] = {.index = 52, .length = 3}, - [49] = {.index = 55, .length = 1}, - [50] = {.index = 56, .length = 2}, - [51] = {.index = 58, .length = 1}, - [52] = {.index = 59, .length = 2}, - [53] = {.index = 61, .length = 4}, - [54] = {.index = 65, .length = 2}, + [5] = {.index = 3, .length = 2}, + [6] = {.index = 5, .length = 1}, + [7] = {.index = 6, .length = 2}, + [9] = {.index = 8, .length = 2}, + [10] = {.index = 5, .length = 1}, + [11] = {.index = 5, .length = 1}, + [14] = {.index = 10, .length = 1}, + [16] = {.index = 3, .length = 2}, + [17] = {.index = 11, .length = 2}, + [18] = {.index = 13, .length = 2}, + [19] = {.index = 15, .length = 2}, + [20] = {.index = 17, .length = 2}, + [21] = {.index = 19, .length = 2}, + [22] = {.index = 21, .length = 1}, + [23] = {.index = 22, .length = 2}, + [24] = {.index = 24, .length = 2}, + [25] = {.index = 26, .length = 2}, + [26] = {.index = 28, .length = 3}, + [27] = {.index = 31, .length = 2}, + [29] = {.index = 33, .length = 2}, + [30] = {.index = 35, .length = 2}, + [31] = {.index = 33, .length = 2}, + [32] = {.index = 35, .length = 2}, + [33] = {.index = 33, .length = 2}, + [34] = {.index = 35, .length = 2}, + [35] = {.index = 37, .length = 2}, + [36] = {.index = 39, .length = 2}, + [37] = {.index = 41, .length = 3}, + [41] = {.index = 44, .length = 1}, + [42] = {.index = 45, .length = 2}, + [43] = {.index = 47, .length = 2}, + [44] = {.index = 49, .length = 2}, + [45] = {.index = 51, .length = 2}, + [46] = {.index = 53, .length = 1}, + [47] = {.index = 54, .length = 3}, + [49] = {.index = 57, .length = 1}, + [50] = {.index = 58, .length = 2}, + [51] = {.index = 60, .length = 1}, + [52] = {.index = 61, .length = 2}, + [53] = {.index = 63, .length = 4}, + [54] = {.index = 67, .length = 2}, [55] = {.index = 67, .length = 2}, - [56] = {.index = 65, .length = 2}, - [57] = {.index = 67, .length = 2}, - [58] = {.index = 23, .length = 2}, - [59] = {.index = 27, .length = 2}, - [60] = {.index = 20, .length = 2}, - [61] = {.index = 25, .length = 2}, - [62] = {.index = 56, .length = 2}, - [63] = {.index = 69, .length = 3}, - [64] = {.index = 72, .length = 3}, - [65] = {.index = 20, .length = 2}, - [66] = {.index = 20, .length = 2}, - [67] = {.index = 75, .length = 4}, - [68] = {.index = 79, .length = 3}, - [69] = {.index = 82, .length = 2}, - [70] = {.index = 84, .length = 1}, - [71] = {.index = 85, .length = 1}, - [72] = {.index = 86, .length = 1}, - [73] = {.index = 87, .length = 1}, - [74] = {.index = 88, .length = 2}, - [75] = {.index = 90, .length = 3}, - [76] = {.index = 20, .length = 2}, - [77] = {.index = 93, .length = 2}, - [78] = {.index = 95, .length = 5}, + [56] = {.index = 22, .length = 2}, + [57] = {.index = 26, .length = 2}, + [58] = {.index = 28, .length = 3}, + [59] = {.index = 19, .length = 2}, + [60] = {.index = 24, .length = 2}, + [61] = {.index = 58, .length = 2}, + [62] = {.index = 69, .length = 3}, + [63] = {.index = 19, .length = 2}, + [64] = {.index = 19, .length = 2}, + [65] = {.index = 72, .length = 4}, + [66] = {.index = 76, .length = 3}, + [67] = {.index = 79, .length = 2}, + [68] = {.index = 81, .length = 1}, + [69] = {.index = 82, .length = 1}, + [70] = {.index = 83, .length = 1}, + [71] = {.index = 84, .length = 1}, + [72] = {.index = 85, .length = 2}, + [73] = {.index = 87, .length = 3}, + [74] = {.index = 19, .length = 2}, + [75] = {.index = 90, .length = 2}, + [76] = {.index = 92, .length = 5}, + [77] = {.index = 97, .length = 2}, + [78] = {.index = 99, .length = 1}, [79] = {.index = 100, .length = 2}, - [80] = {.index = 102, .length = 1}, - [81] = {.index = 103, .length = 2}, - [82] = {.index = 105, .length = 3}, - [83] = {.index = 105, .length = 3}, - [84] = {.index = 105, .length = 3}, - [85] = {.index = 108, .length = 2}, - [86] = {.index = 110, .length = 3}, - [87] = {.index = 113, .length = 3}, - [91] = {.index = 116, .length = 1}, - [92] = {.index = 117, .length = 3}, - [93] = {.index = 120, .length = 4}, - [94] = {.index = 124, .length = 2}, - [95] = {.index = 126, .length = 2}, - [96] = {.index = 128, .length = 2}, - [97] = {.index = 130, .length = 3}, - [98] = {.index = 133, .length = 2}, - [99] = {.index = 135, .length = 2}, - [100] = {.index = 137, .length = 4}, - [101] = {.index = 135, .length = 2}, - [102] = {.index = 141, .length = 4}, - [103] = {.index = 145, .length = 4}, - [104] = {.index = 149, .length = 5}, - [105] = {.index = 154, .length = 3}, - [106] = {.index = 154, .length = 3}, - [107] = {.index = 88, .length = 2}, - [108] = {.index = 90, .length = 3}, - [109] = {.index = 108, .length = 2}, - [110] = {.index = 157, .length = 3}, - [111] = {.index = 160, .length = 2}, - [112] = {.index = 162, .length = 3}, - [113] = {.index = 165, .length = 2}, - [114] = {.index = 100, .length = 2}, - [115] = {.index = 167, .length = 2}, - [116] = {.index = 169, .length = 5}, - [117] = {.index = 174, .length = 2}, - [118] = {.index = 176, .length = 1}, - [119] = {.index = 177, .length = 1}, - [120] = {.index = 178, .length = 1}, - [121] = {.index = 179, .length = 1}, - [122] = {.index = 180, .length = 2}, - [123] = {.index = 182, .length = 1}, - [124] = {.index = 183, .length = 2}, - [125] = {.index = 185, .length = 4}, - [126] = {.index = 189, .length = 2}, - [127] = {.index = 191, .length = 2}, - [128] = {.index = 193, .length = 3}, - [129] = {.index = 196, .length = 4}, - [130] = {.index = 200, .length = 4}, - [131] = {.index = 204, .length = 5}, - [132] = {.index = 167, .length = 2}, - [133] = {.index = 209, .length = 2}, - [134] = {.index = 211, .length = 3}, - [135] = {.index = 214, .length = 3}, - [136] = {.index = 217, .length = 2}, - [137] = {.index = 219, .length = 3}, - [138] = {.index = 222, .length = 4}, - [139] = {.index = 226, .length = 3}, - [140] = {.index = 229, .length = 3}, - [141] = {.index = 232, .length = 2}, - [142] = {.index = 234, .length = 5}, - [143] = {.index = 239, .length = 3}, - [144] = {.index = 242, .length = 2}, - [145] = {.index = 242, .length = 2}, - [146] = {.index = 244, .length = 3}, - [147] = {.index = 242, .length = 2}, - [148] = {.index = 242, .length = 2}, - [149] = {.index = 247, .length = 2}, - [150] = {.index = 249, .length = 4}, - [151] = {.index = 253, .length = 2}, - [152] = {.index = 255, .length = 2}, - [153] = {.index = 257, .length = 1}, - [154] = {.index = 258, .length = 2}, - [155] = {.index = 260, .length = 2}, - [156] = {.index = 262, .length = 3}, - [157] = {.index = 265, .length = 3}, - [158] = {.index = 268, .length = 5}, - [159] = {.index = 273, .length = 3}, - [161] = {.index = 276, .length = 4}, - [162] = {.index = 280, .length = 3}, - [163] = {.index = 283, .length = 4}, - [164] = {.index = 287, .length = 5}, - [165] = {.index = 292, .length = 2}, - [166] = {.index = 292, .length = 2}, - [167] = {.index = 292, .length = 2}, - [168] = {.index = 292, .length = 2}, - [169] = {.index = 294, .length = 4}, - [170] = {.index = 298, .length = 2}, - [171] = {.index = 298, .length = 2}, - [172] = {.index = 298, .length = 2}, - [173] = {.index = 300, .length = 4}, - [174] = {.index = 304, .length = 4}, - [175] = {.index = 308, .length = 2}, - [176] = {.index = 310, .length = 2}, - [177] = {.index = 312, .length = 2}, - [178] = {.index = 314, .length = 3}, - [179] = {.index = 317, .length = 3}, - [180] = {.index = 320, .length = 2}, - [181] = {.index = 322, .length = 4}, - [182] = {.index = 326, .length = 5}, - [183] = {.index = 331, .length = 5}, - [184] = {.index = 336, .length = 1}, - [185] = {.index = 337, .length = 4}, - [186] = {.index = 341, .length = 4}, - [187] = {.index = 345, .length = 2}, - [188] = {.index = 347, .length = 4}, - [189] = {.index = 351, .length = 3}, - [190] = {.index = 354, .length = 2}, - [191] = {.index = 356, .length = 3}, - [192] = {.index = 359, .length = 5}, - [193] = {.index = 364, .length = 5}, - [194] = {.index = 369, .length = 4}, - [195] = {.index = 373, .length = 4}, - [196] = {.index = 377, .length = 3}, - [197] = {.index = 380, .length = 5}, - [198] = {.index = 336, .length = 1}, - [199] = {.index = 385, .length = 4}, + [80] = {.index = 102, .length = 3}, + [81] = {.index = 102, .length = 3}, + [82] = {.index = 102, .length = 3}, + [83] = {.index = 105, .length = 2}, + [84] = {.index = 107, .length = 3}, + [85] = {.index = 110, .length = 3}, + [89] = {.index = 113, .length = 1}, + [90] = {.index = 114, .length = 3}, + [91] = {.index = 117, .length = 4}, + [92] = {.index = 121, .length = 2}, + [93] = {.index = 123, .length = 2}, + [94] = {.index = 125, .length = 2}, + [95] = {.index = 127, .length = 3}, + [96] = {.index = 130, .length = 2}, + [97] = {.index = 132, .length = 2}, + [98] = {.index = 134, .length = 4}, + [99] = {.index = 132, .length = 2}, + [100] = {.index = 138, .length = 4}, + [101] = {.index = 142, .length = 4}, + [102] = {.index = 146, .length = 5}, + [103] = {.index = 151, .length = 2}, + [104] = {.index = 153, .length = 3}, + [105] = {.index = 151, .length = 2}, + [106] = {.index = 153, .length = 3}, + [107] = {.index = 85, .length = 2}, + [108] = {.index = 87, .length = 3}, + [109] = {.index = 105, .length = 2}, + [110] = {.index = 156, .length = 3}, + [111] = {.index = 159, .length = 2}, + [112] = {.index = 161, .length = 3}, + [113] = {.index = 164, .length = 2}, + [114] = {.index = 97, .length = 2}, + [115] = {.index = 166, .length = 2}, + [116] = {.index = 168, .length = 5}, + [117] = {.index = 173, .length = 2}, + [118] = {.index = 175, .length = 1}, + [119] = {.index = 176, .length = 1}, + [120] = {.index = 177, .length = 1}, + [121] = {.index = 178, .length = 1}, + [122] = {.index = 179, .length = 2}, + [123] = {.index = 181, .length = 1}, + [124] = {.index = 182, .length = 2}, + [125] = {.index = 184, .length = 4}, + [126] = {.index = 188, .length = 2}, + [127] = {.index = 190, .length = 2}, + [128] = {.index = 192, .length = 3}, + [129] = {.index = 195, .length = 4}, + [130] = {.index = 199, .length = 4}, + [131] = {.index = 203, .length = 5}, + [132] = {.index = 208, .length = 3}, + [133] = {.index = 208, .length = 3}, + [134] = {.index = 166, .length = 2}, + [135] = {.index = 211, .length = 2}, + [136] = {.index = 213, .length = 3}, + [137] = {.index = 216, .length = 3}, + [138] = {.index = 219, .length = 2}, + [139] = {.index = 221, .length = 3}, + [140] = {.index = 224, .length = 4}, + [141] = {.index = 228, .length = 3}, + [142] = {.index = 231, .length = 3}, + [143] = {.index = 234, .length = 2}, + [144] = {.index = 236, .length = 5}, + [145] = {.index = 241, .length = 3}, + [146] = {.index = 244, .length = 2}, + [147] = {.index = 244, .length = 2}, + [148] = {.index = 246, .length = 3}, + [149] = {.index = 244, .length = 2}, + [150] = {.index = 244, .length = 2}, + [151] = {.index = 249, .length = 2}, + [152] = {.index = 251, .length = 4}, + [153] = {.index = 255, .length = 2}, + [154] = {.index = 257, .length = 2}, + [155] = {.index = 259, .length = 1}, + [156] = {.index = 260, .length = 2}, + [157] = {.index = 262, .length = 2}, + [158] = {.index = 264, .length = 3}, + [159] = {.index = 267, .length = 3}, + [160] = {.index = 270, .length = 5}, + [161] = {.index = 275, .length = 3}, + [163] = {.index = 278, .length = 4}, + [164] = {.index = 282, .length = 3}, + [165] = {.index = 285, .length = 4}, + [166] = {.index = 289, .length = 5}, + [167] = {.index = 294, .length = 2}, + [168] = {.index = 294, .length = 2}, + [169] = {.index = 294, .length = 2}, + [170] = {.index = 294, .length = 2}, + [171] = {.index = 296, .length = 4}, + [172] = {.index = 300, .length = 2}, + [173] = {.index = 300, .length = 2}, + [174] = {.index = 300, .length = 2}, + [175] = {.index = 302, .length = 4}, + [176] = {.index = 306, .length = 4}, + [177] = {.index = 310, .length = 2}, + [178] = {.index = 312, .length = 2}, + [179] = {.index = 314, .length = 2}, + [180] = {.index = 316, .length = 3}, + [181] = {.index = 319, .length = 3}, + [182] = {.index = 322, .length = 2}, + [183] = {.index = 324, .length = 4}, + [184] = {.index = 328, .length = 5}, + [185] = {.index = 333, .length = 5}, + [186] = {.index = 338, .length = 1}, + [187] = {.index = 339, .length = 4}, + [188] = {.index = 343, .length = 4}, + [189] = {.index = 347, .length = 2}, + [190] = {.index = 349, .length = 4}, + [191] = {.index = 353, .length = 3}, + [192] = {.index = 356, .length = 2}, + [193] = {.index = 358, .length = 3}, + [194] = {.index = 361, .length = 5}, + [195] = {.index = 366, .length = 5}, + [196] = {.index = 371, .length = 4}, + [197] = {.index = 375, .length = 4}, + [198] = {.index = 379, .length = 3}, + [199] = {.index = 382, .length = 5}, + [200] = {.index = 338, .length = 1}, + [201] = {.index = 387, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2634,575 +2650,580 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [2] = {field_declaration, 1}, [3] = + {field_arguments, 1}, + {field_function, 0}, + [5] = {field_name, 0}, - [4] = + [6] = {field_body, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [6] = + [8] = {field_argument, 1}, {field_operator, 0}, - [8] = - {field_body, 1}, - [9] = - {field_constructor, 1}, [10] = + {field_body, 1}, + [11] = {field_argument, 0}, {field_operator, 1}, - [12] = - {field_arguments, 1}, - {field_function, 0}, - [14] = + [13] = {field_parameters, 0}, {field_return_type, 1}, - [16] = + [15] = {field_parameters, 1}, {field_type_parameters, 0}, - [18] = + [17] = {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, - [20] = + [19] = {field_left, 0}, {field_right, 2}, - [22] = + [21] = {field_label, 0}, - [23] = + [22] = {field_object, 0}, {field_property, 2}, - [25] = + [24] = {field_body, 2}, {field_parameter, 0}, - [27] = + [26] = + {field_arguments, 2}, + {field_function, 0}, + [28] = {field_arguments, 2}, {field_function, 0}, - [29] = + {field_type_arguments, 1}, + [31] = {field_body, 1}, {field_name, 0}, - [31] = + [33] = {field_name, 0}, {field_value, 1, .inherited = true}, - [33] = + [35] = {field_name, 0}, {field_type, 1}, - [35] = + [37] = {field_condition, 1}, {field_consequence, 2}, - [37] = + [39] = {field_body, 2}, {field_value, 1}, - [39] = + [41] = {field_body, 2}, {field_left, 1, .inherited = true}, {field_right, 1, .inherited = true}, - [42] = + [44] = {field_value, 1, .inherited = true}, - [43] = + [45] = {field_body, 2}, {field_condition, 1}, - [45] = + [47] = {field_body, 1}, {field_handler, 2}, - [47] = + [49] = {field_body, 1}, {field_finalizer, 2}, - [49] = + [51] = {field_body, 2}, {field_object, 1}, - [51] = + [53] = {field_label, 1}, - [52] = + [54] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [55] = + [57] = {field_pattern, 1}, - [56] = + [58] = {field_body, 2}, {field_name, 1}, - [58] = + [60] = {field_body, 2}, - [59] = + [61] = {field_body, 2}, {field_type_parameters, 1}, - [61] = + [63] = {field_body, 2}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [65] = - {field_arguments, 2}, - {field_constructor, 1}, [67] = + {field_arguments, 2}, {field_constructor, 1}, - {field_type_arguments, 2}, [69] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, [72] = - {field_arguments, 2}, - {field_function, 0}, - {field_type_arguments, 1}, - [75] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [79] = + [76] = {field_parameters, 1}, {field_return_type, 2}, {field_type_parameters, 0}, - [82] = + [79] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [84] = + [81] = {field_source, 1}, - [85] = + [82] = {field_source, 2, .inherited = true}, - [86] = + [83] = {field_value, 2}, - [87] = + [84] = {field_name, 1}, - [88] = + [85] = {field_index, 2}, {field_object, 0}, - [90] = + [87] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [93] = + [90] = {field_key, 0}, {field_value, 2}, - [95] = + [92] = {field_body, 2}, {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [100] = + [97] = {field_alias, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [102] = + [99] = {field_value, 1}, - [103] = + [100] = {field_name, 0}, {field_type, 2}, - [105] = + [102] = {field_name, 0}, {field_type, 1}, {field_value, 2, .inherited = true}, - [108] = + [105] = {field_body, 3}, {field_name, 2}, - [110] = + [107] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [113] = + [110] = {field_body, 3}, {field_left, 2, .inherited = true}, {field_right, 2, .inherited = true}, - [116] = + [113] = {field_value, 2, .inherited = true}, - [117] = + [114] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [120] = + [117] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [124] = + [121] = {field_module, 0}, {field_name, 2}, - [126] = + [123] = {field_flags, 3}, {field_pattern, 1}, - [128] = + [125] = {field_body, 3}, {field_name, 1}, - [130] = + [127] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [133] = + [130] = {field_body, 3}, {field_type_parameters, 1}, - [135] = + [132] = {field_body, 3}, {field_parameter, 1}, - [137] = + [134] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [141] = + [138] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [145] = + [142] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [149] = + [146] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [154] = + [151] = + {field_arguments, 3}, + {field_constructor, 1}, + [153] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [157] = + [156] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [160] = + [159] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [162] = + [161] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [165] = + [164] = {field_alias, 2}, {field_name, 0}, - [167] = + [166] = {field_index, 3}, {field_object, 0}, - [169] = + [168] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [174] = + [173] = {field_name, 1}, {field_value, 3}, - [176] = + [175] = {field_source, 3, .inherited = true}, - [177] = + [176] = {field_decorator, 1, .inherited = true}, - [178] = + [177] = {field_decorator, 2, .inherited = true}, - [179] = + [178] = {field_value, 3, .inherited = true}, - [180] = + [179] = {field_body, 1}, {field_condition, 3}, - [182] = + [181] = {field_name, 2}, - [183] = + [182] = {field_name, 1}, {field_type, 2}, - [185] = + [184] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [189] = + [188] = {field_name, 1}, {field_value, 2, .inherited = true}, - [191] = + [190] = {field_name, 0}, {field_value, 2, .inherited = true}, - [193] = + [192] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [196] = + [195] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [200] = + [199] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [204] = + [203] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [209] = + [208] = + {field_arguments, 4}, + {field_constructor, 1}, + {field_type_arguments, 3}, + [211] = {field_body, 4}, {field_name, 2}, - [211] = + [213] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [214] = + [216] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [217] = + [219] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [219] = + [221] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [222] = + [224] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [226] = + [228] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [229] = + [231] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [232] = + [234] = {field_alias, 3}, {field_name, 1}, - [234] = + [236] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [239] = + [241] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [242] = + [244] = {field_left, 1}, {field_right, 3}, - [244] = + [246] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [247] = + [249] = {field_decorator, 1, .inherited = true}, {field_decorator, 3, .inherited = true}, - [249] = + [251] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [253] = + [255] = {field_name, 2}, {field_type, 3}, - [255] = + [257] = {field_name, 1}, {field_type, 3}, - [257] = + [259] = {field_name, 3}, - [258] = + [260] = {field_name, 2}, {field_value, 3, .inherited = true}, - [260] = + [262] = {field_name, 1}, {field_value, 3, .inherited = true}, - [262] = + [264] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [265] = + [267] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [268] = + [270] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [273] = + [275] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [276] = + [278] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [280] = + [282] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [283] = + [285] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [287] = + [289] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [292] = + [294] = {field_left, 2}, {field_right, 4}, - [294] = + [296] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [298] = + [300] = {field_body, 4}, {field_parameter, 2}, - [300] = + [302] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [304] = + [306] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [308] = + [310] = {field_name, 2}, {field_type, 4}, - [310] = + [312] = {field_name, 3}, {field_type, 4}, - [312] = + [314] = {field_name, 2}, {field_value, 4, .inherited = true}, - [314] = + [316] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [317] = + [319] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [320] = + [322] = {field_name, 3}, {field_value, 4, .inherited = true}, - [322] = + [324] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [326] = + [328] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [331] = + [333] = {field_body, 6}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [336] = + [338] = {field_sign, 0}, - [337] = + [339] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [341] = + [343] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [345] = + [347] = {field_name, 3}, {field_type, 5}, - [347] = + [349] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [351] = + [353] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [354] = + [356] = {field_name, 3}, {field_value, 5, .inherited = true}, - [356] = + [358] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [359] = + [361] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [364] = + [366] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [369] = + [371] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [373] = + [375] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [377] = + [379] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [380] = + [382] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [385] = + [387] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, }; -static TSSymbol ts_alias_sequences[200][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[202][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym_identifier, }, - [7] = { + [5] = { + [0] = sym_identifier, + }, + [8] = { [0] = alias_sym_property_identifier, }, - [9] = { + [10] = { [0] = alias_sym_object_pattern, }, - [10] = { + [11] = { [0] = alias_sym_array_pattern, }, - [11] = { + [12] = { [0] = alias_sym_object_pattern, }, - [12] = { + [13] = { [0] = alias_sym_array_pattern, }, - [14] = { + [15] = { [0] = alias_sym_type_identifier, }, - [15] = { - [1] = sym_identifier, + [21] = { + [0] = sym_identifier, }, [22] = { - [0] = sym_identifier, + [0] = alias_sym_statement_identifier, }, [23] = { - [0] = alias_sym_statement_identifier, + [0] = sym_identifier, + [2] = alias_sym_property_identifier, }, [24] = { [0] = sym_identifier, - [2] = alias_sym_property_identifier, }, [25] = { [0] = sym_identifier, @@ -3246,58 +3267,58 @@ static TSSymbol ts_alias_sequences[200][MAX_ALIAS_SEQUENCE_LENGTH] = { [54] = { [1] = sym_identifier, }, - [55] = { - [1] = sym_identifier, - }, - [58] = { + [56] = { [2] = alias_sym_property_identifier, }, - [65] = { + [63] = { [0] = alias_sym_object_pattern, }, - [66] = { + [64] = { [0] = alias_sym_array_pattern, }, - [74] = { + [72] = { [0] = sym_identifier, }, - [75] = { + [73] = { [0] = sym_identifier, }, - [76] = { + [74] = { [0] = alias_sym_shorthand_property_identifier, }, - [79] = { + [77] = { [1] = alias_sym_import_specifier, }, - [83] = { + [81] = { [0] = alias_sym_object_pattern, }, - [84] = { + [82] = { [0] = alias_sym_array_pattern, }, - [88] = { + [86] = { [2] = sym_identifier, }, - [89] = { + [87] = { [2] = alias_sym_object_pattern, }, - [90] = { + [88] = { [2] = alias_sym_array_pattern, }, - [94] = { + [92] = { [2] = alias_sym_type_identifier, }, - [96] = { + [94] = { [1] = alias_sym_type_identifier, }, - [97] = { + [95] = { [1] = alias_sym_type_identifier, }, - [99] = { + [97] = { [1] = sym_identifier, }, - [105] = { + [103] = { + [1] = sym_identifier, + }, + [104] = { [1] = sym_identifier, }, [109] = { @@ -3315,67 +3336,70 @@ static TSSymbol ts_alias_sequences[200][MAX_ALIAS_SEQUENCE_LENGTH] = { [128] = { [1] = alias_sym_type_identifier, }, - [133] = { - [2] = alias_sym_type_identifier, + [132] = { + [1] = sym_identifier, }, - [134] = { + [135] = { [2] = alias_sym_type_identifier, }, - [137] = { + [136] = { [2] = alias_sym_type_identifier, }, - [138] = { + [139] = { [2] = alias_sym_type_identifier, }, [140] = { + [2] = alias_sym_type_identifier, + }, + [142] = { [3] = alias_sym_type_identifier, }, - [143] = { + [145] = { [1] = alias_sym_type_identifier, }, - [144] = { + [146] = { [1] = sym_identifier, }, - [147] = { + [149] = { [1] = alias_sym_object_pattern, }, - [148] = { + [150] = { [1] = alias_sym_array_pattern, }, - [159] = { + [161] = { [2] = alias_sym_type_identifier, }, - [160] = { + [162] = { [3] = alias_sym_property_identifier, }, - [161] = { + [163] = { [2] = alias_sym_type_identifier, }, - [162] = { + [164] = { [3] = alias_sym_type_identifier, }, - [163] = { + [165] = { [3] = alias_sym_type_identifier, }, - [165] = { + [167] = { [2] = sym_identifier, }, - [167] = { + [169] = { [2] = alias_sym_object_pattern, }, - [168] = { + [170] = { [2] = alias_sym_array_pattern, }, - [171] = { + [173] = { [2] = alias_sym_object_pattern, }, - [172] = { + [174] = { [2] = alias_sym_array_pattern, }, - [181] = { + [183] = { [3] = alias_sym_type_identifier, }, - [198] = { + [200] = { [3] = sym_identifier, }, }; @@ -3532,7 +3556,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(96); if (lookahead == '0') ADVANCE(193); if (lookahead == ':') ADVANCE(86); - if (lookahead == ';') ADVANCE(85); if (lookahead == '<') ADVANCE(90); if (lookahead == '=') ADVANCE(75); if (lookahead == '>') ADVANCE(93); @@ -3556,7 +3579,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && - lookahead != '@' && + (lookahead < ';' || '@' < lookahead) && lookahead != '~') ADVANCE(203); END_STATE(); case 7: @@ -6067,43 +6090,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 13}, [58] = {.lex_state = 13}, [59] = {.lex_state = 13}, - [60] = {.lex_state = 13}, - [61] = {.lex_state = 13}, - [62] = {.lex_state = 13}, + [60] = {.lex_state = 66, .external_lex_state = 2}, + [61] = {.lex_state = 6, .external_lex_state = 2}, + [62] = {.lex_state = 6, .external_lex_state = 2}, [63] = {.lex_state = 13}, [64] = {.lex_state = 13}, - [65] = {.lex_state = 13}, - [66] = {.lex_state = 13}, - [67] = {.lex_state = 66, .external_lex_state = 2}, - [68] = {.lex_state = 13}, - [69] = {.lex_state = 13}, - [70] = {.lex_state = 13}, - [71] = {.lex_state = 13}, - [72] = {.lex_state = 13}, - [73] = {.lex_state = 13}, - [74] = {.lex_state = 13}, - [75] = {.lex_state = 13}, - [76] = {.lex_state = 67, .external_lex_state = 2}, - [77] = {.lex_state = 66, .external_lex_state = 2}, - [78] = {.lex_state = 6, .external_lex_state = 2}, - [79] = {.lex_state = 67, .external_lex_state = 3}, + [65] = {.lex_state = 66, .external_lex_state = 2}, + [66] = {.lex_state = 67, .external_lex_state = 2}, + [67] = {.lex_state = 67, .external_lex_state = 2}, + [68] = {.lex_state = 67, .external_lex_state = 3}, + [69] = {.lex_state = 67, .external_lex_state = 3}, + [70] = {.lex_state = 67, .external_lex_state = 2}, + [71] = {.lex_state = 67, .external_lex_state = 2}, + [72] = {.lex_state = 67, .external_lex_state = 2}, + [73] = {.lex_state = 7, .external_lex_state = 2}, + [74] = {.lex_state = 67, .external_lex_state = 2}, + [75] = {.lex_state = 7, .external_lex_state = 2}, + [76] = {.lex_state = 6, .external_lex_state = 2}, + [77] = {.lex_state = 6, .external_lex_state = 2}, + [78] = {.lex_state = 67, .external_lex_state = 2}, + [79] = {.lex_state = 67, .external_lex_state = 2}, [80] = {.lex_state = 67, .external_lex_state = 3}, - [81] = {.lex_state = 67, .external_lex_state = 2}, - [82] = {.lex_state = 7, .external_lex_state = 2}, - [83] = {.lex_state = 67, .external_lex_state = 2}, - [84] = {.lex_state = 6, .external_lex_state = 2}, - [85] = {.lex_state = 6, .external_lex_state = 3}, + [81] = {.lex_state = 67, .external_lex_state = 3}, + [82] = {.lex_state = 67, .external_lex_state = 3}, + [83] = {.lex_state = 67, .external_lex_state = 3}, + [84] = {.lex_state = 67, .external_lex_state = 3}, + [85] = {.lex_state = 67, .external_lex_state = 3}, [86] = {.lex_state = 67, .external_lex_state = 3}, [87] = {.lex_state = 67, .external_lex_state = 3}, [88] = {.lex_state = 67, .external_lex_state = 3}, - [89] = {.lex_state = 6, .external_lex_state = 3}, + [89] = {.lex_state = 67, .external_lex_state = 3}, [90] = {.lex_state = 67, .external_lex_state = 3}, [91] = {.lex_state = 67, .external_lex_state = 3}, [92] = {.lex_state = 67, .external_lex_state = 3}, [93] = {.lex_state = 67, .external_lex_state = 3}, [94] = {.lex_state = 67, .external_lex_state = 3}, [95] = {.lex_state = 67, .external_lex_state = 3}, - [96] = {.lex_state = 6, .external_lex_state = 2}, + [96] = {.lex_state = 67, .external_lex_state = 3}, [97] = {.lex_state = 67, .external_lex_state = 3}, [98] = {.lex_state = 67, .external_lex_state = 3}, [99] = {.lex_state = 67, .external_lex_state = 3}, @@ -6114,49 +6137,49 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 67, .external_lex_state = 3}, [105] = {.lex_state = 67, .external_lex_state = 3}, [106] = {.lex_state = 67, .external_lex_state = 3}, - [107] = {.lex_state = 6, .external_lex_state = 2}, - [108] = {.lex_state = 67, .external_lex_state = 3}, - [109] = {.lex_state = 67, .external_lex_state = 3}, - [110] = {.lex_state = 67, .external_lex_state = 3}, - [111] = {.lex_state = 67, .external_lex_state = 3}, - [112] = {.lex_state = 67, .external_lex_state = 3}, - [113] = {.lex_state = 67, .external_lex_state = 3}, - [114] = {.lex_state = 6, .external_lex_state = 2}, - [115] = {.lex_state = 67, .external_lex_state = 3}, - [116] = {.lex_state = 67, .external_lex_state = 3}, + [107] = {.lex_state = 67, .external_lex_state = 2}, + [108] = {.lex_state = 67, .external_lex_state = 2}, + [109] = {.lex_state = 67, .external_lex_state = 2}, + [110] = {.lex_state = 67, .external_lex_state = 2}, + [111] = {.lex_state = 67, .external_lex_state = 2}, + [112] = {.lex_state = 67, .external_lex_state = 2}, + [113] = {.lex_state = 67, .external_lex_state = 2}, + [114] = {.lex_state = 67, .external_lex_state = 2}, + [115] = {.lex_state = 67, .external_lex_state = 2}, + [116] = {.lex_state = 67, .external_lex_state = 2}, [117] = {.lex_state = 67, .external_lex_state = 2}, [118] = {.lex_state = 67, .external_lex_state = 2}, - [119] = {.lex_state = 6, .external_lex_state = 2}, - [120] = {.lex_state = 67, .external_lex_state = 2}, - [121] = {.lex_state = 67, .external_lex_state = 2}, - [122] = {.lex_state = 67, .external_lex_state = 2}, - [123] = {.lex_state = 67, .external_lex_state = 2}, - [124] = {.lex_state = 67, .external_lex_state = 2}, - [125] = {.lex_state = 67, .external_lex_state = 2}, - [126] = {.lex_state = 67, .external_lex_state = 2}, - [127] = {.lex_state = 67, .external_lex_state = 2}, - [128] = {.lex_state = 67, .external_lex_state = 2}, - [129] = {.lex_state = 67, .external_lex_state = 2}, - [130] = {.lex_state = 68}, + [119] = {.lex_state = 67, .external_lex_state = 2}, + [120] = {.lex_state = 68}, + [121] = {.lex_state = 68}, + [122] = {.lex_state = 68}, + [123] = {.lex_state = 68}, + [124] = {.lex_state = 68}, + [125] = {.lex_state = 68}, + [126] = {.lex_state = 68}, + [127] = {.lex_state = 68}, + [128] = {.lex_state = 66, .external_lex_state = 3}, + [129] = {.lex_state = 66, .external_lex_state = 3}, + [130] = {.lex_state = 66, .external_lex_state = 3}, [131] = {.lex_state = 68}, [132] = {.lex_state = 68}, [133] = {.lex_state = 68}, [134] = {.lex_state = 68}, [135] = {.lex_state = 68}, - [136] = {.lex_state = 68, .external_lex_state = 4}, - [137] = {.lex_state = 66, .external_lex_state = 3}, + [136] = {.lex_state = 66, .external_lex_state = 3}, + [137] = {.lex_state = 68, .external_lex_state = 4}, [138] = {.lex_state = 66, .external_lex_state = 3}, [139] = {.lex_state = 66, .external_lex_state = 3}, - [140] = {.lex_state = 68}, - [141] = {.lex_state = 68}, + [140] = {.lex_state = 66, .external_lex_state = 3}, + [141] = {.lex_state = 66, .external_lex_state = 3}, [142] = {.lex_state = 68}, - [143] = {.lex_state = 68}, - [144] = {.lex_state = 68}, + [143] = {.lex_state = 66, .external_lex_state = 3}, + [144] = {.lex_state = 66, .external_lex_state = 3}, [145] = {.lex_state = 68}, [146] = {.lex_state = 68}, - [147] = {.lex_state = 66, .external_lex_state = 3}, + [147] = {.lex_state = 68}, [148] = {.lex_state = 68}, - [149] = {.lex_state = 66, .external_lex_state = 3}, + [149] = {.lex_state = 68}, [150] = {.lex_state = 68}, [151] = {.lex_state = 68}, [152] = {.lex_state = 68}, @@ -6165,23 +6188,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 68}, [156] = {.lex_state = 68}, [157] = {.lex_state = 68}, - [158] = {.lex_state = 66, .external_lex_state = 3}, - [159] = {.lex_state = 66, .external_lex_state = 3}, + [158] = {.lex_state = 68}, + [159] = {.lex_state = 68}, [160] = {.lex_state = 68}, [161] = {.lex_state = 68}, [162] = {.lex_state = 68}, [163] = {.lex_state = 68}, [164] = {.lex_state = 68}, [165] = {.lex_state = 66, .external_lex_state = 3}, - [166] = {.lex_state = 68}, - [167] = {.lex_state = 68}, + [166] = {.lex_state = 66, .external_lex_state = 3}, + [167] = {.lex_state = 66, .external_lex_state = 3}, [168] = {.lex_state = 68}, [169] = {.lex_state = 68}, - [170] = {.lex_state = 68, .external_lex_state = 4}, + [170] = {.lex_state = 68}, [171] = {.lex_state = 68}, [172] = {.lex_state = 68}, [173] = {.lex_state = 68}, - [174] = {.lex_state = 66, .external_lex_state = 3}, + [174] = {.lex_state = 68}, [175] = {.lex_state = 68}, [176] = {.lex_state = 68}, [177] = {.lex_state = 68}, @@ -6199,12 +6222,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [189] = {.lex_state = 68}, [190] = {.lex_state = 68}, [191] = {.lex_state = 68}, - [192] = {.lex_state = 66, .external_lex_state = 3}, + [192] = {.lex_state = 68}, [193] = {.lex_state = 68}, [194] = {.lex_state = 68}, [195] = {.lex_state = 68}, [196] = {.lex_state = 68}, - [197] = {.lex_state = 68}, + [197] = {.lex_state = 68, .external_lex_state = 4}, [198] = {.lex_state = 68}, [199] = {.lex_state = 68}, [200] = {.lex_state = 68}, @@ -6252,7 +6275,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [242] = {.lex_state = 68}, [243] = {.lex_state = 68}, [244] = {.lex_state = 68}, - [245] = {.lex_state = 66, .external_lex_state = 3}, + [245] = {.lex_state = 68}, [246] = {.lex_state = 68}, [247] = {.lex_state = 68}, [248] = {.lex_state = 68}, @@ -6294,9 +6317,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [284] = {.lex_state = 68}, [285] = {.lex_state = 68}, [286] = {.lex_state = 68}, - [287] = {.lex_state = 66, .external_lex_state = 3}, + [287] = {.lex_state = 68}, [288] = {.lex_state = 68}, - [289] = {.lex_state = 66, .external_lex_state = 3}, + [289] = {.lex_state = 68}, [290] = {.lex_state = 68}, [291] = {.lex_state = 68}, [292] = {.lex_state = 68}, @@ -6362,26 +6385,26 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [352] = {.lex_state = 68}, [353] = {.lex_state = 68}, [354] = {.lex_state = 68}, - [355] = {.lex_state = 68}, + [355] = {.lex_state = 66, .external_lex_state = 3}, [356] = {.lex_state = 68}, [357] = {.lex_state = 68}, - [358] = {.lex_state = 68}, - [359] = {.lex_state = 68}, + [358] = {.lex_state = 66, .external_lex_state = 3}, + [359] = {.lex_state = 66, .external_lex_state = 3}, [360] = {.lex_state = 68}, [361] = {.lex_state = 68}, [362] = {.lex_state = 68}, [363] = {.lex_state = 68}, - [364] = {.lex_state = 68}, + [364] = {.lex_state = 66, .external_lex_state = 3}, [365] = {.lex_state = 68}, [366] = {.lex_state = 68}, [367] = {.lex_state = 68}, [368] = {.lex_state = 68}, [369] = {.lex_state = 68}, [370] = {.lex_state = 68}, - [371] = {.lex_state = 68}, + [371] = {.lex_state = 66, .external_lex_state = 3}, [372] = {.lex_state = 68}, [373] = {.lex_state = 68}, - [374] = {.lex_state = 68}, + [374] = {.lex_state = 66, .external_lex_state = 3}, [375] = {.lex_state = 68}, [376] = {.lex_state = 68}, [377] = {.lex_state = 68}, @@ -6438,7 +6461,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [428] = {.lex_state = 68}, [429] = {.lex_state = 68}, [430] = {.lex_state = 68}, - [431] = {.lex_state = 68}, + [431] = {.lex_state = 66, .external_lex_state = 3}, [432] = {.lex_state = 68}, [433] = {.lex_state = 68}, [434] = {.lex_state = 68}, @@ -6447,8 +6470,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [437] = {.lex_state = 68}, [438] = {.lex_state = 68}, [439] = {.lex_state = 68}, - [440] = {.lex_state = 68}, - [441] = {.lex_state = 68}, + [440] = {.lex_state = 66, .external_lex_state = 3}, + [441] = {.lex_state = 66, .external_lex_state = 3}, [442] = {.lex_state = 68}, [443] = {.lex_state = 68}, [444] = {.lex_state = 68}, @@ -6496,174 +6519,174 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [486] = {.lex_state = 68}, [487] = {.lex_state = 68}, [488] = {.lex_state = 68}, - [489] = {.lex_state = 66, .external_lex_state = 3}, - [490] = {.lex_state = 66, .external_lex_state = 3}, - [491] = {.lex_state = 66, .external_lex_state = 3}, - [492] = {.lex_state = 66, .external_lex_state = 3}, - [493] = {.lex_state = 66, .external_lex_state = 3}, - [494] = {.lex_state = 66, .external_lex_state = 3}, - [495] = {.lex_state = 66, .external_lex_state = 3}, - [496] = {.lex_state = 66, .external_lex_state = 3}, - [497] = {.lex_state = 66, .external_lex_state = 3}, - [498] = {.lex_state = 66, .external_lex_state = 2}, - [499] = {.lex_state = 14}, - [500] = {.lex_state = 14}, - [501] = {.lex_state = 14}, - [502] = {.lex_state = 14}, - [503] = {.lex_state = 14}, - [504] = {.lex_state = 66, .external_lex_state = 3}, - [505] = {.lex_state = 14}, - [506] = {.lex_state = 66, .external_lex_state = 3}, - [507] = {.lex_state = 6, .external_lex_state = 2}, - [508] = {.lex_state = 66, .external_lex_state = 3}, - [509] = {.lex_state = 66, .external_lex_state = 3}, - [510] = {.lex_state = 66, .external_lex_state = 2}, - [511] = {.lex_state = 66, .external_lex_state = 2}, - [512] = {.lex_state = 66, .external_lex_state = 3}, - [513] = {.lex_state = 66, .external_lex_state = 3}, - [514] = {.lex_state = 66, .external_lex_state = 3}, + [489] = {.lex_state = 68}, + [490] = {.lex_state = 68}, + [491] = {.lex_state = 68}, + [492] = {.lex_state = 68}, + [493] = {.lex_state = 68}, + [494] = {.lex_state = 68}, + [495] = {.lex_state = 68}, + [496] = {.lex_state = 68}, + [497] = {.lex_state = 68}, + [498] = {.lex_state = 68}, + [499] = {.lex_state = 68}, + [500] = {.lex_state = 68}, + [501] = {.lex_state = 68}, + [502] = {.lex_state = 68}, + [503] = {.lex_state = 68}, + [504] = {.lex_state = 68}, + [505] = {.lex_state = 68}, + [506] = {.lex_state = 68}, + [507] = {.lex_state = 68}, + [508] = {.lex_state = 68}, + [509] = {.lex_state = 68}, + [510] = {.lex_state = 68}, + [511] = {.lex_state = 68}, + [512] = {.lex_state = 68}, + [513] = {.lex_state = 68}, + [514] = {.lex_state = 68}, [515] = {.lex_state = 68}, [516] = {.lex_state = 68}, - [517] = {.lex_state = 66, .external_lex_state = 3}, - [518] = {.lex_state = 66, .external_lex_state = 3}, - [519] = {.lex_state = 66, .external_lex_state = 2}, + [517] = {.lex_state = 68}, + [518] = {.lex_state = 68}, + [519] = {.lex_state = 68}, [520] = {.lex_state = 68}, - [521] = {.lex_state = 68, .external_lex_state = 4}, + [521] = {.lex_state = 68}, [522] = {.lex_state = 68}, - [523] = {.lex_state = 66, .external_lex_state = 2}, - [524] = {.lex_state = 6, .external_lex_state = 2}, - [525] = {.lex_state = 66, .external_lex_state = 2}, - [526] = {.lex_state = 66, .external_lex_state = 2}, + [523] = {.lex_state = 68}, + [524] = {.lex_state = 68}, + [525] = {.lex_state = 68}, + [526] = {.lex_state = 68}, [527] = {.lex_state = 68}, - [528] = {.lex_state = 66, .external_lex_state = 2}, - [529] = {.lex_state = 68, .external_lex_state = 4}, + [528] = {.lex_state = 68}, + [529] = {.lex_state = 68}, [530] = {.lex_state = 68}, - [531] = {.lex_state = 66, .external_lex_state = 2}, + [531] = {.lex_state = 68}, [532] = {.lex_state = 68}, - [533] = {.lex_state = 66, .external_lex_state = 2}, - [534] = {.lex_state = 66, .external_lex_state = 3}, - [535] = {.lex_state = 66, .external_lex_state = 2}, - [536] = {.lex_state = 68, .external_lex_state = 4}, + [533] = {.lex_state = 68}, + [534] = {.lex_state = 68}, + [535] = {.lex_state = 68}, + [536] = {.lex_state = 68}, [537] = {.lex_state = 68}, - [538] = {.lex_state = 66, .external_lex_state = 3}, - [539] = {.lex_state = 66, .external_lex_state = 2}, + [538] = {.lex_state = 68}, + [539] = {.lex_state = 68}, [540] = {.lex_state = 68}, [541] = {.lex_state = 68}, [542] = {.lex_state = 68}, - [543] = {.lex_state = 66, .external_lex_state = 2}, - [544] = {.lex_state = 66, .external_lex_state = 2}, - [545] = {.lex_state = 66, .external_lex_state = 3}, - [546] = {.lex_state = 68, .external_lex_state = 4}, - [547] = {.lex_state = 68, .external_lex_state = 4}, + [543] = {.lex_state = 68}, + [544] = {.lex_state = 68}, + [545] = {.lex_state = 68}, + [546] = {.lex_state = 68}, + [547] = {.lex_state = 68}, [548] = {.lex_state = 68}, [549] = {.lex_state = 68}, - [550] = {.lex_state = 68, .external_lex_state = 4}, - [551] = {.lex_state = 68, .external_lex_state = 4}, - [552] = {.lex_state = 68, .external_lex_state = 4}, + [550] = {.lex_state = 68}, + [551] = {.lex_state = 68}, + [552] = {.lex_state = 68}, [553] = {.lex_state = 68}, - [554] = {.lex_state = 66, .external_lex_state = 2}, - [555] = {.lex_state = 66, .external_lex_state = 2}, - [556] = {.lex_state = 66, .external_lex_state = 2}, + [554] = {.lex_state = 68}, + [555] = {.lex_state = 68}, + [556] = {.lex_state = 68}, [557] = {.lex_state = 68}, - [558] = {.lex_state = 66, .external_lex_state = 2}, + [558] = {.lex_state = 68}, [559] = {.lex_state = 68}, - [560] = {.lex_state = 68, .external_lex_state = 4}, + [560] = {.lex_state = 68}, [561] = {.lex_state = 68}, - [562] = {.lex_state = 66, .external_lex_state = 2}, - [563] = {.lex_state = 66, .external_lex_state = 2}, - [564] = {.lex_state = 66, .external_lex_state = 2}, - [565] = {.lex_state = 68, .external_lex_state = 4}, - [566] = {.lex_state = 68}, - [567] = {.lex_state = 66, .external_lex_state = 2}, - [568] = {.lex_state = 68, .external_lex_state = 4}, - [569] = {.lex_state = 68, .external_lex_state = 4}, - [570] = {.lex_state = 68}, - [571] = {.lex_state = 68}, - [572] = {.lex_state = 68, .external_lex_state = 4}, - [573] = {.lex_state = 68, .external_lex_state = 4}, - [574] = {.lex_state = 68, .external_lex_state = 4}, - [575] = {.lex_state = 68, .external_lex_state = 4}, - [576] = {.lex_state = 68}, - [577] = {.lex_state = 68, .external_lex_state = 4}, - [578] = {.lex_state = 68, .external_lex_state = 4}, - [579] = {.lex_state = 68, .external_lex_state = 4}, - [580] = {.lex_state = 68, .external_lex_state = 4}, - [581] = {.lex_state = 68}, - [582] = {.lex_state = 68}, - [583] = {.lex_state = 68}, - [584] = {.lex_state = 68}, - [585] = {.lex_state = 68}, - [586] = {.lex_state = 68}, - [587] = {.lex_state = 68}, - [588] = {.lex_state = 68}, - [589] = {.lex_state = 68}, - [590] = {.lex_state = 68}, - [591] = {.lex_state = 68}, - [592] = {.lex_state = 68}, - [593] = {.lex_state = 68}, - [594] = {.lex_state = 68}, - [595] = {.lex_state = 68}, - [596] = {.lex_state = 68}, + [562] = {.lex_state = 68}, + [563] = {.lex_state = 68}, + [564] = {.lex_state = 68}, + [565] = {.lex_state = 66, .external_lex_state = 3}, + [566] = {.lex_state = 66, .external_lex_state = 3}, + [567] = {.lex_state = 66, .external_lex_state = 3}, + [568] = {.lex_state = 66, .external_lex_state = 3}, + [569] = {.lex_state = 66, .external_lex_state = 2}, + [570] = {.lex_state = 66, .external_lex_state = 3}, + [571] = {.lex_state = 66, .external_lex_state = 2}, + [572] = {.lex_state = 66, .external_lex_state = 3}, + [573] = {.lex_state = 66, .external_lex_state = 3}, + [574] = {.lex_state = 66, .external_lex_state = 3}, + [575] = {.lex_state = 14}, + [576] = {.lex_state = 14}, + [577] = {.lex_state = 14}, + [578] = {.lex_state = 66, .external_lex_state = 2}, + [579] = {.lex_state = 14}, + [580] = {.lex_state = 66, .external_lex_state = 2}, + [581] = {.lex_state = 14}, + [582] = {.lex_state = 66, .external_lex_state = 2}, + [583] = {.lex_state = 66, .external_lex_state = 2}, + [584] = {.lex_state = 66, .external_lex_state = 2}, + [585] = {.lex_state = 6, .external_lex_state = 2}, + [586] = {.lex_state = 14}, + [587] = {.lex_state = 66, .external_lex_state = 2}, + [588] = {.lex_state = 14}, + [589] = {.lex_state = 66, .external_lex_state = 2}, + [590] = {.lex_state = 6, .external_lex_state = 2}, + [591] = {.lex_state = 66, .external_lex_state = 2}, + [592] = {.lex_state = 66, .external_lex_state = 2}, + [593] = {.lex_state = 66, .external_lex_state = 3}, + [594] = {.lex_state = 66, .external_lex_state = 3}, + [595] = {.lex_state = 66, .external_lex_state = 2}, + [596] = {.lex_state = 66, .external_lex_state = 2}, [597] = {.lex_state = 68}, - [598] = {.lex_state = 68}, - [599] = {.lex_state = 68}, - [600] = {.lex_state = 68}, + [598] = {.lex_state = 66, .external_lex_state = 2}, + [599] = {.lex_state = 66, .external_lex_state = 2}, + [600] = {.lex_state = 66, .external_lex_state = 2}, [601] = {.lex_state = 68}, - [602] = {.lex_state = 68}, - [603] = {.lex_state = 68}, - [604] = {.lex_state = 68}, - [605] = {.lex_state = 68}, - [606] = {.lex_state = 68}, - [607] = {.lex_state = 68}, - [608] = {.lex_state = 68}, - [609] = {.lex_state = 68}, - [610] = {.lex_state = 14}, + [602] = {.lex_state = 66, .external_lex_state = 2}, + [603] = {.lex_state = 66, .external_lex_state = 2}, + [604] = {.lex_state = 68, .external_lex_state = 4}, + [605] = {.lex_state = 66, .external_lex_state = 2}, + [606] = {.lex_state = 66, .external_lex_state = 2}, + [607] = {.lex_state = 66, .external_lex_state = 2}, + [608] = {.lex_state = 66, .external_lex_state = 2}, + [609] = {.lex_state = 66, .external_lex_state = 2}, + [610] = {.lex_state = 66, .external_lex_state = 2}, [611] = {.lex_state = 68}, - [612] = {.lex_state = 68}, - [613] = {.lex_state = 68}, - [614] = {.lex_state = 68}, - [615] = {.lex_state = 68}, - [616] = {.lex_state = 68}, - [617] = {.lex_state = 68}, - [618] = {.lex_state = 68}, + [612] = {.lex_state = 66, .external_lex_state = 2}, + [613] = {.lex_state = 66, .external_lex_state = 2}, + [614] = {.lex_state = 66, .external_lex_state = 2}, + [615] = {.lex_state = 66, .external_lex_state = 2}, + [616] = {.lex_state = 66, .external_lex_state = 2}, + [617] = {.lex_state = 66, .external_lex_state = 2}, + [618] = {.lex_state = 68, .external_lex_state = 4}, [619] = {.lex_state = 68}, [620] = {.lex_state = 68}, [621] = {.lex_state = 68}, [622] = {.lex_state = 68}, - [623] = {.lex_state = 68}, + [623] = {.lex_state = 66, .external_lex_state = 2}, [624] = {.lex_state = 68}, - [625] = {.lex_state = 68}, - [626] = {.lex_state = 68}, + [625] = {.lex_state = 68, .external_lex_state = 4}, + [626] = {.lex_state = 68, .external_lex_state = 4}, [627] = {.lex_state = 68}, - [628] = {.lex_state = 68}, - [629] = {.lex_state = 68}, + [628] = {.lex_state = 68, .external_lex_state = 4}, + [629] = {.lex_state = 68, .external_lex_state = 4}, [630] = {.lex_state = 68}, [631] = {.lex_state = 68}, [632] = {.lex_state = 68}, [633] = {.lex_state = 68}, - [634] = {.lex_state = 68}, - [635] = {.lex_state = 68}, + [634] = {.lex_state = 68, .external_lex_state = 4}, + [635] = {.lex_state = 68, .external_lex_state = 4}, [636] = {.lex_state = 68}, [637] = {.lex_state = 68}, [638] = {.lex_state = 68}, [639] = {.lex_state = 68}, [640] = {.lex_state = 68}, [641] = {.lex_state = 68}, - [642] = {.lex_state = 68}, - [643] = {.lex_state = 68}, - [644] = {.lex_state = 68}, - [645] = {.lex_state = 68}, - [646] = {.lex_state = 68}, - [647] = {.lex_state = 68}, - [648] = {.lex_state = 68}, - [649] = {.lex_state = 68}, - [650] = {.lex_state = 68}, + [642] = {.lex_state = 68, .external_lex_state = 4}, + [643] = {.lex_state = 68, .external_lex_state = 4}, + [644] = {.lex_state = 68, .external_lex_state = 4}, + [645] = {.lex_state = 68, .external_lex_state = 4}, + [646] = {.lex_state = 68, .external_lex_state = 4}, + [647] = {.lex_state = 68, .external_lex_state = 4}, + [648] = {.lex_state = 68, .external_lex_state = 4}, + [649] = {.lex_state = 68, .external_lex_state = 4}, + [650] = {.lex_state = 68, .external_lex_state = 4}, [651] = {.lex_state = 68}, [652] = {.lex_state = 68}, - [653] = {.lex_state = 68}, + [653] = {.lex_state = 68, .external_lex_state = 4}, [654] = {.lex_state = 68}, - [655] = {.lex_state = 68}, - [656] = {.lex_state = 68}, + [655] = {.lex_state = 68, .external_lex_state = 4}, + [656] = {.lex_state = 68, .external_lex_state = 4}, [657] = {.lex_state = 68}, [658] = {.lex_state = 68}, [659] = {.lex_state = 68}, @@ -6671,7 +6694,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [661] = {.lex_state = 68}, [662] = {.lex_state = 68}, [663] = {.lex_state = 68}, - [664] = {.lex_state = 68}, + [664] = {.lex_state = 14}, [665] = {.lex_state = 68}, [666] = {.lex_state = 68}, [667] = {.lex_state = 68}, @@ -6685,305 +6708,305 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [675] = {.lex_state = 68}, [676] = {.lex_state = 68}, [677] = {.lex_state = 68}, - [678] = {.lex_state = 14}, - [679] = {.lex_state = 14}, - [680] = {.lex_state = 14}, - [681] = {.lex_state = 14}, - [682] = {.lex_state = 14}, - [683] = {.lex_state = 14}, - [684] = {.lex_state = 14}, - [685] = {.lex_state = 66, .external_lex_state = 2}, - [686] = {.lex_state = 66, .external_lex_state = 3}, - [687] = {.lex_state = 66, .external_lex_state = 3}, - [688] = {.lex_state = 66, .external_lex_state = 3}, - [689] = {.lex_state = 66, .external_lex_state = 3}, - [690] = {.lex_state = 66, .external_lex_state = 3}, - [691] = {.lex_state = 66, .external_lex_state = 3}, - [692] = {.lex_state = 66, .external_lex_state = 3}, - [693] = {.lex_state = 66, .external_lex_state = 2}, - [694] = {.lex_state = 66, .external_lex_state = 2}, - [695] = {.lex_state = 6, .external_lex_state = 2}, - [696] = {.lex_state = 66, .external_lex_state = 2}, - [697] = {.lex_state = 66, .external_lex_state = 3}, - [698] = {.lex_state = 66, .external_lex_state = 3}, - [699] = {.lex_state = 66, .external_lex_state = 3}, - [700] = {.lex_state = 66, .external_lex_state = 3}, - [701] = {.lex_state = 66, .external_lex_state = 3}, - [702] = {.lex_state = 66, .external_lex_state = 3}, - [703] = {.lex_state = 66, .external_lex_state = 3}, - [704] = {.lex_state = 66, .external_lex_state = 2}, - [705] = {.lex_state = 66, .external_lex_state = 2}, - [706] = {.lex_state = 66, .external_lex_state = 2}, - [707] = {.lex_state = 66, .external_lex_state = 2}, - [708] = {.lex_state = 66, .external_lex_state = 2}, - [709] = {.lex_state = 6, .external_lex_state = 2}, - [710] = {.lex_state = 66, .external_lex_state = 2}, - [711] = {.lex_state = 66, .external_lex_state = 2}, - [712] = {.lex_state = 66, .external_lex_state = 2}, - [713] = {.lex_state = 66, .external_lex_state = 3}, - [714] = {.lex_state = 14}, - [715] = {.lex_state = 66, .external_lex_state = 3}, - [716] = {.lex_state = 66, .external_lex_state = 2}, - [717] = {.lex_state = 66, .external_lex_state = 2}, - [718] = {.lex_state = 66, .external_lex_state = 2}, - [719] = {.lex_state = 66, .external_lex_state = 2}, - [720] = {.lex_state = 66, .external_lex_state = 2}, - [721] = {.lex_state = 66, .external_lex_state = 2}, - [722] = {.lex_state = 66, .external_lex_state = 2}, - [723] = {.lex_state = 66, .external_lex_state = 2}, - [724] = {.lex_state = 66, .external_lex_state = 3}, - [725] = {.lex_state = 66, .external_lex_state = 2}, - [726] = {.lex_state = 66, .external_lex_state = 3}, - [727] = {.lex_state = 66, .external_lex_state = 3}, - [728] = {.lex_state = 66, .external_lex_state = 2}, - [729] = {.lex_state = 66, .external_lex_state = 2}, - [730] = {.lex_state = 66, .external_lex_state = 2}, - [731] = {.lex_state = 66, .external_lex_state = 2}, - [732] = {.lex_state = 66, .external_lex_state = 2}, - [733] = {.lex_state = 66, .external_lex_state = 2}, - [734] = {.lex_state = 66, .external_lex_state = 2}, - [735] = {.lex_state = 66, .external_lex_state = 3}, - [736] = {.lex_state = 66, .external_lex_state = 2}, - [737] = {.lex_state = 66, .external_lex_state = 2}, - [738] = {.lex_state = 66, .external_lex_state = 3}, - [739] = {.lex_state = 66, .external_lex_state = 2}, - [740] = {.lex_state = 66, .external_lex_state = 2}, - [741] = {.lex_state = 66, .external_lex_state = 2}, - [742] = {.lex_state = 66, .external_lex_state = 3}, - [743] = {.lex_state = 66, .external_lex_state = 2}, - [744] = {.lex_state = 66, .external_lex_state = 5}, - [745] = {.lex_state = 66, .external_lex_state = 2}, - [746] = {.lex_state = 14}, - [747] = {.lex_state = 66, .external_lex_state = 3}, - [748] = {.lex_state = 66, .external_lex_state = 3}, - [749] = {.lex_state = 66, .external_lex_state = 3}, - [750] = {.lex_state = 14}, - [751] = {.lex_state = 66, .external_lex_state = 3}, - [752] = {.lex_state = 14}, + [678] = {.lex_state = 68}, + [679] = {.lex_state = 68}, + [680] = {.lex_state = 68}, + [681] = {.lex_state = 68}, + [682] = {.lex_state = 68}, + [683] = {.lex_state = 68}, + [684] = {.lex_state = 68}, + [685] = {.lex_state = 68}, + [686] = {.lex_state = 68}, + [687] = {.lex_state = 68}, + [688] = {.lex_state = 68}, + [689] = {.lex_state = 68}, + [690] = {.lex_state = 68}, + [691] = {.lex_state = 68}, + [692] = {.lex_state = 68}, + [693] = {.lex_state = 68}, + [694] = {.lex_state = 68}, + [695] = {.lex_state = 68}, + [696] = {.lex_state = 68}, + [697] = {.lex_state = 68}, + [698] = {.lex_state = 68}, + [699] = {.lex_state = 68}, + [700] = {.lex_state = 68}, + [701] = {.lex_state = 68}, + [702] = {.lex_state = 68}, + [703] = {.lex_state = 68}, + [704] = {.lex_state = 68}, + [705] = {.lex_state = 68}, + [706] = {.lex_state = 68}, + [707] = {.lex_state = 68}, + [708] = {.lex_state = 68}, + [709] = {.lex_state = 68}, + [710] = {.lex_state = 68}, + [711] = {.lex_state = 68}, + [712] = {.lex_state = 68}, + [713] = {.lex_state = 68}, + [714] = {.lex_state = 68}, + [715] = {.lex_state = 68}, + [716] = {.lex_state = 68}, + [717] = {.lex_state = 68}, + [718] = {.lex_state = 68}, + [719] = {.lex_state = 68}, + [720] = {.lex_state = 68}, + [721] = {.lex_state = 68}, + [722] = {.lex_state = 68}, + [723] = {.lex_state = 68}, + [724] = {.lex_state = 68}, + [725] = {.lex_state = 68}, + [726] = {.lex_state = 68}, + [727] = {.lex_state = 68}, + [728] = {.lex_state = 68}, + [729] = {.lex_state = 68}, + [730] = {.lex_state = 68}, + [731] = {.lex_state = 68}, + [732] = {.lex_state = 68}, + [733] = {.lex_state = 68}, + [734] = {.lex_state = 68}, + [735] = {.lex_state = 68}, + [736] = {.lex_state = 68}, + [737] = {.lex_state = 68}, + [738] = {.lex_state = 68}, + [739] = {.lex_state = 68}, + [740] = {.lex_state = 68}, + [741] = {.lex_state = 68}, + [742] = {.lex_state = 68}, + [743] = {.lex_state = 68}, + [744] = {.lex_state = 68}, + [745] = {.lex_state = 68}, + [746] = {.lex_state = 68}, + [747] = {.lex_state = 68}, + [748] = {.lex_state = 68}, + [749] = {.lex_state = 68}, + [750] = {.lex_state = 68}, + [751] = {.lex_state = 68}, + [752] = {.lex_state = 68}, [753] = {.lex_state = 66, .external_lex_state = 3}, - [754] = {.lex_state = 66, .external_lex_state = 2}, - [755] = {.lex_state = 14}, + [754] = {.lex_state = 66, .external_lex_state = 3}, + [755] = {.lex_state = 66, .external_lex_state = 3}, [756] = {.lex_state = 66, .external_lex_state = 3}, - [757] = {.lex_state = 14}, + [757] = {.lex_state = 66, .external_lex_state = 3}, [758] = {.lex_state = 66, .external_lex_state = 3}, - [759] = {.lex_state = 66, .external_lex_state = 3}, - [760] = {.lex_state = 66, .external_lex_state = 2}, - [761] = {.lex_state = 66, .external_lex_state = 2}, - [762] = {.lex_state = 66, .external_lex_state = 3}, + [759] = {.lex_state = 14}, + [760] = {.lex_state = 14}, + [761] = {.lex_state = 14}, + [762] = {.lex_state = 14}, [763] = {.lex_state = 14}, - [764] = {.lex_state = 66, .external_lex_state = 3}, - [765] = {.lex_state = 66, .external_lex_state = 2}, + [764] = {.lex_state = 14}, + [765] = {.lex_state = 14}, [766] = {.lex_state = 66, .external_lex_state = 3}, [767] = {.lex_state = 66, .external_lex_state = 3}, - [768] = {.lex_state = 66, .external_lex_state = 3}, - [769] = {.lex_state = 14}, - [770] = {.lex_state = 16}, - [771] = {.lex_state = 6, .external_lex_state = 2}, - [772] = {.lex_state = 66, .external_lex_state = 3}, - [773] = {.lex_state = 66, .external_lex_state = 3}, - [774] = {.lex_state = 14}, - [775] = {.lex_state = 14}, - [776] = {.lex_state = 16}, + [768] = {.lex_state = 66, .external_lex_state = 2}, + [769] = {.lex_state = 66, .external_lex_state = 3}, + [770] = {.lex_state = 66, .external_lex_state = 3}, + [771] = {.lex_state = 66, .external_lex_state = 3}, + [772] = {.lex_state = 14}, + [773] = {.lex_state = 66, .external_lex_state = 2}, + [774] = {.lex_state = 66, .external_lex_state = 3}, + [775] = {.lex_state = 66, .external_lex_state = 3}, + [776] = {.lex_state = 66, .external_lex_state = 2}, [777] = {.lex_state = 66, .external_lex_state = 2}, - [778] = {.lex_state = 16}, - [779] = {.lex_state = 14}, - [780] = {.lex_state = 14}, - [781] = {.lex_state = 14}, - [782] = {.lex_state = 14}, - [783] = {.lex_state = 16}, + [778] = {.lex_state = 66, .external_lex_state = 2}, + [779] = {.lex_state = 66, .external_lex_state = 2}, + [780] = {.lex_state = 66, .external_lex_state = 2}, + [781] = {.lex_state = 6, .external_lex_state = 2}, + [782] = {.lex_state = 66, .external_lex_state = 2}, + [783] = {.lex_state = 66, .external_lex_state = 2}, [784] = {.lex_state = 66, .external_lex_state = 2}, - [785] = {.lex_state = 14}, + [785] = {.lex_state = 6, .external_lex_state = 2}, [786] = {.lex_state = 66, .external_lex_state = 2}, [787] = {.lex_state = 66, .external_lex_state = 2}, - [788] = {.lex_state = 14}, - [789] = {.lex_state = 14}, - [790] = {.lex_state = 16}, - [791] = {.lex_state = 14}, + [788] = {.lex_state = 66, .external_lex_state = 2}, + [789] = {.lex_state = 66, .external_lex_state = 3}, + [790] = {.lex_state = 66, .external_lex_state = 2}, + [791] = {.lex_state = 66, .external_lex_state = 3}, [792] = {.lex_state = 66, .external_lex_state = 3}, - [793] = {.lex_state = 14}, - [794] = {.lex_state = 16}, - [795] = {.lex_state = 14}, - [796] = {.lex_state = 14}, - [797] = {.lex_state = 14}, - [798] = {.lex_state = 66, .external_lex_state = 2}, - [799] = {.lex_state = 66, .external_lex_state = 2}, + [793] = {.lex_state = 66, .external_lex_state = 3}, + [794] = {.lex_state = 66, .external_lex_state = 2}, + [795] = {.lex_state = 66, .external_lex_state = 3}, + [796] = {.lex_state = 66, .external_lex_state = 3}, + [797] = {.lex_state = 66, .external_lex_state = 2}, + [798] = {.lex_state = 66, .external_lex_state = 3}, + [799] = {.lex_state = 66, .external_lex_state = 3}, [800] = {.lex_state = 66, .external_lex_state = 2}, - [801] = {.lex_state = 14}, - [802] = {.lex_state = 16}, - [803] = {.lex_state = 66, .external_lex_state = 3}, - [804] = {.lex_state = 14}, - [805] = {.lex_state = 14}, - [806] = {.lex_state = 66, .external_lex_state = 2}, - [807] = {.lex_state = 16}, - [808] = {.lex_state = 66, .external_lex_state = 3}, - [809] = {.lex_state = 6, .external_lex_state = 2}, - [810] = {.lex_state = 14}, - [811] = {.lex_state = 6, .external_lex_state = 2}, - [812] = {.lex_state = 14}, - [813] = {.lex_state = 14}, - [814] = {.lex_state = 16}, + [801] = {.lex_state = 66, .external_lex_state = 3}, + [802] = {.lex_state = 66, .external_lex_state = 2}, + [803] = {.lex_state = 66, .external_lex_state = 2}, + [804] = {.lex_state = 66, .external_lex_state = 5}, + [805] = {.lex_state = 66, .external_lex_state = 3}, + [806] = {.lex_state = 66, .external_lex_state = 3}, + [807] = {.lex_state = 66, .external_lex_state = 3}, + [808] = {.lex_state = 66, .external_lex_state = 2}, + [809] = {.lex_state = 66, .external_lex_state = 2}, + [810] = {.lex_state = 66, .external_lex_state = 2}, + [811] = {.lex_state = 66, .external_lex_state = 2}, + [812] = {.lex_state = 66, .external_lex_state = 2}, + [813] = {.lex_state = 66, .external_lex_state = 3}, + [814] = {.lex_state = 66, .external_lex_state = 3}, [815] = {.lex_state = 66, .external_lex_state = 2}, [816] = {.lex_state = 66, .external_lex_state = 2}, - [817] = {.lex_state = 6, .external_lex_state = 2}, - [818] = {.lex_state = 6, .external_lex_state = 2}, - [819] = {.lex_state = 14}, - [820] = {.lex_state = 14}, - [821] = {.lex_state = 66, .external_lex_state = 3}, - [822] = {.lex_state = 6, .external_lex_state = 2}, - [823] = {.lex_state = 14}, - [824] = {.lex_state = 66, .external_lex_state = 3}, + [817] = {.lex_state = 66, .external_lex_state = 3}, + [818] = {.lex_state = 66, .external_lex_state = 3}, + [819] = {.lex_state = 66, .external_lex_state = 3}, + [820] = {.lex_state = 66, .external_lex_state = 2}, + [821] = {.lex_state = 66, .external_lex_state = 2}, + [822] = {.lex_state = 66, .external_lex_state = 3}, + [823] = {.lex_state = 6, .external_lex_state = 2}, + [824] = {.lex_state = 66, .external_lex_state = 2}, [825] = {.lex_state = 14}, - [826] = {.lex_state = 14}, - [827] = {.lex_state = 14}, - [828] = {.lex_state = 66, .external_lex_state = 2}, + [826] = {.lex_state = 6, .external_lex_state = 2}, + [827] = {.lex_state = 66, .external_lex_state = 2}, + [828] = {.lex_state = 6, .external_lex_state = 2}, [829] = {.lex_state = 66, .external_lex_state = 2}, - [830] = {.lex_state = 66, .external_lex_state = 3}, - [831] = {.lex_state = 66, .external_lex_state = 2}, - [832] = {.lex_state = 66, .external_lex_state = 3}, - [833] = {.lex_state = 14}, - [834] = {.lex_state = 6, .external_lex_state = 2}, - [835] = {.lex_state = 14}, - [836] = {.lex_state = 66, .external_lex_state = 5}, - [837] = {.lex_state = 14}, - [838] = {.lex_state = 14}, - [839] = {.lex_state = 14}, - [840] = {.lex_state = 14}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, - [843] = {.lex_state = 14}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 14}, - [847] = {.lex_state = 14}, - [848] = {.lex_state = 14}, - [849] = {.lex_state = 14}, - [850] = {.lex_state = 66, .external_lex_state = 3}, - [851] = {.lex_state = 14}, - [852] = {.lex_state = 14}, - [853] = {.lex_state = 14}, - [854] = {.lex_state = 14}, + [830] = {.lex_state = 66, .external_lex_state = 2}, + [831] = {.lex_state = 66, .external_lex_state = 3}, + [832] = {.lex_state = 66, .external_lex_state = 2}, + [833] = {.lex_state = 66, .external_lex_state = 2}, + [834] = {.lex_state = 66, .external_lex_state = 2}, + [835] = {.lex_state = 66, .external_lex_state = 3}, + [836] = {.lex_state = 66, .external_lex_state = 2}, + [837] = {.lex_state = 66, .external_lex_state = 2}, + [838] = {.lex_state = 66, .external_lex_state = 2}, + [839] = {.lex_state = 66, .external_lex_state = 3}, + [840] = {.lex_state = 66, .external_lex_state = 2}, + [841] = {.lex_state = 66, .external_lex_state = 2}, + [842] = {.lex_state = 66, .external_lex_state = 3}, + [843] = {.lex_state = 66, .external_lex_state = 2}, + [844] = {.lex_state = 66, .external_lex_state = 2}, + [845] = {.lex_state = 66, .external_lex_state = 3}, + [846] = {.lex_state = 66, .external_lex_state = 2}, + [847] = {.lex_state = 66, .external_lex_state = 3}, + [848] = {.lex_state = 66, .external_lex_state = 3}, + [849] = {.lex_state = 66, .external_lex_state = 2}, + [850] = {.lex_state = 66, .external_lex_state = 2}, + [851] = {.lex_state = 66, .external_lex_state = 2}, + [852] = {.lex_state = 66, .external_lex_state = 3}, + [853] = {.lex_state = 66, .external_lex_state = 2}, + [854] = {.lex_state = 66, .external_lex_state = 3}, [855] = {.lex_state = 66, .external_lex_state = 3}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 14}, - [858] = {.lex_state = 66, .external_lex_state = 3}, - [859] = {.lex_state = 66, .external_lex_state = 3}, - [860] = {.lex_state = 14}, - [861] = {.lex_state = 14}, - [862] = {.lex_state = 14}, - [863] = {.lex_state = 14}, - [864] = {.lex_state = 14}, - [865] = {.lex_state = 14}, - [866] = {.lex_state = 14}, - [867] = {.lex_state = 14}, - [868] = {.lex_state = 14}, - [869] = {.lex_state = 14}, - [870] = {.lex_state = 14}, - [871] = {.lex_state = 14}, - [872] = {.lex_state = 14}, + [856] = {.lex_state = 66, .external_lex_state = 2}, + [857] = {.lex_state = 66, .external_lex_state = 3}, + [858] = {.lex_state = 66, .external_lex_state = 2}, + [859] = {.lex_state = 66, .external_lex_state = 6}, + [860] = {.lex_state = 66, .external_lex_state = 2}, + [861] = {.lex_state = 66, .external_lex_state = 3}, + [862] = {.lex_state = 66, .external_lex_state = 3}, + [863] = {.lex_state = 6, .external_lex_state = 2}, + [864] = {.lex_state = 66, .external_lex_state = 2}, + [865] = {.lex_state = 66, .external_lex_state = 2}, + [866] = {.lex_state = 66, .external_lex_state = 2}, + [867] = {.lex_state = 66, .external_lex_state = 6}, + [868] = {.lex_state = 66, .external_lex_state = 2}, + [869] = {.lex_state = 66, .external_lex_state = 2}, + [870] = {.lex_state = 66, .external_lex_state = 2}, + [871] = {.lex_state = 14, .external_lex_state = 7}, + [872] = {.lex_state = 66, .external_lex_state = 2}, [873] = {.lex_state = 14}, - [874] = {.lex_state = 14}, - [875] = {.lex_state = 14}, - [876] = {.lex_state = 14}, - [877] = {.lex_state = 14}, + [874] = {.lex_state = 14, .external_lex_state = 7}, + [875] = {.lex_state = 14, .external_lex_state = 7}, + [876] = {.lex_state = 14, .external_lex_state = 7}, + [877] = {.lex_state = 6, .external_lex_state = 2}, [878] = {.lex_state = 14}, - [879] = {.lex_state = 14}, - [880] = {.lex_state = 14}, + [879] = {.lex_state = 14, .external_lex_state = 7}, + [880] = {.lex_state = 14, .external_lex_state = 7}, [881] = {.lex_state = 14}, - [882] = {.lex_state = 14}, - [883] = {.lex_state = 14}, - [884] = {.lex_state = 14}, - [885] = {.lex_state = 14}, + [882] = {.lex_state = 66, .external_lex_state = 2}, + [883] = {.lex_state = 66, .external_lex_state = 2}, + [884] = {.lex_state = 66, .external_lex_state = 2}, + [885] = {.lex_state = 66, .external_lex_state = 2}, [886] = {.lex_state = 66, .external_lex_state = 2}, - [887] = {.lex_state = 14}, - [888] = {.lex_state = 14}, + [887] = {.lex_state = 14, .external_lex_state = 7}, + [888] = {.lex_state = 6, .external_lex_state = 2}, [889] = {.lex_state = 14}, [890] = {.lex_state = 14}, - [891] = {.lex_state = 14}, - [892] = {.lex_state = 66, .external_lex_state = 2}, - [893] = {.lex_state = 66, .external_lex_state = 2}, - [894] = {.lex_state = 66, .external_lex_state = 3}, - [895] = {.lex_state = 66, .external_lex_state = 3}, - [896] = {.lex_state = 14}, - [897] = {.lex_state = 14}, - [898] = {.lex_state = 14}, - [899] = {.lex_state = 14}, - [900] = {.lex_state = 14}, - [901] = {.lex_state = 14}, + [891] = {.lex_state = 66, .external_lex_state = 3}, + [892] = {.lex_state = 14}, + [893] = {.lex_state = 14, .external_lex_state = 7}, + [894] = {.lex_state = 14, .external_lex_state = 7}, + [895] = {.lex_state = 14, .external_lex_state = 7}, + [896] = {.lex_state = 66, .external_lex_state = 2}, + [897] = {.lex_state = 6, .external_lex_state = 2}, + [898] = {.lex_state = 14, .external_lex_state = 7}, + [899] = {.lex_state = 66, .external_lex_state = 2}, + [900] = {.lex_state = 6, .external_lex_state = 2}, + [901] = {.lex_state = 66, .external_lex_state = 2}, [902] = {.lex_state = 14}, [903] = {.lex_state = 14}, - [904] = {.lex_state = 14}, - [905] = {.lex_state = 14}, - [906] = {.lex_state = 14}, - [907] = {.lex_state = 14}, - [908] = {.lex_state = 14}, - [909] = {.lex_state = 14}, - [910] = {.lex_state = 14}, - [911] = {.lex_state = 14}, - [912] = {.lex_state = 14}, + [904] = {.lex_state = 66, .external_lex_state = 2}, + [905] = {.lex_state = 66, .external_lex_state = 3}, + [906] = {.lex_state = 66, .external_lex_state = 2}, + [907] = {.lex_state = 14, .external_lex_state = 7}, + [908] = {.lex_state = 66, .external_lex_state = 3}, + [909] = {.lex_state = 66, .external_lex_state = 2}, + [910] = {.lex_state = 14, .external_lex_state = 7}, + [911] = {.lex_state = 14, .external_lex_state = 7}, + [912] = {.lex_state = 66, .external_lex_state = 2}, [913] = {.lex_state = 66, .external_lex_state = 2}, [914] = {.lex_state = 66, .external_lex_state = 3}, [915] = {.lex_state = 14}, - [916] = {.lex_state = 14}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 14}, - [919] = {.lex_state = 14}, - [920] = {.lex_state = 14}, - [921] = {.lex_state = 14}, + [916] = {.lex_state = 66, .external_lex_state = 2}, + [917] = {.lex_state = 66, .external_lex_state = 2}, + [918] = {.lex_state = 66, .external_lex_state = 2}, + [919] = {.lex_state = 14, .external_lex_state = 7}, + [920] = {.lex_state = 66, .external_lex_state = 2}, + [921] = {.lex_state = 14, .external_lex_state = 7}, [922] = {.lex_state = 14}, - [923] = {.lex_state = 14}, - [924] = {.lex_state = 14}, + [923] = {.lex_state = 66, .external_lex_state = 2}, + [924] = {.lex_state = 66, .external_lex_state = 2}, [925] = {.lex_state = 14}, - [926] = {.lex_state = 66, .external_lex_state = 3}, - [927] = {.lex_state = 14}, - [928] = {.lex_state = 14}, + [926] = {.lex_state = 14}, + [927] = {.lex_state = 66, .external_lex_state = 2}, + [928] = {.lex_state = 16}, [929] = {.lex_state = 14}, [930] = {.lex_state = 14}, [931] = {.lex_state = 14}, - [932] = {.lex_state = 14}, + [932] = {.lex_state = 66, .external_lex_state = 2}, [933] = {.lex_state = 14}, [934] = {.lex_state = 14}, - [935] = {.lex_state = 66, .external_lex_state = 2}, - [936] = {.lex_state = 66, .external_lex_state = 2}, + [935] = {.lex_state = 14}, + [936] = {.lex_state = 14}, [937] = {.lex_state = 14}, - [938] = {.lex_state = 14}, + [938] = {.lex_state = 66, .external_lex_state = 2}, [939] = {.lex_state = 14}, - [940] = {.lex_state = 66, .external_lex_state = 2}, + [940] = {.lex_state = 14}, [941] = {.lex_state = 14}, [942] = {.lex_state = 14}, [943] = {.lex_state = 14}, - [944] = {.lex_state = 14}, + [944] = {.lex_state = 16}, [945] = {.lex_state = 14}, - [946] = {.lex_state = 14}, - [947] = {.lex_state = 66, .external_lex_state = 3}, + [946] = {.lex_state = 66, .external_lex_state = 2}, + [947] = {.lex_state = 66, .external_lex_state = 2}, [948] = {.lex_state = 14}, - [949] = {.lex_state = 14}, + [949] = {.lex_state = 14, .external_lex_state = 7}, [950] = {.lex_state = 14}, [951] = {.lex_state = 14}, [952] = {.lex_state = 14}, - [953] = {.lex_state = 66, .external_lex_state = 2}, + [953] = {.lex_state = 16}, [954] = {.lex_state = 14}, [955] = {.lex_state = 14}, - [956] = {.lex_state = 14}, - [957] = {.lex_state = 14}, - [958] = {.lex_state = 14}, + [956] = {.lex_state = 66, .external_lex_state = 2}, + [957] = {.lex_state = 66, .external_lex_state = 2}, + [958] = {.lex_state = 66, .external_lex_state = 2}, [959] = {.lex_state = 14}, [960] = {.lex_state = 14}, - [961] = {.lex_state = 14}, + [961] = {.lex_state = 66, .external_lex_state = 3}, [962] = {.lex_state = 14}, [963] = {.lex_state = 14}, - [964] = {.lex_state = 66, .external_lex_state = 2}, - [965] = {.lex_state = 14}, - [966] = {.lex_state = 14}, - [967] = {.lex_state = 14}, - [968] = {.lex_state = 14}, - [969] = {.lex_state = 14}, - [970] = {.lex_state = 14}, - [971] = {.lex_state = 14}, + [964] = {.lex_state = 14}, + [965] = {.lex_state = 66, .external_lex_state = 3}, + [966] = {.lex_state = 16}, + [967] = {.lex_state = 6, .external_lex_state = 2}, + [968] = {.lex_state = 14, .external_lex_state = 7}, + [969] = {.lex_state = 16}, + [970] = {.lex_state = 66, .external_lex_state = 2}, + [971] = {.lex_state = 6, .external_lex_state = 2}, [972] = {.lex_state = 14}, [973] = {.lex_state = 14}, - [974] = {.lex_state = 14}, + [974] = {.lex_state = 16}, [975] = {.lex_state = 14}, - [976] = {.lex_state = 6, .external_lex_state = 2}, + [976] = {.lex_state = 14}, [977] = {.lex_state = 14}, [978] = {.lex_state = 14}, [979] = {.lex_state = 14}, @@ -6994,7 +7017,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [984] = {.lex_state = 14}, [985] = {.lex_state = 14}, [986] = {.lex_state = 14}, - [987] = {.lex_state = 66, .external_lex_state = 3}, + [987] = {.lex_state = 14}, [988] = {.lex_state = 14}, [989] = {.lex_state = 14}, [990] = {.lex_state = 14}, @@ -7004,12 +7027,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [994] = {.lex_state = 14}, [995] = {.lex_state = 14}, [996] = {.lex_state = 14}, - [997] = {.lex_state = 66, .external_lex_state = 3}, + [997] = {.lex_state = 14}, [998] = {.lex_state = 14}, - [999] = {.lex_state = 66, .external_lex_state = 3}, + [999] = {.lex_state = 14}, [1000] = {.lex_state = 14}, [1001] = {.lex_state = 14}, - [1002] = {.lex_state = 14}, + [1002] = {.lex_state = 66, .external_lex_state = 2}, [1003] = {.lex_state = 14}, [1004] = {.lex_state = 14}, [1005] = {.lex_state = 14}, @@ -7018,22 +7041,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1008] = {.lex_state = 14}, [1009] = {.lex_state = 14}, [1010] = {.lex_state = 14}, - [1011] = {.lex_state = 66, .external_lex_state = 3}, - [1012] = {.lex_state = 66, .external_lex_state = 2}, + [1011] = {.lex_state = 14}, + [1012] = {.lex_state = 14}, [1013] = {.lex_state = 14}, [1014] = {.lex_state = 14}, [1015] = {.lex_state = 14}, [1016] = {.lex_state = 14}, [1017] = {.lex_state = 14}, - [1018] = {.lex_state = 14}, + [1018] = {.lex_state = 66, .external_lex_state = 2}, [1019] = {.lex_state = 14}, [1020] = {.lex_state = 14}, [1021] = {.lex_state = 14}, [1022] = {.lex_state = 14}, [1023] = {.lex_state = 14}, - [1024] = {.lex_state = 66, .external_lex_state = 3}, + [1024] = {.lex_state = 14}, [1025] = {.lex_state = 14}, - [1026] = {.lex_state = 66, .external_lex_state = 3}, + [1026] = {.lex_state = 14}, [1027] = {.lex_state = 14}, [1028] = {.lex_state = 14}, [1029] = {.lex_state = 14}, @@ -7045,156 +7068,156 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1035] = {.lex_state = 14}, [1036] = {.lex_state = 14}, [1037] = {.lex_state = 14}, - [1038] = {.lex_state = 6, .external_lex_state = 2}, + [1038] = {.lex_state = 14}, [1039] = {.lex_state = 14}, - [1040] = {.lex_state = 66, .external_lex_state = 3}, + [1040] = {.lex_state = 14}, [1041] = {.lex_state = 14}, [1042] = {.lex_state = 14}, - [1043] = {.lex_state = 66, .external_lex_state = 3}, - [1044] = {.lex_state = 66, .external_lex_state = 3}, + [1043] = {.lex_state = 14}, + [1044] = {.lex_state = 14}, [1045] = {.lex_state = 14}, - [1046] = {.lex_state = 66, .external_lex_state = 3}, + [1046] = {.lex_state = 14}, [1047] = {.lex_state = 14}, - [1048] = {.lex_state = 66, .external_lex_state = 2}, - [1049] = {.lex_state = 66, .external_lex_state = 3}, + [1048] = {.lex_state = 14}, + [1049] = {.lex_state = 14}, [1050] = {.lex_state = 14}, [1051] = {.lex_state = 14}, - [1052] = {.lex_state = 66, .external_lex_state = 3}, + [1052] = {.lex_state = 14}, [1053] = {.lex_state = 14}, [1054] = {.lex_state = 14}, [1055] = {.lex_state = 14}, - [1056] = {.lex_state = 14}, + [1056] = {.lex_state = 66, .external_lex_state = 3}, [1057] = {.lex_state = 14}, - [1058] = {.lex_state = 66, .external_lex_state = 3}, + [1058] = {.lex_state = 14}, [1059] = {.lex_state = 14}, [1060] = {.lex_state = 14}, [1061] = {.lex_state = 14}, [1062] = {.lex_state = 14}, [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 66, .external_lex_state = 3}, + [1064] = {.lex_state = 14}, [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 66, .external_lex_state = 3}, + [1066] = {.lex_state = 14}, [1067] = {.lex_state = 14}, [1068] = {.lex_state = 14}, [1069] = {.lex_state = 14}, [1070] = {.lex_state = 14}, - [1071] = {.lex_state = 66, .external_lex_state = 3}, + [1071] = {.lex_state = 14}, [1072] = {.lex_state = 14}, [1073] = {.lex_state = 14}, [1074] = {.lex_state = 14}, [1075] = {.lex_state = 14}, - [1076] = {.lex_state = 66, .external_lex_state = 2}, + [1076] = {.lex_state = 14}, [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 66, .external_lex_state = 2}, - [1079] = {.lex_state = 66, .external_lex_state = 2}, - [1080] = {.lex_state = 66, .external_lex_state = 2}, - [1081] = {.lex_state = 66, .external_lex_state = 3}, - [1082] = {.lex_state = 66, .external_lex_state = 3}, - [1083] = {.lex_state = 66, .external_lex_state = 2}, - [1084] = {.lex_state = 66, .external_lex_state = 2}, - [1085] = {.lex_state = 66, .external_lex_state = 3}, - [1086] = {.lex_state = 66, .external_lex_state = 2}, - [1087] = {.lex_state = 6, .external_lex_state = 2}, - [1088] = {.lex_state = 6, .external_lex_state = 2}, - [1089] = {.lex_state = 66, .external_lex_state = 2}, - [1090] = {.lex_state = 66, .external_lex_state = 2}, - [1091] = {.lex_state = 66, .external_lex_state = 2}, - [1092] = {.lex_state = 66, .external_lex_state = 3}, - [1093] = {.lex_state = 66, .external_lex_state = 2}, - [1094] = {.lex_state = 66, .external_lex_state = 3}, - [1095] = {.lex_state = 66, .external_lex_state = 3}, - [1096] = {.lex_state = 66, .external_lex_state = 3}, - [1097] = {.lex_state = 66, .external_lex_state = 2}, - [1098] = {.lex_state = 6, .external_lex_state = 2}, - [1099] = {.lex_state = 66, .external_lex_state = 2}, - [1100] = {.lex_state = 6, .external_lex_state = 2}, - [1101] = {.lex_state = 6, .external_lex_state = 2}, - [1102] = {.lex_state = 66, .external_lex_state = 2}, - [1103] = {.lex_state = 66, .external_lex_state = 2}, - [1104] = {.lex_state = 66, .external_lex_state = 2}, - [1105] = {.lex_state = 66, .external_lex_state = 2}, - [1106] = {.lex_state = 66, .external_lex_state = 3}, - [1107] = {.lex_state = 66, .external_lex_state = 2}, - [1108] = {.lex_state = 6, .external_lex_state = 2}, - [1109] = {.lex_state = 16}, - [1110] = {.lex_state = 6, .external_lex_state = 2}, - [1111] = {.lex_state = 6, .external_lex_state = 2}, - [1112] = {.lex_state = 6, .external_lex_state = 2}, - [1113] = {.lex_state = 6, .external_lex_state = 2}, - [1114] = {.lex_state = 66, .external_lex_state = 3}, - [1115] = {.lex_state = 6, .external_lex_state = 2}, - [1116] = {.lex_state = 6, .external_lex_state = 2}, - [1117] = {.lex_state = 66, .external_lex_state = 2}, - [1118] = {.lex_state = 66, .external_lex_state = 2}, - [1119] = {.lex_state = 66, .external_lex_state = 2}, - [1120] = {.lex_state = 6, .external_lex_state = 2}, - [1121] = {.lex_state = 66, .external_lex_state = 2}, - [1122] = {.lex_state = 66, .external_lex_state = 2}, - [1123] = {.lex_state = 66, .external_lex_state = 2}, - [1124] = {.lex_state = 66, .external_lex_state = 2}, - [1125] = {.lex_state = 66, .external_lex_state = 2}, - [1126] = {.lex_state = 6, .external_lex_state = 2}, - [1127] = {.lex_state = 6, .external_lex_state = 2}, - [1128] = {.lex_state = 6, .external_lex_state = 2}, - [1129] = {.lex_state = 66, .external_lex_state = 2}, - [1130] = {.lex_state = 66, .external_lex_state = 2}, - [1131] = {.lex_state = 66, .external_lex_state = 2}, - [1132] = {.lex_state = 66, .external_lex_state = 2}, - [1133] = {.lex_state = 16}, - [1134] = {.lex_state = 66, .external_lex_state = 2}, - [1135] = {.lex_state = 66, .external_lex_state = 2}, - [1136] = {.lex_state = 66, .external_lex_state = 2}, - [1137] = {.lex_state = 66, .external_lex_state = 2}, - [1138] = {.lex_state = 66, .external_lex_state = 2}, - [1139] = {.lex_state = 66, .external_lex_state = 2}, - [1140] = {.lex_state = 66, .external_lex_state = 3}, - [1141] = {.lex_state = 6, .external_lex_state = 2}, - [1142] = {.lex_state = 66, .external_lex_state = 2}, - [1143] = {.lex_state = 66, .external_lex_state = 3}, - [1144] = {.lex_state = 66, .external_lex_state = 3}, - [1145] = {.lex_state = 66, .external_lex_state = 2}, - [1146] = {.lex_state = 66, .external_lex_state = 2}, - [1147] = {.lex_state = 66, .external_lex_state = 2}, - [1148] = {.lex_state = 66, .external_lex_state = 2}, - [1149] = {.lex_state = 66, .external_lex_state = 2}, - [1150] = {.lex_state = 66, .external_lex_state = 2}, - [1151] = {.lex_state = 66, .external_lex_state = 2}, - [1152] = {.lex_state = 66, .external_lex_state = 2}, - [1153] = {.lex_state = 66, .external_lex_state = 2}, - [1154] = {.lex_state = 66, .external_lex_state = 2}, + [1078] = {.lex_state = 14}, + [1079] = {.lex_state = 14}, + [1080] = {.lex_state = 14}, + [1081] = {.lex_state = 14}, + [1082] = {.lex_state = 14}, + [1083] = {.lex_state = 14}, + [1084] = {.lex_state = 14}, + [1085] = {.lex_state = 14}, + [1086] = {.lex_state = 14}, + [1087] = {.lex_state = 14}, + [1088] = {.lex_state = 14}, + [1089] = {.lex_state = 14}, + [1090] = {.lex_state = 14}, + [1091] = {.lex_state = 14}, + [1092] = {.lex_state = 14}, + [1093] = {.lex_state = 14}, + [1094] = {.lex_state = 14}, + [1095] = {.lex_state = 14}, + [1096] = {.lex_state = 14}, + [1097] = {.lex_state = 14}, + [1098] = {.lex_state = 14}, + [1099] = {.lex_state = 14}, + [1100] = {.lex_state = 14}, + [1101] = {.lex_state = 14}, + [1102] = {.lex_state = 14}, + [1103] = {.lex_state = 14}, + [1104] = {.lex_state = 14}, + [1105] = {.lex_state = 14}, + [1106] = {.lex_state = 14}, + [1107] = {.lex_state = 14}, + [1108] = {.lex_state = 14}, + [1109] = {.lex_state = 14}, + [1110] = {.lex_state = 14}, + [1111] = {.lex_state = 14}, + [1112] = {.lex_state = 14}, + [1113] = {.lex_state = 14}, + [1114] = {.lex_state = 14}, + [1115] = {.lex_state = 14}, + [1116] = {.lex_state = 14}, + [1117] = {.lex_state = 14}, + [1118] = {.lex_state = 14}, + [1119] = {.lex_state = 14}, + [1120] = {.lex_state = 14}, + [1121] = {.lex_state = 14}, + [1122] = {.lex_state = 14}, + [1123] = {.lex_state = 14}, + [1124] = {.lex_state = 14}, + [1125] = {.lex_state = 14}, + [1126] = {.lex_state = 14}, + [1127] = {.lex_state = 14}, + [1128] = {.lex_state = 14}, + [1129] = {.lex_state = 14}, + [1130] = {.lex_state = 14}, + [1131] = {.lex_state = 14}, + [1132] = {.lex_state = 14}, + [1133] = {.lex_state = 14}, + [1134] = {.lex_state = 14}, + [1135] = {.lex_state = 14}, + [1136] = {.lex_state = 14}, + [1137] = {.lex_state = 14}, + [1138] = {.lex_state = 66, .external_lex_state = 3}, + [1139] = {.lex_state = 14}, + [1140] = {.lex_state = 14}, + [1141] = {.lex_state = 66, .external_lex_state = 3}, + [1142] = {.lex_state = 14}, + [1143] = {.lex_state = 14}, + [1144] = {.lex_state = 14}, + [1145] = {.lex_state = 14}, + [1146] = {.lex_state = 14}, + [1147] = {.lex_state = 14}, + [1148] = {.lex_state = 66, .external_lex_state = 3}, + [1149] = {.lex_state = 14}, + [1150] = {.lex_state = 14}, + [1151] = {.lex_state = 14}, + [1152] = {.lex_state = 14}, + [1153] = {.lex_state = 14}, + [1154] = {.lex_state = 14}, [1155] = {.lex_state = 66, .external_lex_state = 2}, - [1156] = {.lex_state = 66, .external_lex_state = 2}, - [1157] = {.lex_state = 66, .external_lex_state = 2}, - [1158] = {.lex_state = 66, .external_lex_state = 2}, - [1159] = {.lex_state = 66, .external_lex_state = 2}, - [1160] = {.lex_state = 66, .external_lex_state = 2}, - [1161] = {.lex_state = 66, .external_lex_state = 2}, - [1162] = {.lex_state = 66, .external_lex_state = 2}, - [1163] = {.lex_state = 66, .external_lex_state = 2}, - [1164] = {.lex_state = 67, .external_lex_state = 3}, + [1156] = {.lex_state = 14}, + [1157] = {.lex_state = 14}, + [1158] = {.lex_state = 14}, + [1159] = {.lex_state = 14}, + [1160] = {.lex_state = 14}, + [1161] = {.lex_state = 14}, + [1162] = {.lex_state = 14}, + [1163] = {.lex_state = 14}, + [1164] = {.lex_state = 14}, [1165] = {.lex_state = 14}, - [1166] = {.lex_state = 68, .external_lex_state = 4}, - [1167] = {.lex_state = 68, .external_lex_state = 4}, + [1166] = {.lex_state = 14}, + [1167] = {.lex_state = 14}, [1168] = {.lex_state = 14}, [1169] = {.lex_state = 14}, [1170] = {.lex_state = 14}, - [1171] = {.lex_state = 68, .external_lex_state = 4}, - [1172] = {.lex_state = 68, .external_lex_state = 4}, + [1171] = {.lex_state = 14}, + [1172] = {.lex_state = 14}, [1173] = {.lex_state = 14}, [1174] = {.lex_state = 14}, - [1175] = {.lex_state = 68, .external_lex_state = 4}, - [1176] = {.lex_state = 67, .external_lex_state = 2}, - [1177] = {.lex_state = 67, .external_lex_state = 2}, - [1178] = {.lex_state = 67, .external_lex_state = 2}, - [1179] = {.lex_state = 67, .external_lex_state = 2}, - [1180] = {.lex_state = 68, .external_lex_state = 4}, - [1181] = {.lex_state = 67, .external_lex_state = 2}, - [1182] = {.lex_state = 67, .external_lex_state = 2}, - [1183] = {.lex_state = 67, .external_lex_state = 2}, - [1184] = {.lex_state = 67, .external_lex_state = 2}, - [1185] = {.lex_state = 67, .external_lex_state = 2}, - [1186] = {.lex_state = 67, .external_lex_state = 2}, - [1187] = {.lex_state = 67, .external_lex_state = 2}, + [1175] = {.lex_state = 14}, + [1176] = {.lex_state = 14}, + [1177] = {.lex_state = 14}, + [1178] = {.lex_state = 14}, + [1179] = {.lex_state = 14}, + [1180] = {.lex_state = 14}, + [1181] = {.lex_state = 14}, + [1182] = {.lex_state = 14}, + [1183] = {.lex_state = 14}, + [1184] = {.lex_state = 14}, + [1185] = {.lex_state = 14}, + [1186] = {.lex_state = 14}, + [1187] = {.lex_state = 14}, [1188] = {.lex_state = 14}, [1189] = {.lex_state = 14}, [1190] = {.lex_state = 14}, @@ -7203,7 +7226,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1193] = {.lex_state = 14}, [1194] = {.lex_state = 14}, [1195] = {.lex_state = 14}, - [1196] = {.lex_state = 14}, + [1196] = {.lex_state = 66, .external_lex_state = 3}, [1197] = {.lex_state = 14}, [1198] = {.lex_state = 14}, [1199] = {.lex_state = 14}, @@ -7211,503 +7234,503 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1201] = {.lex_state = 14}, [1202] = {.lex_state = 14}, [1203] = {.lex_state = 14}, - [1204] = {.lex_state = 14}, + [1204] = {.lex_state = 66, .external_lex_state = 3}, [1205] = {.lex_state = 14}, - [1206] = {.lex_state = 67, .external_lex_state = 2}, - [1207] = {.lex_state = 67, .external_lex_state = 2}, - [1208] = {.lex_state = 67, .external_lex_state = 3}, - [1209] = {.lex_state = 67, .external_lex_state = 2}, - [1210] = {.lex_state = 67, .external_lex_state = 3}, - [1211] = {.lex_state = 67, .external_lex_state = 2}, - [1212] = {.lex_state = 67, .external_lex_state = 2}, - [1213] = {.lex_state = 67, .external_lex_state = 2}, - [1214] = {.lex_state = 67, .external_lex_state = 2}, - [1215] = {.lex_state = 67, .external_lex_state = 2}, - [1216] = {.lex_state = 67, .external_lex_state = 2}, + [1206] = {.lex_state = 14}, + [1207] = {.lex_state = 14}, + [1208] = {.lex_state = 14}, + [1209] = {.lex_state = 14}, + [1210] = {.lex_state = 14}, + [1211] = {.lex_state = 14}, + [1212] = {.lex_state = 14}, + [1213] = {.lex_state = 14}, + [1214] = {.lex_state = 14}, + [1215] = {.lex_state = 14}, + [1216] = {.lex_state = 14}, [1217] = {.lex_state = 14}, - [1218] = {.lex_state = 14}, + [1218] = {.lex_state = 66, .external_lex_state = 3}, [1219] = {.lex_state = 14}, - [1220] = {.lex_state = 67, .external_lex_state = 2}, - [1221] = {.lex_state = 67, .external_lex_state = 2}, - [1222] = {.lex_state = 67, .external_lex_state = 3}, + [1220] = {.lex_state = 14}, + [1221] = {.lex_state = 14}, + [1222] = {.lex_state = 14}, [1223] = {.lex_state = 14}, - [1224] = {.lex_state = 67, .external_lex_state = 2}, - [1225] = {.lex_state = 67, .external_lex_state = 2}, + [1224] = {.lex_state = 66, .external_lex_state = 3}, + [1225] = {.lex_state = 14}, [1226] = {.lex_state = 14}, - [1227] = {.lex_state = 67, .external_lex_state = 2}, - [1228] = {.lex_state = 67, .external_lex_state = 2}, - [1229] = {.lex_state = 67, .external_lex_state = 2}, - [1230] = {.lex_state = 67, .external_lex_state = 2}, + [1227] = {.lex_state = 14}, + [1228] = {.lex_state = 14}, + [1229] = {.lex_state = 14}, + [1230] = {.lex_state = 14}, [1231] = {.lex_state = 14}, - [1232] = {.lex_state = 67, .external_lex_state = 2}, - [1233] = {.lex_state = 67, .external_lex_state = 2}, - [1234] = {.lex_state = 67, .external_lex_state = 2}, + [1232] = {.lex_state = 14}, + [1233] = {.lex_state = 14}, + [1234] = {.lex_state = 14}, [1235] = {.lex_state = 14}, - [1236] = {.lex_state = 67, .external_lex_state = 2}, - [1237] = {.lex_state = 67, .external_lex_state = 2}, - [1238] = {.lex_state = 67, .external_lex_state = 2}, - [1239] = {.lex_state = 67, .external_lex_state = 3}, - [1240] = {.lex_state = 67, .external_lex_state = 2}, - [1241] = {.lex_state = 67, .external_lex_state = 2}, - [1242] = {.lex_state = 67, .external_lex_state = 2}, - [1243] = {.lex_state = 67, .external_lex_state = 2}, - [1244] = {.lex_state = 67, .external_lex_state = 2}, - [1245] = {.lex_state = 67, .external_lex_state = 2}, - [1246] = {.lex_state = 67, .external_lex_state = 2}, - [1247] = {.lex_state = 67, .external_lex_state = 2}, - [1248] = {.lex_state = 67, .external_lex_state = 2}, - [1249] = {.lex_state = 67, .external_lex_state = 2}, - [1250] = {.lex_state = 67, .external_lex_state = 2}, - [1251] = {.lex_state = 67, .external_lex_state = 2}, - [1252] = {.lex_state = 67, .external_lex_state = 2}, - [1253] = {.lex_state = 67, .external_lex_state = 2}, - [1254] = {.lex_state = 67, .external_lex_state = 2}, - [1255] = {.lex_state = 67, .external_lex_state = 2}, - [1256] = {.lex_state = 67, .external_lex_state = 2}, - [1257] = {.lex_state = 67, .external_lex_state = 2}, - [1258] = {.lex_state = 67, .external_lex_state = 2}, - [1259] = {.lex_state = 67, .external_lex_state = 2}, - [1260] = {.lex_state = 67, .external_lex_state = 2}, - [1261] = {.lex_state = 67, .external_lex_state = 2}, - [1262] = {.lex_state = 67, .external_lex_state = 3}, - [1263] = {.lex_state = 67, .external_lex_state = 2}, - [1264] = {.lex_state = 67, .external_lex_state = 3}, - [1265] = {.lex_state = 67, .external_lex_state = 2}, - [1266] = {.lex_state = 67, .external_lex_state = 2}, - [1267] = {.lex_state = 67, .external_lex_state = 2}, - [1268] = {.lex_state = 67, .external_lex_state = 2}, - [1269] = {.lex_state = 67, .external_lex_state = 2}, - [1270] = {.lex_state = 67, .external_lex_state = 2}, - [1271] = {.lex_state = 67, .external_lex_state = 2}, - [1272] = {.lex_state = 67, .external_lex_state = 2}, - [1273] = {.lex_state = 67, .external_lex_state = 2}, - [1274] = {.lex_state = 67, .external_lex_state = 2}, - [1275] = {.lex_state = 67, .external_lex_state = 2}, - [1276] = {.lex_state = 67, .external_lex_state = 2}, - [1277] = {.lex_state = 67, .external_lex_state = 2}, - [1278] = {.lex_state = 67, .external_lex_state = 2}, - [1279] = {.lex_state = 67, .external_lex_state = 3}, - [1280] = {.lex_state = 67, .external_lex_state = 2}, - [1281] = {.lex_state = 67, .external_lex_state = 2}, - [1282] = {.lex_state = 67, .external_lex_state = 3}, - [1283] = {.lex_state = 67, .external_lex_state = 2}, - [1284] = {.lex_state = 67, .external_lex_state = 2}, - [1285] = {.lex_state = 67, .external_lex_state = 2}, - [1286] = {.lex_state = 67, .external_lex_state = 2}, - [1287] = {.lex_state = 67, .external_lex_state = 2}, - [1288] = {.lex_state = 67, .external_lex_state = 2}, - [1289] = {.lex_state = 67, .external_lex_state = 2}, - [1290] = {.lex_state = 67, .external_lex_state = 2}, - [1291] = {.lex_state = 67, .external_lex_state = 2}, - [1292] = {.lex_state = 67, .external_lex_state = 2}, - [1293] = {.lex_state = 67, .external_lex_state = 2}, - [1294] = {.lex_state = 67, .external_lex_state = 2}, - [1295] = {.lex_state = 67, .external_lex_state = 2}, - [1296] = {.lex_state = 67, .external_lex_state = 2}, - [1297] = {.lex_state = 67, .external_lex_state = 3}, - [1298] = {.lex_state = 67, .external_lex_state = 3}, - [1299] = {.lex_state = 67, .external_lex_state = 2}, - [1300] = {.lex_state = 67, .external_lex_state = 2}, - [1301] = {.lex_state = 67, .external_lex_state = 2}, - [1302] = {.lex_state = 67, .external_lex_state = 2}, - [1303] = {.lex_state = 67, .external_lex_state = 2}, - [1304] = {.lex_state = 67, .external_lex_state = 2}, - [1305] = {.lex_state = 67, .external_lex_state = 3}, - [1306] = {.lex_state = 67, .external_lex_state = 2}, - [1307] = {.lex_state = 67, .external_lex_state = 2}, - [1308] = {.lex_state = 67, .external_lex_state = 2}, - [1309] = {.lex_state = 67, .external_lex_state = 2}, - [1310] = {.lex_state = 67, .external_lex_state = 3}, - [1311] = {.lex_state = 67, .external_lex_state = 3}, - [1312] = {.lex_state = 67, .external_lex_state = 3}, - [1313] = {.lex_state = 67, .external_lex_state = 3}, - [1314] = {.lex_state = 67, .external_lex_state = 2}, - [1315] = {.lex_state = 67, .external_lex_state = 2}, - [1316] = {.lex_state = 67, .external_lex_state = 2}, - [1317] = {.lex_state = 67, .external_lex_state = 2}, - [1318] = {.lex_state = 67, .external_lex_state = 2}, - [1319] = {.lex_state = 67, .external_lex_state = 3}, - [1320] = {.lex_state = 67, .external_lex_state = 3}, - [1321] = {.lex_state = 67, .external_lex_state = 2}, - [1322] = {.lex_state = 67, .external_lex_state = 2}, - [1323] = {.lex_state = 67, .external_lex_state = 2}, - [1324] = {.lex_state = 67, .external_lex_state = 3}, - [1325] = {.lex_state = 67, .external_lex_state = 2}, - [1326] = {.lex_state = 67, .external_lex_state = 2}, - [1327] = {.lex_state = 67, .external_lex_state = 2}, - [1328] = {.lex_state = 67, .external_lex_state = 2}, - [1329] = {.lex_state = 67, .external_lex_state = 3}, - [1330] = {.lex_state = 67, .external_lex_state = 3}, - [1331] = {.lex_state = 67, .external_lex_state = 3}, - [1332] = {.lex_state = 67, .external_lex_state = 2}, - [1333] = {.lex_state = 67, .external_lex_state = 2}, - [1334] = {.lex_state = 67, .external_lex_state = 2}, - [1335] = {.lex_state = 67, .external_lex_state = 3}, - [1336] = {.lex_state = 67, .external_lex_state = 2}, - [1337] = {.lex_state = 67, .external_lex_state = 2}, - [1338] = {.lex_state = 67, .external_lex_state = 3}, - [1339] = {.lex_state = 67, .external_lex_state = 3}, - [1340] = {.lex_state = 67, .external_lex_state = 2}, - [1341] = {.lex_state = 67, .external_lex_state = 3}, - [1342] = {.lex_state = 67, .external_lex_state = 2}, - [1343] = {.lex_state = 67, .external_lex_state = 2}, - [1344] = {.lex_state = 67, .external_lex_state = 3}, - [1345] = {.lex_state = 67, .external_lex_state = 3}, - [1346] = {.lex_state = 67, .external_lex_state = 2}, - [1347] = {.lex_state = 67, .external_lex_state = 2}, - [1348] = {.lex_state = 67, .external_lex_state = 3}, - [1349] = {.lex_state = 67, .external_lex_state = 2}, - [1350] = {.lex_state = 67, .external_lex_state = 2}, - [1351] = {.lex_state = 67, .external_lex_state = 2}, - [1352] = {.lex_state = 67, .external_lex_state = 2}, - [1353] = {.lex_state = 67, .external_lex_state = 2}, - [1354] = {.lex_state = 67, .external_lex_state = 2}, - [1355] = {.lex_state = 67, .external_lex_state = 2}, - [1356] = {.lex_state = 67, .external_lex_state = 2}, - [1357] = {.lex_state = 67, .external_lex_state = 2}, - [1358] = {.lex_state = 67, .external_lex_state = 2}, - [1359] = {.lex_state = 67, .external_lex_state = 2}, - [1360] = {.lex_state = 67, .external_lex_state = 3}, - [1361] = {.lex_state = 67, .external_lex_state = 2}, - [1362] = {.lex_state = 67, .external_lex_state = 2}, - [1363] = {.lex_state = 67, .external_lex_state = 3}, - [1364] = {.lex_state = 67, .external_lex_state = 2}, - [1365] = {.lex_state = 67, .external_lex_state = 2}, - [1366] = {.lex_state = 67, .external_lex_state = 2}, - [1367] = {.lex_state = 67, .external_lex_state = 2}, - [1368] = {.lex_state = 67, .external_lex_state = 3}, - [1369] = {.lex_state = 67, .external_lex_state = 3}, - [1370] = {.lex_state = 67, .external_lex_state = 3}, - [1371] = {.lex_state = 67, .external_lex_state = 3}, - [1372] = {.lex_state = 67, .external_lex_state = 3}, - [1373] = {.lex_state = 67, .external_lex_state = 2}, - [1374] = {.lex_state = 67, .external_lex_state = 2}, - [1375] = {.lex_state = 67, .external_lex_state = 3}, - [1376] = {.lex_state = 67, .external_lex_state = 3}, - [1377] = {.lex_state = 67, .external_lex_state = 2}, + [1236] = {.lex_state = 14}, + [1237] = {.lex_state = 14}, + [1238] = {.lex_state = 14}, + [1239] = {.lex_state = 14}, + [1240] = {.lex_state = 14}, + [1241] = {.lex_state = 14}, + [1242] = {.lex_state = 14}, + [1243] = {.lex_state = 14}, + [1244] = {.lex_state = 66, .external_lex_state = 3}, + [1245] = {.lex_state = 14}, + [1246] = {.lex_state = 14}, + [1247] = {.lex_state = 14}, + [1248] = {.lex_state = 14}, + [1249] = {.lex_state = 14}, + [1250] = {.lex_state = 14}, + [1251] = {.lex_state = 14}, + [1252] = {.lex_state = 14}, + [1253] = {.lex_state = 14}, + [1254] = {.lex_state = 14}, + [1255] = {.lex_state = 14}, + [1256] = {.lex_state = 14}, + [1257] = {.lex_state = 14}, + [1258] = {.lex_state = 14}, + [1259] = {.lex_state = 14}, + [1260] = {.lex_state = 14}, + [1261] = {.lex_state = 14}, + [1262] = {.lex_state = 14}, + [1263] = {.lex_state = 14}, + [1264] = {.lex_state = 14}, + [1265] = {.lex_state = 14}, + [1266] = {.lex_state = 14}, + [1267] = {.lex_state = 14}, + [1268] = {.lex_state = 14}, + [1269] = {.lex_state = 66, .external_lex_state = 2}, + [1270] = {.lex_state = 14}, + [1271] = {.lex_state = 14}, + [1272] = {.lex_state = 14}, + [1273] = {.lex_state = 14}, + [1274] = {.lex_state = 66, .external_lex_state = 3}, + [1275] = {.lex_state = 14}, + [1276] = {.lex_state = 14}, + [1277] = {.lex_state = 14}, + [1278] = {.lex_state = 14}, + [1279] = {.lex_state = 14}, + [1280] = {.lex_state = 14}, + [1281] = {.lex_state = 66, .external_lex_state = 3}, + [1282] = {.lex_state = 14}, + [1283] = {.lex_state = 14}, + [1284] = {.lex_state = 14}, + [1285] = {.lex_state = 14}, + [1286] = {.lex_state = 14}, + [1287] = {.lex_state = 14}, + [1288] = {.lex_state = 14}, + [1289] = {.lex_state = 14}, + [1290] = {.lex_state = 14}, + [1291] = {.lex_state = 14}, + [1292] = {.lex_state = 14}, + [1293] = {.lex_state = 14}, + [1294] = {.lex_state = 14}, + [1295] = {.lex_state = 66, .external_lex_state = 5}, + [1296] = {.lex_state = 14}, + [1297] = {.lex_state = 14}, + [1298] = {.lex_state = 66, .external_lex_state = 2}, + [1299] = {.lex_state = 14}, + [1300] = {.lex_state = 14}, + [1301] = {.lex_state = 14}, + [1302] = {.lex_state = 14}, + [1303] = {.lex_state = 14}, + [1304] = {.lex_state = 14}, + [1305] = {.lex_state = 14}, + [1306] = {.lex_state = 66, .external_lex_state = 2}, + [1307] = {.lex_state = 66, .external_lex_state = 2}, + [1308] = {.lex_state = 66, .external_lex_state = 2}, + [1309] = {.lex_state = 6, .external_lex_state = 2}, + [1310] = {.lex_state = 66, .external_lex_state = 2}, + [1311] = {.lex_state = 66, .external_lex_state = 2}, + [1312] = {.lex_state = 66, .external_lex_state = 2}, + [1313] = {.lex_state = 66, .external_lex_state = 3}, + [1314] = {.lex_state = 66, .external_lex_state = 2}, + [1315] = {.lex_state = 66, .external_lex_state = 2}, + [1316] = {.lex_state = 66, .external_lex_state = 2}, + [1317] = {.lex_state = 66, .external_lex_state = 2}, + [1318] = {.lex_state = 66, .external_lex_state = 2}, + [1319] = {.lex_state = 66, .external_lex_state = 2}, + [1320] = {.lex_state = 66, .external_lex_state = 2}, + [1321] = {.lex_state = 66, .external_lex_state = 2}, + [1322] = {.lex_state = 66, .external_lex_state = 2}, + [1323] = {.lex_state = 66, .external_lex_state = 3}, + [1324] = {.lex_state = 66, .external_lex_state = 2}, + [1325] = {.lex_state = 66, .external_lex_state = 2}, + [1326] = {.lex_state = 66, .external_lex_state = 2}, + [1327] = {.lex_state = 66, .external_lex_state = 2}, + [1328] = {.lex_state = 66, .external_lex_state = 2}, + [1329] = {.lex_state = 66, .external_lex_state = 2}, + [1330] = {.lex_state = 6, .external_lex_state = 2}, + [1331] = {.lex_state = 16}, + [1332] = {.lex_state = 66, .external_lex_state = 2}, + [1333] = {.lex_state = 66, .external_lex_state = 2}, + [1334] = {.lex_state = 66, .external_lex_state = 2}, + [1335] = {.lex_state = 66, .external_lex_state = 2}, + [1336] = {.lex_state = 6, .external_lex_state = 2}, + [1337] = {.lex_state = 66, .external_lex_state = 2}, + [1338] = {.lex_state = 6, .external_lex_state = 2}, + [1339] = {.lex_state = 66, .external_lex_state = 2}, + [1340] = {.lex_state = 66, .external_lex_state = 2}, + [1341] = {.lex_state = 66, .external_lex_state = 2}, + [1342] = {.lex_state = 66, .external_lex_state = 2}, + [1343] = {.lex_state = 6, .external_lex_state = 2}, + [1344] = {.lex_state = 6, .external_lex_state = 2}, + [1345] = {.lex_state = 6, .external_lex_state = 2}, + [1346] = {.lex_state = 66, .external_lex_state = 2}, + [1347] = {.lex_state = 66, .external_lex_state = 3}, + [1348] = {.lex_state = 16}, + [1349] = {.lex_state = 66, .external_lex_state = 6}, + [1350] = {.lex_state = 66, .external_lex_state = 2}, + [1351] = {.lex_state = 6, .external_lex_state = 2}, + [1352] = {.lex_state = 6, .external_lex_state = 2}, + [1353] = {.lex_state = 66, .external_lex_state = 2}, + [1354] = {.lex_state = 6, .external_lex_state = 2}, + [1355] = {.lex_state = 66, .external_lex_state = 2}, + [1356] = {.lex_state = 6, .external_lex_state = 2}, + [1357] = {.lex_state = 6, .external_lex_state = 2}, + [1358] = {.lex_state = 66, .external_lex_state = 6}, + [1359] = {.lex_state = 6, .external_lex_state = 2}, + [1360] = {.lex_state = 66, .external_lex_state = 2}, + [1361] = {.lex_state = 66, .external_lex_state = 2}, + [1362] = {.lex_state = 66, .external_lex_state = 2}, + [1363] = {.lex_state = 66, .external_lex_state = 2}, + [1364] = {.lex_state = 66, .external_lex_state = 2}, + [1365] = {.lex_state = 66, .external_lex_state = 2}, + [1366] = {.lex_state = 66, .external_lex_state = 2}, + [1367] = {.lex_state = 66, .external_lex_state = 2}, + [1368] = {.lex_state = 66, .external_lex_state = 2}, + [1369] = {.lex_state = 66, .external_lex_state = 3}, + [1370] = {.lex_state = 66, .external_lex_state = 2}, + [1371] = {.lex_state = 66, .external_lex_state = 2}, + [1372] = {.lex_state = 66, .external_lex_state = 3}, + [1373] = {.lex_state = 66, .external_lex_state = 2}, + [1374] = {.lex_state = 6, .external_lex_state = 2}, + [1375] = {.lex_state = 66, .external_lex_state = 2}, + [1376] = {.lex_state = 66, .external_lex_state = 2}, + [1377] = {.lex_state = 66, .external_lex_state = 2}, [1378] = {.lex_state = 67, .external_lex_state = 3}, - [1379] = {.lex_state = 67, .external_lex_state = 3}, - [1380] = {.lex_state = 67, .external_lex_state = 3}, - [1381] = {.lex_state = 67, .external_lex_state = 3}, - [1382] = {.lex_state = 67, .external_lex_state = 2}, - [1383] = {.lex_state = 67, .external_lex_state = 3}, - [1384] = {.lex_state = 67, .external_lex_state = 3}, - [1385] = {.lex_state = 67, .external_lex_state = 2}, - [1386] = {.lex_state = 67, .external_lex_state = 2}, - [1387] = {.lex_state = 67, .external_lex_state = 2}, - [1388] = {.lex_state = 67, .external_lex_state = 3}, - [1389] = {.lex_state = 67, .external_lex_state = 3}, - [1390] = {.lex_state = 67, .external_lex_state = 2}, - [1391] = {.lex_state = 67, .external_lex_state = 3}, - [1392] = {.lex_state = 67, .external_lex_state = 3}, - [1393] = {.lex_state = 67, .external_lex_state = 3}, - [1394] = {.lex_state = 67, .external_lex_state = 3}, - [1395] = {.lex_state = 67, .external_lex_state = 3}, - [1396] = {.lex_state = 67, .external_lex_state = 3}, - [1397] = {.lex_state = 67, .external_lex_state = 3}, - [1398] = {.lex_state = 67, .external_lex_state = 3}, + [1379] = {.lex_state = 67, .external_lex_state = 2}, + [1380] = {.lex_state = 14}, + [1381] = {.lex_state = 14}, + [1382] = {.lex_state = 68, .external_lex_state = 4}, + [1383] = {.lex_state = 14}, + [1384] = {.lex_state = 14}, + [1385] = {.lex_state = 68, .external_lex_state = 4}, + [1386] = {.lex_state = 14}, + [1387] = {.lex_state = 14}, + [1388] = {.lex_state = 14}, + [1389] = {.lex_state = 67, .external_lex_state = 2}, + [1390] = {.lex_state = 68, .external_lex_state = 4}, + [1391] = {.lex_state = 67, .external_lex_state = 2}, + [1392] = {.lex_state = 67, .external_lex_state = 2}, + [1393] = {.lex_state = 67, .external_lex_state = 2}, + [1394] = {.lex_state = 67, .external_lex_state = 2}, + [1395] = {.lex_state = 67, .external_lex_state = 2}, + [1396] = {.lex_state = 67, .external_lex_state = 2}, + [1397] = {.lex_state = 67, .external_lex_state = 2}, + [1398] = {.lex_state = 67, .external_lex_state = 2}, [1399] = {.lex_state = 67, .external_lex_state = 2}, - [1400] = {.lex_state = 67, .external_lex_state = 3}, - [1401] = {.lex_state = 67, .external_lex_state = 3}, + [1400] = {.lex_state = 68, .external_lex_state = 4}, + [1401] = {.lex_state = 67, .external_lex_state = 2}, [1402] = {.lex_state = 67, .external_lex_state = 2}, [1403] = {.lex_state = 67, .external_lex_state = 2}, [1404] = {.lex_state = 67, .external_lex_state = 2}, - [1405] = {.lex_state = 67, .external_lex_state = 3}, - [1406] = {.lex_state = 67, .external_lex_state = 3}, - [1407] = {.lex_state = 67, .external_lex_state = 2}, - [1408] = {.lex_state = 67, .external_lex_state = 2}, - [1409] = {.lex_state = 67, .external_lex_state = 2}, - [1410] = {.lex_state = 67, .external_lex_state = 3}, - [1411] = {.lex_state = 67, .external_lex_state = 2}, - [1412] = {.lex_state = 67, .external_lex_state = 2}, - [1413] = {.lex_state = 67, .external_lex_state = 2}, - [1414] = {.lex_state = 67, .external_lex_state = 2}, - [1415] = {.lex_state = 7, .external_lex_state = 2}, - [1416] = {.lex_state = 67, .external_lex_state = 2}, - [1417] = {.lex_state = 67, .external_lex_state = 2}, - [1418] = {.lex_state = 67, .external_lex_state = 2}, - [1419] = {.lex_state = 67, .external_lex_state = 3}, - [1420] = {.lex_state = 67, .external_lex_state = 3}, - [1421] = {.lex_state = 67, .external_lex_state = 3}, - [1422] = {.lex_state = 67, .external_lex_state = 3}, - [1423] = {.lex_state = 67, .external_lex_state = 2}, + [1405] = {.lex_state = 14}, + [1406] = {.lex_state = 67, .external_lex_state = 2}, + [1407] = {.lex_state = 14}, + [1408] = {.lex_state = 14}, + [1409] = {.lex_state = 14}, + [1410] = {.lex_state = 14}, + [1411] = {.lex_state = 67, .external_lex_state = 3}, + [1412] = {.lex_state = 14}, + [1413] = {.lex_state = 67, .external_lex_state = 3}, + [1414] = {.lex_state = 14}, + [1415] = {.lex_state = 14}, + [1416] = {.lex_state = 14}, + [1417] = {.lex_state = 14}, + [1418] = {.lex_state = 14}, + [1419] = {.lex_state = 14}, + [1420] = {.lex_state = 14}, + [1421] = {.lex_state = 14}, + [1422] = {.lex_state = 14}, + [1423] = {.lex_state = 14}, [1424] = {.lex_state = 67, .external_lex_state = 3}, - [1425] = {.lex_state = 67, .external_lex_state = 3}, - [1426] = {.lex_state = 67, .external_lex_state = 2}, - [1427] = {.lex_state = 67, .external_lex_state = 2}, - [1428] = {.lex_state = 67, .external_lex_state = 2}, - [1429] = {.lex_state = 67, .external_lex_state = 2}, - [1430] = {.lex_state = 67, .external_lex_state = 3}, - [1431] = {.lex_state = 67, .external_lex_state = 2}, + [1425] = {.lex_state = 14}, + [1426] = {.lex_state = 14}, + [1427] = {.lex_state = 14}, + [1428] = {.lex_state = 14}, + [1429] = {.lex_state = 14}, + [1430] = {.lex_state = 67, .external_lex_state = 2}, + [1431] = {.lex_state = 67, .external_lex_state = 3}, [1432] = {.lex_state = 67, .external_lex_state = 2}, - [1433] = {.lex_state = 67, .external_lex_state = 2}, - [1434] = {.lex_state = 67, .external_lex_state = 3}, + [1433] = {.lex_state = 67, .external_lex_state = 3}, + [1434] = {.lex_state = 67, .external_lex_state = 2}, [1435] = {.lex_state = 67, .external_lex_state = 3}, [1436] = {.lex_state = 67, .external_lex_state = 2}, [1437] = {.lex_state = 67, .external_lex_state = 2}, - [1438] = {.lex_state = 67, .external_lex_state = 2}, - [1439] = {.lex_state = 67, .external_lex_state = 2}, + [1438] = {.lex_state = 14}, + [1439] = {.lex_state = 67, .external_lex_state = 3}, [1440] = {.lex_state = 67, .external_lex_state = 3}, - [1441] = {.lex_state = 67, .external_lex_state = 2}, - [1442] = {.lex_state = 67, .external_lex_state = 3}, - [1443] = {.lex_state = 67, .external_lex_state = 3}, - [1444] = {.lex_state = 67, .external_lex_state = 3}, - [1445] = {.lex_state = 67, .external_lex_state = 2}, - [1446] = {.lex_state = 67, .external_lex_state = 2}, - [1447] = {.lex_state = 67, .external_lex_state = 2}, + [1441] = {.lex_state = 14}, + [1442] = {.lex_state = 67, .external_lex_state = 2}, + [1443] = {.lex_state = 67, .external_lex_state = 2}, + [1444] = {.lex_state = 14}, + [1445] = {.lex_state = 14}, + [1446] = {.lex_state = 14}, + [1447] = {.lex_state = 14}, [1448] = {.lex_state = 67, .external_lex_state = 2}, - [1449] = {.lex_state = 67, .external_lex_state = 2}, + [1449] = {.lex_state = 67, .external_lex_state = 3}, [1450] = {.lex_state = 67, .external_lex_state = 2}, [1451] = {.lex_state = 67, .external_lex_state = 2}, [1452] = {.lex_state = 67, .external_lex_state = 2}, - [1453] = {.lex_state = 67, .external_lex_state = 2}, - [1454] = {.lex_state = 67, .external_lex_state = 2}, - [1455] = {.lex_state = 67, .external_lex_state = 3}, + [1453] = {.lex_state = 14}, + [1454] = {.lex_state = 67, .external_lex_state = 3}, + [1455] = {.lex_state = 67, .external_lex_state = 2}, [1456] = {.lex_state = 67, .external_lex_state = 2}, [1457] = {.lex_state = 67, .external_lex_state = 2}, - [1458] = {.lex_state = 67, .external_lex_state = 2}, + [1458] = {.lex_state = 14}, [1459] = {.lex_state = 67, .external_lex_state = 2}, [1460] = {.lex_state = 67, .external_lex_state = 2}, [1461] = {.lex_state = 67, .external_lex_state = 2}, - [1462] = {.lex_state = 67, .external_lex_state = 2}, + [1462] = {.lex_state = 67, .external_lex_state = 3}, [1463] = {.lex_state = 67, .external_lex_state = 2}, - [1464] = {.lex_state = 67, .external_lex_state = 2}, + [1464] = {.lex_state = 67, .external_lex_state = 3}, [1465] = {.lex_state = 67, .external_lex_state = 2}, [1466] = {.lex_state = 67, .external_lex_state = 2}, - [1467] = {.lex_state = 7, .external_lex_state = 2}, - [1468] = {.lex_state = 7, .external_lex_state = 2}, - [1469] = {.lex_state = 7, .external_lex_state = 2}, - [1470] = {.lex_state = 7, .external_lex_state = 2}, + [1467] = {.lex_state = 67, .external_lex_state = 3}, + [1468] = {.lex_state = 67, .external_lex_state = 3}, + [1469] = {.lex_state = 67, .external_lex_state = 3}, + [1470] = {.lex_state = 67, .external_lex_state = 2}, [1471] = {.lex_state = 67, .external_lex_state = 3}, - [1472] = {.lex_state = 67, .external_lex_state = 2}, + [1472] = {.lex_state = 67, .external_lex_state = 3}, [1473] = {.lex_state = 67, .external_lex_state = 2}, - [1474] = {.lex_state = 7, .external_lex_state = 2}, - [1475] = {.lex_state = 7, .external_lex_state = 2}, - [1476] = {.lex_state = 7, .external_lex_state = 2}, - [1477] = {.lex_state = 7, .external_lex_state = 2}, - [1478] = {.lex_state = 7, .external_lex_state = 2}, - [1479] = {.lex_state = 7, .external_lex_state = 2}, - [1480] = {.lex_state = 7, .external_lex_state = 2}, - [1481] = {.lex_state = 7, .external_lex_state = 2}, + [1474] = {.lex_state = 67, .external_lex_state = 3}, + [1475] = {.lex_state = 67, .external_lex_state = 3}, + [1476] = {.lex_state = 67, .external_lex_state = 3}, + [1477] = {.lex_state = 67, .external_lex_state = 3}, + [1478] = {.lex_state = 67, .external_lex_state = 3}, + [1479] = {.lex_state = 67, .external_lex_state = 3}, + [1480] = {.lex_state = 67, .external_lex_state = 3}, + [1481] = {.lex_state = 67, .external_lex_state = 2}, [1482] = {.lex_state = 67, .external_lex_state = 3}, - [1483] = {.lex_state = 7, .external_lex_state = 2}, - [1484] = {.lex_state = 67, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 2}, - [1486] = {.lex_state = 7, .external_lex_state = 2}, - [1487] = {.lex_state = 7, .external_lex_state = 2}, - [1488] = {.lex_state = 7, .external_lex_state = 2}, + [1483] = {.lex_state = 67, .external_lex_state = 3}, + [1484] = {.lex_state = 67, .external_lex_state = 2}, + [1485] = {.lex_state = 67, .external_lex_state = 2}, + [1486] = {.lex_state = 67, .external_lex_state = 2}, + [1487] = {.lex_state = 67, .external_lex_state = 2}, + [1488] = {.lex_state = 67, .external_lex_state = 2}, [1489] = {.lex_state = 67, .external_lex_state = 2}, - [1490] = {.lex_state = 7, .external_lex_state = 2}, + [1490] = {.lex_state = 67, .external_lex_state = 3}, [1491] = {.lex_state = 67, .external_lex_state = 3}, [1492] = {.lex_state = 67, .external_lex_state = 2}, - [1493] = {.lex_state = 67, .external_lex_state = 3}, + [1493] = {.lex_state = 67, .external_lex_state = 2}, [1494] = {.lex_state = 67, .external_lex_state = 2}, - [1495] = {.lex_state = 7, .external_lex_state = 2}, - [1496] = {.lex_state = 67, .external_lex_state = 2}, - [1497] = {.lex_state = 7, .external_lex_state = 2}, - [1498] = {.lex_state = 7, .external_lex_state = 2}, - [1499] = {.lex_state = 7, .external_lex_state = 2}, - [1500] = {.lex_state = 7, .external_lex_state = 2}, - [1501] = {.lex_state = 7, .external_lex_state = 2}, - [1502] = {.lex_state = 7, .external_lex_state = 2}, - [1503] = {.lex_state = 7, .external_lex_state = 2}, - [1504] = {.lex_state = 7, .external_lex_state = 2}, - [1505] = {.lex_state = 7, .external_lex_state = 2}, - [1506] = {.lex_state = 7, .external_lex_state = 2}, + [1495] = {.lex_state = 67, .external_lex_state = 2}, + [1496] = {.lex_state = 67, .external_lex_state = 3}, + [1497] = {.lex_state = 67, .external_lex_state = 3}, + [1498] = {.lex_state = 67, .external_lex_state = 2}, + [1499] = {.lex_state = 67, .external_lex_state = 2}, + [1500] = {.lex_state = 67, .external_lex_state = 3}, + [1501] = {.lex_state = 67, .external_lex_state = 2}, + [1502] = {.lex_state = 67, .external_lex_state = 2}, + [1503] = {.lex_state = 67, .external_lex_state = 2}, + [1504] = {.lex_state = 67, .external_lex_state = 2}, + [1505] = {.lex_state = 67, .external_lex_state = 3}, + [1506] = {.lex_state = 67, .external_lex_state = 2}, [1507] = {.lex_state = 67, .external_lex_state = 3}, - [1508] = {.lex_state = 67, .external_lex_state = 2}, + [1508] = {.lex_state = 67, .external_lex_state = 3}, [1509] = {.lex_state = 67, .external_lex_state = 2}, - [1510] = {.lex_state = 67, .external_lex_state = 3}, - [1511] = {.lex_state = 67, .external_lex_state = 3}, - [1512] = {.lex_state = 67, .external_lex_state = 3}, + [1510] = {.lex_state = 67, .external_lex_state = 2}, + [1511] = {.lex_state = 67, .external_lex_state = 2}, + [1512] = {.lex_state = 67, .external_lex_state = 2}, [1513] = {.lex_state = 67, .external_lex_state = 2}, - [1514] = {.lex_state = 7, .external_lex_state = 2}, - [1515] = {.lex_state = 67, .external_lex_state = 3}, - [1516] = {.lex_state = 67, .external_lex_state = 2}, + [1514] = {.lex_state = 67, .external_lex_state = 2}, + [1515] = {.lex_state = 67, .external_lex_state = 2}, + [1516] = {.lex_state = 67, .external_lex_state = 3}, [1517] = {.lex_state = 67, .external_lex_state = 2}, - [1518] = {.lex_state = 67, .external_lex_state = 3}, + [1518] = {.lex_state = 67, .external_lex_state = 2}, [1519] = {.lex_state = 67, .external_lex_state = 2}, - [1520] = {.lex_state = 67, .external_lex_state = 3}, - [1521] = {.lex_state = 67, .external_lex_state = 3}, + [1520] = {.lex_state = 67, .external_lex_state = 2}, + [1521] = {.lex_state = 67, .external_lex_state = 2}, [1522] = {.lex_state = 67, .external_lex_state = 2}, - [1523] = {.lex_state = 67, .external_lex_state = 3}, - [1524] = {.lex_state = 67, .external_lex_state = 3}, - [1525] = {.lex_state = 67, .external_lex_state = 3}, + [1523] = {.lex_state = 67, .external_lex_state = 2}, + [1524] = {.lex_state = 67, .external_lex_state = 2}, + [1525] = {.lex_state = 67, .external_lex_state = 2}, [1526] = {.lex_state = 67, .external_lex_state = 2}, - [1527] = {.lex_state = 67, .external_lex_state = 2}, - [1528] = {.lex_state = 67, .external_lex_state = 3}, + [1527] = {.lex_state = 67, .external_lex_state = 5}, + [1528] = {.lex_state = 67, .external_lex_state = 2}, [1529] = {.lex_state = 67, .external_lex_state = 2}, [1530] = {.lex_state = 67, .external_lex_state = 2}, [1531] = {.lex_state = 67, .external_lex_state = 2}, - [1532] = {.lex_state = 8, .external_lex_state = 2}, - [1533] = {.lex_state = 67, .external_lex_state = 3}, - [1534] = {.lex_state = 67, .external_lex_state = 3}, - [1535] = {.lex_state = 67, .external_lex_state = 3}, - [1536] = {.lex_state = 67, .external_lex_state = 3}, + [1532] = {.lex_state = 67, .external_lex_state = 2}, + [1533] = {.lex_state = 67, .external_lex_state = 2}, + [1534] = {.lex_state = 67, .external_lex_state = 2}, + [1535] = {.lex_state = 67, .external_lex_state = 2}, + [1536] = {.lex_state = 67, .external_lex_state = 2}, [1537] = {.lex_state = 67, .external_lex_state = 3}, [1538] = {.lex_state = 67, .external_lex_state = 2}, - [1539] = {.lex_state = 67, .external_lex_state = 3}, + [1539] = {.lex_state = 67, .external_lex_state = 2}, [1540] = {.lex_state = 67, .external_lex_state = 2}, - [1541] = {.lex_state = 67, .external_lex_state = 2}, - [1542] = {.lex_state = 67, .external_lex_state = 2}, - [1543] = {.lex_state = 67, .external_lex_state = 2}, - [1544] = {.lex_state = 67, .external_lex_state = 2}, - [1545] = {.lex_state = 67, .external_lex_state = 5}, + [1541] = {.lex_state = 67, .external_lex_state = 3}, + [1542] = {.lex_state = 67, .external_lex_state = 3}, + [1543] = {.lex_state = 67, .external_lex_state = 3}, + [1544] = {.lex_state = 7, .external_lex_state = 2}, + [1545] = {.lex_state = 67, .external_lex_state = 2}, [1546] = {.lex_state = 67, .external_lex_state = 3}, - [1547] = {.lex_state = 67, .external_lex_state = 3}, - [1548] = {.lex_state = 67, .external_lex_state = 3}, - [1549] = {.lex_state = 67, .external_lex_state = 3}, + [1547] = {.lex_state = 67, .external_lex_state = 2}, + [1548] = {.lex_state = 67, .external_lex_state = 2}, + [1549] = {.lex_state = 67, .external_lex_state = 2}, [1550] = {.lex_state = 67, .external_lex_state = 5}, [1551] = {.lex_state = 67, .external_lex_state = 2}, - [1552] = {.lex_state = 67, .external_lex_state = 3}, - [1553] = {.lex_state = 67, .external_lex_state = 5}, - [1554] = {.lex_state = 67, .external_lex_state = 3}, - [1555] = {.lex_state = 67, .external_lex_state = 3}, - [1556] = {.lex_state = 67, .external_lex_state = 3}, - [1557] = {.lex_state = 67, .external_lex_state = 3}, + [1552] = {.lex_state = 67, .external_lex_state = 2}, + [1553] = {.lex_state = 67, .external_lex_state = 2}, + [1554] = {.lex_state = 67, .external_lex_state = 2}, + [1555] = {.lex_state = 67, .external_lex_state = 2}, + [1556] = {.lex_state = 7, .external_lex_state = 2}, + [1557] = {.lex_state = 67, .external_lex_state = 2}, [1558] = {.lex_state = 67, .external_lex_state = 3}, - [1559] = {.lex_state = 67, .external_lex_state = 3}, - [1560] = {.lex_state = 67, .external_lex_state = 3}, - [1561] = {.lex_state = 67, .external_lex_state = 3}, - [1562] = {.lex_state = 67, .external_lex_state = 3}, + [1559] = {.lex_state = 67, .external_lex_state = 2}, + [1560] = {.lex_state = 67, .external_lex_state = 2}, + [1561] = {.lex_state = 67, .external_lex_state = 2}, + [1562] = {.lex_state = 67, .external_lex_state = 2}, [1563] = {.lex_state = 67, .external_lex_state = 2}, - [1564] = {.lex_state = 67, .external_lex_state = 2}, - [1565] = {.lex_state = 67, .external_lex_state = 3}, + [1564] = {.lex_state = 67, .external_lex_state = 3}, + [1565] = {.lex_state = 67, .external_lex_state = 2}, [1566] = {.lex_state = 67, .external_lex_state = 2}, - [1567] = {.lex_state = 67, .external_lex_state = 3}, - [1568] = {.lex_state = 67, .external_lex_state = 3}, + [1567] = {.lex_state = 67, .external_lex_state = 2}, + [1568] = {.lex_state = 67, .external_lex_state = 2}, [1569] = {.lex_state = 67, .external_lex_state = 2}, - [1570] = {.lex_state = 67, .external_lex_state = 3}, + [1570] = {.lex_state = 67, .external_lex_state = 2}, [1571] = {.lex_state = 67, .external_lex_state = 2}, [1572] = {.lex_state = 67, .external_lex_state = 2}, - [1573] = {.lex_state = 67, .external_lex_state = 3}, - [1574] = {.lex_state = 67, .external_lex_state = 2}, + [1573] = {.lex_state = 67, .external_lex_state = 2}, + [1574] = {.lex_state = 67, .external_lex_state = 3}, [1575] = {.lex_state = 67, .external_lex_state = 2}, - [1576] = {.lex_state = 67, .external_lex_state = 5}, - [1577] = {.lex_state = 67, .external_lex_state = 3}, + [1576] = {.lex_state = 67, .external_lex_state = 2}, + [1577] = {.lex_state = 67, .external_lex_state = 2}, [1578] = {.lex_state = 67, .external_lex_state = 3}, - [1579] = {.lex_state = 67, .external_lex_state = 3}, + [1579] = {.lex_state = 67, .external_lex_state = 2}, [1580] = {.lex_state = 67, .external_lex_state = 2}, - [1581] = {.lex_state = 67, .external_lex_state = 3}, - [1582] = {.lex_state = 8, .external_lex_state = 3}, - [1583] = {.lex_state = 67, .external_lex_state = 5}, - [1584] = {.lex_state = 67, .external_lex_state = 3}, + [1581] = {.lex_state = 67, .external_lex_state = 2}, + [1582] = {.lex_state = 67, .external_lex_state = 2}, + [1583] = {.lex_state = 67, .external_lex_state = 2}, + [1584] = {.lex_state = 67, .external_lex_state = 2}, [1585] = {.lex_state = 67, .external_lex_state = 2}, [1586] = {.lex_state = 67, .external_lex_state = 3}, - [1587] = {.lex_state = 67, .external_lex_state = 3}, - [1588] = {.lex_state = 67, .external_lex_state = 3}, - [1589] = {.lex_state = 67, .external_lex_state = 3}, - [1590] = {.lex_state = 67, .external_lex_state = 5}, - [1591] = {.lex_state = 67, .external_lex_state = 3}, + [1587] = {.lex_state = 67, .external_lex_state = 2}, + [1588] = {.lex_state = 67, .external_lex_state = 2}, + [1589] = {.lex_state = 67, .external_lex_state = 2}, + [1590] = {.lex_state = 67, .external_lex_state = 2}, + [1591] = {.lex_state = 67, .external_lex_state = 2}, [1592] = {.lex_state = 67, .external_lex_state = 2}, - [1593] = {.lex_state = 67, .external_lex_state = 2}, + [1593] = {.lex_state = 67, .external_lex_state = 3}, [1594] = {.lex_state = 67, .external_lex_state = 2}, - [1595] = {.lex_state = 67, .external_lex_state = 3}, + [1595] = {.lex_state = 67, .external_lex_state = 2}, [1596] = {.lex_state = 67, .external_lex_state = 2}, - [1597] = {.lex_state = 67, .external_lex_state = 3}, - [1598] = {.lex_state = 67, .external_lex_state = 2}, - [1599] = {.lex_state = 67, .external_lex_state = 3}, - [1600] = {.lex_state = 67, .external_lex_state = 2}, - [1601] = {.lex_state = 67, .external_lex_state = 3}, - [1602] = {.lex_state = 67, .external_lex_state = 3}, + [1597] = {.lex_state = 7, .external_lex_state = 2}, + [1598] = {.lex_state = 67, .external_lex_state = 3}, + [1599] = {.lex_state = 67, .external_lex_state = 2}, + [1600] = {.lex_state = 7, .external_lex_state = 2}, + [1601] = {.lex_state = 67, .external_lex_state = 2}, + [1602] = {.lex_state = 67, .external_lex_state = 2}, [1603] = {.lex_state = 67, .external_lex_state = 2}, - [1604] = {.lex_state = 67, .external_lex_state = 3}, + [1604] = {.lex_state = 67, .external_lex_state = 2}, [1605] = {.lex_state = 67, .external_lex_state = 2}, - [1606] = {.lex_state = 67, .external_lex_state = 3}, + [1606] = {.lex_state = 67, .external_lex_state = 2}, [1607] = {.lex_state = 67, .external_lex_state = 2}, - [1608] = {.lex_state = 67, .external_lex_state = 5}, - [1609] = {.lex_state = 67, .external_lex_state = 3}, + [1608] = {.lex_state = 67, .external_lex_state = 3}, + [1609] = {.lex_state = 67, .external_lex_state = 2}, [1610] = {.lex_state = 67, .external_lex_state = 2}, - [1611] = {.lex_state = 7, .external_lex_state = 2}, + [1611] = {.lex_state = 67, .external_lex_state = 3}, [1612] = {.lex_state = 67, .external_lex_state = 2}, [1613] = {.lex_state = 67, .external_lex_state = 2}, - [1614] = {.lex_state = 67, .external_lex_state = 3}, - [1615] = {.lex_state = 67, .external_lex_state = 3}, - [1616] = {.lex_state = 67, .external_lex_state = 3}, - [1617] = {.lex_state = 67, .external_lex_state = 3}, - [1618] = {.lex_state = 67, .external_lex_state = 3}, - [1619] = {.lex_state = 67, .external_lex_state = 3}, + [1614] = {.lex_state = 67, .external_lex_state = 2}, + [1615] = {.lex_state = 67, .external_lex_state = 2}, + [1616] = {.lex_state = 67, .external_lex_state = 2}, + [1617] = {.lex_state = 67, .external_lex_state = 2}, + [1618] = {.lex_state = 67, .external_lex_state = 2}, + [1619] = {.lex_state = 67, .external_lex_state = 2}, [1620] = {.lex_state = 67, .external_lex_state = 2}, - [1621] = {.lex_state = 67, .external_lex_state = 3}, - [1622] = {.lex_state = 67, .external_lex_state = 3}, - [1623] = {.lex_state = 67, .external_lex_state = 3}, - [1624] = {.lex_state = 67, .external_lex_state = 3}, + [1621] = {.lex_state = 67, .external_lex_state = 2}, + [1622] = {.lex_state = 67, .external_lex_state = 2}, + [1623] = {.lex_state = 67, .external_lex_state = 2}, + [1624] = {.lex_state = 67, .external_lex_state = 2}, [1625] = {.lex_state = 67, .external_lex_state = 3}, - [1626] = {.lex_state = 67, .external_lex_state = 3}, - [1627] = {.lex_state = 67, .external_lex_state = 5}, + [1626] = {.lex_state = 67, .external_lex_state = 2}, + [1627] = {.lex_state = 67, .external_lex_state = 2}, [1628] = {.lex_state = 67, .external_lex_state = 2}, [1629] = {.lex_state = 67, .external_lex_state = 2}, - [1630] = {.lex_state = 67, .external_lex_state = 2}, - [1631] = {.lex_state = 67, .external_lex_state = 3}, + [1630] = {.lex_state = 67, .external_lex_state = 3}, + [1631] = {.lex_state = 67, .external_lex_state = 2}, [1632] = {.lex_state = 67, .external_lex_state = 2}, [1633] = {.lex_state = 67, .external_lex_state = 2}, - [1634] = {.lex_state = 67, .external_lex_state = 3}, + [1634] = {.lex_state = 67, .external_lex_state = 2}, [1635] = {.lex_state = 67, .external_lex_state = 2}, [1636] = {.lex_state = 67, .external_lex_state = 2}, - [1637] = {.lex_state = 67, .external_lex_state = 3}, + [1637] = {.lex_state = 7, .external_lex_state = 2}, [1638] = {.lex_state = 67, .external_lex_state = 2}, - [1639] = {.lex_state = 67, .external_lex_state = 3}, + [1639] = {.lex_state = 67, .external_lex_state = 2}, [1640] = {.lex_state = 7, .external_lex_state = 2}, [1641] = {.lex_state = 67, .external_lex_state = 2}, [1642] = {.lex_state = 67, .external_lex_state = 2}, - [1643] = {.lex_state = 7, .external_lex_state = 2}, + [1643] = {.lex_state = 67, .external_lex_state = 3}, [1644] = {.lex_state = 67, .external_lex_state = 3}, [1645] = {.lex_state = 67, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 2}, - [1647] = {.lex_state = 67, .external_lex_state = 2}, - [1648] = {.lex_state = 67, .external_lex_state = 2}, - [1649] = {.lex_state = 67, .external_lex_state = 2}, - [1650] = {.lex_state = 67, .external_lex_state = 2}, + [1646] = {.lex_state = 67, .external_lex_state = 3}, + [1647] = {.lex_state = 67, .external_lex_state = 3}, + [1648] = {.lex_state = 67, .external_lex_state = 3}, + [1649] = {.lex_state = 7, .external_lex_state = 2}, + [1650] = {.lex_state = 7, .external_lex_state = 2}, [1651] = {.lex_state = 67, .external_lex_state = 2}, - [1652] = {.lex_state = 67, .external_lex_state = 2}, - [1653] = {.lex_state = 67, .external_lex_state = 3}, + [1652] = {.lex_state = 67, .external_lex_state = 3}, + [1653] = {.lex_state = 7, .external_lex_state = 2}, [1654] = {.lex_state = 67, .external_lex_state = 3}, - [1655] = {.lex_state = 67, .external_lex_state = 2}, + [1655] = {.lex_state = 67, .external_lex_state = 6}, [1656] = {.lex_state = 67, .external_lex_state = 2}, - [1657] = {.lex_state = 67, .external_lex_state = 2}, + [1657] = {.lex_state = 67, .external_lex_state = 3}, [1658] = {.lex_state = 67, .external_lex_state = 2}, - [1659] = {.lex_state = 67, .external_lex_state = 3}, + [1659] = {.lex_state = 67, .external_lex_state = 2}, [1660] = {.lex_state = 67, .external_lex_state = 2}, - [1661] = {.lex_state = 7, .external_lex_state = 2}, + [1661] = {.lex_state = 67, .external_lex_state = 2}, [1662] = {.lex_state = 67, .external_lex_state = 3}, [1663] = {.lex_state = 67, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 2}, - [1665] = {.lex_state = 67, .external_lex_state = 2}, - [1666] = {.lex_state = 67, .external_lex_state = 2}, + [1664] = {.lex_state = 8, .external_lex_state = 2}, + [1665] = {.lex_state = 67, .external_lex_state = 3}, + [1666] = {.lex_state = 67, .external_lex_state = 3}, [1667] = {.lex_state = 67, .external_lex_state = 2}, [1668] = {.lex_state = 67, .external_lex_state = 2}, - [1669] = {.lex_state = 7, .external_lex_state = 2}, - [1670] = {.lex_state = 67, .external_lex_state = 5}, + [1669] = {.lex_state = 67, .external_lex_state = 6}, + [1670] = {.lex_state = 67, .external_lex_state = 2}, [1671] = {.lex_state = 67, .external_lex_state = 3}, - [1672] = {.lex_state = 67, .external_lex_state = 2}, + [1672] = {.lex_state = 67, .external_lex_state = 3}, [1673] = {.lex_state = 7, .external_lex_state = 3}, [1674] = {.lex_state = 67, .external_lex_state = 3}, - [1675] = {.lex_state = 67, .external_lex_state = 2}, + [1675] = {.lex_state = 67, .external_lex_state = 3}, [1676] = {.lex_state = 67, .external_lex_state = 3}, [1677] = {.lex_state = 67, .external_lex_state = 3}, [1678] = {.lex_state = 67, .external_lex_state = 3}, - [1679] = {.lex_state = 67, .external_lex_state = 3}, + [1679] = {.lex_state = 67, .external_lex_state = 5}, [1680] = {.lex_state = 67, .external_lex_state = 5}, [1681] = {.lex_state = 67, .external_lex_state = 3}, - [1682] = {.lex_state = 67, .external_lex_state = 2}, + [1682] = {.lex_state = 7, .external_lex_state = 2}, [1683] = {.lex_state = 67, .external_lex_state = 3}, [1684] = {.lex_state = 67, .external_lex_state = 3}, [1685] = {.lex_state = 67, .external_lex_state = 3}, - [1686] = {.lex_state = 67, .external_lex_state = 3}, + [1686] = {.lex_state = 7, .external_lex_state = 2}, [1687] = {.lex_state = 67, .external_lex_state = 3}, - [1688] = {.lex_state = 67, .external_lex_state = 3}, - [1689] = {.lex_state = 67, .external_lex_state = 3}, - [1690] = {.lex_state = 67, .external_lex_state = 3}, - [1691] = {.lex_state = 67, .external_lex_state = 3}, - [1692] = {.lex_state = 67, .external_lex_state = 3}, + [1688] = {.lex_state = 67, .external_lex_state = 5}, + [1689] = {.lex_state = 67, .external_lex_state = 5}, + [1690] = {.lex_state = 8, .external_lex_state = 3}, + [1691] = {.lex_state = 67, .external_lex_state = 5}, + [1692] = {.lex_state = 67, .external_lex_state = 2}, [1693] = {.lex_state = 67, .external_lex_state = 3}, [1694] = {.lex_state = 67, .external_lex_state = 3}, - [1695] = {.lex_state = 67, .external_lex_state = 3}, + [1695] = {.lex_state = 67, .external_lex_state = 6}, [1696] = {.lex_state = 67, .external_lex_state = 3}, [1697] = {.lex_state = 67, .external_lex_state = 3}, - [1698] = {.lex_state = 67, .external_lex_state = 3}, + [1698] = {.lex_state = 67, .external_lex_state = 2}, [1699] = {.lex_state = 67, .external_lex_state = 5}, - [1700] = {.lex_state = 67, .external_lex_state = 3}, + [1700] = {.lex_state = 7, .external_lex_state = 2}, [1701] = {.lex_state = 7, .external_lex_state = 2}, [1702] = {.lex_state = 67, .external_lex_state = 3}, [1703] = {.lex_state = 67, .external_lex_state = 3}, @@ -7716,763 +7739,763 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1706] = {.lex_state = 67, .external_lex_state = 3}, [1707] = {.lex_state = 67, .external_lex_state = 3}, [1708] = {.lex_state = 67, .external_lex_state = 3}, - [1709] = {.lex_state = 67, .external_lex_state = 5}, + [1709] = {.lex_state = 67, .external_lex_state = 3}, [1710] = {.lex_state = 67, .external_lex_state = 3}, [1711] = {.lex_state = 67, .external_lex_state = 3}, - [1712] = {.lex_state = 67, .external_lex_state = 3}, - [1713] = {.lex_state = 67, .external_lex_state = 2}, - [1714] = {.lex_state = 67, .external_lex_state = 3}, + [1712] = {.lex_state = 67, .external_lex_state = 2}, + [1713] = {.lex_state = 67, .external_lex_state = 5}, + [1714] = {.lex_state = 67, .external_lex_state = 2}, [1715] = {.lex_state = 67, .external_lex_state = 3}, - [1716] = {.lex_state = 14}, - [1717] = {.lex_state = 67, .external_lex_state = 2}, - [1718] = {.lex_state = 7, .external_lex_state = 2}, - [1719] = {.lex_state = 14}, - [1720] = {.lex_state = 7, .external_lex_state = 2}, - [1721] = {.lex_state = 67, .external_lex_state = 2}, - [1722] = {.lex_state = 67, .external_lex_state = 2}, - [1723] = {.lex_state = 67, .external_lex_state = 2}, - [1724] = {.lex_state = 67, .external_lex_state = 3}, + [1716] = {.lex_state = 67, .external_lex_state = 3}, + [1717] = {.lex_state = 67, .external_lex_state = 3}, + [1718] = {.lex_state = 67, .external_lex_state = 3}, + [1719] = {.lex_state = 67, .external_lex_state = 3}, + [1720] = {.lex_state = 67, .external_lex_state = 3}, + [1721] = {.lex_state = 67, .external_lex_state = 3}, + [1722] = {.lex_state = 67, .external_lex_state = 3}, + [1723] = {.lex_state = 67, .external_lex_state = 3}, + [1724] = {.lex_state = 67, .external_lex_state = 5}, [1725] = {.lex_state = 67, .external_lex_state = 3}, - [1726] = {.lex_state = 67, .external_lex_state = 3}, - [1727] = {.lex_state = 67, .external_lex_state = 2}, - [1728] = {.lex_state = 67, .external_lex_state = 2}, - [1729] = {.lex_state = 67, .external_lex_state = 2}, - [1730] = {.lex_state = 67, .external_lex_state = 3}, - [1731] = {.lex_state = 67, .external_lex_state = 2}, - [1732] = {.lex_state = 67, .external_lex_state = 2}, - [1733] = {.lex_state = 68}, + [1726] = {.lex_state = 67, .external_lex_state = 2}, + [1727] = {.lex_state = 67, .external_lex_state = 5}, + [1728] = {.lex_state = 67, .external_lex_state = 3}, + [1729] = {.lex_state = 67, .external_lex_state = 3}, + [1730] = {.lex_state = 67, .external_lex_state = 2}, + [1731] = {.lex_state = 67, .external_lex_state = 3}, + [1732] = {.lex_state = 67, .external_lex_state = 3}, + [1733] = {.lex_state = 67, .external_lex_state = 3}, [1734] = {.lex_state = 67, .external_lex_state = 3}, - [1735] = {.lex_state = 67, .external_lex_state = 2}, - [1736] = {.lex_state = 67, .external_lex_state = 3}, - [1737] = {.lex_state = 67, .external_lex_state = 2}, - [1738] = {.lex_state = 67, .external_lex_state = 2}, + [1735] = {.lex_state = 67, .external_lex_state = 3}, + [1736] = {.lex_state = 67, .external_lex_state = 5}, + [1737] = {.lex_state = 67, .external_lex_state = 3}, + [1738] = {.lex_state = 67, .external_lex_state = 3}, [1739] = {.lex_state = 67, .external_lex_state = 3}, - [1740] = {.lex_state = 67, .external_lex_state = 2}, + [1740] = {.lex_state = 67, .external_lex_state = 3}, [1741] = {.lex_state = 67, .external_lex_state = 3}, - [1742] = {.lex_state = 67, .external_lex_state = 3}, + [1742] = {.lex_state = 67, .external_lex_state = 2}, [1743] = {.lex_state = 67, .external_lex_state = 3}, [1744] = {.lex_state = 67, .external_lex_state = 2}, - [1745] = {.lex_state = 7, .external_lex_state = 2}, - [1746] = {.lex_state = 67, .external_lex_state = 2}, - [1747] = {.lex_state = 7, .external_lex_state = 2}, - [1748] = {.lex_state = 7, .external_lex_state = 2}, + [1745] = {.lex_state = 67, .external_lex_state = 2}, + [1746] = {.lex_state = 67, .external_lex_state = 3}, + [1747] = {.lex_state = 67, .external_lex_state = 2}, + [1748] = {.lex_state = 67, .external_lex_state = 3}, [1749] = {.lex_state = 67, .external_lex_state = 3}, [1750] = {.lex_state = 67, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 2}, - [1752] = {.lex_state = 7, .external_lex_state = 2}, - [1753] = {.lex_state = 7, .external_lex_state = 2}, - [1754] = {.lex_state = 7, .external_lex_state = 2}, - [1755] = {.lex_state = 7, .external_lex_state = 2}, - [1756] = {.lex_state = 7, .external_lex_state = 2}, - [1757] = {.lex_state = 67, .external_lex_state = 3}, - [1758] = {.lex_state = 67, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 2}, + [1751] = {.lex_state = 67, .external_lex_state = 3}, + [1752] = {.lex_state = 67, .external_lex_state = 5}, + [1753] = {.lex_state = 67, .external_lex_state = 5}, + [1754] = {.lex_state = 67, .external_lex_state = 3}, + [1755] = {.lex_state = 67, .external_lex_state = 5}, + [1756] = {.lex_state = 67, .external_lex_state = 3}, + [1757] = {.lex_state = 7, .external_lex_state = 2}, + [1758] = {.lex_state = 7, .external_lex_state = 2}, + [1759] = {.lex_state = 67, .external_lex_state = 3}, [1760] = {.lex_state = 67, .external_lex_state = 3}, - [1761] = {.lex_state = 67, .external_lex_state = 3}, - [1762] = {.lex_state = 67, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 2}, - [1764] = {.lex_state = 67, .external_lex_state = 2}, + [1761] = {.lex_state = 14}, + [1762] = {.lex_state = 67, .external_lex_state = 2}, + [1763] = {.lex_state = 67, .external_lex_state = 2}, + [1764] = {.lex_state = 7, .external_lex_state = 2}, [1765] = {.lex_state = 67, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 67, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 2}, - [1769] = {.lex_state = 67, .external_lex_state = 3}, + [1766] = {.lex_state = 7, .external_lex_state = 2}, + [1767] = {.lex_state = 7, .external_lex_state = 2}, + [1768] = {.lex_state = 68}, + [1769] = {.lex_state = 7, .external_lex_state = 2}, [1770] = {.lex_state = 67, .external_lex_state = 3}, [1771] = {.lex_state = 7, .external_lex_state = 2}, - [1772] = {.lex_state = 7, .external_lex_state = 2}, - [1773] = {.lex_state = 68}, - [1774] = {.lex_state = 14}, - [1775] = {.lex_state = 7, .external_lex_state = 2}, - [1776] = {.lex_state = 7, .external_lex_state = 2}, - [1777] = {.lex_state = 67, .external_lex_state = 3}, + [1772] = {.lex_state = 67, .external_lex_state = 3}, + [1773] = {.lex_state = 7, .external_lex_state = 2}, + [1774] = {.lex_state = 7, .external_lex_state = 2}, + [1775] = {.lex_state = 67, .external_lex_state = 3}, + [1776] = {.lex_state = 67, .external_lex_state = 2}, + [1777] = {.lex_state = 7, .external_lex_state = 2}, [1778] = {.lex_state = 7, .external_lex_state = 2}, - [1779] = {.lex_state = 67, .external_lex_state = 2}, - [1780] = {.lex_state = 7, .external_lex_state = 2}, + [1779] = {.lex_state = 67, .external_lex_state = 3}, + [1780] = {.lex_state = 67, .external_lex_state = 2}, [1781] = {.lex_state = 7, .external_lex_state = 2}, [1782] = {.lex_state = 67, .external_lex_state = 3}, - [1783] = {.lex_state = 7, .external_lex_state = 2}, - [1784] = {.lex_state = 7, .external_lex_state = 2}, - [1785] = {.lex_state = 67, .external_lex_state = 2}, - [1786] = {.lex_state = 7, .external_lex_state = 2}, + [1783] = {.lex_state = 67, .external_lex_state = 3}, + [1784] = {.lex_state = 67, .external_lex_state = 2}, + [1785] = {.lex_state = 7, .external_lex_state = 2}, + [1786] = {.lex_state = 14}, [1787] = {.lex_state = 7, .external_lex_state = 2}, - [1788] = {.lex_state = 7, .external_lex_state = 3}, - [1789] = {.lex_state = 7, .external_lex_state = 2}, - [1790] = {.lex_state = 7, .external_lex_state = 2}, + [1788] = {.lex_state = 7, .external_lex_state = 2}, + [1789] = {.lex_state = 67, .external_lex_state = 3}, + [1790] = {.lex_state = 67, .external_lex_state = 2}, [1791] = {.lex_state = 7, .external_lex_state = 2}, [1792] = {.lex_state = 67, .external_lex_state = 3}, - [1793] = {.lex_state = 7, .external_lex_state = 2}, - [1794] = {.lex_state = 7, .external_lex_state = 2}, - [1795] = {.lex_state = 67, .external_lex_state = 3}, - [1796] = {.lex_state = 67, .external_lex_state = 3}, - [1797] = {.lex_state = 7, .external_lex_state = 2}, - [1798] = {.lex_state = 8, .external_lex_state = 2}, + [1793] = {.lex_state = 67, .external_lex_state = 2}, + [1794] = {.lex_state = 67, .external_lex_state = 3}, + [1795] = {.lex_state = 14}, + [1796] = {.lex_state = 67, .external_lex_state = 2}, + [1797] = {.lex_state = 67, .external_lex_state = 2}, + [1798] = {.lex_state = 14}, [1799] = {.lex_state = 14}, [1800] = {.lex_state = 67, .external_lex_state = 3}, - [1801] = {.lex_state = 67, .external_lex_state = 3}, - [1802] = {.lex_state = 7, .external_lex_state = 2}, + [1801] = {.lex_state = 14}, + [1802] = {.lex_state = 67, .external_lex_state = 2}, [1803] = {.lex_state = 67, .external_lex_state = 3}, - [1804] = {.lex_state = 7, .external_lex_state = 2}, - [1805] = {.lex_state = 14}, + [1804] = {.lex_state = 67, .external_lex_state = 2}, + [1805] = {.lex_state = 67, .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 = 67, .external_lex_state = 3}, - [1810] = {.lex_state = 67, .external_lex_state = 3}, - [1811] = {.lex_state = 67, .external_lex_state = 3}, - [1812] = {.lex_state = 7, .external_lex_state = 2}, - [1813] = {.lex_state = 68}, - [1814] = {.lex_state = 68}, - [1815] = {.lex_state = 67, .external_lex_state = 3}, - [1816] = {.lex_state = 67, .external_lex_state = 3}, - [1817] = {.lex_state = 7, .external_lex_state = 2}, - [1818] = {.lex_state = 67, .external_lex_state = 3}, - [1819] = {.lex_state = 14}, + [1807] = {.lex_state = 67, .external_lex_state = 2}, + [1808] = {.lex_state = 67, .external_lex_state = 2}, + [1809] = {.lex_state = 67, .external_lex_state = 2}, + [1810] = {.lex_state = 67, .external_lex_state = 2}, + [1811] = {.lex_state = 67, .external_lex_state = 2}, + [1812] = {.lex_state = 67, .external_lex_state = 3}, + [1813] = {.lex_state = 7, .external_lex_state = 2}, + [1814] = {.lex_state = 7, .external_lex_state = 2}, + [1815] = {.lex_state = 67, .external_lex_state = 2}, + [1816] = {.lex_state = 7, .external_lex_state = 2}, + [1817] = {.lex_state = 14}, + [1818] = {.lex_state = 67, .external_lex_state = 2}, + [1819] = {.lex_state = 67, .external_lex_state = 3}, [1820] = {.lex_state = 7, .external_lex_state = 2}, - [1821] = {.lex_state = 14}, - [1822] = {.lex_state = 7, .external_lex_state = 2}, - [1823] = {.lex_state = 7, .external_lex_state = 2}, - [1824] = {.lex_state = 7, .external_lex_state = 2}, - [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 = 14}, - [1829] = {.lex_state = 7, .external_lex_state = 2}, - [1830] = {.lex_state = 14}, - [1831] = {.lex_state = 7, .external_lex_state = 2}, - [1832] = {.lex_state = 67, .external_lex_state = 2}, - [1833] = {.lex_state = 67, .external_lex_state = 3}, + [1821] = {.lex_state = 7, .external_lex_state = 2}, + [1822] = {.lex_state = 67, .external_lex_state = 2}, + [1823] = {.lex_state = 67, .external_lex_state = 3}, + [1824] = {.lex_state = 67, .external_lex_state = 2}, + [1825] = {.lex_state = 67, .external_lex_state = 2}, + [1826] = {.lex_state = 67, .external_lex_state = 2}, + [1827] = {.lex_state = 67, .external_lex_state = 2}, + [1828] = {.lex_state = 68}, + [1829] = {.lex_state = 67, .external_lex_state = 2}, + [1830] = {.lex_state = 67, .external_lex_state = 2}, + [1831] = {.lex_state = 67, .external_lex_state = 2}, + [1832] = {.lex_state = 67, .external_lex_state = 3}, + [1833] = {.lex_state = 7, .external_lex_state = 2}, [1834] = {.lex_state = 67, .external_lex_state = 2}, - [1835] = {.lex_state = 67, .external_lex_state = 3}, - [1836] = {.lex_state = 67, .external_lex_state = 3}, - [1837] = {.lex_state = 7, .external_lex_state = 2}, - [1838] = {.lex_state = 7, .external_lex_state = 2}, + [1835] = {.lex_state = 67, .external_lex_state = 2}, + [1836] = {.lex_state = 7, .external_lex_state = 2}, + [1837] = {.lex_state = 67, .external_lex_state = 2}, + [1838] = {.lex_state = 67, .external_lex_state = 2}, [1839] = {.lex_state = 67, .external_lex_state = 3}, [1840] = {.lex_state = 7, .external_lex_state = 2}, [1841] = {.lex_state = 7, .external_lex_state = 2}, - [1842] = {.lex_state = 67, .external_lex_state = 3}, + [1842] = {.lex_state = 67, .external_lex_state = 2}, [1843] = {.lex_state = 67, .external_lex_state = 3}, - [1844] = {.lex_state = 68}, - [1845] = {.lex_state = 67, .external_lex_state = 2}, - [1846] = {.lex_state = 7, .external_lex_state = 2}, + [1844] = {.lex_state = 67, .external_lex_state = 3}, + [1845] = {.lex_state = 67, .external_lex_state = 3}, + [1846] = {.lex_state = 67, .external_lex_state = 2}, [1847] = {.lex_state = 67, .external_lex_state = 2}, - [1848] = {.lex_state = 67, .external_lex_state = 3}, - [1849] = {.lex_state = 7, .external_lex_state = 2}, - [1850] = {.lex_state = 7, .external_lex_state = 2}, + [1848] = {.lex_state = 7, .external_lex_state = 2}, + [1849] = {.lex_state = 67, .external_lex_state = 3}, + [1850] = {.lex_state = 14}, [1851] = {.lex_state = 7, .external_lex_state = 2}, [1852] = {.lex_state = 7, .external_lex_state = 2}, [1853] = {.lex_state = 7, .external_lex_state = 2}, - [1854] = {.lex_state = 67, .external_lex_state = 3}, - [1855] = {.lex_state = 67, .external_lex_state = 3}, + [1854] = {.lex_state = 7, .external_lex_state = 2}, + [1855] = {.lex_state = 68}, [1856] = {.lex_state = 7, .external_lex_state = 2}, - [1857] = {.lex_state = 7, .external_lex_state = 2}, - [1858] = {.lex_state = 67, .external_lex_state = 3}, - [1859] = {.lex_state = 14}, - [1860] = {.lex_state = 7, .external_lex_state = 2}, - [1861] = {.lex_state = 14}, + [1857] = {.lex_state = 67, .external_lex_state = 3}, + [1858] = {.lex_state = 7, .external_lex_state = 2}, + [1859] = {.lex_state = 67, .external_lex_state = 2}, + [1860] = {.lex_state = 67, .external_lex_state = 2}, + [1861] = {.lex_state = 67, .external_lex_state = 3}, [1862] = {.lex_state = 7, .external_lex_state = 2}, - [1863] = {.lex_state = 7, .external_lex_state = 2}, - [1864] = {.lex_state = 7, .external_lex_state = 2}, + [1863] = {.lex_state = 67, .external_lex_state = 3}, + [1864] = {.lex_state = 67, .external_lex_state = 3}, [1865] = {.lex_state = 14}, - [1866] = {.lex_state = 7, .external_lex_state = 2}, - [1867] = {.lex_state = 7, .external_lex_state = 2}, - [1868] = {.lex_state = 7, .external_lex_state = 2}, + [1866] = {.lex_state = 67, .external_lex_state = 2}, + [1867] = {.lex_state = 67, .external_lex_state = 3}, + [1868] = {.lex_state = 67, .external_lex_state = 3}, [1869] = {.lex_state = 7, .external_lex_state = 2}, - [1870] = {.lex_state = 67, .external_lex_state = 2}, - [1871] = {.lex_state = 7, .external_lex_state = 2}, - [1872] = {.lex_state = 67, .external_lex_state = 2}, + [1870] = {.lex_state = 7, .external_lex_state = 2}, + [1871] = {.lex_state = 67, .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 = 2}, - [1875] = {.lex_state = 14}, + [1874] = {.lex_state = 67, .external_lex_state = 3}, + [1875] = {.lex_state = 67, .external_lex_state = 2}, [1876] = {.lex_state = 7, .external_lex_state = 2}, - [1877] = {.lex_state = 7, .external_lex_state = 2}, - [1878] = {.lex_state = 67, .external_lex_state = 2}, - [1879] = {.lex_state = 7, .external_lex_state = 2}, - [1880] = {.lex_state = 67, .external_lex_state = 2}, - [1881] = {.lex_state = 10, .external_lex_state = 2}, - [1882] = {.lex_state = 7, .external_lex_state = 2}, + [1877] = {.lex_state = 67, .external_lex_state = 3}, + [1878] = {.lex_state = 7, .external_lex_state = 2}, + [1879] = {.lex_state = 67, .external_lex_state = 2}, + [1880] = {.lex_state = 67, .external_lex_state = 3}, + [1881] = {.lex_state = 67, .external_lex_state = 2}, + [1882] = {.lex_state = 67, .external_lex_state = 2}, [1883] = {.lex_state = 7, .external_lex_state = 2}, - [1884] = {.lex_state = 7, .external_lex_state = 2}, - [1885] = {.lex_state = 67, .external_lex_state = 3}, - [1886] = {.lex_state = 7, .external_lex_state = 2}, + [1884] = {.lex_state = 67, .external_lex_state = 2}, + [1885] = {.lex_state = 7, .external_lex_state = 2}, + [1886] = {.lex_state = 67, .external_lex_state = 3}, [1887] = {.lex_state = 67, .external_lex_state = 3}, [1888] = {.lex_state = 67, .external_lex_state = 2}, - [1889] = {.lex_state = 68, .external_lex_state = 4}, - [1890] = {.lex_state = 67, .external_lex_state = 2}, - [1891] = {.lex_state = 68, .external_lex_state = 4}, - [1892] = {.lex_state = 68, .external_lex_state = 4}, - [1893] = {.lex_state = 67, .external_lex_state = 2}, - [1894] = {.lex_state = 67, .external_lex_state = 2}, - [1895] = {.lex_state = 67, .external_lex_state = 2}, - [1896] = {.lex_state = 7, .external_lex_state = 2}, - [1897] = {.lex_state = 67, .external_lex_state = 2}, + [1889] = {.lex_state = 67, .external_lex_state = 2}, + [1890] = {.lex_state = 67, .external_lex_state = 3}, + [1891] = {.lex_state = 14}, + [1892] = {.lex_state = 67, .external_lex_state = 3}, + [1893] = {.lex_state = 67, .external_lex_state = 3}, + [1894] = {.lex_state = 7, .external_lex_state = 2}, + [1895] = {.lex_state = 7, .external_lex_state = 2}, + [1896] = {.lex_state = 7, .external_lex_state = 3}, + [1897] = {.lex_state = 8, .external_lex_state = 2}, [1898] = {.lex_state = 7, .external_lex_state = 2}, - [1899] = {.lex_state = 68, .external_lex_state = 4}, + [1899] = {.lex_state = 68}, [1900] = {.lex_state = 7, .external_lex_state = 2}, - [1901] = {.lex_state = 68, .external_lex_state = 4}, - [1902] = {.lex_state = 68, .external_lex_state = 4}, - [1903] = {.lex_state = 7, .external_lex_state = 2}, - [1904] = {.lex_state = 7, .external_lex_state = 2}, - [1905] = {.lex_state = 7, .external_lex_state = 2}, - [1906] = {.lex_state = 7, .external_lex_state = 2}, + [1901] = {.lex_state = 7, .external_lex_state = 2}, + [1902] = {.lex_state = 7, .external_lex_state = 2}, + [1903] = {.lex_state = 10, .external_lex_state = 2}, + [1904] = {.lex_state = 67, .external_lex_state = 3}, + [1905] = {.lex_state = 67, .external_lex_state = 3}, + [1906] = {.lex_state = 67, .external_lex_state = 3}, [1907] = {.lex_state = 7, .external_lex_state = 2}, - [1908] = {.lex_state = 67, .external_lex_state = 2}, - [1909] = {.lex_state = 7, .external_lex_state = 2}, - [1910] = {.lex_state = 7, .external_lex_state = 2}, - [1911] = {.lex_state = 68, .external_lex_state = 4}, - [1912] = {.lex_state = 7, .external_lex_state = 2}, - [1913] = {.lex_state = 7, .external_lex_state = 2}, - [1914] = {.lex_state = 7, .external_lex_state = 2}, + [1908] = {.lex_state = 67, .external_lex_state = 3}, + [1909] = {.lex_state = 67, .external_lex_state = 3}, + [1910] = {.lex_state = 67, .external_lex_state = 2}, + [1911] = {.lex_state = 7, .external_lex_state = 2}, + [1912] = {.lex_state = 67, .external_lex_state = 3}, + [1913] = {.lex_state = 67, .external_lex_state = 3}, + [1914] = {.lex_state = 67, .external_lex_state = 3}, [1915] = {.lex_state = 7, .external_lex_state = 2}, - [1916] = {.lex_state = 67, .external_lex_state = 2}, + [1916] = {.lex_state = 67, .external_lex_state = 3}, [1917] = {.lex_state = 67, .external_lex_state = 2}, - [1918] = {.lex_state = 67, .external_lex_state = 2}, - [1919] = {.lex_state = 67, .external_lex_state = 2}, - [1920] = {.lex_state = 7, .external_lex_state = 2}, - [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 = 2}, - [1925] = {.lex_state = 7, .external_lex_state = 2}, - [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 = 2}, - [1930] = {.lex_state = 67, .external_lex_state = 2}, + [1918] = {.lex_state = 7, .external_lex_state = 3}, + [1919] = {.lex_state = 67, .external_lex_state = 3}, + [1920] = {.lex_state = 67, .external_lex_state = 3}, + [1921] = {.lex_state = 67, .external_lex_state = 3}, + [1922] = {.lex_state = 67, .external_lex_state = 3}, + [1923] = {.lex_state = 67, .external_lex_state = 3}, + [1924] = {.lex_state = 67, .external_lex_state = 3}, + [1925] = {.lex_state = 67, .external_lex_state = 3}, + [1926] = {.lex_state = 67, .external_lex_state = 3}, + [1927] = {.lex_state = 67, .external_lex_state = 3}, + [1928] = {.lex_state = 67, .external_lex_state = 3}, + [1929] = {.lex_state = 67, .external_lex_state = 3}, + [1930] = {.lex_state = 7, .external_lex_state = 2}, [1931] = {.lex_state = 7, .external_lex_state = 2}, - [1932] = {.lex_state = 68, .external_lex_state = 4}, - [1933] = {.lex_state = 67, .external_lex_state = 2}, + [1932] = {.lex_state = 7, .external_lex_state = 2}, + [1933] = {.lex_state = 67, .external_lex_state = 3}, [1934] = {.lex_state = 7, .external_lex_state = 2}, - [1935] = {.lex_state = 68, .external_lex_state = 4}, - [1936] = {.lex_state = 68, .external_lex_state = 4}, - [1937] = {.lex_state = 68}, - [1938] = {.lex_state = 7, .external_lex_state = 2}, - [1939] = {.lex_state = 68, .external_lex_state = 4}, - [1940] = {.lex_state = 67, .external_lex_state = 2}, - [1941] = {.lex_state = 7, .external_lex_state = 2}, - [1942] = {.lex_state = 67, .external_lex_state = 2}, - [1943] = {.lex_state = 7, .external_lex_state = 2}, - [1944] = {.lex_state = 68, .external_lex_state = 4}, - [1945] = {.lex_state = 7, .external_lex_state = 2}, - [1946] = {.lex_state = 7, .external_lex_state = 2}, - [1947] = {.lex_state = 7, .external_lex_state = 2}, + [1935] = {.lex_state = 67, .external_lex_state = 3}, + [1936] = {.lex_state = 7, .external_lex_state = 2}, + [1937] = {.lex_state = 67, .external_lex_state = 3}, + [1938] = {.lex_state = 67, .external_lex_state = 3}, + [1939] = {.lex_state = 7, .external_lex_state = 2}, + [1940] = {.lex_state = 67, .external_lex_state = 3}, + [1941] = {.lex_state = 67, .external_lex_state = 3}, + [1942] = {.lex_state = 7, .external_lex_state = 2}, + [1943] = {.lex_state = 67, .external_lex_state = 3}, + [1944] = {.lex_state = 67, .external_lex_state = 3}, + [1945] = {.lex_state = 67, .external_lex_state = 3}, + [1946] = {.lex_state = 67, .external_lex_state = 3}, + [1947] = {.lex_state = 14}, [1948] = {.lex_state = 7, .external_lex_state = 2}, - [1949] = {.lex_state = 67, .external_lex_state = 2}, - [1950] = {.lex_state = 7, .external_lex_state = 2}, - [1951] = {.lex_state = 67, .external_lex_state = 2}, + [1949] = {.lex_state = 67, .external_lex_state = 3}, + [1950] = {.lex_state = 67, .external_lex_state = 3}, + [1951] = {.lex_state = 7, .external_lex_state = 2}, [1952] = {.lex_state = 7, .external_lex_state = 2}, - [1953] = {.lex_state = 67, .external_lex_state = 2}, - [1954] = {.lex_state = 7, .external_lex_state = 2}, - [1955] = {.lex_state = 7, .external_lex_state = 2}, - [1956] = {.lex_state = 7, .external_lex_state = 2}, - [1957] = {.lex_state = 7, .external_lex_state = 2}, - [1958] = {.lex_state = 7, .external_lex_state = 2}, + [1953] = {.lex_state = 67, .external_lex_state = 3}, + [1954] = {.lex_state = 67, .external_lex_state = 3}, + [1955] = {.lex_state = 67, .external_lex_state = 3}, + [1956] = {.lex_state = 67, .external_lex_state = 3}, + [1957] = {.lex_state = 67, .external_lex_state = 3}, + [1958] = {.lex_state = 67, .external_lex_state = 3}, [1959] = {.lex_state = 7, .external_lex_state = 2}, [1960] = {.lex_state = 7, .external_lex_state = 2}, [1961] = {.lex_state = 7, .external_lex_state = 2}, - [1962] = {.lex_state = 67, .external_lex_state = 2}, - [1963] = {.lex_state = 68, .external_lex_state = 4}, - [1964] = {.lex_state = 68, .external_lex_state = 4}, - [1965] = {.lex_state = 67, .external_lex_state = 2}, + [1962] = {.lex_state = 68}, + [1963] = {.lex_state = 7, .external_lex_state = 2}, + [1964] = {.lex_state = 14}, + [1965] = {.lex_state = 7, .external_lex_state = 2}, [1966] = {.lex_state = 67, .external_lex_state = 2}, - [1967] = {.lex_state = 68, .external_lex_state = 4}, - [1968] = {.lex_state = 68, .external_lex_state = 4}, - [1969] = {.lex_state = 68, .external_lex_state = 4}, - [1970] = {.lex_state = 68, .external_lex_state = 4}, - [1971] = {.lex_state = 68, .external_lex_state = 4}, - [1972] = {.lex_state = 68, .external_lex_state = 4}, - [1973] = {.lex_state = 68, .external_lex_state = 4}, - [1974] = {.lex_state = 67, .external_lex_state = 2}, - [1975] = {.lex_state = 67, .external_lex_state = 2}, - [1976] = {.lex_state = 68, .external_lex_state = 4}, - [1977] = {.lex_state = 68, .external_lex_state = 4}, - [1978] = {.lex_state = 67, .external_lex_state = 2}, - [1979] = {.lex_state = 68, .external_lex_state = 4}, - [1980] = {.lex_state = 68, .external_lex_state = 4}, - [1981] = {.lex_state = 67, .external_lex_state = 2}, - [1982] = {.lex_state = 68, .external_lex_state = 4}, - [1983] = {.lex_state = 67, .external_lex_state = 2}, - [1984] = {.lex_state = 67, .external_lex_state = 2}, - [1985] = {.lex_state = 68, .external_lex_state = 4}, - [1986] = {.lex_state = 68, .external_lex_state = 4}, - [1987] = {.lex_state = 68, .external_lex_state = 4}, - [1988] = {.lex_state = 67, .external_lex_state = 2}, - [1989] = {.lex_state = 68, .external_lex_state = 4}, - [1990] = {.lex_state = 67, .external_lex_state = 2}, - [1991] = {.lex_state = 68, .external_lex_state = 4}, - [1992] = {.lex_state = 68, .external_lex_state = 4}, - [1993] = {.lex_state = 68, .external_lex_state = 4}, - [1994] = {.lex_state = 68, .external_lex_state = 4}, - [1995] = {.lex_state = 68, .external_lex_state = 4}, - [1996] = {.lex_state = 68, .external_lex_state = 4}, - [1997] = {.lex_state = 68, .external_lex_state = 4}, - [1998] = {.lex_state = 68, .external_lex_state = 4}, - [1999] = {.lex_state = 68, .external_lex_state = 4}, + [1967] = {.lex_state = 14}, + [1968] = {.lex_state = 67, .external_lex_state = 2}, + [1969] = {.lex_state = 67, .external_lex_state = 2}, + [1970] = {.lex_state = 67, .external_lex_state = 3}, + [1971] = {.lex_state = 67, .external_lex_state = 3}, + [1972] = {.lex_state = 7, .external_lex_state = 2}, + [1973] = {.lex_state = 67, .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 = 2}, + [1977] = {.lex_state = 7, .external_lex_state = 2}, + [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}, + [1983] = {.lex_state = 67, .external_lex_state = 6}, + [1984] = {.lex_state = 7, .external_lex_state = 2}, + [1985] = {.lex_state = 67, .external_lex_state = 2}, + [1986] = {.lex_state = 67, .external_lex_state = 6}, + [1987] = {.lex_state = 67, .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 = 67, .external_lex_state = 2}, + [1992] = {.lex_state = 7, .external_lex_state = 2}, + [1993] = {.lex_state = 7, .external_lex_state = 2}, + [1994] = {.lex_state = 7, .external_lex_state = 2}, + [1995] = {.lex_state = 7, .external_lex_state = 2}, + [1996] = {.lex_state = 7, .external_lex_state = 2}, + [1997] = {.lex_state = 67, .external_lex_state = 6}, + [1998] = {.lex_state = 7, .external_lex_state = 2}, + [1999] = {.lex_state = 7, .external_lex_state = 2}, [2000] = {.lex_state = 67, .external_lex_state = 2}, - [2001] = {.lex_state = 67, .external_lex_state = 2}, - [2002] = {.lex_state = 68, .external_lex_state = 4}, - [2003] = {.lex_state = 68, .external_lex_state = 4}, - [2004] = {.lex_state = 68, .external_lex_state = 4}, - [2005] = {.lex_state = 68, .external_lex_state = 4}, - [2006] = {.lex_state = 68, .external_lex_state = 4}, - [2007] = {.lex_state = 68, .external_lex_state = 4}, - [2008] = {.lex_state = 68, .external_lex_state = 4}, - [2009] = {.lex_state = 68}, - [2010] = {.lex_state = 68}, - [2011] = {.lex_state = 68, .external_lex_state = 4}, - [2012] = {.lex_state = 68, .external_lex_state = 4}, - [2013] = {.lex_state = 68}, - [2014] = {.lex_state = 68}, - [2015] = {.lex_state = 68}, - [2016] = {.lex_state = 68, .external_lex_state = 4}, - [2017] = {.lex_state = 68}, - [2018] = {.lex_state = 68}, - [2019] = {.lex_state = 68}, - [2020] = {.lex_state = 68}, - [2021] = {.lex_state = 68}, - [2022] = {.lex_state = 67, .external_lex_state = 2}, - [2023] = {.lex_state = 68, .external_lex_state = 4}, - [2024] = {.lex_state = 68, .external_lex_state = 4}, - [2025] = {.lex_state = 67, .external_lex_state = 2}, - [2026] = {.lex_state = 68}, - [2027] = {.lex_state = 68}, - [2028] = {.lex_state = 68, .external_lex_state = 4}, - [2029] = {.lex_state = 68, .external_lex_state = 4}, - [2030] = {.lex_state = 68, .external_lex_state = 4}, - [2031] = {.lex_state = 68, .external_lex_state = 4}, - [2032] = {.lex_state = 68}, - [2033] = {.lex_state = 68}, - [2034] = {.lex_state = 68, .external_lex_state = 4}, - [2035] = {.lex_state = 68, .external_lex_state = 4}, - [2036] = {.lex_state = 67, .external_lex_state = 2}, - [2037] = {.lex_state = 68, .external_lex_state = 4}, - [2038] = {.lex_state = 68, .external_lex_state = 4}, - [2039] = {.lex_state = 68}, - [2040] = {.lex_state = 68}, - [2041] = {.lex_state = 68}, + [2001] = {.lex_state = 67, .external_lex_state = 3}, + [2002] = {.lex_state = 7, .external_lex_state = 2}, + [2003] = {.lex_state = 7, .external_lex_state = 2}, + [2004] = {.lex_state = 67, .external_lex_state = 2}, + [2005] = {.lex_state = 67, .external_lex_state = 2}, + [2006] = {.lex_state = 67, .external_lex_state = 2}, + [2007] = {.lex_state = 67, .external_lex_state = 2}, + [2008] = {.lex_state = 67, .external_lex_state = 3}, + [2009] = {.lex_state = 7, .external_lex_state = 2}, + [2010] = {.lex_state = 7, .external_lex_state = 2}, + [2011] = {.lex_state = 67, .external_lex_state = 2}, + [2012] = {.lex_state = 67, .external_lex_state = 2}, + [2013] = {.lex_state = 7, .external_lex_state = 2}, + [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 = 7, .external_lex_state = 2}, + [2021] = {.lex_state = 7, .external_lex_state = 2}, + [2022] = {.lex_state = 67, .external_lex_state = 6}, + [2023] = {.lex_state = 67, .external_lex_state = 2}, + [2024] = {.lex_state = 67, .external_lex_state = 6}, + [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 = 67, .external_lex_state = 2}, + [2031] = {.lex_state = 7, .external_lex_state = 2}, + [2032] = {.lex_state = 67, .external_lex_state = 3}, + [2033] = {.lex_state = 67, .external_lex_state = 2}, + [2034] = {.lex_state = 67, .external_lex_state = 2}, + [2035] = {.lex_state = 67, .external_lex_state = 2}, + [2036] = {.lex_state = 7, .external_lex_state = 2}, + [2037] = {.lex_state = 7, .external_lex_state = 2}, + [2038] = {.lex_state = 7, .external_lex_state = 2}, + [2039] = {.lex_state = 7, .external_lex_state = 2}, + [2040] = {.lex_state = 7, .external_lex_state = 2}, + [2041] = {.lex_state = 68, .external_lex_state = 4}, [2042] = {.lex_state = 68, .external_lex_state = 4}, - [2043] = {.lex_state = 68}, - [2044] = {.lex_state = 68}, - [2045] = {.lex_state = 68}, - [2046] = {.lex_state = 68}, - [2047] = {.lex_state = 68}, - [2048] = {.lex_state = 68, .external_lex_state = 4}, - [2049] = {.lex_state = 16}, - [2050] = {.lex_state = 68}, - [2051] = {.lex_state = 68}, - [2052] = {.lex_state = 68}, - [2053] = {.lex_state = 68}, - [2054] = {.lex_state = 68}, - [2055] = {.lex_state = 68, .external_lex_state = 4}, - [2056] = {.lex_state = 68, .external_lex_state = 4}, - [2057] = {.lex_state = 68}, - [2058] = {.lex_state = 68, .external_lex_state = 4}, - [2059] = {.lex_state = 68, .external_lex_state = 4}, - [2060] = {.lex_state = 68}, - [2061] = {.lex_state = 68}, - [2062] = {.lex_state = 68}, - [2063] = {.lex_state = 68}, - [2064] = {.lex_state = 68}, - [2065] = {.lex_state = 68}, - [2066] = {.lex_state = 68}, - [2067] = {.lex_state = 16}, - [2068] = {.lex_state = 68}, - [2069] = {.lex_state = 68}, - [2070] = {.lex_state = 68}, - [2071] = {.lex_state = 68}, - [2072] = {.lex_state = 68, .external_lex_state = 4}, - [2073] = {.lex_state = 68}, - [2074] = {.lex_state = 68}, - [2075] = {.lex_state = 68}, - [2076] = {.lex_state = 68}, - [2077] = {.lex_state = 68}, - [2078] = {.lex_state = 68}, - [2079] = {.lex_state = 68}, - [2080] = {.lex_state = 68}, - [2081] = {.lex_state = 68}, - [2082] = {.lex_state = 16}, - [2083] = {.lex_state = 16}, - [2084] = {.lex_state = 68}, - [2085] = {.lex_state = 68}, - [2086] = {.lex_state = 68}, - [2087] = {.lex_state = 16}, - [2088] = {.lex_state = 16}, - [2089] = {.lex_state = 16}, - [2090] = {.lex_state = 68}, - [2091] = {.lex_state = 68}, - [2092] = {.lex_state = 68}, - [2093] = {.lex_state = 68}, - [2094] = {.lex_state = 68}, - [2095] = {.lex_state = 68}, - [2096] = {.lex_state = 14, .external_lex_state = 4}, - [2097] = {.lex_state = 14, .external_lex_state = 4}, - [2098] = {.lex_state = 14, .external_lex_state = 4}, - [2099] = {.lex_state = 68}, - [2100] = {.lex_state = 14, .external_lex_state = 4}, - [2101] = {.lex_state = 14, .external_lex_state = 4}, - [2102] = {.lex_state = 14, .external_lex_state = 4}, - [2103] = {.lex_state = 14, .external_lex_state = 4}, - [2104] = {.lex_state = 68}, - [2105] = {.lex_state = 14, .external_lex_state = 4}, - [2106] = {.lex_state = 14, .external_lex_state = 4}, - [2107] = {.lex_state = 68}, - [2108] = {.lex_state = 14, .external_lex_state = 4}, - [2109] = {.lex_state = 68}, - [2110] = {.lex_state = 14, .external_lex_state = 4}, - [2111] = {.lex_state = 14, .external_lex_state = 4}, - [2112] = {.lex_state = 14, .external_lex_state = 4}, - [2113] = {.lex_state = 14, .external_lex_state = 4}, - [2114] = {.lex_state = 14, .external_lex_state = 4}, - [2115] = {.lex_state = 14, .external_lex_state = 4}, - [2116] = {.lex_state = 14, .external_lex_state = 4}, - [2117] = {.lex_state = 68}, - [2118] = {.lex_state = 68}, - [2119] = {.lex_state = 68}, - [2120] = {.lex_state = 68}, + [2043] = {.lex_state = 68, .external_lex_state = 4}, + [2044] = {.lex_state = 67, .external_lex_state = 2}, + [2045] = {.lex_state = 67, .external_lex_state = 6}, + [2046] = {.lex_state = 67, .external_lex_state = 6}, + [2047] = {.lex_state = 7, .external_lex_state = 2}, + [2048] = {.lex_state = 7, .external_lex_state = 2}, + [2049] = {.lex_state = 67, .external_lex_state = 3}, + [2050] = {.lex_state = 67, .external_lex_state = 2}, + [2051] = {.lex_state = 67, .external_lex_state = 2}, + [2052] = {.lex_state = 67, .external_lex_state = 2}, + [2053] = {.lex_state = 67, .external_lex_state = 2}, + [2054] = {.lex_state = 67, .external_lex_state = 2}, + [2055] = {.lex_state = 7, .external_lex_state = 2}, + [2056] = {.lex_state = 67, .external_lex_state = 2}, + [2057] = {.lex_state = 7, .external_lex_state = 2}, + [2058] = {.lex_state = 7, .external_lex_state = 2}, + [2059] = {.lex_state = 67, .external_lex_state = 2}, + [2060] = {.lex_state = 67, .external_lex_state = 2}, + [2061] = {.lex_state = 67, .external_lex_state = 2}, + [2062] = {.lex_state = 7, .external_lex_state = 2}, + [2063] = {.lex_state = 67, .external_lex_state = 2}, + [2064] = {.lex_state = 67, .external_lex_state = 2}, + [2065] = {.lex_state = 7, .external_lex_state = 2}, + [2066] = {.lex_state = 67, .external_lex_state = 2}, + [2067] = {.lex_state = 67, .external_lex_state = 2}, + [2068] = {.lex_state = 7, .external_lex_state = 2}, + [2069] = {.lex_state = 7, .external_lex_state = 2}, + [2070] = {.lex_state = 7, .external_lex_state = 2}, + [2071] = {.lex_state = 7, .external_lex_state = 2}, + [2072] = {.lex_state = 7, .external_lex_state = 2}, + [2073] = {.lex_state = 67, .external_lex_state = 2}, + [2074] = {.lex_state = 67, .external_lex_state = 6}, + [2075] = {.lex_state = 7, .external_lex_state = 2}, + [2076] = {.lex_state = 7, .external_lex_state = 2}, + [2077] = {.lex_state = 67, .external_lex_state = 6}, + [2078] = {.lex_state = 67, .external_lex_state = 6}, + [2079] = {.lex_state = 67, .external_lex_state = 2}, + [2080] = {.lex_state = 7, .external_lex_state = 2}, + [2081] = {.lex_state = 67, .external_lex_state = 2}, + [2082] = {.lex_state = 7, .external_lex_state = 2}, + [2083] = {.lex_state = 7, .external_lex_state = 2}, + [2084] = {.lex_state = 7, .external_lex_state = 2}, + [2085] = {.lex_state = 67, .external_lex_state = 2}, + [2086] = {.lex_state = 7, .external_lex_state = 2}, + [2087] = {.lex_state = 7, .external_lex_state = 2}, + [2088] = {.lex_state = 7, .external_lex_state = 2}, + [2089] = {.lex_state = 7, .external_lex_state = 2}, + [2090] = {.lex_state = 7, .external_lex_state = 2}, + [2091] = {.lex_state = 67, .external_lex_state = 2}, + [2092] = {.lex_state = 67, .external_lex_state = 2}, + [2093] = {.lex_state = 7, .external_lex_state = 2}, + [2094] = {.lex_state = 7, .external_lex_state = 2}, + [2095] = {.lex_state = 67, .external_lex_state = 2}, + [2096] = {.lex_state = 7, .external_lex_state = 2}, + [2097] = {.lex_state = 67, .external_lex_state = 2}, + [2098] = {.lex_state = 7, .external_lex_state = 2}, + [2099] = {.lex_state = 7, .external_lex_state = 2}, + [2100] = {.lex_state = 7, .external_lex_state = 2}, + [2101] = {.lex_state = 7, .external_lex_state = 2}, + [2102] = {.lex_state = 67, .external_lex_state = 2}, + [2103] = {.lex_state = 7, .external_lex_state = 2}, + [2104] = {.lex_state = 7, .external_lex_state = 2}, + [2105] = {.lex_state = 7, .external_lex_state = 2}, + [2106] = {.lex_state = 7, .external_lex_state = 2}, + [2107] = {.lex_state = 67, .external_lex_state = 6}, + [2108] = {.lex_state = 67, .external_lex_state = 2}, + [2109] = {.lex_state = 67, .external_lex_state = 2}, + [2110] = {.lex_state = 7, .external_lex_state = 2}, + [2111] = {.lex_state = 67, .external_lex_state = 2}, + [2112] = {.lex_state = 7, .external_lex_state = 2}, + [2113] = {.lex_state = 67, .external_lex_state = 6}, + [2114] = {.lex_state = 68, .external_lex_state = 4}, + [2115] = {.lex_state = 7, .external_lex_state = 2}, + [2116] = {.lex_state = 67, .external_lex_state = 3}, + [2117] = {.lex_state = 68, .external_lex_state = 4}, + [2118] = {.lex_state = 67, .external_lex_state = 2}, + [2119] = {.lex_state = 67, .external_lex_state = 2}, + [2120] = {.lex_state = 68, .external_lex_state = 4}, [2121] = {.lex_state = 68}, - [2122] = {.lex_state = 68}, - [2123] = {.lex_state = 68}, - [2124] = {.lex_state = 68}, - [2125] = {.lex_state = 68}, - [2126] = {.lex_state = 68}, - [2127] = {.lex_state = 68}, - [2128] = {.lex_state = 68}, - [2129] = {.lex_state = 68}, - [2130] = {.lex_state = 68}, - [2131] = {.lex_state = 68}, - [2132] = {.lex_state = 68}, - [2133] = {.lex_state = 68}, - [2134] = {.lex_state = 68}, - [2135] = {.lex_state = 68}, - [2136] = {.lex_state = 68}, - [2137] = {.lex_state = 68}, - [2138] = {.lex_state = 14}, - [2139] = {.lex_state = 68}, - [2140] = {.lex_state = 68}, - [2141] = {.lex_state = 68}, - [2142] = {.lex_state = 68}, - [2143] = {.lex_state = 68}, - [2144] = {.lex_state = 68}, - [2145] = {.lex_state = 68}, - [2146] = {.lex_state = 68}, - [2147] = {.lex_state = 68}, - [2148] = {.lex_state = 68}, - [2149] = {.lex_state = 68}, - [2150] = {.lex_state = 68}, - [2151] = {.lex_state = 68}, - [2152] = {.lex_state = 68}, - [2153] = {.lex_state = 68}, - [2154] = {.lex_state = 68}, - [2155] = {.lex_state = 68}, - [2156] = {.lex_state = 68}, - [2157] = {.lex_state = 68}, - [2158] = {.lex_state = 68}, - [2159] = {.lex_state = 68}, - [2160] = {.lex_state = 68}, - [2161] = {.lex_state = 68}, - [2162] = {.lex_state = 68}, - [2163] = {.lex_state = 68}, - [2164] = {.lex_state = 68}, - [2165] = {.lex_state = 68}, - [2166] = {.lex_state = 68}, - [2167] = {.lex_state = 68}, - [2168] = {.lex_state = 68}, - [2169] = {.lex_state = 68}, - [2170] = {.lex_state = 68}, - [2171] = {.lex_state = 68}, - [2172] = {.lex_state = 68}, - [2173] = {.lex_state = 68}, - [2174] = {.lex_state = 68}, - [2175] = {.lex_state = 68}, - [2176] = {.lex_state = 68}, - [2177] = {.lex_state = 68}, - [2178] = {.lex_state = 68}, - [2179] = {.lex_state = 68}, - [2180] = {.lex_state = 68}, - [2181] = {.lex_state = 68}, - [2182] = {.lex_state = 68}, - [2183] = {.lex_state = 68, .external_lex_state = 4}, - [2184] = {.lex_state = 68}, - [2185] = {.lex_state = 68, .external_lex_state = 4}, - [2186] = {.lex_state = 66}, - [2187] = {.lex_state = 66}, - [2188] = {.lex_state = 66}, - [2189] = {.lex_state = 66}, - [2190] = {.lex_state = 66}, - [2191] = {.lex_state = 66}, - [2192] = {.lex_state = 68, .external_lex_state = 4}, + [2122] = {.lex_state = 7, .external_lex_state = 2}, + [2123] = {.lex_state = 67, .external_lex_state = 2}, + [2124] = {.lex_state = 67, .external_lex_state = 2}, + [2125] = {.lex_state = 67, .external_lex_state = 2}, + [2126] = {.lex_state = 67, .external_lex_state = 2}, + [2127] = {.lex_state = 67, .external_lex_state = 2}, + [2128] = {.lex_state = 67, .external_lex_state = 2}, + [2129] = {.lex_state = 67, .external_lex_state = 2}, + [2130] = {.lex_state = 67, .external_lex_state = 2}, + [2131] = {.lex_state = 7, .external_lex_state = 2}, + [2132] = {.lex_state = 67, .external_lex_state = 2}, + [2133] = {.lex_state = 67, .external_lex_state = 6}, + [2134] = {.lex_state = 7, .external_lex_state = 2}, + [2135] = {.lex_state = 68, .external_lex_state = 4}, + [2136] = {.lex_state = 67, .external_lex_state = 3}, + [2137] = {.lex_state = 67, .external_lex_state = 2}, + [2138] = {.lex_state = 67, .external_lex_state = 2}, + [2139] = {.lex_state = 67, .external_lex_state = 2}, + [2140] = {.lex_state = 67, .external_lex_state = 2}, + [2141] = {.lex_state = 67, .external_lex_state = 2}, + [2142] = {.lex_state = 67, .external_lex_state = 2}, + [2143] = {.lex_state = 67, .external_lex_state = 2}, + [2144] = {.lex_state = 68, .external_lex_state = 4}, + [2145] = {.lex_state = 68, .external_lex_state = 4}, + [2146] = {.lex_state = 67, .external_lex_state = 2}, + [2147] = {.lex_state = 67, .external_lex_state = 2}, + [2148] = {.lex_state = 67, .external_lex_state = 2}, + [2149] = {.lex_state = 67, .external_lex_state = 2}, + [2150] = {.lex_state = 67, .external_lex_state = 2}, + [2151] = {.lex_state = 67, .external_lex_state = 2}, + [2152] = {.lex_state = 67, .external_lex_state = 3}, + [2153] = {.lex_state = 7, .external_lex_state = 2}, + [2154] = {.lex_state = 67, .external_lex_state = 2}, + [2155] = {.lex_state = 67, .external_lex_state = 2}, + [2156] = {.lex_state = 67, .external_lex_state = 2}, + [2157] = {.lex_state = 67, .external_lex_state = 2}, + [2158] = {.lex_state = 67, .external_lex_state = 3}, + [2159] = {.lex_state = 68, .external_lex_state = 4}, + [2160] = {.lex_state = 68, .external_lex_state = 4}, + [2161] = {.lex_state = 68, .external_lex_state = 4}, + [2162] = {.lex_state = 67, .external_lex_state = 3}, + [2163] = {.lex_state = 7, .external_lex_state = 2}, + [2164] = {.lex_state = 67, .external_lex_state = 2}, + [2165] = {.lex_state = 67, .external_lex_state = 3}, + [2166] = {.lex_state = 67, .external_lex_state = 2}, + [2167] = {.lex_state = 67, .external_lex_state = 2}, + [2168] = {.lex_state = 67, .external_lex_state = 3}, + [2169] = {.lex_state = 67, .external_lex_state = 3}, + [2170] = {.lex_state = 67, .external_lex_state = 3}, + [2171] = {.lex_state = 67, .external_lex_state = 2}, + [2172] = {.lex_state = 67, .external_lex_state = 3}, + [2173] = {.lex_state = 67, .external_lex_state = 2}, + [2174] = {.lex_state = 67, .external_lex_state = 3}, + [2175] = {.lex_state = 67, .external_lex_state = 3}, + [2176] = {.lex_state = 67, .external_lex_state = 3}, + [2177] = {.lex_state = 67, .external_lex_state = 3}, + [2178] = {.lex_state = 67, .external_lex_state = 3}, + [2179] = {.lex_state = 67, .external_lex_state = 2}, + [2180] = {.lex_state = 68, .external_lex_state = 4}, + [2181] = {.lex_state = 67, .external_lex_state = 3}, + [2182] = {.lex_state = 67, .external_lex_state = 3}, + [2183] = {.lex_state = 67, .external_lex_state = 3}, + [2184] = {.lex_state = 67, .external_lex_state = 3}, + [2185] = {.lex_state = 67, .external_lex_state = 2}, + [2186] = {.lex_state = 67, .external_lex_state = 2}, + [2187] = {.lex_state = 7, .external_lex_state = 2}, + [2188] = {.lex_state = 7, .external_lex_state = 2}, + [2189] = {.lex_state = 67, .external_lex_state = 2}, + [2190] = {.lex_state = 7, .external_lex_state = 2}, + [2191] = {.lex_state = 67, .external_lex_state = 3}, + [2192] = {.lex_state = 67, .external_lex_state = 2}, [2193] = {.lex_state = 68, .external_lex_state = 4}, - [2194] = {.lex_state = 68, .external_lex_state = 4}, - [2195] = {.lex_state = 68, .external_lex_state = 4}, - [2196] = {.lex_state = 68, .external_lex_state = 4}, - [2197] = {.lex_state = 68, .external_lex_state = 4}, - [2198] = {.lex_state = 68, .external_lex_state = 4}, - [2199] = {.lex_state = 68, .external_lex_state = 4}, - [2200] = {.lex_state = 68, .external_lex_state = 4}, - [2201] = {.lex_state = 68, .external_lex_state = 4}, - [2202] = {.lex_state = 68, .external_lex_state = 4}, - [2203] = {.lex_state = 68, .external_lex_state = 4}, - [2204] = {.lex_state = 68, .external_lex_state = 4}, - [2205] = {.lex_state = 68, .external_lex_state = 4}, - [2206] = {.lex_state = 68, .external_lex_state = 4}, - [2207] = {.lex_state = 68}, - [2208] = {.lex_state = 68, .external_lex_state = 4}, + [2194] = {.lex_state = 67, .external_lex_state = 2}, + [2195] = {.lex_state = 7, .external_lex_state = 2}, + [2196] = {.lex_state = 67, .external_lex_state = 2}, + [2197] = {.lex_state = 67, .external_lex_state = 2}, + [2198] = {.lex_state = 7, .external_lex_state = 2}, + [2199] = {.lex_state = 7, .external_lex_state = 2}, + [2200] = {.lex_state = 67, .external_lex_state = 2}, + [2201] = {.lex_state = 67, .external_lex_state = 3}, + [2202] = {.lex_state = 67, .external_lex_state = 2}, + [2203] = {.lex_state = 67, .external_lex_state = 2}, + [2204] = {.lex_state = 67, .external_lex_state = 2}, + [2205] = {.lex_state = 67, .external_lex_state = 3}, + [2206] = {.lex_state = 67, .external_lex_state = 2}, + [2207] = {.lex_state = 67, .external_lex_state = 3}, + [2208] = {.lex_state = 67, .external_lex_state = 3}, [2209] = {.lex_state = 68, .external_lex_state = 4}, - [2210] = {.lex_state = 68, .external_lex_state = 4}, - [2211] = {.lex_state = 68, .external_lex_state = 4}, - [2212] = {.lex_state = 68, .external_lex_state = 4}, - [2213] = {.lex_state = 68, .external_lex_state = 4}, + [2210] = {.lex_state = 67, .external_lex_state = 3}, + [2211] = {.lex_state = 67, .external_lex_state = 2}, + [2212] = {.lex_state = 67, .external_lex_state = 2}, + [2213] = {.lex_state = 67, .external_lex_state = 2}, [2214] = {.lex_state = 68, .external_lex_state = 4}, - [2215] = {.lex_state = 68, .external_lex_state = 4}, - [2216] = {.lex_state = 68, .external_lex_state = 4}, - [2217] = {.lex_state = 68, .external_lex_state = 4}, + [2215] = {.lex_state = 67, .external_lex_state = 2}, + [2216] = {.lex_state = 67, .external_lex_state = 3}, + [2217] = {.lex_state = 67, .external_lex_state = 2}, [2218] = {.lex_state = 68, .external_lex_state = 4}, - [2219] = {.lex_state = 68, .external_lex_state = 4}, - [2220] = {.lex_state = 68, .external_lex_state = 4}, - [2221] = {.lex_state = 68, .external_lex_state = 4}, + [2219] = {.lex_state = 67, .external_lex_state = 2}, + [2220] = {.lex_state = 67, .external_lex_state = 2}, + [2221] = {.lex_state = 67, .external_lex_state = 3}, [2222] = {.lex_state = 68, .external_lex_state = 4}, - [2223] = {.lex_state = 68, .external_lex_state = 6}, + [2223] = {.lex_state = 68, .external_lex_state = 4}, [2224] = {.lex_state = 68, .external_lex_state = 4}, - [2225] = {.lex_state = 68, .external_lex_state = 4}, - [2226] = {.lex_state = 68, .external_lex_state = 4}, - [2227] = {.lex_state = 68}, - [2228] = {.lex_state = 68, .external_lex_state = 4}, - [2229] = {.lex_state = 68}, - [2230] = {.lex_state = 68, .external_lex_state = 4}, - [2231] = {.lex_state = 68, .external_lex_state = 4}, + [2225] = {.lex_state = 7, .external_lex_state = 2}, + [2226] = {.lex_state = 67, .external_lex_state = 2}, + [2227] = {.lex_state = 67, .external_lex_state = 2}, + [2228] = {.lex_state = 67, .external_lex_state = 2}, + [2229] = {.lex_state = 67, .external_lex_state = 2}, + [2230] = {.lex_state = 67, .external_lex_state = 2}, + [2231] = {.lex_state = 67, .external_lex_state = 2}, [2232] = {.lex_state = 68, .external_lex_state = 4}, [2233] = {.lex_state = 68, .external_lex_state = 4}, - [2234] = {.lex_state = 68, .external_lex_state = 4}, - [2235] = {.lex_state = 68, .external_lex_state = 4}, + [2234] = {.lex_state = 7, .external_lex_state = 2}, + [2235] = {.lex_state = 67, .external_lex_state = 2}, [2236] = {.lex_state = 68, .external_lex_state = 4}, - [2237] = {.lex_state = 68}, - [2238] = {.lex_state = 68, .external_lex_state = 4}, - [2239] = {.lex_state = 68, .external_lex_state = 4}, - [2240] = {.lex_state = 68, .external_lex_state = 4}, - [2241] = {.lex_state = 68, .external_lex_state = 4}, + [2237] = {.lex_state = 67, .external_lex_state = 2}, + [2238] = {.lex_state = 67, .external_lex_state = 2}, + [2239] = {.lex_state = 67, .external_lex_state = 2}, + [2240] = {.lex_state = 67, .external_lex_state = 2}, + [2241] = {.lex_state = 67, .external_lex_state = 2}, [2242] = {.lex_state = 68, .external_lex_state = 4}, - [2243] = {.lex_state = 68, .external_lex_state = 6}, - [2244] = {.lex_state = 68, .external_lex_state = 4}, - [2245] = {.lex_state = 68, .external_lex_state = 4}, - [2246] = {.lex_state = 68, .external_lex_state = 4}, - [2247] = {.lex_state = 68, .external_lex_state = 4}, - [2248] = {.lex_state = 68, .external_lex_state = 4}, + [2243] = {.lex_state = 67, .external_lex_state = 2}, + [2244] = {.lex_state = 7, .external_lex_state = 2}, + [2245] = {.lex_state = 67, .external_lex_state = 2}, + [2246] = {.lex_state = 67, .external_lex_state = 2}, + [2247] = {.lex_state = 67, .external_lex_state = 2}, + [2248] = {.lex_state = 67, .external_lex_state = 2}, [2249] = {.lex_state = 68, .external_lex_state = 4}, - [2250] = {.lex_state = 68, .external_lex_state = 4}, - [2251] = {.lex_state = 68, .external_lex_state = 4}, - [2252] = {.lex_state = 68, .external_lex_state = 4}, - [2253] = {.lex_state = 68, .external_lex_state = 4}, - [2254] = {.lex_state = 68, .external_lex_state = 4}, - [2255] = {.lex_state = 68, .external_lex_state = 4}, - [2256] = {.lex_state = 68}, + [2250] = {.lex_state = 67, .external_lex_state = 2}, + [2251] = {.lex_state = 67, .external_lex_state = 2}, + [2252] = {.lex_state = 67, .external_lex_state = 2}, + [2253] = {.lex_state = 67, .external_lex_state = 2}, + [2254] = {.lex_state = 67, .external_lex_state = 2}, + [2255] = {.lex_state = 67, .external_lex_state = 2}, + [2256] = {.lex_state = 67, .external_lex_state = 2}, [2257] = {.lex_state = 68, .external_lex_state = 4}, - [2258] = {.lex_state = 68, .external_lex_state = 4}, + [2258] = {.lex_state = 67, .external_lex_state = 2}, [2259] = {.lex_state = 68, .external_lex_state = 4}, - [2260] = {.lex_state = 68, .external_lex_state = 6}, + [2260] = {.lex_state = 68, .external_lex_state = 4}, [2261] = {.lex_state = 68, .external_lex_state = 4}, [2262] = {.lex_state = 68, .external_lex_state = 4}, - [2263] = {.lex_state = 68}, - [2264] = {.lex_state = 68, .external_lex_state = 4}, - [2265] = {.lex_state = 68, .external_lex_state = 4}, - [2266] = {.lex_state = 68, .external_lex_state = 4}, - [2267] = {.lex_state = 68, .external_lex_state = 4}, - [2268] = {.lex_state = 68, .external_lex_state = 4}, - [2269] = {.lex_state = 68, .external_lex_state = 4}, - [2270] = {.lex_state = 68, .external_lex_state = 4}, - [2271] = {.lex_state = 68, .external_lex_state = 4}, - [2272] = {.lex_state = 68}, - [2273] = {.lex_state = 68, .external_lex_state = 4}, - [2274] = {.lex_state = 68, .external_lex_state = 4}, - [2275] = {.lex_state = 68, .external_lex_state = 4}, - [2276] = {.lex_state = 68, .external_lex_state = 4}, - [2277] = {.lex_state = 68, .external_lex_state = 4}, - [2278] = {.lex_state = 68, .external_lex_state = 4}, - [2279] = {.lex_state = 68}, - [2280] = {.lex_state = 68, .external_lex_state = 4}, - [2281] = {.lex_state = 68}, - [2282] = {.lex_state = 68}, - [2283] = {.lex_state = 68, .external_lex_state = 6}, + [2263] = {.lex_state = 67, .external_lex_state = 2}, + [2264] = {.lex_state = 67, .external_lex_state = 3}, + [2265] = {.lex_state = 67, .external_lex_state = 2}, + [2266] = {.lex_state = 67, .external_lex_state = 2}, + [2267] = {.lex_state = 67, .external_lex_state = 2}, + [2268] = {.lex_state = 67, .external_lex_state = 2}, + [2269] = {.lex_state = 7, .external_lex_state = 2}, + [2270] = {.lex_state = 7, .external_lex_state = 2}, + [2271] = {.lex_state = 7, .external_lex_state = 2}, + [2272] = {.lex_state = 7, .external_lex_state = 2}, + [2273] = {.lex_state = 7, .external_lex_state = 2}, + [2274] = {.lex_state = 7, .external_lex_state = 2}, + [2275] = {.lex_state = 7, .external_lex_state = 2}, + [2276] = {.lex_state = 7, .external_lex_state = 2}, + [2277] = {.lex_state = 7, .external_lex_state = 2}, + [2278] = {.lex_state = 7, .external_lex_state = 2}, + [2279] = {.lex_state = 68, .external_lex_state = 4}, + [2280] = {.lex_state = 67, .external_lex_state = 2}, + [2281] = {.lex_state = 68, .external_lex_state = 4}, + [2282] = {.lex_state = 68, .external_lex_state = 4}, + [2283] = {.lex_state = 68, .external_lex_state = 4}, [2284] = {.lex_state = 68, .external_lex_state = 4}, - [2285] = {.lex_state = 68}, - [2286] = {.lex_state = 68, .external_lex_state = 4}, - [2287] = {.lex_state = 68}, - [2288] = {.lex_state = 68}, - [2289] = {.lex_state = 68, .external_lex_state = 6}, + [2285] = {.lex_state = 68, .external_lex_state = 4}, + [2286] = {.lex_state = 67, .external_lex_state = 2}, + [2287] = {.lex_state = 67, .external_lex_state = 2}, + [2288] = {.lex_state = 67, .external_lex_state = 2}, + [2289] = {.lex_state = 68, .external_lex_state = 4}, [2290] = {.lex_state = 68, .external_lex_state = 4}, - [2291] = {.lex_state = 68, .external_lex_state = 4}, - [2292] = {.lex_state = 68, .external_lex_state = 6}, - [2293] = {.lex_state = 68, .external_lex_state = 4}, + [2291] = {.lex_state = 67, .external_lex_state = 2}, + [2292] = {.lex_state = 68, .external_lex_state = 4}, + [2293] = {.lex_state = 67, .external_lex_state = 2}, [2294] = {.lex_state = 68, .external_lex_state = 4}, [2295] = {.lex_state = 68}, - [2296] = {.lex_state = 68}, - [2297] = {.lex_state = 68, .external_lex_state = 6}, - [2298] = {.lex_state = 68}, - [2299] = {.lex_state = 68}, + [2296] = {.lex_state = 67, .external_lex_state = 2}, + [2297] = {.lex_state = 67, .external_lex_state = 2}, + [2298] = {.lex_state = 67, .external_lex_state = 2}, + [2299] = {.lex_state = 67, .external_lex_state = 2}, [2300] = {.lex_state = 68}, - [2301] = {.lex_state = 68}, + [2301] = {.lex_state = 67, .external_lex_state = 2}, [2302] = {.lex_state = 68}, - [2303] = {.lex_state = 68}, - [2304] = {.lex_state = 68}, - [2305] = {.lex_state = 68, .external_lex_state = 6}, + [2303] = {.lex_state = 68, .external_lex_state = 4}, + [2304] = {.lex_state = 67, .external_lex_state = 2}, + [2305] = {.lex_state = 68}, [2306] = {.lex_state = 68, .external_lex_state = 4}, - [2307] = {.lex_state = 68, .external_lex_state = 4}, + [2307] = {.lex_state = 68}, [2308] = {.lex_state = 68}, - [2309] = {.lex_state = 68, .external_lex_state = 4}, + [2309] = {.lex_state = 68}, [2310] = {.lex_state = 68}, [2311] = {.lex_state = 68}, - [2312] = {.lex_state = 68}, - [2313] = {.lex_state = 68}, - [2314] = {.lex_state = 68}, - [2315] = {.lex_state = 68}, + [2312] = {.lex_state = 67, .external_lex_state = 2}, + [2313] = {.lex_state = 67, .external_lex_state = 2}, + [2314] = {.lex_state = 67, .external_lex_state = 2}, + [2315] = {.lex_state = 67, .external_lex_state = 3}, [2316] = {.lex_state = 68}, - [2317] = {.lex_state = 68}, + [2317] = {.lex_state = 67, .external_lex_state = 3}, [2318] = {.lex_state = 68}, - [2319] = {.lex_state = 68, .external_lex_state = 4}, - [2320] = {.lex_state = 68}, + [2319] = {.lex_state = 67, .external_lex_state = 2}, + [2320] = {.lex_state = 67, .external_lex_state = 2}, [2321] = {.lex_state = 68}, - [2322] = {.lex_state = 68}, - [2323] = {.lex_state = 68}, - [2324] = {.lex_state = 68}, - [2325] = {.lex_state = 68, .external_lex_state = 4}, - [2326] = {.lex_state = 68}, + [2322] = {.lex_state = 68, .external_lex_state = 4}, + [2323] = {.lex_state = 68, .external_lex_state = 4}, + [2324] = {.lex_state = 68, .external_lex_state = 4}, + [2325] = {.lex_state = 68}, + [2326] = {.lex_state = 67, .external_lex_state = 2}, [2327] = {.lex_state = 68}, - [2328] = {.lex_state = 68}, + [2328] = {.lex_state = 67, .external_lex_state = 2}, [2329] = {.lex_state = 68}, - [2330] = {.lex_state = 68}, - [2331] = {.lex_state = 68}, + [2330] = {.lex_state = 67, .external_lex_state = 3}, + [2331] = {.lex_state = 67, .external_lex_state = 2}, [2332] = {.lex_state = 68}, - [2333] = {.lex_state = 68}, - [2334] = {.lex_state = 68, .external_lex_state = 6}, - [2335] = {.lex_state = 68}, - [2336] = {.lex_state = 68}, - [2337] = {.lex_state = 68, .external_lex_state = 6}, - [2338] = {.lex_state = 68, .external_lex_state = 6}, - [2339] = {.lex_state = 68, .external_lex_state = 4}, - [2340] = {.lex_state = 68, .external_lex_state = 6}, + [2333] = {.lex_state = 67, .external_lex_state = 2}, + [2334] = {.lex_state = 68}, + [2335] = {.lex_state = 67, .external_lex_state = 2}, + [2336] = {.lex_state = 67, .external_lex_state = 2}, + [2337] = {.lex_state = 68}, + [2338] = {.lex_state = 67, .external_lex_state = 3}, + [2339] = {.lex_state = 68}, + [2340] = {.lex_state = 68, .external_lex_state = 4}, [2341] = {.lex_state = 68, .external_lex_state = 4}, - [2342] = {.lex_state = 68}, - [2343] = {.lex_state = 68, .external_lex_state = 6}, - [2344] = {.lex_state = 68, .external_lex_state = 6}, - [2345] = {.lex_state = 68, .external_lex_state = 6}, - [2346] = {.lex_state = 68, .external_lex_state = 6}, + [2342] = {.lex_state = 68, .external_lex_state = 4}, + [2343] = {.lex_state = 16}, + [2344] = {.lex_state = 68, .external_lex_state = 4}, + [2345] = {.lex_state = 68}, + [2346] = {.lex_state = 67, .external_lex_state = 2}, [2347] = {.lex_state = 68, .external_lex_state = 4}, - [2348] = {.lex_state = 68, .external_lex_state = 6}, - [2349] = {.lex_state = 68, .external_lex_state = 6}, + [2348] = {.lex_state = 68}, + [2349] = {.lex_state = 67, .external_lex_state = 2}, [2350] = {.lex_state = 68, .external_lex_state = 4}, - [2351] = {.lex_state = 68, .external_lex_state = 6}, - [2352] = {.lex_state = 68}, - [2353] = {.lex_state = 68, .external_lex_state = 4}, - [2354] = {.lex_state = 68, .external_lex_state = 6}, - [2355] = {.lex_state = 68, .external_lex_state = 6}, - [2356] = {.lex_state = 68, .external_lex_state = 6}, - [2357] = {.lex_state = 68, .external_lex_state = 6}, - [2358] = {.lex_state = 68, .external_lex_state = 6}, - [2359] = {.lex_state = 68, .external_lex_state = 6}, - [2360] = {.lex_state = 68, .external_lex_state = 6}, - [2361] = {.lex_state = 68, .external_lex_state = 6}, - [2362] = {.lex_state = 68, .external_lex_state = 4}, - [2363] = {.lex_state = 68, .external_lex_state = 6}, - [2364] = {.lex_state = 68, .external_lex_state = 6}, - [2365] = {.lex_state = 68, .external_lex_state = 6}, - [2366] = {.lex_state = 68, .external_lex_state = 6}, - [2367] = {.lex_state = 68, .external_lex_state = 6}, - [2368] = {.lex_state = 68, .external_lex_state = 6}, - [2369] = {.lex_state = 68, .external_lex_state = 6}, - [2370] = {.lex_state = 68, .external_lex_state = 6}, - [2371] = {.lex_state = 68, .external_lex_state = 6}, - [2372] = {.lex_state = 68, .external_lex_state = 6}, - [2373] = {.lex_state = 68, .external_lex_state = 6}, + [2351] = {.lex_state = 68}, + [2352] = {.lex_state = 68, .external_lex_state = 4}, + [2353] = {.lex_state = 68}, + [2354] = {.lex_state = 68}, + [2355] = {.lex_state = 67, .external_lex_state = 2}, + [2356] = {.lex_state = 68}, + [2357] = {.lex_state = 67, .external_lex_state = 2}, + [2358] = {.lex_state = 67, .external_lex_state = 2}, + [2359] = {.lex_state = 68, .external_lex_state = 4}, + [2360] = {.lex_state = 67, .external_lex_state = 2}, + [2361] = {.lex_state = 68}, + [2362] = {.lex_state = 67, .external_lex_state = 2}, + [2363] = {.lex_state = 67, .external_lex_state = 2}, + [2364] = {.lex_state = 68}, + [2365] = {.lex_state = 67, .external_lex_state = 2}, + [2366] = {.lex_state = 68}, + [2367] = {.lex_state = 67, .external_lex_state = 2}, + [2368] = {.lex_state = 68, .external_lex_state = 4}, + [2369] = {.lex_state = 68, .external_lex_state = 4}, + [2370] = {.lex_state = 67, .external_lex_state = 2}, + [2371] = {.lex_state = 67, .external_lex_state = 2}, + [2372] = {.lex_state = 67, .external_lex_state = 2}, + [2373] = {.lex_state = 67, .external_lex_state = 2}, [2374] = {.lex_state = 68}, - [2375] = {.lex_state = 68, .external_lex_state = 6}, - [2376] = {.lex_state = 68, .external_lex_state = 6}, - [2377] = {.lex_state = 68, .external_lex_state = 4}, - [2378] = {.lex_state = 68, .external_lex_state = 6}, - [2379] = {.lex_state = 68, .external_lex_state = 6}, - [2380] = {.lex_state = 68, .external_lex_state = 6}, - [2381] = {.lex_state = 68, .external_lex_state = 6}, - [2382] = {.lex_state = 68, .external_lex_state = 6}, - [2383] = {.lex_state = 68, .external_lex_state = 6}, - [2384] = {.lex_state = 68, .external_lex_state = 6}, - [2385] = {.lex_state = 68}, - [2386] = {.lex_state = 68, .external_lex_state = 6}, - [2387] = {.lex_state = 68, .external_lex_state = 4}, - [2388] = {.lex_state = 68, .external_lex_state = 6}, - [2389] = {.lex_state = 68, .external_lex_state = 6}, - [2390] = {.lex_state = 68}, - [2391] = {.lex_state = 68, .external_lex_state = 4}, + [2375] = {.lex_state = 67, .external_lex_state = 2}, + [2376] = {.lex_state = 67, .external_lex_state = 2}, + [2377] = {.lex_state = 67, .external_lex_state = 2}, + [2378] = {.lex_state = 67, .external_lex_state = 2}, + [2379] = {.lex_state = 68}, + [2380] = {.lex_state = 68}, + [2381] = {.lex_state = 67, .external_lex_state = 2}, + [2382] = {.lex_state = 67, .external_lex_state = 2}, + [2383] = {.lex_state = 68}, + [2384] = {.lex_state = 68}, + [2385] = {.lex_state = 67, .external_lex_state = 2}, + [2386] = {.lex_state = 68}, + [2387] = {.lex_state = 68}, + [2388] = {.lex_state = 68, .external_lex_state = 4}, + [2389] = {.lex_state = 68}, + [2390] = {.lex_state = 67, .external_lex_state = 2}, + [2391] = {.lex_state = 68}, [2392] = {.lex_state = 68}, - [2393] = {.lex_state = 68}, - [2394] = {.lex_state = 68}, - [2395] = {.lex_state = 68}, + [2393] = {.lex_state = 16}, + [2394] = {.lex_state = 67, .external_lex_state = 2}, + [2395] = {.lex_state = 67, .external_lex_state = 2}, [2396] = {.lex_state = 68}, - [2397] = {.lex_state = 68}, + [2397] = {.lex_state = 67, .external_lex_state = 2}, [2398] = {.lex_state = 68}, [2399] = {.lex_state = 68}, - [2400] = {.lex_state = 68}, - [2401] = {.lex_state = 0, .external_lex_state = 4}, - [2402] = {.lex_state = 0, .external_lex_state = 4}, - [2403] = {.lex_state = 0, .external_lex_state = 4}, + [2400] = {.lex_state = 67, .external_lex_state = 2}, + [2401] = {.lex_state = 68}, + [2402] = {.lex_state = 68}, + [2403] = {.lex_state = 68}, [2404] = {.lex_state = 68}, [2405] = {.lex_state = 68}, - [2406] = {.lex_state = 68, .external_lex_state = 4}, - [2407] = {.lex_state = 0, .external_lex_state = 4}, - [2408] = {.lex_state = 68}, - [2409] = {.lex_state = 68}, - [2410] = {.lex_state = 68}, + [2406] = {.lex_state = 68}, + [2407] = {.lex_state = 68}, + [2408] = {.lex_state = 16}, + [2409] = {.lex_state = 16}, + [2410] = {.lex_state = 16}, [2411] = {.lex_state = 68}, [2412] = {.lex_state = 68}, [2413] = {.lex_state = 68}, - [2414] = {.lex_state = 68}, + [2414] = {.lex_state = 16}, [2415] = {.lex_state = 68}, - [2416] = {.lex_state = 68, .external_lex_state = 4}, - [2417] = {.lex_state = 0, .external_lex_state = 4}, - [2418] = {.lex_state = 68, .external_lex_state = 4}, - [2419] = {.lex_state = 68}, - [2420] = {.lex_state = 68}, - [2421] = {.lex_state = 68, .external_lex_state = 4}, - [2422] = {.lex_state = 68}, - [2423] = {.lex_state = 68}, - [2424] = {.lex_state = 0, .external_lex_state = 4}, + [2416] = {.lex_state = 16}, + [2417] = {.lex_state = 68}, + [2418] = {.lex_state = 68}, + [2419] = {.lex_state = 14, .external_lex_state = 4}, + [2420] = {.lex_state = 14, .external_lex_state = 4}, + [2421] = {.lex_state = 14, .external_lex_state = 4}, + [2422] = {.lex_state = 14, .external_lex_state = 4}, + [2423] = {.lex_state = 14, .external_lex_state = 4}, + [2424] = {.lex_state = 14, .external_lex_state = 4}, [2425] = {.lex_state = 68}, - [2426] = {.lex_state = 68, .external_lex_state = 4}, - [2427] = {.lex_state = 68}, - [2428] = {.lex_state = 68, .external_lex_state = 4}, - [2429] = {.lex_state = 68, .external_lex_state = 4}, - [2430] = {.lex_state = 68}, - [2431] = {.lex_state = 68, .external_lex_state = 4}, - [2432] = {.lex_state = 68}, - [2433] = {.lex_state = 68, .external_lex_state = 4}, - [2434] = {.lex_state = 68}, - [2435] = {.lex_state = 68}, - [2436] = {.lex_state = 68}, - [2437] = {.lex_state = 0, .external_lex_state = 4}, - [2438] = {.lex_state = 68, .external_lex_state = 6}, - [2439] = {.lex_state = 68, .external_lex_state = 4}, - [2440] = {.lex_state = 68}, - [2441] = {.lex_state = 68, .external_lex_state = 4}, - [2442] = {.lex_state = 68}, - [2443] = {.lex_state = 68, .external_lex_state = 4}, - [2444] = {.lex_state = 68, .external_lex_state = 4}, - [2445] = {.lex_state = 68, .external_lex_state = 4}, - [2446] = {.lex_state = 68, .external_lex_state = 4}, + [2426] = {.lex_state = 68}, + [2427] = {.lex_state = 14, .external_lex_state = 4}, + [2428] = {.lex_state = 68}, + [2429] = {.lex_state = 68}, + [2430] = {.lex_state = 14, .external_lex_state = 4}, + [2431] = {.lex_state = 68}, + [2432] = {.lex_state = 14, .external_lex_state = 4}, + [2433] = {.lex_state = 68}, + [2434] = {.lex_state = 14, .external_lex_state = 4}, + [2435] = {.lex_state = 14, .external_lex_state = 4}, + [2436] = {.lex_state = 14, .external_lex_state = 4}, + [2437] = {.lex_state = 14, .external_lex_state = 4}, + [2438] = {.lex_state = 14, .external_lex_state = 4}, + [2439] = {.lex_state = 14, .external_lex_state = 4}, + [2440] = {.lex_state = 14, .external_lex_state = 4}, + [2441] = {.lex_state = 68}, + [2442] = {.lex_state = 14, .external_lex_state = 4}, + [2443] = {.lex_state = 68}, + [2444] = {.lex_state = 68}, + [2445] = {.lex_state = 68}, + [2446] = {.lex_state = 68}, [2447] = {.lex_state = 68}, - [2448] = {.lex_state = 68, .external_lex_state = 4}, + [2448] = {.lex_state = 68}, [2449] = {.lex_state = 68}, - [2450] = {.lex_state = 68, .external_lex_state = 4}, + [2450] = {.lex_state = 68}, [2451] = {.lex_state = 68}, [2452] = {.lex_state = 68}, [2453] = {.lex_state = 68}, - [2454] = {.lex_state = 13}, + [2454] = {.lex_state = 68}, [2455] = {.lex_state = 68}, - [2456] = {.lex_state = 0, .external_lex_state = 4}, + [2456] = {.lex_state = 68}, [2457] = {.lex_state = 68}, [2458] = {.lex_state = 68}, [2459] = {.lex_state = 68}, [2460] = {.lex_state = 68}, [2461] = {.lex_state = 68}, [2462] = {.lex_state = 68}, - [2463] = {.lex_state = 68, .external_lex_state = 6}, - [2464] = {.lex_state = 68}, - [2465] = {.lex_state = 68, .external_lex_state = 6}, + [2463] = {.lex_state = 68}, + [2464] = {.lex_state = 14}, + [2465] = {.lex_state = 68}, [2466] = {.lex_state = 68}, [2467] = {.lex_state = 68}, [2468] = {.lex_state = 68}, @@ -8483,480 +8506,480 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2473] = {.lex_state = 68}, [2474] = {.lex_state = 68}, [2475] = {.lex_state = 68}, - [2476] = {.lex_state = 68, .external_lex_state = 4}, - [2477] = {.lex_state = 68, .external_lex_state = 4}, + [2476] = {.lex_state = 68}, + [2477] = {.lex_state = 68}, [2478] = {.lex_state = 68}, - [2479] = {.lex_state = 68, .external_lex_state = 4}, - [2480] = {.lex_state = 13}, - [2481] = {.lex_state = 0, .external_lex_state = 4}, + [2479] = {.lex_state = 68}, + [2480] = {.lex_state = 68}, + [2481] = {.lex_state = 68}, [2482] = {.lex_state = 68}, [2483] = {.lex_state = 68}, [2484] = {.lex_state = 68}, - [2485] = {.lex_state = 18}, + [2485] = {.lex_state = 68}, [2486] = {.lex_state = 68}, [2487] = {.lex_state = 68}, - [2488] = {.lex_state = 18, .external_lex_state = 7}, - [2489] = {.lex_state = 68, .external_lex_state = 4}, + [2488] = {.lex_state = 68}, + [2489] = {.lex_state = 68}, [2490] = {.lex_state = 68}, [2491] = {.lex_state = 68}, [2492] = {.lex_state = 68}, - [2493] = {.lex_state = 68, .external_lex_state = 4}, + [2493] = {.lex_state = 68}, [2494] = {.lex_state = 68}, - [2495] = {.lex_state = 0, .external_lex_state = 4}, + [2495] = {.lex_state = 68}, [2496] = {.lex_state = 68}, [2497] = {.lex_state = 68}, [2498] = {.lex_state = 68}, [2499] = {.lex_state = 68}, [2500] = {.lex_state = 68}, - [2501] = {.lex_state = 18}, + [2501] = {.lex_state = 68}, [2502] = {.lex_state = 68}, - [2503] = {.lex_state = 18, .external_lex_state = 7}, + [2503] = {.lex_state = 68}, [2504] = {.lex_state = 68}, - [2505] = {.lex_state = 0, .external_lex_state = 4}, - [2506] = {.lex_state = 0, .external_lex_state = 4}, + [2505] = {.lex_state = 68}, + [2506] = {.lex_state = 68}, [2507] = {.lex_state = 68}, - [2508] = {.lex_state = 0, .external_lex_state = 4}, + [2508] = {.lex_state = 68}, [2509] = {.lex_state = 68}, - [2510] = {.lex_state = 18, .external_lex_state = 7}, - [2511] = {.lex_state = 68}, - [2512] = {.lex_state = 68}, - [2513] = {.lex_state = 68}, - [2514] = {.lex_state = 0, .external_lex_state = 4}, - [2515] = {.lex_state = 68}, - [2516] = {.lex_state = 18}, - [2517] = {.lex_state = 68}, - [2518] = {.lex_state = 68}, - [2519] = {.lex_state = 68}, - [2520] = {.lex_state = 68}, - [2521] = {.lex_state = 68}, - [2522] = {.lex_state = 68}, - [2523] = {.lex_state = 68}, - [2524] = {.lex_state = 68}, - [2525] = {.lex_state = 68}, - [2526] = {.lex_state = 68}, - [2527] = {.lex_state = 0, .external_lex_state = 4}, - [2528] = {.lex_state = 68}, - [2529] = {.lex_state = 18}, - [2530] = {.lex_state = 18}, - [2531] = {.lex_state = 0, .external_lex_state = 4}, - [2532] = {.lex_state = 0, .external_lex_state = 4}, - [2533] = {.lex_state = 68}, - [2534] = {.lex_state = 68}, - [2535] = {.lex_state = 68}, - [2536] = {.lex_state = 0, .external_lex_state = 4}, - [2537] = {.lex_state = 0, .external_lex_state = 4}, - [2538] = {.lex_state = 68}, - [2539] = {.lex_state = 18}, - [2540] = {.lex_state = 68}, - [2541] = {.lex_state = 68}, - [2542] = {.lex_state = 18}, - [2543] = {.lex_state = 0}, - [2544] = {.lex_state = 18}, - [2545] = {.lex_state = 68}, - [2546] = {.lex_state = 0, .external_lex_state = 4}, - [2547] = {.lex_state = 0, .external_lex_state = 4}, - [2548] = {.lex_state = 0, .external_lex_state = 4}, + [2510] = {.lex_state = 68, .external_lex_state = 4}, + [2511] = {.lex_state = 68, .external_lex_state = 4}, + [2512] = {.lex_state = 66}, + [2513] = {.lex_state = 66}, + [2514] = {.lex_state = 66}, + [2515] = {.lex_state = 66}, + [2516] = {.lex_state = 66}, + [2517] = {.lex_state = 66}, + [2518] = {.lex_state = 66}, + [2519] = {.lex_state = 66}, + [2520] = {.lex_state = 66}, + [2521] = {.lex_state = 66}, + [2522] = {.lex_state = 68, .external_lex_state = 4}, + [2523] = {.lex_state = 68, .external_lex_state = 4}, + [2524] = {.lex_state = 68, .external_lex_state = 4}, + [2525] = {.lex_state = 68, .external_lex_state = 4}, + [2526] = {.lex_state = 68, .external_lex_state = 4}, + [2527] = {.lex_state = 68, .external_lex_state = 7}, + [2528] = {.lex_state = 68, .external_lex_state = 4}, + [2529] = {.lex_state = 68, .external_lex_state = 4}, + [2530] = {.lex_state = 68, .external_lex_state = 4}, + [2531] = {.lex_state = 68, .external_lex_state = 4}, + [2532] = {.lex_state = 68, .external_lex_state = 4}, + [2533] = {.lex_state = 68, .external_lex_state = 4}, + [2534] = {.lex_state = 68, .external_lex_state = 4}, + [2535] = {.lex_state = 68, .external_lex_state = 4}, + [2536] = {.lex_state = 68, .external_lex_state = 4}, + [2537] = {.lex_state = 68}, + [2538] = {.lex_state = 68, .external_lex_state = 4}, + [2539] = {.lex_state = 68, .external_lex_state = 4}, + [2540] = {.lex_state = 68, .external_lex_state = 4}, + [2541] = {.lex_state = 68, .external_lex_state = 4}, + [2542] = {.lex_state = 68, .external_lex_state = 4}, + [2543] = {.lex_state = 68, .external_lex_state = 4}, + [2544] = {.lex_state = 68, .external_lex_state = 4}, + [2545] = {.lex_state = 68, .external_lex_state = 4}, + [2546] = {.lex_state = 68, .external_lex_state = 4}, + [2547] = {.lex_state = 68, .external_lex_state = 4}, + [2548] = {.lex_state = 68, .external_lex_state = 4}, [2549] = {.lex_state = 68}, - [2550] = {.lex_state = 68}, + [2550] = {.lex_state = 68, .external_lex_state = 4}, [2551] = {.lex_state = 68}, - [2552] = {.lex_state = 18, .external_lex_state = 7}, - [2553] = {.lex_state = 68}, - [2554] = {.lex_state = 68}, - [2555] = {.lex_state = 0, .external_lex_state = 4}, - [2556] = {.lex_state = 0, .external_lex_state = 4}, - [2557] = {.lex_state = 68}, - [2558] = {.lex_state = 68}, - [2559] = {.lex_state = 18, .external_lex_state = 7}, - [2560] = {.lex_state = 68}, - [2561] = {.lex_state = 68}, - [2562] = {.lex_state = 68}, - [2563] = {.lex_state = 18, .external_lex_state = 7}, - [2564] = {.lex_state = 18, .external_lex_state = 7}, - [2565] = {.lex_state = 68}, - [2566] = {.lex_state = 68}, - [2567] = {.lex_state = 68}, - [2568] = {.lex_state = 13}, - [2569] = {.lex_state = 0, .external_lex_state = 4}, - [2570] = {.lex_state = 68}, - [2571] = {.lex_state = 68}, - [2572] = {.lex_state = 0, .external_lex_state = 4}, - [2573] = {.lex_state = 68}, + [2552] = {.lex_state = 68, .external_lex_state = 4}, + [2553] = {.lex_state = 68, .external_lex_state = 8}, + [2554] = {.lex_state = 68, .external_lex_state = 4}, + [2555] = {.lex_state = 68, .external_lex_state = 4}, + [2556] = {.lex_state = 68, .external_lex_state = 4}, + [2557] = {.lex_state = 68, .external_lex_state = 4}, + [2558] = {.lex_state = 68, .external_lex_state = 4}, + [2559] = {.lex_state = 68, .external_lex_state = 4}, + [2560] = {.lex_state = 68, .external_lex_state = 4}, + [2561] = {.lex_state = 68, .external_lex_state = 4}, + [2562] = {.lex_state = 68, .external_lex_state = 4}, + [2563] = {.lex_state = 68, .external_lex_state = 4}, + [2564] = {.lex_state = 68, .external_lex_state = 4}, + [2565] = {.lex_state = 68, .external_lex_state = 4}, + [2566] = {.lex_state = 68, .external_lex_state = 4}, + [2567] = {.lex_state = 68, .external_lex_state = 4}, + [2568] = {.lex_state = 68, .external_lex_state = 4}, + [2569] = {.lex_state = 68, .external_lex_state = 4}, + [2570] = {.lex_state = 68, .external_lex_state = 4}, + [2571] = {.lex_state = 68, .external_lex_state = 4}, + [2572] = {.lex_state = 68, .external_lex_state = 4}, + [2573] = {.lex_state = 68, .external_lex_state = 4}, [2574] = {.lex_state = 68, .external_lex_state = 4}, - [2575] = {.lex_state = 68}, - [2576] = {.lex_state = 68}, - [2577] = {.lex_state = 68}, - [2578] = {.lex_state = 68}, - [2579] = {.lex_state = 18, .external_lex_state = 7}, - [2580] = {.lex_state = 68}, - [2581] = {.lex_state = 68}, - [2582] = {.lex_state = 68}, - [2583] = {.lex_state = 68}, - [2584] = {.lex_state = 68}, - [2585] = {.lex_state = 68}, - [2586] = {.lex_state = 68}, - [2587] = {.lex_state = 68}, - [2588] = {.lex_state = 68}, - [2589] = {.lex_state = 0, .external_lex_state = 4}, - [2590] = {.lex_state = 68}, - [2591] = {.lex_state = 0, .external_lex_state = 4}, - [2592] = {.lex_state = 68}, - [2593] = {.lex_state = 68}, - [2594] = {.lex_state = 0, .external_lex_state = 4}, - [2595] = {.lex_state = 68}, - [2596] = {.lex_state = 68}, - [2597] = {.lex_state = 68}, - [2598] = {.lex_state = 0, .external_lex_state = 4}, - [2599] = {.lex_state = 18, .external_lex_state = 7}, - [2600] = {.lex_state = 68}, - [2601] = {.lex_state = 68}, - [2602] = {.lex_state = 68}, - [2603] = {.lex_state = 68}, - [2604] = {.lex_state = 68}, + [2575] = {.lex_state = 68, .external_lex_state = 4}, + [2576] = {.lex_state = 68, .external_lex_state = 4}, + [2577] = {.lex_state = 68, .external_lex_state = 4}, + [2578] = {.lex_state = 68, .external_lex_state = 4}, + [2579] = {.lex_state = 68, .external_lex_state = 4}, + [2580] = {.lex_state = 68, .external_lex_state = 4}, + [2581] = {.lex_state = 68, .external_lex_state = 4}, + [2582] = {.lex_state = 68, .external_lex_state = 4}, + [2583] = {.lex_state = 68, .external_lex_state = 4}, + [2584] = {.lex_state = 68, .external_lex_state = 4}, + [2585] = {.lex_state = 68, .external_lex_state = 4}, + [2586] = {.lex_state = 68, .external_lex_state = 4}, + [2587] = {.lex_state = 68, .external_lex_state = 8}, + [2588] = {.lex_state = 68, .external_lex_state = 4}, + [2589] = {.lex_state = 68, .external_lex_state = 4}, + [2590] = {.lex_state = 68, .external_lex_state = 4}, + [2591] = {.lex_state = 68, .external_lex_state = 4}, + [2592] = {.lex_state = 68, .external_lex_state = 4}, + [2593] = {.lex_state = 68, .external_lex_state = 4}, + [2594] = {.lex_state = 68, .external_lex_state = 4}, + [2595] = {.lex_state = 68, .external_lex_state = 4}, + [2596] = {.lex_state = 68, .external_lex_state = 4}, + [2597] = {.lex_state = 68, .external_lex_state = 4}, + [2598] = {.lex_state = 68}, + [2599] = {.lex_state = 68, .external_lex_state = 4}, + [2600] = {.lex_state = 68, .external_lex_state = 4}, + [2601] = {.lex_state = 68, .external_lex_state = 4}, + [2602] = {.lex_state = 68, .external_lex_state = 4}, + [2603] = {.lex_state = 68, .external_lex_state = 8}, + [2604] = {.lex_state = 68, .external_lex_state = 4}, [2605] = {.lex_state = 68}, [2606] = {.lex_state = 68}, - [2607] = {.lex_state = 68}, - [2608] = {.lex_state = 68}, - [2609] = {.lex_state = 68}, - [2610] = {.lex_state = 18, .external_lex_state = 7}, - [2611] = {.lex_state = 68}, - [2612] = {.lex_state = 68}, - [2613] = {.lex_state = 0, .external_lex_state = 4}, + [2607] = {.lex_state = 68, .external_lex_state = 4}, + [2608] = {.lex_state = 68, .external_lex_state = 8}, + [2609] = {.lex_state = 68, .external_lex_state = 4}, + [2610] = {.lex_state = 68}, + [2611] = {.lex_state = 68, .external_lex_state = 4}, + [2612] = {.lex_state = 68, .external_lex_state = 4}, + [2613] = {.lex_state = 68, .external_lex_state = 7}, [2614] = {.lex_state = 68}, - [2615] = {.lex_state = 18, .external_lex_state = 7}, - [2616] = {.lex_state = 0, .external_lex_state = 4}, - [2617] = {.lex_state = 18}, + [2615] = {.lex_state = 68}, + [2616] = {.lex_state = 68, .external_lex_state = 8}, + [2617] = {.lex_state = 68}, [2618] = {.lex_state = 68}, - [2619] = {.lex_state = 0, .external_lex_state = 4}, - [2620] = {.lex_state = 68}, - [2621] = {.lex_state = 68}, - [2622] = {.lex_state = 68}, - [2623] = {.lex_state = 68}, - [2624] = {.lex_state = 68}, - [2625] = {.lex_state = 68, .external_lex_state = 6}, - [2626] = {.lex_state = 0}, - [2627] = {.lex_state = 0, .external_lex_state = 4}, - [2628] = {.lex_state = 0}, + [2619] = {.lex_state = 68, .external_lex_state = 8}, + [2620] = {.lex_state = 68, .external_lex_state = 4}, + [2621] = {.lex_state = 68, .external_lex_state = 7}, + [2622] = {.lex_state = 68, .external_lex_state = 4}, + [2623] = {.lex_state = 68, .external_lex_state = 8}, + [2624] = {.lex_state = 68, .external_lex_state = 4}, + [2625] = {.lex_state = 68}, + [2626] = {.lex_state = 68}, + [2627] = {.lex_state = 68}, + [2628] = {.lex_state = 68}, [2629] = {.lex_state = 68}, [2630] = {.lex_state = 68}, - [2631] = {.lex_state = 0}, - [2632] = {.lex_state = 0}, - [2633] = {.lex_state = 68}, + [2631] = {.lex_state = 68}, + [2632] = {.lex_state = 68}, + [2633] = {.lex_state = 68, .external_lex_state = 4}, [2634] = {.lex_state = 68}, [2635] = {.lex_state = 68}, [2636] = {.lex_state = 68}, [2637] = {.lex_state = 68}, - [2638] = {.lex_state = 68, .external_lex_state = 6}, - [2639] = {.lex_state = 68, .external_lex_state = 6}, - [2640] = {.lex_state = 0, .external_lex_state = 4}, + [2638] = {.lex_state = 68}, + [2639] = {.lex_state = 68, .external_lex_state = 8}, + [2640] = {.lex_state = 68, .external_lex_state = 7}, [2641] = {.lex_state = 68}, - [2642] = {.lex_state = 68}, - [2643] = {.lex_state = 68, .external_lex_state = 4}, + [2642] = {.lex_state = 68, .external_lex_state = 8}, + [2643] = {.lex_state = 68, .external_lex_state = 7}, [2644] = {.lex_state = 68}, - [2645] = {.lex_state = 68}, + [2645] = {.lex_state = 68, .external_lex_state = 7}, [2646] = {.lex_state = 68}, - [2647] = {.lex_state = 68, .external_lex_state = 6}, - [2648] = {.lex_state = 68}, + [2647] = {.lex_state = 68}, + [2648] = {.lex_state = 68, .external_lex_state = 7}, [2649] = {.lex_state = 68}, [2650] = {.lex_state = 68}, - [2651] = {.lex_state = 0, .external_lex_state = 4}, + [2651] = {.lex_state = 68}, [2652] = {.lex_state = 68}, - [2653] = {.lex_state = 0, .external_lex_state = 4}, + [2653] = {.lex_state = 68}, [2654] = {.lex_state = 68}, [2655] = {.lex_state = 68}, - [2656] = {.lex_state = 68, .external_lex_state = 6}, - [2657] = {.lex_state = 0, .external_lex_state = 4}, - [2658] = {.lex_state = 0, .external_lex_state = 4}, - [2659] = {.lex_state = 0, .external_lex_state = 4}, - [2660] = {.lex_state = 0, .external_lex_state = 4}, - [2661] = {.lex_state = 0}, + [2656] = {.lex_state = 68, .external_lex_state = 4}, + [2657] = {.lex_state = 68}, + [2658] = {.lex_state = 68}, + [2659] = {.lex_state = 68}, + [2660] = {.lex_state = 68}, + [2661] = {.lex_state = 68}, [2662] = {.lex_state = 68}, [2663] = {.lex_state = 68}, - [2664] = {.lex_state = 0, .external_lex_state = 4}, + [2664] = {.lex_state = 68}, [2665] = {.lex_state = 68}, - [2666] = {.lex_state = 0, .external_lex_state = 4}, - [2667] = {.lex_state = 0, .external_lex_state = 4}, - [2668] = {.lex_state = 68}, - [2669] = {.lex_state = 68}, - [2670] = {.lex_state = 0, .external_lex_state = 4}, - [2671] = {.lex_state = 68, .external_lex_state = 4}, + [2666] = {.lex_state = 68}, + [2667] = {.lex_state = 68}, + [2668] = {.lex_state = 68, .external_lex_state = 4}, + [2669] = {.lex_state = 68, .external_lex_state = 4}, + [2670] = {.lex_state = 68, .external_lex_state = 4}, + [2671] = {.lex_state = 68}, [2672] = {.lex_state = 68}, - [2673] = {.lex_state = 68}, - [2674] = {.lex_state = 68}, - [2675] = {.lex_state = 68, .external_lex_state = 6}, - [2676] = {.lex_state = 68}, - [2677] = {.lex_state = 68}, - [2678] = {.lex_state = 0, .external_lex_state = 4}, + [2673] = {.lex_state = 68, .external_lex_state = 8}, + [2674] = {.lex_state = 68, .external_lex_state = 8}, + [2675] = {.lex_state = 68, .external_lex_state = 8}, + [2676] = {.lex_state = 68, .external_lex_state = 8}, + [2677] = {.lex_state = 68, .external_lex_state = 8}, + [2678] = {.lex_state = 68, .external_lex_state = 8}, [2679] = {.lex_state = 68}, - [2680] = {.lex_state = 68, .external_lex_state = 6}, - [2681] = {.lex_state = 68}, + [2680] = {.lex_state = 68}, + [2681] = {.lex_state = 68, .external_lex_state = 4}, [2682] = {.lex_state = 68}, - [2683] = {.lex_state = 0, .external_lex_state = 4}, - [2684] = {.lex_state = 68, .external_lex_state = 4}, - [2685] = {.lex_state = 0}, - [2686] = {.lex_state = 0, .external_lex_state = 4}, - [2687] = {.lex_state = 68}, - [2688] = {.lex_state = 68}, - [2689] = {.lex_state = 0, .external_lex_state = 4}, - [2690] = {.lex_state = 13}, - [2691] = {.lex_state = 68, .external_lex_state = 4}, + [2683] = {.lex_state = 68}, + [2684] = {.lex_state = 68}, + [2685] = {.lex_state = 68, .external_lex_state = 8}, + [2686] = {.lex_state = 68, .external_lex_state = 8}, + [2687] = {.lex_state = 68, .external_lex_state = 8}, + [2688] = {.lex_state = 68, .external_lex_state = 8}, + [2689] = {.lex_state = 68}, + [2690] = {.lex_state = 68}, + [2691] = {.lex_state = 68}, [2692] = {.lex_state = 68}, - [2693] = {.lex_state = 0, .external_lex_state = 4}, - [2694] = {.lex_state = 0, .external_lex_state = 4}, - [2695] = {.lex_state = 68, .external_lex_state = 6}, - [2696] = {.lex_state = 0, .external_lex_state = 4}, - [2697] = {.lex_state = 0}, - [2698] = {.lex_state = 0, .external_lex_state = 4}, + [2693] = {.lex_state = 68, .external_lex_state = 8}, + [2694] = {.lex_state = 68, .external_lex_state = 8}, + [2695] = {.lex_state = 68, .external_lex_state = 8}, + [2696] = {.lex_state = 68, .external_lex_state = 8}, + [2697] = {.lex_state = 68, .external_lex_state = 4}, + [2698] = {.lex_state = 68, .external_lex_state = 7}, [2699] = {.lex_state = 68}, - [2700] = {.lex_state = 68, .external_lex_state = 4}, + [2700] = {.lex_state = 68}, [2701] = {.lex_state = 68}, - [2702] = {.lex_state = 68, .external_lex_state = 6}, - [2703] = {.lex_state = 0, .external_lex_state = 4}, - [2704] = {.lex_state = 0, .external_lex_state = 4}, - [2705] = {.lex_state = 0, .external_lex_state = 4}, - [2706] = {.lex_state = 0, .external_lex_state = 4}, + [2702] = {.lex_state = 68, .external_lex_state = 8}, + [2703] = {.lex_state = 68, .external_lex_state = 8}, + [2704] = {.lex_state = 68, .external_lex_state = 8}, + [2705] = {.lex_state = 68, .external_lex_state = 8}, + [2706] = {.lex_state = 68, .external_lex_state = 8}, [2707] = {.lex_state = 68}, - [2708] = {.lex_state = 0, .external_lex_state = 4}, - [2709] = {.lex_state = 0, .external_lex_state = 4}, - [2710] = {.lex_state = 68, .external_lex_state = 4}, - [2711] = {.lex_state = 68}, + [2708] = {.lex_state = 68, .external_lex_state = 8}, + [2709] = {.lex_state = 68, .external_lex_state = 8}, + [2710] = {.lex_state = 68, .external_lex_state = 8}, + [2711] = {.lex_state = 68, .external_lex_state = 8}, [2712] = {.lex_state = 68}, - [2713] = {.lex_state = 0, .external_lex_state = 4}, - [2714] = {.lex_state = 68, .external_lex_state = 6}, - [2715] = {.lex_state = 68}, - [2716] = {.lex_state = 0, .external_lex_state = 4}, - [2717] = {.lex_state = 68}, - [2718] = {.lex_state = 68}, - [2719] = {.lex_state = 0, .external_lex_state = 4}, + [2713] = {.lex_state = 68, .external_lex_state = 8}, + [2714] = {.lex_state = 68}, + [2715] = {.lex_state = 68, .external_lex_state = 8}, + [2716] = {.lex_state = 68, .external_lex_state = 8}, + [2717] = {.lex_state = 68, .external_lex_state = 8}, + [2718] = {.lex_state = 68, .external_lex_state = 8}, + [2719] = {.lex_state = 68, .external_lex_state = 4}, [2720] = {.lex_state = 68}, [2721] = {.lex_state = 68}, - [2722] = {.lex_state = 68}, - [2723] = {.lex_state = 0, .external_lex_state = 4}, - [2724] = {.lex_state = 0, .external_lex_state = 4}, - [2725] = {.lex_state = 0, .external_lex_state = 4}, - [2726] = {.lex_state = 0, .external_lex_state = 4}, - [2727] = {.lex_state = 68}, - [2728] = {.lex_state = 68}, - [2729] = {.lex_state = 0, .external_lex_state = 4}, - [2730] = {.lex_state = 0, .external_lex_state = 4}, - [2731] = {.lex_state = 0, .external_lex_state = 4}, - [2732] = {.lex_state = 0, .external_lex_state = 4}, - [2733] = {.lex_state = 68, .external_lex_state = 6}, - [2734] = {.lex_state = 0, .external_lex_state = 4}, - [2735] = {.lex_state = 0, .external_lex_state = 4}, - [2736] = {.lex_state = 0, .external_lex_state = 4}, - [2737] = {.lex_state = 68}, - [2738] = {.lex_state = 0, .external_lex_state = 4}, - [2739] = {.lex_state = 68}, - [2740] = {.lex_state = 0, .external_lex_state = 4}, - [2741] = {.lex_state = 0, .external_lex_state = 4}, - [2742] = {.lex_state = 0, .external_lex_state = 4}, + [2722] = {.lex_state = 68, .external_lex_state = 8}, + [2723] = {.lex_state = 68, .external_lex_state = 8}, + [2724] = {.lex_state = 68}, + [2725] = {.lex_state = 68, .external_lex_state = 4}, + [2726] = {.lex_state = 68}, + [2727] = {.lex_state = 68, .external_lex_state = 8}, + [2728] = {.lex_state = 68, .external_lex_state = 8}, + [2729] = {.lex_state = 68}, + [2730] = {.lex_state = 68}, + [2731] = {.lex_state = 68, .external_lex_state = 8}, + [2732] = {.lex_state = 68}, + [2733] = {.lex_state = 68}, + [2734] = {.lex_state = 68}, + [2735] = {.lex_state = 68, .external_lex_state = 8}, + [2736] = {.lex_state = 68, .external_lex_state = 8}, + [2737] = {.lex_state = 68, .external_lex_state = 8}, + [2738] = {.lex_state = 68, .external_lex_state = 8}, + [2739] = {.lex_state = 68, .external_lex_state = 8}, + [2740] = {.lex_state = 68, .external_lex_state = 8}, + [2741] = {.lex_state = 68, .external_lex_state = 4}, + [2742] = {.lex_state = 68}, [2743] = {.lex_state = 68}, [2744] = {.lex_state = 68}, - [2745] = {.lex_state = 0}, - [2746] = {.lex_state = 0, .external_lex_state = 4}, - [2747] = {.lex_state = 0, .external_lex_state = 4}, - [2748] = {.lex_state = 68, .external_lex_state = 4}, - [2749] = {.lex_state = 0, .external_lex_state = 4}, + [2745] = {.lex_state = 68, .external_lex_state = 4}, + [2746] = {.lex_state = 68, .external_lex_state = 8}, + [2747] = {.lex_state = 68}, + [2748] = {.lex_state = 68, .external_lex_state = 8}, + [2749] = {.lex_state = 68}, [2750] = {.lex_state = 68}, - [2751] = {.lex_state = 0, .external_lex_state = 4}, + [2751] = {.lex_state = 68, .external_lex_state = 4}, [2752] = {.lex_state = 68, .external_lex_state = 4}, - [2753] = {.lex_state = 68, .external_lex_state = 4}, - [2754] = {.lex_state = 0, .external_lex_state = 4}, - [2755] = {.lex_state = 68, .external_lex_state = 6}, - [2756] = {.lex_state = 0, .external_lex_state = 4}, - [2757] = {.lex_state = 13}, - [2758] = {.lex_state = 0, .external_lex_state = 4}, - [2759] = {.lex_state = 68, .external_lex_state = 4}, - [2760] = {.lex_state = 0, .external_lex_state = 4}, - [2761] = {.lex_state = 0, .external_lex_state = 4}, - [2762] = {.lex_state = 68}, + [2753] = {.lex_state = 68}, + [2754] = {.lex_state = 68, .external_lex_state = 4}, + [2755] = {.lex_state = 68}, + [2756] = {.lex_state = 68}, + [2757] = {.lex_state = 68, .external_lex_state = 7}, + [2758] = {.lex_state = 68, .external_lex_state = 4}, + [2759] = {.lex_state = 0, .external_lex_state = 4}, + [2760] = {.lex_state = 68}, + [2761] = {.lex_state = 68}, + [2762] = {.lex_state = 68, .external_lex_state = 7}, [2763] = {.lex_state = 0, .external_lex_state = 4}, - [2764] = {.lex_state = 0, .external_lex_state = 4}, - [2765] = {.lex_state = 0}, - [2766] = {.lex_state = 0, .external_lex_state = 4}, - [2767] = {.lex_state = 68, .external_lex_state = 6}, + [2764] = {.lex_state = 68}, + [2765] = {.lex_state = 68}, + [2766] = {.lex_state = 68, .external_lex_state = 7}, + [2767] = {.lex_state = 13}, [2768] = {.lex_state = 68}, - [2769] = {.lex_state = 0, .external_lex_state = 4}, + [2769] = {.lex_state = 68}, [2770] = {.lex_state = 68}, - [2771] = {.lex_state = 0, .external_lex_state = 4}, - [2772] = {.lex_state = 68}, - [2773] = {.lex_state = 0, .external_lex_state = 4}, - [2774] = {.lex_state = 68}, - [2775] = {.lex_state = 0, .external_lex_state = 4}, + [2771] = {.lex_state = 68, .external_lex_state = 7}, + [2772] = {.lex_state = 68, .external_lex_state = 4}, + [2773] = {.lex_state = 68}, + [2774] = {.lex_state = 0, .external_lex_state = 4}, + [2775] = {.lex_state = 68, .external_lex_state = 8}, [2776] = {.lex_state = 68}, - [2777] = {.lex_state = 68}, + [2777] = {.lex_state = 68, .external_lex_state = 7}, [2778] = {.lex_state = 68}, - [2779] = {.lex_state = 0, .external_lex_state = 4}, + [2779] = {.lex_state = 68, .external_lex_state = 4}, [2780] = {.lex_state = 68}, - [2781] = {.lex_state = 0, .external_lex_state = 4}, - [2782] = {.lex_state = 0}, - [2783] = {.lex_state = 0, .external_lex_state = 4}, - [2784] = {.lex_state = 68, .external_lex_state = 6}, - [2785] = {.lex_state = 0, .external_lex_state = 4}, - [2786] = {.lex_state = 0, .external_lex_state = 4}, - [2787] = {.lex_state = 68}, - [2788] = {.lex_state = 68}, - [2789] = {.lex_state = 0, .external_lex_state = 4}, + [2781] = {.lex_state = 68}, + [2782] = {.lex_state = 68, .external_lex_state = 8}, + [2783] = {.lex_state = 68, .external_lex_state = 7}, + [2784] = {.lex_state = 68, .external_lex_state = 7}, + [2785] = {.lex_state = 68, .external_lex_state = 7}, + [2786] = {.lex_state = 68, .external_lex_state = 7}, + [2787] = {.lex_state = 68, .external_lex_state = 7}, + [2788] = {.lex_state = 68, .external_lex_state = 7}, + [2789] = {.lex_state = 68}, [2790] = {.lex_state = 68}, - [2791] = {.lex_state = 0, .external_lex_state = 4}, - [2792] = {.lex_state = 0, .external_lex_state = 4}, - [2793] = {.lex_state = 0, .external_lex_state = 4}, - [2794] = {.lex_state = 68, .external_lex_state = 4}, - [2795] = {.lex_state = 0, .external_lex_state = 4}, - [2796] = {.lex_state = 0, .external_lex_state = 4}, - [2797] = {.lex_state = 68}, - [2798] = {.lex_state = 68}, - [2799] = {.lex_state = 0, .external_lex_state = 4}, - [2800] = {.lex_state = 0, .external_lex_state = 4}, - [2801] = {.lex_state = 68, .external_lex_state = 4}, - [2802] = {.lex_state = 68}, + [2791] = {.lex_state = 68, .external_lex_state = 7}, + [2792] = {.lex_state = 68}, + [2793] = {.lex_state = 68, .external_lex_state = 8}, + [2794] = {.lex_state = 68}, + [2795] = {.lex_state = 68}, + [2796] = {.lex_state = 68, .external_lex_state = 7}, + [2797] = {.lex_state = 68, .external_lex_state = 7}, + [2798] = {.lex_state = 68, .external_lex_state = 7}, + [2799] = {.lex_state = 68}, + [2800] = {.lex_state = 68}, + [2801] = {.lex_state = 68, .external_lex_state = 7}, + [2802] = {.lex_state = 68, .external_lex_state = 7}, [2803] = {.lex_state = 68}, [2804] = {.lex_state = 68}, - [2805] = {.lex_state = 68}, - [2806] = {.lex_state = 0, .external_lex_state = 4}, - [2807] = {.lex_state = 13}, + [2805] = {.lex_state = 68, .external_lex_state = 7}, + [2806] = {.lex_state = 68}, + [2807] = {.lex_state = 68, .external_lex_state = 7}, [2808] = {.lex_state = 68}, - [2809] = {.lex_state = 13}, - [2810] = {.lex_state = 68, .external_lex_state = 4}, + [2809] = {.lex_state = 68}, + [2810] = {.lex_state = 0, .external_lex_state = 4}, [2811] = {.lex_state = 68}, [2812] = {.lex_state = 68}, - [2813] = {.lex_state = 0, .external_lex_state = 4}, - [2814] = {.lex_state = 0}, - [2815] = {.lex_state = 0, .external_lex_state = 4}, - [2816] = {.lex_state = 68, .external_lex_state = 6}, - [2817] = {.lex_state = 0, .external_lex_state = 4}, - [2818] = {.lex_state = 0, .external_lex_state = 4}, - [2819] = {.lex_state = 0}, - [2820] = {.lex_state = 0, .external_lex_state = 4}, + [2813] = {.lex_state = 68}, + [2814] = {.lex_state = 0, .external_lex_state = 4}, + [2815] = {.lex_state = 68}, + [2816] = {.lex_state = 68, .external_lex_state = 7}, + [2817] = {.lex_state = 68}, + [2818] = {.lex_state = 68}, + [2819] = {.lex_state = 68}, + [2820] = {.lex_state = 68}, [2821] = {.lex_state = 68}, - [2822] = {.lex_state = 68}, - [2823] = {.lex_state = 0, .external_lex_state = 4}, + [2822] = {.lex_state = 68, .external_lex_state = 4}, + [2823] = {.lex_state = 68, .external_lex_state = 7}, [2824] = {.lex_state = 68}, - [2825] = {.lex_state = 0, .external_lex_state = 4}, - [2826] = {.lex_state = 0, .external_lex_state = 4}, - [2827] = {.lex_state = 0, .external_lex_state = 4}, - [2828] = {.lex_state = 68}, - [2829] = {.lex_state = 0, .external_lex_state = 4}, - [2830] = {.lex_state = 0, .external_lex_state = 4}, - [2831] = {.lex_state = 0}, - [2832] = {.lex_state = 0, .external_lex_state = 4}, - [2833] = {.lex_state = 0, .external_lex_state = 4}, - [2834] = {.lex_state = 0, .external_lex_state = 4}, - [2835] = {.lex_state = 0}, + [2825] = {.lex_state = 68}, + [2826] = {.lex_state = 68, .external_lex_state = 7}, + [2827] = {.lex_state = 68}, + [2828] = {.lex_state = 0, .external_lex_state = 4}, + [2829] = {.lex_state = 68}, + [2830] = {.lex_state = 68}, + [2831] = {.lex_state = 68, .external_lex_state = 7}, + [2832] = {.lex_state = 68}, + [2833] = {.lex_state = 68}, + [2834] = {.lex_state = 68, .external_lex_state = 4}, + [2835] = {.lex_state = 68, .external_lex_state = 7}, [2836] = {.lex_state = 68}, - [2837] = {.lex_state = 68}, - [2838] = {.lex_state = 0, .external_lex_state = 4}, - [2839] = {.lex_state = 68}, - [2840] = {.lex_state = 68}, - [2841] = {.lex_state = 68}, - [2842] = {.lex_state = 68}, - [2843] = {.lex_state = 68}, - [2844] = {.lex_state = 0, .external_lex_state = 4}, - [2845] = {.lex_state = 0, .external_lex_state = 4}, - [2846] = {.lex_state = 68}, - [2847] = {.lex_state = 0, .external_lex_state = 4}, - [2848] = {.lex_state = 0, .external_lex_state = 4}, - [2849] = {.lex_state = 68}, + [2837] = {.lex_state = 68, .external_lex_state = 7}, + [2838] = {.lex_state = 68, .external_lex_state = 7}, + [2839] = {.lex_state = 68, .external_lex_state = 7}, + [2840] = {.lex_state = 68, .external_lex_state = 7}, + [2841] = {.lex_state = 68, .external_lex_state = 4}, + [2842] = {.lex_state = 68, .external_lex_state = 4}, + [2843] = {.lex_state = 68, .external_lex_state = 7}, + [2844] = {.lex_state = 68, .external_lex_state = 4}, + [2845] = {.lex_state = 68, .external_lex_state = 7}, + [2846] = {.lex_state = 68, .external_lex_state = 7}, + [2847] = {.lex_state = 68, .external_lex_state = 7}, + [2848] = {.lex_state = 68, .external_lex_state = 7}, + [2849] = {.lex_state = 13}, [2850] = {.lex_state = 68}, - [2851] = {.lex_state = 68, .external_lex_state = 6}, - [2852] = {.lex_state = 68}, - [2853] = {.lex_state = 0, .external_lex_state = 4}, - [2854] = {.lex_state = 0, .external_lex_state = 4}, - [2855] = {.lex_state = 0, .external_lex_state = 4}, + [2851] = {.lex_state = 68, .external_lex_state = 7}, + [2852] = {.lex_state = 68, .external_lex_state = 7}, + [2853] = {.lex_state = 68, .external_lex_state = 7}, + [2854] = {.lex_state = 68, .external_lex_state = 7}, + [2855] = {.lex_state = 68}, [2856] = {.lex_state = 68}, - [2857] = {.lex_state = 0, .external_lex_state = 4}, + [2857] = {.lex_state = 68, .external_lex_state = 7}, [2858] = {.lex_state = 68}, - [2859] = {.lex_state = 0, .external_lex_state = 4}, - [2860] = {.lex_state = 0}, - [2861] = {.lex_state = 0}, - [2862] = {.lex_state = 0, .external_lex_state = 4}, - [2863] = {.lex_state = 0}, - [2864] = {.lex_state = 68}, - [2865] = {.lex_state = 0, .external_lex_state = 4}, - [2866] = {.lex_state = 0, .external_lex_state = 4}, - [2867] = {.lex_state = 0, .external_lex_state = 4}, + [2859] = {.lex_state = 68}, + [2860] = {.lex_state = 68, .external_lex_state = 4}, + [2861] = {.lex_state = 68, .external_lex_state = 4}, + [2862] = {.lex_state = 68, .external_lex_state = 7}, + [2863] = {.lex_state = 68, .external_lex_state = 7}, + [2864] = {.lex_state = 68, .external_lex_state = 7}, + [2865] = {.lex_state = 68, .external_lex_state = 4}, + [2866] = {.lex_state = 68, .external_lex_state = 4}, + [2867] = {.lex_state = 68, .external_lex_state = 4}, [2868] = {.lex_state = 68}, [2869] = {.lex_state = 68, .external_lex_state = 4}, - [2870] = {.lex_state = 68, .external_lex_state = 6}, - [2871] = {.lex_state = 68}, - [2872] = {.lex_state = 0, .external_lex_state = 4}, - [2873] = {.lex_state = 68}, - [2874] = {.lex_state = 68, .external_lex_state = 4}, - [2875] = {.lex_state = 0}, - [2876] = {.lex_state = 0, .external_lex_state = 4}, + [2870] = {.lex_state = 68, .external_lex_state = 4}, + [2871] = {.lex_state = 68, .external_lex_state = 4}, + [2872] = {.lex_state = 68, .external_lex_state = 4}, + [2873] = {.lex_state = 68, .external_lex_state = 4}, + [2874] = {.lex_state = 0, .external_lex_state = 4}, + [2875] = {.lex_state = 0, .external_lex_state = 4}, + [2876] = {.lex_state = 68, .external_lex_state = 7}, [2877] = {.lex_state = 68}, - [2878] = {.lex_state = 0, .external_lex_state = 4}, - [2879] = {.lex_state = 0}, - [2880] = {.lex_state = 0}, - [2881] = {.lex_state = 68}, + [2878] = {.lex_state = 68}, + [2879] = {.lex_state = 68, .external_lex_state = 7}, + [2880] = {.lex_state = 68, .external_lex_state = 7}, + [2881] = {.lex_state = 68, .external_lex_state = 7}, [2882] = {.lex_state = 68, .external_lex_state = 4}, - [2883] = {.lex_state = 0, .external_lex_state = 4}, - [2884] = {.lex_state = 0, .external_lex_state = 4}, - [2885] = {.lex_state = 0, .external_lex_state = 4}, - [2886] = {.lex_state = 0, .external_lex_state = 4}, - [2887] = {.lex_state = 0, .external_lex_state = 4}, - [2888] = {.lex_state = 68, .external_lex_state = 6}, + [2883] = {.lex_state = 68}, + [2884] = {.lex_state = 68, .external_lex_state = 7}, + [2885] = {.lex_state = 68}, + [2886] = {.lex_state = 68}, + [2887] = {.lex_state = 68}, + [2888] = {.lex_state = 68}, [2889] = {.lex_state = 68}, - [2890] = {.lex_state = 68}, - [2891] = {.lex_state = 68}, - [2892] = {.lex_state = 1}, + [2890] = {.lex_state = 68, .external_lex_state = 4}, + [2891] = {.lex_state = 68, .external_lex_state = 7}, + [2892] = {.lex_state = 68, .external_lex_state = 4}, [2893] = {.lex_state = 68}, - [2894] = {.lex_state = 68}, - [2895] = {.lex_state = 68}, + [2894] = {.lex_state = 18}, + [2895] = {.lex_state = 68, .external_lex_state = 4}, [2896] = {.lex_state = 68}, [2897] = {.lex_state = 68}, - [2898] = {.lex_state = 1}, - [2899] = {.lex_state = 68}, + [2898] = {.lex_state = 18, .external_lex_state = 9}, + [2899] = {.lex_state = 18}, [2900] = {.lex_state = 68}, - [2901] = {.lex_state = 0}, - [2902] = {.lex_state = 3}, - [2903] = {.lex_state = 1}, + [2901] = {.lex_state = 68}, + [2902] = {.lex_state = 68}, + [2903] = {.lex_state = 0, .external_lex_state = 4}, [2904] = {.lex_state = 68}, - [2905] = {.lex_state = 3}, + [2905] = {.lex_state = 68}, [2906] = {.lex_state = 68}, [2907] = {.lex_state = 68}, [2908] = {.lex_state = 68}, - [2909] = {.lex_state = 68}, + [2909] = {.lex_state = 18, .external_lex_state = 9}, [2910] = {.lex_state = 68}, - [2911] = {.lex_state = 68}, - [2912] = {.lex_state = 68}, - [2913] = {.lex_state = 68}, - [2914] = {.lex_state = 0}, + [2911] = {.lex_state = 0, .external_lex_state = 4}, + [2912] = {.lex_state = 18, .external_lex_state = 9}, + [2913] = {.lex_state = 0, .external_lex_state = 4}, + [2914] = {.lex_state = 18}, [2915] = {.lex_state = 68}, - [2916] = {.lex_state = 1}, - [2917] = {.lex_state = 3}, + [2916] = {.lex_state = 0, .external_lex_state = 4}, + [2917] = {.lex_state = 0, .external_lex_state = 4}, [2918] = {.lex_state = 68}, - [2919] = {.lex_state = 0}, + [2919] = {.lex_state = 68}, [2920] = {.lex_state = 68}, - [2921] = {.lex_state = 0}, + [2921] = {.lex_state = 0, .external_lex_state = 4}, [2922] = {.lex_state = 68}, - [2923] = {.lex_state = 68}, - [2924] = {.lex_state = 18, .external_lex_state = 7}, - [2925] = {.lex_state = 68, .external_lex_state = 4}, + [2923] = {.lex_state = 0, .external_lex_state = 4}, + [2924] = {.lex_state = 68}, + [2925] = {.lex_state = 68}, [2926] = {.lex_state = 68}, [2927] = {.lex_state = 68}, - [2928] = {.lex_state = 0}, - [2929] = {.lex_state = 68}, - [2930] = {.lex_state = 0, .external_lex_state = 4}, - [2931] = {.lex_state = 0, .external_lex_state = 4}, - [2932] = {.lex_state = 1}, + [2928] = {.lex_state = 18}, + [2929] = {.lex_state = 0, .external_lex_state = 4}, + [2930] = {.lex_state = 13}, + [2931] = {.lex_state = 68}, + [2932] = {.lex_state = 18}, [2933] = {.lex_state = 68}, - [2934] = {.lex_state = 3}, - [2935] = {.lex_state = 68}, - [2936] = {.lex_state = 0, .external_lex_state = 4}, + [2934] = {.lex_state = 68}, + [2935] = {.lex_state = 0, .external_lex_state = 4}, + [2936] = {.lex_state = 68}, [2937] = {.lex_state = 68}, - [2938] = {.lex_state = 68, .external_lex_state = 4}, + [2938] = {.lex_state = 68}, [2939] = {.lex_state = 68}, - [2940] = {.lex_state = 68}, + [2940] = {.lex_state = 0, .external_lex_state = 4}, [2941] = {.lex_state = 0, .external_lex_state = 4}, - [2942] = {.lex_state = 0, .external_lex_state = 4}, - [2943] = {.lex_state = 0}, - [2944] = {.lex_state = 68}, - [2945] = {.lex_state = 68}, + [2942] = {.lex_state = 18, .external_lex_state = 9}, + [2943] = {.lex_state = 68}, + [2944] = {.lex_state = 0, .external_lex_state = 4}, + [2945] = {.lex_state = 0, .external_lex_state = 4}, [2946] = {.lex_state = 68}, [2947] = {.lex_state = 68}, [2948] = {.lex_state = 68}, - [2949] = {.lex_state = 68}, + [2949] = {.lex_state = 18, .external_lex_state = 9}, [2950] = {.lex_state = 68}, [2951] = {.lex_state = 68}, [2952] = {.lex_state = 68}, @@ -8965,618 +8988,618 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2955] = {.lex_state = 68}, [2956] = {.lex_state = 68}, [2957] = {.lex_state = 68}, - [2958] = {.lex_state = 1}, + [2958] = {.lex_state = 68}, [2959] = {.lex_state = 68}, - [2960] = {.lex_state = 3}, - [2961] = {.lex_state = 68}, - [2962] = {.lex_state = 0}, + [2960] = {.lex_state = 68}, + [2961] = {.lex_state = 18, .external_lex_state = 9}, + [2962] = {.lex_state = 68}, [2963] = {.lex_state = 68}, - [2964] = {.lex_state = 68, .external_lex_state = 6}, - [2965] = {.lex_state = 0, .external_lex_state = 4}, + [2964] = {.lex_state = 18, .external_lex_state = 9}, + [2965] = {.lex_state = 68}, [2966] = {.lex_state = 0, .external_lex_state = 4}, - [2967] = {.lex_state = 68}, - [2968] = {.lex_state = 68, .external_lex_state = 6}, - [2969] = {.lex_state = 1}, + [2967] = {.lex_state = 68, .external_lex_state = 7}, + [2968] = {.lex_state = 68}, + [2969] = {.lex_state = 68}, [2970] = {.lex_state = 68}, - [2971] = {.lex_state = 3}, + [2971] = {.lex_state = 68}, [2972] = {.lex_state = 68}, - [2973] = {.lex_state = 68}, - [2974] = {.lex_state = 1}, - [2975] = {.lex_state = 3}, + [2973] = {.lex_state = 18, .external_lex_state = 9}, + [2974] = {.lex_state = 0, .external_lex_state = 4}, + [2975] = {.lex_state = 0, .external_lex_state = 4}, [2976] = {.lex_state = 68}, [2977] = {.lex_state = 68}, - [2978] = {.lex_state = 0}, + [2978] = {.lex_state = 68}, [2979] = {.lex_state = 68}, [2980] = {.lex_state = 68}, [2981] = {.lex_state = 68}, - [2982] = {.lex_state = 68}, - [2983] = {.lex_state = 68}, - [2984] = {.lex_state = 68}, - [2985] = {.lex_state = 68}, - [2986] = {.lex_state = 68, .external_lex_state = 6}, - [2987] = {.lex_state = 68}, - [2988] = {.lex_state = 68}, + [2982] = {.lex_state = 0, .external_lex_state = 4}, + [2983] = {.lex_state = 0}, + [2984] = {.lex_state = 0, .external_lex_state = 4}, + [2985] = {.lex_state = 0, .external_lex_state = 4}, + [2986] = {.lex_state = 18}, + [2987] = {.lex_state = 0, .external_lex_state = 4}, + [2988] = {.lex_state = 18}, [2989] = {.lex_state = 68}, [2990] = {.lex_state = 68}, - [2991] = {.lex_state = 68}, - [2992] = {.lex_state = 0, .external_lex_state = 4}, - [2993] = {.lex_state = 0, .external_lex_state = 4}, + [2991] = {.lex_state = 0, .external_lex_state = 4}, + [2992] = {.lex_state = 18}, + [2993] = {.lex_state = 68}, [2994] = {.lex_state = 68}, [2995] = {.lex_state = 68}, - [2996] = {.lex_state = 68}, - [2997] = {.lex_state = 68}, + [2996] = {.lex_state = 0, .external_lex_state = 4}, + [2997] = {.lex_state = 18, .external_lex_state = 9}, [2998] = {.lex_state = 68}, [2999] = {.lex_state = 68}, - [3000] = {.lex_state = 0}, - [3001] = {.lex_state = 0}, - [3002] = {.lex_state = 1}, - [3003] = {.lex_state = 3}, + [3000] = {.lex_state = 68}, + [3001] = {.lex_state = 0, .external_lex_state = 4}, + [3002] = {.lex_state = 18}, + [3003] = {.lex_state = 68, .external_lex_state = 7}, [3004] = {.lex_state = 68}, - [3005] = {.lex_state = 1}, + [3005] = {.lex_state = 68}, [3006] = {.lex_state = 68}, - [3007] = {.lex_state = 0}, - [3008] = {.lex_state = 3}, + [3007] = {.lex_state = 68}, + [3008] = {.lex_state = 18, .external_lex_state = 9}, [3009] = {.lex_state = 68}, - [3010] = {.lex_state = 0}, - [3011] = {.lex_state = 3}, - [3012] = {.lex_state = 1}, - [3013] = {.lex_state = 3}, + [3010] = {.lex_state = 18, .external_lex_state = 9}, + [3011] = {.lex_state = 68}, + [3012] = {.lex_state = 68}, + [3013] = {.lex_state = 68}, [3014] = {.lex_state = 68}, - [3015] = {.lex_state = 3}, - [3016] = {.lex_state = 1}, + [3015] = {.lex_state = 68}, + [3016] = {.lex_state = 68}, [3017] = {.lex_state = 68}, - [3018] = {.lex_state = 68}, + [3018] = {.lex_state = 0, .external_lex_state = 4}, [3019] = {.lex_state = 68}, - [3020] = {.lex_state = 0}, + [3020] = {.lex_state = 18, .external_lex_state = 9}, [3021] = {.lex_state = 68}, - [3022] = {.lex_state = 68}, - [3023] = {.lex_state = 1}, - [3024] = {.lex_state = 3}, - [3025] = {.lex_state = 0}, + [3022] = {.lex_state = 68, .external_lex_state = 7}, + [3023] = {.lex_state = 68}, + [3024] = {.lex_state = 18, .external_lex_state = 9}, + [3025] = {.lex_state = 68}, [3026] = {.lex_state = 68}, - [3027] = {.lex_state = 3}, - [3028] = {.lex_state = 1}, - [3029] = {.lex_state = 1}, - [3030] = {.lex_state = 3}, - [3031] = {.lex_state = 0}, + [3027] = {.lex_state = 68}, + [3028] = {.lex_state = 68}, + [3029] = {.lex_state = 68}, + [3030] = {.lex_state = 68, .external_lex_state = 4}, + [3031] = {.lex_state = 68, .external_lex_state = 7}, [3032] = {.lex_state = 68}, - [3033] = {.lex_state = 0}, - [3034] = {.lex_state = 68, .external_lex_state = 4}, + [3033] = {.lex_state = 68, .external_lex_state = 7}, + [3034] = {.lex_state = 0, .external_lex_state = 4}, [3035] = {.lex_state = 68}, - [3036] = {.lex_state = 0}, - [3037] = {.lex_state = 68}, + [3036] = {.lex_state = 68}, + [3037] = {.lex_state = 0, .external_lex_state = 4}, [3038] = {.lex_state = 68}, - [3039] = {.lex_state = 0}, - [3040] = {.lex_state = 68}, - [3041] = {.lex_state = 0}, + [3039] = {.lex_state = 0, .external_lex_state = 4}, + [3040] = {.lex_state = 0, .external_lex_state = 4}, + [3041] = {.lex_state = 0, .external_lex_state = 4}, [3042] = {.lex_state = 68}, - [3043] = {.lex_state = 68}, + [3043] = {.lex_state = 0, .external_lex_state = 4}, [3044] = {.lex_state = 68}, - [3045] = {.lex_state = 0}, - [3046] = {.lex_state = 68}, - [3047] = {.lex_state = 0}, - [3048] = {.lex_state = 68}, - [3049] = {.lex_state = 68}, - [3050] = {.lex_state = 68}, - [3051] = {.lex_state = 68}, + [3045] = {.lex_state = 0, .external_lex_state = 4}, + [3046] = {.lex_state = 0, .external_lex_state = 4}, + [3047] = {.lex_state = 0, .external_lex_state = 4}, + [3048] = {.lex_state = 13}, + [3049] = {.lex_state = 0, .external_lex_state = 4}, + [3050] = {.lex_state = 0, .external_lex_state = 4}, + [3051] = {.lex_state = 0}, [3052] = {.lex_state = 68}, - [3053] = {.lex_state = 0}, + [3053] = {.lex_state = 0, .external_lex_state = 4}, [3054] = {.lex_state = 68}, - [3055] = {.lex_state = 0}, - [3056] = {.lex_state = 0, .external_lex_state = 4}, - [3057] = {.lex_state = 68, .external_lex_state = 4}, - [3058] = {.lex_state = 68, .external_lex_state = 4}, - [3059] = {.lex_state = 0}, - [3060] = {.lex_state = 0}, - [3061] = {.lex_state = 0}, - [3062] = {.lex_state = 0}, - [3063] = {.lex_state = 68}, - [3064] = {.lex_state = 0}, - [3065] = {.lex_state = 0}, - [3066] = {.lex_state = 13}, - [3067] = {.lex_state = 0}, + [3055] = {.lex_state = 68}, + [3056] = {.lex_state = 68}, + [3057] = {.lex_state = 0, .external_lex_state = 4}, + [3058] = {.lex_state = 0}, + [3059] = {.lex_state = 68, .external_lex_state = 8}, + [3060] = {.lex_state = 0, .external_lex_state = 4}, + [3061] = {.lex_state = 68, .external_lex_state = 8}, + [3062] = {.lex_state = 0, .external_lex_state = 4}, + [3063] = {.lex_state = 0, .external_lex_state = 4}, + [3064] = {.lex_state = 0, .external_lex_state = 4}, + [3065] = {.lex_state = 68, .external_lex_state = 8}, + [3066] = {.lex_state = 0, .external_lex_state = 4}, + [3067] = {.lex_state = 0, .external_lex_state = 4}, [3068] = {.lex_state = 0, .external_lex_state = 4}, - [3069] = {.lex_state = 0}, + [3069] = {.lex_state = 0, .external_lex_state = 4}, [3070] = {.lex_state = 0, .external_lex_state = 4}, - [3071] = {.lex_state = 0}, - [3072] = {.lex_state = 68}, + [3071] = {.lex_state = 68, .external_lex_state = 4}, + [3072] = {.lex_state = 0, .external_lex_state = 4}, [3073] = {.lex_state = 0, .external_lex_state = 4}, - [3074] = {.lex_state = 0}, - [3075] = {.lex_state = 0}, + [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 = 68}, - [3079] = {.lex_state = 0, .external_lex_state = 4}, - [3080] = {.lex_state = 0, .external_lex_state = 4}, - [3081] = {.lex_state = 13}, + [3078] = {.lex_state = 13}, + [3079] = {.lex_state = 0}, + [3080] = {.lex_state = 68, .external_lex_state = 4}, + [3081] = {.lex_state = 68}, [3082] = {.lex_state = 0, .external_lex_state = 4}, - [3083] = {.lex_state = 0}, - [3084] = {.lex_state = 0}, - [3085] = {.lex_state = 0}, - [3086] = {.lex_state = 0}, - [3087] = {.lex_state = 0}, + [3083] = {.lex_state = 68}, + [3084] = {.lex_state = 68, .external_lex_state = 8}, + [3085] = {.lex_state = 0, .external_lex_state = 4}, + [3086] = {.lex_state = 68}, + [3087] = {.lex_state = 0, .external_lex_state = 4}, [3088] = {.lex_state = 68}, - [3089] = {.lex_state = 0}, - [3090] = {.lex_state = 0}, - [3091] = {.lex_state = 0}, - [3092] = {.lex_state = 0}, - [3093] = {.lex_state = 68}, - [3094] = {.lex_state = 0}, - [3095] = {.lex_state = 0}, - [3096] = {.lex_state = 0}, - [3097] = {.lex_state = 0, .external_lex_state = 4}, - [3098] = {.lex_state = 0}, - [3099] = {.lex_state = 0}, - [3100] = {.lex_state = 0}, - [3101] = {.lex_state = 0}, + [3089] = {.lex_state = 68, .external_lex_state = 4}, + [3090] = {.lex_state = 68}, + [3091] = {.lex_state = 68}, + [3092] = {.lex_state = 0, .external_lex_state = 4}, + [3093] = {.lex_state = 68, .external_lex_state = 8}, + [3094] = {.lex_state = 0, .external_lex_state = 4}, + [3095] = {.lex_state = 68}, + [3096] = {.lex_state = 68}, + [3097] = {.lex_state = 0}, + [3098] = {.lex_state = 0, .external_lex_state = 4}, + [3099] = {.lex_state = 68}, + [3100] = {.lex_state = 0, .external_lex_state = 4}, + [3101] = {.lex_state = 68}, [3102] = {.lex_state = 68}, - [3103] = {.lex_state = 0}, - [3104] = {.lex_state = 0}, - [3105] = {.lex_state = 0}, - [3106] = {.lex_state = 0}, + [3103] = {.lex_state = 68}, + [3104] = {.lex_state = 0, .external_lex_state = 4}, + [3105] = {.lex_state = 0, .external_lex_state = 4}, + [3106] = {.lex_state = 68}, [3107] = {.lex_state = 68}, - [3108] = {.lex_state = 0}, - [3109] = {.lex_state = 0}, - [3110] = {.lex_state = 0}, - [3111] = {.lex_state = 0}, - [3112] = {.lex_state = 0}, - [3113] = {.lex_state = 68}, + [3108] = {.lex_state = 68}, + [3109] = {.lex_state = 68}, + [3110] = {.lex_state = 68}, + [3111] = {.lex_state = 68}, + [3112] = {.lex_state = 68}, + [3113] = {.lex_state = 68, .external_lex_state = 8}, [3114] = {.lex_state = 68}, - [3115] = {.lex_state = 0}, + [3115] = {.lex_state = 13}, [3116] = {.lex_state = 68}, - [3117] = {.lex_state = 0}, + [3117] = {.lex_state = 0, .external_lex_state = 4}, [3118] = {.lex_state = 0, .external_lex_state = 4}, - [3119] = {.lex_state = 0, .external_lex_state = 4}, - [3120] = {.lex_state = 0, .external_lex_state = 4}, - [3121] = {.lex_state = 0, .external_lex_state = 4}, - [3122] = {.lex_state = 0}, + [3119] = {.lex_state = 68}, + [3120] = {.lex_state = 68}, + [3121] = {.lex_state = 68}, + [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 = 0, .external_lex_state = 4}, - [3126] = {.lex_state = 0}, + [3124] = {.lex_state = 68, .external_lex_state = 4}, + [3125] = {.lex_state = 0}, + [3126] = {.lex_state = 68, .external_lex_state = 8}, [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 = 68}, - [3131] = {.lex_state = 0, .external_lex_state = 4}, - [3132] = {.lex_state = 68}, - [3133] = {.lex_state = 0, .external_lex_state = 4}, + [3128] = {.lex_state = 68}, + [3129] = {.lex_state = 68}, + [3130] = {.lex_state = 68, .external_lex_state = 4}, + [3131] = {.lex_state = 68}, + [3132] = {.lex_state = 0, .external_lex_state = 4}, + [3133] = {.lex_state = 0}, [3134] = {.lex_state = 68}, - [3135] = {.lex_state = 0}, - [3136] = {.lex_state = 0}, + [3135] = {.lex_state = 68}, + [3136] = {.lex_state = 68}, [3137] = {.lex_state = 68}, - [3138] = {.lex_state = 0}, + [3138] = {.lex_state = 68, .external_lex_state = 8}, [3139] = {.lex_state = 68}, - [3140] = {.lex_state = 0}, - [3141] = {.lex_state = 0}, - [3142] = {.lex_state = 0}, - [3143] = {.lex_state = 0}, - [3144] = {.lex_state = 0}, - [3145] = {.lex_state = 0}, - [3146] = {.lex_state = 0}, + [3140] = {.lex_state = 68}, + [3141] = {.lex_state = 68}, + [3142] = {.lex_state = 68}, + [3143] = {.lex_state = 0, .external_lex_state = 4}, + [3144] = {.lex_state = 68, .external_lex_state = 8}, + [3145] = {.lex_state = 68}, + [3146] = {.lex_state = 68}, [3147] = {.lex_state = 0}, - [3148] = {.lex_state = 0}, - [3149] = {.lex_state = 0}, - [3150] = {.lex_state = 0}, - [3151] = {.lex_state = 0}, - [3152] = {.lex_state = 0}, - [3153] = {.lex_state = 68}, - [3154] = {.lex_state = 0, .external_lex_state = 4}, - [3155] = {.lex_state = 68}, - [3156] = {.lex_state = 13}, + [3148] = {.lex_state = 0, .external_lex_state = 4}, + [3149] = {.lex_state = 68}, + [3150] = {.lex_state = 68}, + [3151] = {.lex_state = 0, .external_lex_state = 4}, + [3152] = {.lex_state = 0, .external_lex_state = 4}, + [3153] = {.lex_state = 68, .external_lex_state = 8}, + [3154] = {.lex_state = 68, .external_lex_state = 8}, + [3155] = {.lex_state = 68, .external_lex_state = 7}, + [3156] = {.lex_state = 0, .external_lex_state = 4}, [3157] = {.lex_state = 0, .external_lex_state = 4}, [3158] = {.lex_state = 68, .external_lex_state = 4}, [3159] = {.lex_state = 68}, - [3160] = {.lex_state = 0, .external_lex_state = 4}, - [3161] = {.lex_state = 0}, + [3160] = {.lex_state = 68}, + [3161] = {.lex_state = 68, .external_lex_state = 8}, [3162] = {.lex_state = 0, .external_lex_state = 4}, [3163] = {.lex_state = 0, .external_lex_state = 4}, - [3164] = {.lex_state = 0}, - [3165] = {.lex_state = 0}, - [3166] = {.lex_state = 0}, + [3164] = {.lex_state = 0, .external_lex_state = 4}, + [3165] = {.lex_state = 0, .external_lex_state = 4}, + [3166] = {.lex_state = 68}, [3167] = {.lex_state = 0, .external_lex_state = 4}, - [3168] = {.lex_state = 0}, + [3168] = {.lex_state = 68}, [3169] = {.lex_state = 68}, - [3170] = {.lex_state = 0}, - [3171] = {.lex_state = 0}, - [3172] = {.lex_state = 68}, + [3170] = {.lex_state = 0, .external_lex_state = 4}, + [3171] = {.lex_state = 68}, + [3172] = {.lex_state = 0, .external_lex_state = 4}, [3173] = {.lex_state = 0, .external_lex_state = 4}, - [3174] = {.lex_state = 0}, - [3175] = {.lex_state = 68}, - [3176] = {.lex_state = 0}, - [3177] = {.lex_state = 0}, - [3178] = {.lex_state = 0}, - [3179] = {.lex_state = 68}, - [3180] = {.lex_state = 0}, + [3174] = {.lex_state = 68}, + [3175] = {.lex_state = 0, .external_lex_state = 4}, + [3176] = {.lex_state = 68}, + [3177] = {.lex_state = 0, .external_lex_state = 4}, + [3178] = {.lex_state = 68, .external_lex_state = 4}, + [3179] = {.lex_state = 0}, + [3180] = {.lex_state = 68}, [3181] = {.lex_state = 68}, - [3182] = {.lex_state = 68}, - [3183] = {.lex_state = 68}, - [3184] = {.lex_state = 0}, - [3185] = {.lex_state = 0}, - [3186] = {.lex_state = 68}, - [3187] = {.lex_state = 0}, - [3188] = {.lex_state = 68, .external_lex_state = 4}, - [3189] = {.lex_state = 68}, - [3190] = {.lex_state = 68}, - [3191] = {.lex_state = 0}, - [3192] = {.lex_state = 0}, - [3193] = {.lex_state = 0}, - [3194] = {.lex_state = 68}, - [3195] = {.lex_state = 0}, - [3196] = {.lex_state = 0}, - [3197] = {.lex_state = 0}, - [3198] = {.lex_state = 0}, + [3182] = {.lex_state = 68, .external_lex_state = 8}, + [3183] = {.lex_state = 0, .external_lex_state = 4}, + [3184] = {.lex_state = 0, .external_lex_state = 4}, + [3185] = {.lex_state = 68}, + [3186] = {.lex_state = 68, .external_lex_state = 8}, + [3187] = {.lex_state = 0, .external_lex_state = 4}, + [3188] = {.lex_state = 0, .external_lex_state = 4}, + [3189] = {.lex_state = 0, .external_lex_state = 4}, + [3190] = {.lex_state = 0, .external_lex_state = 4}, + [3191] = {.lex_state = 0, .external_lex_state = 4}, + [3192] = {.lex_state = 0, .external_lex_state = 4}, + [3193] = {.lex_state = 0, .external_lex_state = 4}, + [3194] = {.lex_state = 68, .external_lex_state = 8}, + [3195] = {.lex_state = 68}, + [3196] = {.lex_state = 0, .external_lex_state = 4}, + [3197] = {.lex_state = 68}, + [3198] = {.lex_state = 68}, [3199] = {.lex_state = 0}, - [3200] = {.lex_state = 0, .external_lex_state = 4}, - [3201] = {.lex_state = 0}, - [3202] = {.lex_state = 0}, - [3203] = {.lex_state = 0}, + [3200] = {.lex_state = 68}, + [3201] = {.lex_state = 68, .external_lex_state = 4}, + [3202] = {.lex_state = 68}, + [3203] = {.lex_state = 68}, [3204] = {.lex_state = 0}, - [3205] = {.lex_state = 0}, - [3206] = {.lex_state = 0}, + [3205] = {.lex_state = 68, .external_lex_state = 4}, + [3206] = {.lex_state = 0, .external_lex_state = 4}, [3207] = {.lex_state = 68}, - [3208] = {.lex_state = 0}, + [3208] = {.lex_state = 0, .external_lex_state = 4}, [3209] = {.lex_state = 68}, - [3210] = {.lex_state = 68}, - [3211] = {.lex_state = 0}, - [3212] = {.lex_state = 0}, + [3210] = {.lex_state = 68, .external_lex_state = 8}, + [3211] = {.lex_state = 68}, + [3212] = {.lex_state = 68, .external_lex_state = 4}, [3213] = {.lex_state = 68}, - [3214] = {.lex_state = 0}, - [3215] = {.lex_state = 68}, - [3216] = {.lex_state = 0}, - [3217] = {.lex_state = 0}, - [3218] = {.lex_state = 0}, - [3219] = {.lex_state = 0}, - [3220] = {.lex_state = 0, .external_lex_state = 4}, - [3221] = {.lex_state = 0}, - [3222] = {.lex_state = 0}, + [3214] = {.lex_state = 0, .external_lex_state = 4}, + [3215] = {.lex_state = 0}, + [3216] = {.lex_state = 0, .external_lex_state = 4}, + [3217] = {.lex_state = 68}, + [3218] = {.lex_state = 68, .external_lex_state = 8}, + [3219] = {.lex_state = 68}, + [3220] = {.lex_state = 68}, + [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 = 68}, - [3225] = {.lex_state = 0}, - [3226] = {.lex_state = 68, .external_lex_state = 4}, - [3227] = {.lex_state = 0, .external_lex_state = 4}, - [3228] = {.lex_state = 68}, - [3229] = {.lex_state = 0}, - [3230] = {.lex_state = 68}, - [3231] = {.lex_state = 68}, + [3225] = {.lex_state = 68, .external_lex_state = 4}, + [3226] = {.lex_state = 68}, + [3227] = {.lex_state = 68, .external_lex_state = 4}, + [3228] = {.lex_state = 68, .external_lex_state = 4}, + [3229] = {.lex_state = 68}, + [3230] = {.lex_state = 68, .external_lex_state = 4}, + [3231] = {.lex_state = 0}, [3232] = {.lex_state = 68}, - [3233] = {.lex_state = 68}, + [3233] = {.lex_state = 0}, [3234] = {.lex_state = 68}, - [3235] = {.lex_state = 0}, - [3236] = {.lex_state = 0}, - [3237] = {.lex_state = 0}, - [3238] = {.lex_state = 0}, - [3239] = {.lex_state = 68}, - [3240] = {.lex_state = 68}, + [3235] = {.lex_state = 68}, + [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}, + [3240] = {.lex_state = 0, .external_lex_state = 4}, [3241] = {.lex_state = 68}, - [3242] = {.lex_state = 68}, - [3243] = {.lex_state = 68}, - [3244] = {.lex_state = 0}, + [3242] = {.lex_state = 0, .external_lex_state = 4}, + [3243] = {.lex_state = 0, .external_lex_state = 4}, + [3244] = {.lex_state = 68}, [3245] = {.lex_state = 68}, - [3246] = {.lex_state = 0}, - [3247] = {.lex_state = 0}, - [3248] = {.lex_state = 68}, - [3249] = {.lex_state = 0}, - [3250] = {.lex_state = 0, .external_lex_state = 4}, + [3246] = {.lex_state = 13}, + [3247] = {.lex_state = 68}, + [3248] = {.lex_state = 0, .external_lex_state = 4}, + [3249] = {.lex_state = 0, .external_lex_state = 4}, + [3250] = {.lex_state = 68}, [3251] = {.lex_state = 68}, - [3252] = {.lex_state = 68}, - [3253] = {.lex_state = 0}, - [3254] = {.lex_state = 68}, + [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 = 68}, [3256] = {.lex_state = 68}, [3257] = {.lex_state = 0, .external_lex_state = 4}, - [3258] = {.lex_state = 68}, + [3258] = {.lex_state = 0, .external_lex_state = 4}, [3259] = {.lex_state = 68}, [3260] = {.lex_state = 68}, - [3261] = {.lex_state = 68}, - [3262] = {.lex_state = 68}, - [3263] = {.lex_state = 68}, - [3264] = {.lex_state = 68}, - [3265] = {.lex_state = 0}, - [3266] = {.lex_state = 0}, - [3267] = {.lex_state = 68}, - [3268] = {.lex_state = 0}, - [3269] = {.lex_state = 68}, + [3261] = {.lex_state = 0, .external_lex_state = 4}, + [3262] = {.lex_state = 68, .external_lex_state = 8}, + [3263] = {.lex_state = 0}, + [3264] = {.lex_state = 0, .external_lex_state = 4}, + [3265] = {.lex_state = 68}, + [3266] = {.lex_state = 68}, + [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 = 68}, - [3271] = {.lex_state = 68}, - [3272] = {.lex_state = 68}, + [3271] = {.lex_state = 0, .external_lex_state = 4}, + [3272] = {.lex_state = 0, .external_lex_state = 4}, [3273] = {.lex_state = 68}, - [3274] = {.lex_state = 68}, - [3275] = {.lex_state = 68}, + [3274] = {.lex_state = 0, .external_lex_state = 4}, + [3275] = {.lex_state = 0, .external_lex_state = 4}, [3276] = {.lex_state = 68}, - [3277] = {.lex_state = 0}, - [3278] = {.lex_state = 68}, + [3277] = {.lex_state = 0, .external_lex_state = 4}, + [3278] = {.lex_state = 0, .external_lex_state = 4}, [3279] = {.lex_state = 68}, - [3280] = {.lex_state = 68}, - [3281] = {.lex_state = 68}, - [3282] = {.lex_state = 68}, - [3283] = {.lex_state = 68}, + [3280] = {.lex_state = 0, .external_lex_state = 4}, + [3281] = {.lex_state = 0}, + [3282] = {.lex_state = 0, .external_lex_state = 4}, + [3283] = {.lex_state = 0}, [3284] = {.lex_state = 68}, - [3285] = {.lex_state = 68}, + [3285] = {.lex_state = 68, .external_lex_state = 4}, [3286] = {.lex_state = 68}, - [3287] = {.lex_state = 68}, - [3288] = {.lex_state = 0}, - [3289] = {.lex_state = 68}, - [3290] = {.lex_state = 68}, - [3291] = {.lex_state = 0}, + [3287] = {.lex_state = 68, .external_lex_state = 4}, + [3288] = {.lex_state = 0, .external_lex_state = 4}, + [3289] = {.lex_state = 0, .external_lex_state = 4}, + [3290] = {.lex_state = 0, .external_lex_state = 4}, + [3291] = {.lex_state = 68}, [3292] = {.lex_state = 68}, - [3293] = {.lex_state = 68}, - [3294] = {.lex_state = 68}, - [3295] = {.lex_state = 0}, - [3296] = {.lex_state = 0}, - [3297] = {.lex_state = 0}, - [3298] = {.lex_state = 68}, - [3299] = {.lex_state = 68}, + [3293] = {.lex_state = 0, .external_lex_state = 4}, + [3294] = {.lex_state = 0, .external_lex_state = 4}, + [3295] = {.lex_state = 0, .external_lex_state = 4}, + [3296] = {.lex_state = 68}, + [3297] = {.lex_state = 68}, + [3298] = {.lex_state = 0, .external_lex_state = 4}, + [3299] = {.lex_state = 0, .external_lex_state = 4}, [3300] = {.lex_state = 68}, [3301] = {.lex_state = 68}, - [3302] = {.lex_state = 68}, - [3303] = {.lex_state = 68}, - [3304] = {.lex_state = 68}, - [3305] = {.lex_state = 0}, - [3306] = {.lex_state = 68}, + [3302] = {.lex_state = 0, .external_lex_state = 4}, + [3303] = {.lex_state = 0, .external_lex_state = 4}, + [3304] = {.lex_state = 0, .external_lex_state = 4}, + [3305] = {.lex_state = 0, .external_lex_state = 4}, + [3306] = {.lex_state = 1}, [3307] = {.lex_state = 0}, [3308] = {.lex_state = 0}, [3309] = {.lex_state = 68}, - [3310] = {.lex_state = 0, .external_lex_state = 4}, + [3310] = {.lex_state = 68, .external_lex_state = 7}, [3311] = {.lex_state = 68}, [3312] = {.lex_state = 68}, - [3313] = {.lex_state = 0}, - [3314] = {.lex_state = 0}, + [3313] = {.lex_state = 68}, + [3314] = {.lex_state = 3}, [3315] = {.lex_state = 0}, [3316] = {.lex_state = 68}, - [3317] = {.lex_state = 0}, - [3318] = {.lex_state = 68}, + [3317] = {.lex_state = 68}, + [3318] = {.lex_state = 0}, [3319] = {.lex_state = 68}, - [3320] = {.lex_state = 68}, - [3321] = {.lex_state = 0}, + [3320] = {.lex_state = 0}, + [3321] = {.lex_state = 68}, [3322] = {.lex_state = 68}, [3323] = {.lex_state = 68}, - [3324] = {.lex_state = 0}, - [3325] = {.lex_state = 0}, + [3324] = {.lex_state = 1}, + [3325] = {.lex_state = 3}, [3326] = {.lex_state = 68}, [3327] = {.lex_state = 0}, - [3328] = {.lex_state = 0, .external_lex_state = 4}, - [3329] = {.lex_state = 0, .external_lex_state = 4}, - [3330] = {.lex_state = 0}, + [3328] = {.lex_state = 0}, + [3329] = {.lex_state = 0}, + [3330] = {.lex_state = 68}, [3331] = {.lex_state = 68}, - [3332] = {.lex_state = 68}, - [3333] = {.lex_state = 0}, + [3332] = {.lex_state = 0}, + [3333] = {.lex_state = 68}, [3334] = {.lex_state = 68}, - [3335] = {.lex_state = 0}, - [3336] = {.lex_state = 0, .external_lex_state = 4}, - [3337] = {.lex_state = 68}, - [3338] = {.lex_state = 0}, - [3339] = {.lex_state = 68}, - [3340] = {.lex_state = 68}, - [3341] = {.lex_state = 0}, - [3342] = {.lex_state = 0}, + [3335] = {.lex_state = 3}, + [3336] = {.lex_state = 68}, + [3337] = {.lex_state = 1}, + [3338] = {.lex_state = 68, .external_lex_state = 7}, + [3339] = {.lex_state = 0, .external_lex_state = 4}, + [3340] = {.lex_state = 0}, + [3341] = {.lex_state = 68}, + [3342] = {.lex_state = 0, .external_lex_state = 4}, [3343] = {.lex_state = 68}, [3344] = {.lex_state = 68}, - [3345] = {.lex_state = 0}, - [3346] = {.lex_state = 0}, - [3347] = {.lex_state = 68}, + [3345] = {.lex_state = 0, .external_lex_state = 4}, + [3346] = {.lex_state = 68}, + [3347] = {.lex_state = 0}, [3348] = {.lex_state = 68}, [3349] = {.lex_state = 0}, - [3350] = {.lex_state = 0, .external_lex_state = 4}, + [3350] = {.lex_state = 0}, [3351] = {.lex_state = 68}, - [3352] = {.lex_state = 0, .external_lex_state = 4}, - [3353] = {.lex_state = 68}, - [3354] = {.lex_state = 68}, - [3355] = {.lex_state = 68}, - [3356] = {.lex_state = 68}, - [3357] = {.lex_state = 68}, - [3358] = {.lex_state = 0, .external_lex_state = 4}, - [3359] = {.lex_state = 68}, - [3360] = {.lex_state = 68}, - [3361] = {.lex_state = 0}, - [3362] = {.lex_state = 68}, + [3352] = {.lex_state = 1}, + [3353] = {.lex_state = 3}, + [3354] = {.lex_state = 0}, + [3355] = {.lex_state = 0}, + [3356] = {.lex_state = 0}, + [3357] = {.lex_state = 0}, + [3358] = {.lex_state = 68}, + [3359] = {.lex_state = 0}, + [3360] = {.lex_state = 0}, + [3361] = {.lex_state = 68}, + [3362] = {.lex_state = 0}, [3363] = {.lex_state = 0}, - [3364] = {.lex_state = 0, .external_lex_state = 4}, - [3365] = {.lex_state = 68}, - [3366] = {.lex_state = 0, .external_lex_state = 4}, + [3364] = {.lex_state = 0}, + [3365] = {.lex_state = 0}, + [3366] = {.lex_state = 68}, [3367] = {.lex_state = 68}, [3368] = {.lex_state = 68}, [3369] = {.lex_state = 68}, [3370] = {.lex_state = 68}, - [3371] = {.lex_state = 68}, + [3371] = {.lex_state = 0}, [3372] = {.lex_state = 0}, - [3373] = {.lex_state = 68}, - [3374] = {.lex_state = 0}, - [3375] = {.lex_state = 68}, - [3376] = {.lex_state = 0}, + [3373] = {.lex_state = 0}, + [3374] = {.lex_state = 68}, + [3375] = {.lex_state = 1}, + [3376] = {.lex_state = 3}, [3377] = {.lex_state = 68}, - [3378] = {.lex_state = 0}, - [3379] = {.lex_state = 68}, - [3380] = {.lex_state = 0, .external_lex_state = 4}, + [3378] = {.lex_state = 68}, + [3379] = {.lex_state = 0}, + [3380] = {.lex_state = 68}, [3381] = {.lex_state = 0}, - [3382] = {.lex_state = 0}, - [3383] = {.lex_state = 68}, - [3384] = {.lex_state = 0}, + [3382] = {.lex_state = 68}, + [3383] = {.lex_state = 68, .external_lex_state = 7}, + [3384] = {.lex_state = 68, .external_lex_state = 7}, [3385] = {.lex_state = 68}, - [3386] = {.lex_state = 68}, - [3387] = {.lex_state = 0}, - [3388] = {.lex_state = 0, .external_lex_state = 4}, - [3389] = {.lex_state = 0}, - [3390] = {.lex_state = 0}, - [3391] = {.lex_state = 68}, - [3392] = {.lex_state = 68}, + [3386] = {.lex_state = 0}, + [3387] = {.lex_state = 68}, + [3388] = {.lex_state = 68}, + [3389] = {.lex_state = 68}, + [3390] = {.lex_state = 68, .external_lex_state = 4}, + [3391] = {.lex_state = 1}, + [3392] = {.lex_state = 3}, [3393] = {.lex_state = 68}, [3394] = {.lex_state = 68}, [3395] = {.lex_state = 68}, - [3396] = {.lex_state = 0}, + [3396] = {.lex_state = 68}, [3397] = {.lex_state = 0}, [3398] = {.lex_state = 68}, [3399] = {.lex_state = 68}, - [3400] = {.lex_state = 0}, + [3400] = {.lex_state = 68}, [3401] = {.lex_state = 68}, [3402] = {.lex_state = 68}, - [3403] = {.lex_state = 68}, + [3403] = {.lex_state = 0}, [3404] = {.lex_state = 0}, [3405] = {.lex_state = 0}, [3406] = {.lex_state = 0}, [3407] = {.lex_state = 0}, - [3408] = {.lex_state = 0}, + [3408] = {.lex_state = 68}, [3409] = {.lex_state = 68}, - [3410] = {.lex_state = 68}, - [3411] = {.lex_state = 68}, - [3412] = {.lex_state = 68}, - [3413] = {.lex_state = 0}, - [3414] = {.lex_state = 0}, + [3410] = {.lex_state = 0}, + [3411] = {.lex_state = 3}, + [3412] = {.lex_state = 1}, + [3413] = {.lex_state = 68}, + [3414] = {.lex_state = 68}, [3415] = {.lex_state = 68}, - [3416] = {.lex_state = 68}, - [3417] = {.lex_state = 0}, + [3416] = {.lex_state = 0}, + [3417] = {.lex_state = 68}, [3418] = {.lex_state = 68}, - [3419] = {.lex_state = 0}, + [3419] = {.lex_state = 68}, [3420] = {.lex_state = 68}, [3421] = {.lex_state = 0}, - [3422] = {.lex_state = 0, .external_lex_state = 4}, - [3423] = {.lex_state = 0}, - [3424] = {.lex_state = 0}, + [3422] = {.lex_state = 68}, + [3423] = {.lex_state = 1}, + [3424] = {.lex_state = 3}, [3425] = {.lex_state = 68}, [3426] = {.lex_state = 68}, - [3427] = {.lex_state = 0}, - [3428] = {.lex_state = 0}, - [3429] = {.lex_state = 0}, + [3427] = {.lex_state = 68}, + [3428] = {.lex_state = 68}, + [3429] = {.lex_state = 68}, [3430] = {.lex_state = 68}, - [3431] = {.lex_state = 0}, - [3432] = {.lex_state = 68}, - [3433] = {.lex_state = 68}, - [3434] = {.lex_state = 0}, - [3435] = {.lex_state = 0, .external_lex_state = 4}, - [3436] = {.lex_state = 68}, - [3437] = {.lex_state = 68}, - [3438] = {.lex_state = 0}, + [3431] = {.lex_state = 1}, + [3432] = {.lex_state = 3}, + [3433] = {.lex_state = 0, .external_lex_state = 4}, + [3434] = {.lex_state = 0, .external_lex_state = 4}, + [3435] = {.lex_state = 68}, + [3436] = {.lex_state = 0}, + [3437] = {.lex_state = 0, .external_lex_state = 4}, + [3438] = {.lex_state = 68}, [3439] = {.lex_state = 68}, - [3440] = {.lex_state = 0}, - [3441] = {.lex_state = 68}, - [3442] = {.lex_state = 0}, + [3440] = {.lex_state = 68}, + [3441] = {.lex_state = 0}, + [3442] = {.lex_state = 68}, [3443] = {.lex_state = 0}, [3444] = {.lex_state = 68}, - [3445] = {.lex_state = 0}, + [3445] = {.lex_state = 68}, [3446] = {.lex_state = 68}, - [3447] = {.lex_state = 68}, + [3447] = {.lex_state = 3}, [3448] = {.lex_state = 68}, - [3449] = {.lex_state = 0}, - [3450] = {.lex_state = 0}, - [3451] = {.lex_state = 0}, - [3452] = {.lex_state = 0}, - [3453] = {.lex_state = 0, .external_lex_state = 4}, - [3454] = {.lex_state = 0, .external_lex_state = 4}, + [3449] = {.lex_state = 1}, + [3450] = {.lex_state = 68}, + [3451] = {.lex_state = 68}, + [3452] = {.lex_state = 68}, + [3453] = {.lex_state = 68}, + [3454] = {.lex_state = 68}, [3455] = {.lex_state = 0}, [3456] = {.lex_state = 68}, - [3457] = {.lex_state = 0}, - [3458] = {.lex_state = 0, .external_lex_state = 4}, + [3457] = {.lex_state = 68, .external_lex_state = 7}, + [3458] = {.lex_state = 68}, [3459] = {.lex_state = 68}, - [3460] = {.lex_state = 0, .external_lex_state = 4}, + [3460] = {.lex_state = 3}, [3461] = {.lex_state = 68}, [3462] = {.lex_state = 68}, - [3463] = {.lex_state = 0}, - [3464] = {.lex_state = 68}, + [3463] = {.lex_state = 68, .external_lex_state = 7}, + [3464] = {.lex_state = 1}, [3465] = {.lex_state = 68}, - [3466] = {.lex_state = 0}, - [3467] = {.lex_state = 0}, + [3466] = {.lex_state = 68}, + [3467] = {.lex_state = 68}, [3468] = {.lex_state = 68}, [3469] = {.lex_state = 68}, [3470] = {.lex_state = 0}, - [3471] = {.lex_state = 0}, - [3472] = {.lex_state = 0}, + [3471] = {.lex_state = 68, .external_lex_state = 7}, + [3472] = {.lex_state = 68}, [3473] = {.lex_state = 68}, [3474] = {.lex_state = 0}, - [3475] = {.lex_state = 0}, - [3476] = {.lex_state = 68}, - [3477] = {.lex_state = 68}, + [3475] = {.lex_state = 68}, + [3476] = {.lex_state = 68, .external_lex_state = 8}, + [3477] = {.lex_state = 68, .external_lex_state = 8}, [3478] = {.lex_state = 0}, - [3479] = {.lex_state = 0}, - [3480] = {.lex_state = 0}, - [3481] = {.lex_state = 0}, + [3479] = {.lex_state = 68}, + [3480] = {.lex_state = 1}, + [3481] = {.lex_state = 3}, [3482] = {.lex_state = 68}, - [3483] = {.lex_state = 0}, - [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 0}, + [3483] = {.lex_state = 1}, + [3484] = {.lex_state = 0}, + [3485] = {.lex_state = 3}, [3486] = {.lex_state = 0}, [3487] = {.lex_state = 68}, - [3488] = {.lex_state = 0}, - [3489] = {.lex_state = 0}, - [3490] = {.lex_state = 0}, - [3491] = {.lex_state = 68}, - [3492] = {.lex_state = 68}, + [3488] = {.lex_state = 68}, + [3489] = {.lex_state = 68}, + [3490] = {.lex_state = 68}, + [3491] = {.lex_state = 0}, + [3492] = {.lex_state = 0}, [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 14}, - [3495] = {.lex_state = 0}, - [3496] = {.lex_state = 0}, - [3497] = {.lex_state = 0}, + [3494] = {.lex_state = 68}, + [3495] = {.lex_state = 68}, + [3496] = {.lex_state = 18, .external_lex_state = 9}, + [3497] = {.lex_state = 68}, [3498] = {.lex_state = 68}, - [3499] = {.lex_state = 68}, - [3500] = {.lex_state = 68}, - [3501] = {.lex_state = 0}, - [3502] = {.lex_state = 68}, - [3503] = {.lex_state = 0}, - [3504] = {.lex_state = 68}, - [3505] = {.lex_state = 0}, - [3506] = {.lex_state = 0}, - [3507] = {.lex_state = 68}, - [3508] = {.lex_state = 68}, - [3509] = {.lex_state = 0}, + [3499] = {.lex_state = 3}, + [3500] = {.lex_state = 68, .external_lex_state = 8}, + [3501] = {.lex_state = 68}, + [3502] = {.lex_state = 0}, + [3503] = {.lex_state = 68}, + [3504] = {.lex_state = 0}, + [3505] = {.lex_state = 68}, + [3506] = {.lex_state = 3}, + [3507] = {.lex_state = 1}, + [3508] = {.lex_state = 68, .external_lex_state = 7}, + [3509] = {.lex_state = 68}, [3510] = {.lex_state = 0}, [3511] = {.lex_state = 68}, - [3512] = {.lex_state = 68}, - [3513] = {.lex_state = 0}, + [3512] = {.lex_state = 1}, + [3513] = {.lex_state = 0, .external_lex_state = 4}, [3514] = {.lex_state = 68}, - [3515] = {.lex_state = 5}, + [3515] = {.lex_state = 68}, [3516] = {.lex_state = 0}, - [3517] = {.lex_state = 0}, - [3518] = {.lex_state = 0}, - [3519] = {.lex_state = 68}, - [3520] = {.lex_state = 0}, + [3517] = {.lex_state = 68}, + [3518] = {.lex_state = 0, .external_lex_state = 4}, + [3519] = {.lex_state = 0, .external_lex_state = 4}, + [3520] = {.lex_state = 68}, [3521] = {.lex_state = 68}, - [3522] = {.lex_state = 68}, - [3523] = {.lex_state = 68}, - [3524] = {.lex_state = 68}, - [3525] = {.lex_state = 68}, - [3526] = {.lex_state = 0}, - [3527] = {.lex_state = 0}, - [3528] = {.lex_state = 68}, - [3529] = {.lex_state = 0}, + [3522] = {.lex_state = 0}, + [3523] = {.lex_state = 68, .external_lex_state = 4}, + [3524] = {.lex_state = 1}, + [3525] = {.lex_state = 68, .external_lex_state = 7}, + [3526] = {.lex_state = 3}, + [3527] = {.lex_state = 68}, + [3528] = {.lex_state = 0}, + [3529] = {.lex_state = 1}, [3530] = {.lex_state = 0}, - [3531] = {.lex_state = 68}, - [3532] = {.lex_state = 68}, + [3531] = {.lex_state = 0}, + [3532] = {.lex_state = 3}, [3533] = {.lex_state = 68}, - [3534] = {.lex_state = 68}, + [3534] = {.lex_state = 0}, [3535] = {.lex_state = 0}, [3536] = {.lex_state = 0}, [3537] = {.lex_state = 68}, - [3538] = {.lex_state = 68}, + [3538] = {.lex_state = 0}, [3539] = {.lex_state = 0}, - [3540] = {.lex_state = 0}, - [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 68}, - [3543] = {.lex_state = 68}, + [3540] = {.lex_state = 68}, + [3541] = {.lex_state = 13}, + [3542] = {.lex_state = 0}, + [3543] = {.lex_state = 0}, [3544] = {.lex_state = 0}, - [3545] = {.lex_state = 68}, - [3546] = {.lex_state = 68}, + [3545] = {.lex_state = 0}, + [3546] = {.lex_state = 0}, [3547] = {.lex_state = 0}, [3548] = {.lex_state = 68}, - [3549] = {.lex_state = 68}, + [3549] = {.lex_state = 0}, [3550] = {.lex_state = 0}, [3551] = {.lex_state = 0}, - [3552] = {.lex_state = 68}, + [3552] = {.lex_state = 0}, [3553] = {.lex_state = 68}, [3554] = {.lex_state = 68}, - [3555] = {.lex_state = 68}, + [3555] = {.lex_state = 68, .external_lex_state = 4}, [3556] = {.lex_state = 68}, - [3557] = {.lex_state = 68}, - [3558] = {.lex_state = 68}, - [3559] = {.lex_state = 68}, - [3560] = {.lex_state = 68}, + [3557] = {.lex_state = 0}, + [3558] = {.lex_state = 68, .external_lex_state = 4}, + [3559] = {.lex_state = 0}, + [3560] = {.lex_state = 0, .external_lex_state = 4}, [3561] = {.lex_state = 68}, [3562] = {.lex_state = 0}, - [3563] = {.lex_state = 68}, + [3563] = {.lex_state = 0}, [3564] = {.lex_state = 0}, - [3565] = {.lex_state = 68}, - [3566] = {.lex_state = 0}, + [3565] = {.lex_state = 0}, + [3566] = {.lex_state = 68}, [3567] = {.lex_state = 0}, - [3568] = {.lex_state = 68}, - [3569] = {.lex_state = 68}, + [3568] = {.lex_state = 0}, + [3569] = {.lex_state = 0}, [3570] = {.lex_state = 0}, [3571] = {.lex_state = 68}, [3572] = {.lex_state = 0}, @@ -9584,186 +9607,730 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3574] = {.lex_state = 0}, [3575] = {.lex_state = 0}, [3576] = {.lex_state = 0}, - [3577] = {.lex_state = 0}, + [3577] = {.lex_state = 68}, [3578] = {.lex_state = 0}, [3579] = {.lex_state = 0}, - [3580] = {.lex_state = 68}, - [3581] = {.lex_state = 5}, - [3582] = {.lex_state = 68}, - [3583] = {.lex_state = 68}, + [3580] = {.lex_state = 0, .external_lex_state = 7}, + [3581] = {.lex_state = 0}, + [3582] = {.lex_state = 0}, + [3583] = {.lex_state = 0}, [3584] = {.lex_state = 68}, - [3585] = {.lex_state = 68}, - [3586] = {.lex_state = 68}, - [3587] = {.lex_state = 0}, - [3588] = {.lex_state = 68}, - [3589] = {.lex_state = 68}, - [3590] = {.lex_state = 5}, + [3585] = {.lex_state = 0}, + [3586] = {.lex_state = 68, .external_lex_state = 4}, + [3587] = {.lex_state = 68, .external_lex_state = 4}, + [3588] = {.lex_state = 0}, + [3589] = {.lex_state = 0}, + [3590] = {.lex_state = 0, .external_lex_state = 4}, [3591] = {.lex_state = 0}, - [3592] = {.lex_state = 0}, + [3592] = {.lex_state = 68}, [3593] = {.lex_state = 68}, [3594] = {.lex_state = 0}, - [3595] = {.lex_state = 68}, - [3596] = {.lex_state = 68}, + [3595] = {.lex_state = 0}, + [3596] = {.lex_state = 0}, [3597] = {.lex_state = 0}, [3598] = {.lex_state = 0}, - [3599] = {.lex_state = 0}, + [3599] = {.lex_state = 0, .external_lex_state = 4}, [3600] = {.lex_state = 0}, [3601] = {.lex_state = 68}, - [3602] = {.lex_state = 68}, + [3602] = {.lex_state = 0}, [3603] = {.lex_state = 0}, - [3604] = {.lex_state = 68}, + [3604] = {.lex_state = 0}, [3605] = {.lex_state = 0}, [3606] = {.lex_state = 0}, [3607] = {.lex_state = 68}, - [3608] = {.lex_state = 0}, - [3609] = {.lex_state = 0}, + [3608] = {.lex_state = 68, .external_lex_state = 4}, + [3609] = {.lex_state = 0, .external_lex_state = 4}, [3610] = {.lex_state = 68}, [3611] = {.lex_state = 68}, [3612] = {.lex_state = 0}, [3613] = {.lex_state = 0}, - [3614] = {.lex_state = 68}, - [3615] = {.lex_state = 68}, - [3616] = {.lex_state = 0}, + [3614] = {.lex_state = 0, .external_lex_state = 4}, + [3615] = {.lex_state = 0, .external_lex_state = 4}, + [3616] = {.lex_state = 0, .external_lex_state = 4}, [3617] = {.lex_state = 0}, - [3618] = {.lex_state = 0}, + [3618] = {.lex_state = 0, .external_lex_state = 4}, [3619] = {.lex_state = 0}, [3620] = {.lex_state = 0}, - [3621] = {.lex_state = 0}, + [3621] = {.lex_state = 68}, [3622] = {.lex_state = 0}, - [3623] = {.lex_state = 0}, + [3623] = {.lex_state = 0, .external_lex_state = 4}, [3624] = {.lex_state = 0}, - [3625] = {.lex_state = 0}, + [3625] = {.lex_state = 0, .external_lex_state = 4}, [3626] = {.lex_state = 0}, - [3627] = {.lex_state = 0}, - [3628] = {.lex_state = 68}, + [3627] = {.lex_state = 68}, + [3628] = {.lex_state = 0, .external_lex_state = 4}, [3629] = {.lex_state = 68}, - [3630] = {.lex_state = 0}, - [3631] = {.lex_state = 68}, - [3632] = {.lex_state = 68}, - [3633] = {.lex_state = 0}, - [3634] = {.lex_state = 68}, - [3635] = {.lex_state = 0}, + [3630] = {.lex_state = 68}, + [3631] = {.lex_state = 0}, + [3632] = {.lex_state = 0}, + [3633] = {.lex_state = 0, .external_lex_state = 4}, + [3634] = {.lex_state = 0}, + [3635] = {.lex_state = 68}, [3636] = {.lex_state = 0}, - [3637] = {.lex_state = 0}, + [3637] = {.lex_state = 68}, [3638] = {.lex_state = 0}, - [3639] = {.lex_state = 68}, + [3639] = {.lex_state = 13}, [3640] = {.lex_state = 68}, - [3641] = {.lex_state = 68}, - [3642] = {.lex_state = 68}, - [3643] = {.lex_state = 0}, - [3644] = {.lex_state = 68}, - [3645] = {.lex_state = 0}, - [3646] = {.lex_state = 68}, - [3647] = {.lex_state = 68}, - [3648] = {.lex_state = 68}, + [3641] = {.lex_state = 0}, + [3642] = {.lex_state = 0}, + [3643] = {.lex_state = 68}, + [3644] = {.lex_state = 0}, + [3645] = {.lex_state = 0, .external_lex_state = 4}, + [3646] = {.lex_state = 0, .external_lex_state = 4}, + [3647] = {.lex_state = 0}, + [3648] = {.lex_state = 0, .external_lex_state = 4}, [3649] = {.lex_state = 0}, - [3650] = {.lex_state = 68}, + [3650] = {.lex_state = 0}, [3651] = {.lex_state = 68}, [3652] = {.lex_state = 68}, - [3653] = {.lex_state = 68}, - [3654] = {.lex_state = 0}, - [3655] = {.lex_state = 68}, + [3653] = {.lex_state = 0, .external_lex_state = 4}, + [3654] = {.lex_state = 68}, + [3655] = {.lex_state = 0}, [3656] = {.lex_state = 0}, [3657] = {.lex_state = 0}, - [3658] = {.lex_state = 68}, + [3658] = {.lex_state = 0}, [3659] = {.lex_state = 0}, [3660] = {.lex_state = 0}, - [3661] = {.lex_state = 68}, - [3662] = {.lex_state = 68}, + [3661] = {.lex_state = 0, .external_lex_state = 4}, + [3662] = {.lex_state = 0}, [3663] = {.lex_state = 0}, - [3664] = {.lex_state = 68}, + [3664] = {.lex_state = 0, .external_lex_state = 7}, [3665] = {.lex_state = 0}, [3666] = {.lex_state = 0}, [3667] = {.lex_state = 0}, - [3668] = {.lex_state = 0}, - [3669] = {.lex_state = 0}, - [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 0}, - [3672] = {.lex_state = 0}, - [3673] = {.lex_state = 0}, + [3668] = {.lex_state = 68}, + [3669] = {.lex_state = 0, .external_lex_state = 4}, + [3670] = {.lex_state = 0, .external_lex_state = 4}, + [3671] = {.lex_state = 0, .external_lex_state = 4}, + [3672] = {.lex_state = 68}, + [3673] = {.lex_state = 68}, [3674] = {.lex_state = 0}, - [3675] = {.lex_state = 0}, + [3675] = {.lex_state = 68}, [3676] = {.lex_state = 0}, [3677] = {.lex_state = 0}, [3678] = {.lex_state = 68}, - [3679] = {.lex_state = 0}, + [3679] = {.lex_state = 68}, [3680] = {.lex_state = 0}, [3681] = {.lex_state = 0}, - [3682] = {.lex_state = 68}, + [3682] = {.lex_state = 0, .external_lex_state = 4}, [3683] = {.lex_state = 0}, - [3684] = {.lex_state = 68}, - [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 68}, - [3687] = {.lex_state = 0}, + [3684] = {.lex_state = 0}, + [3685] = {.lex_state = 68}, + [3686] = {.lex_state = 0}, + [3687] = {.lex_state = 68}, [3688] = {.lex_state = 0}, [3689] = {.lex_state = 68}, [3690] = {.lex_state = 0}, - [3691] = {.lex_state = 0}, + [3691] = {.lex_state = 68}, [3692] = {.lex_state = 0}, - [3693] = {.lex_state = 14}, + [3693] = {.lex_state = 0}, [3694] = {.lex_state = 68}, - [3695] = {.lex_state = 0}, - [3696] = {.lex_state = 68}, - [3697] = {.lex_state = 68}, + [3695] = {.lex_state = 0, .external_lex_state = 4}, + [3696] = {.lex_state = 0}, + [3697] = {.lex_state = 0, .external_lex_state = 4}, [3698] = {.lex_state = 0}, [3699] = {.lex_state = 68}, - [3700] = {.lex_state = 68}, - [3701] = {.lex_state = 0}, + [3700] = {.lex_state = 0, .external_lex_state = 4}, + [3701] = {.lex_state = 0, .external_lex_state = 4}, [3702] = {.lex_state = 0}, - [3703] = {.lex_state = 68}, + [3703] = {.lex_state = 0, .external_lex_state = 4}, [3704] = {.lex_state = 0}, [3705] = {.lex_state = 68}, - [3706] = {.lex_state = 0}, + [3706] = {.lex_state = 68}, [3707] = {.lex_state = 68}, [3708] = {.lex_state = 68}, [3709] = {.lex_state = 68}, - [3710] = {.lex_state = 0}, - [3711] = {.lex_state = 14}, - [3712] = {.lex_state = 0}, + [3710] = {.lex_state = 0, .external_lex_state = 4}, + [3711] = {.lex_state = 68}, + [3712] = {.lex_state = 0, .external_lex_state = 4}, [3713] = {.lex_state = 68}, [3714] = {.lex_state = 68}, - [3715] = {.lex_state = 68}, - [3716] = {.lex_state = 68}, + [3715] = {.lex_state = 0, .external_lex_state = 4}, + [3716] = {.lex_state = 0, .external_lex_state = 4}, [3717] = {.lex_state = 68}, [3718] = {.lex_state = 0}, [3719] = {.lex_state = 68}, - [3720] = {.lex_state = 0}, + [3720] = {.lex_state = 68}, [3721] = {.lex_state = 0}, [3722] = {.lex_state = 0}, - [3723] = {.lex_state = 0}, - [3724] = {.lex_state = 0}, - [3725] = {.lex_state = 0}, + [3723] = {.lex_state = 0, .external_lex_state = 4}, + [3724] = {.lex_state = 68}, + [3725] = {.lex_state = 68, .external_lex_state = 4}, [3726] = {.lex_state = 0}, [3727] = {.lex_state = 0}, - [3728] = {.lex_state = 5}, + [3728] = {.lex_state = 13}, [3729] = {.lex_state = 68}, - [3730] = {.lex_state = 68}, + [3730] = {.lex_state = 0}, [3731] = {.lex_state = 68}, - [3732] = {.lex_state = 0}, + [3732] = {.lex_state = 68}, [3733] = {.lex_state = 0}, [3734] = {.lex_state = 68}, [3735] = {.lex_state = 0}, [3736] = {.lex_state = 0}, [3737] = {.lex_state = 68}, - [3738] = {.lex_state = 68}, - [3739] = {.lex_state = 0}, + [3738] = {.lex_state = 0}, + [3739] = {.lex_state = 68}, [3740] = {.lex_state = 0}, - [3741] = {.lex_state = 0}, + [3741] = {.lex_state = 68}, [3742] = {.lex_state = 0}, - [3743] = {.lex_state = 68}, - [3744] = {.lex_state = 68}, - [3745] = {.lex_state = 0}, + [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 = 68}, [3748] = {.lex_state = 0}, [3749] = {.lex_state = 0}, [3750] = {.lex_state = 68}, - [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 0}, + [3751] = {.lex_state = 68}, + [3752] = {.lex_state = 68}, [3753] = {.lex_state = 68}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 68}, - [3756] = {.lex_state = 0}, + [3754] = {.lex_state = 0, .external_lex_state = 4}, + [3755] = {.lex_state = 0}, + [3756] = {.lex_state = 68}, + [3757] = {.lex_state = 0}, + [3758] = {.lex_state = 68}, + [3759] = {.lex_state = 68}, + [3760] = {.lex_state = 68}, + [3761] = {.lex_state = 0}, + [3762] = {.lex_state = 0}, + [3763] = {.lex_state = 68}, + [3764] = {.lex_state = 68}, + [3765] = {.lex_state = 68}, + [3766] = {.lex_state = 0}, + [3767] = {.lex_state = 0}, + [3768] = {.lex_state = 0}, + [3769] = {.lex_state = 68}, + [3770] = {.lex_state = 68}, + [3771] = {.lex_state = 68}, + [3772] = {.lex_state = 68}, + [3773] = {.lex_state = 68}, + [3774] = {.lex_state = 68}, + [3775] = {.lex_state = 68}, + [3776] = {.lex_state = 68}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 0}, + [3779] = {.lex_state = 0}, + [3780] = {.lex_state = 0}, + [3781] = {.lex_state = 68}, + [3782] = {.lex_state = 0}, + [3783] = {.lex_state = 0}, + [3784] = {.lex_state = 0}, + [3785] = {.lex_state = 68}, + [3786] = {.lex_state = 0}, + [3787] = {.lex_state = 68}, + [3788] = {.lex_state = 0}, + [3789] = {.lex_state = 0}, + [3790] = {.lex_state = 0, .external_lex_state = 4}, + [3791] = {.lex_state = 0}, + [3792] = {.lex_state = 0, .external_lex_state = 4}, + [3793] = {.lex_state = 68}, + [3794] = {.lex_state = 0}, + [3795] = {.lex_state = 0}, + [3796] = {.lex_state = 0}, + [3797] = {.lex_state = 0}, + [3798] = {.lex_state = 0}, + [3799] = {.lex_state = 0}, + [3800] = {.lex_state = 0}, + [3801] = {.lex_state = 0}, + [3802] = {.lex_state = 0}, + [3803] = {.lex_state = 0}, + [3804] = {.lex_state = 0, .external_lex_state = 4}, + [3805] = {.lex_state = 0, .external_lex_state = 4}, + [3806] = {.lex_state = 68}, + [3807] = {.lex_state = 0}, + [3808] = {.lex_state = 0, .external_lex_state = 4}, + [3809] = {.lex_state = 68}, + [3810] = {.lex_state = 0}, + [3811] = {.lex_state = 0}, + [3812] = {.lex_state = 0}, + [3813] = {.lex_state = 68}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 68}, + [3816] = {.lex_state = 0}, + [3817] = {.lex_state = 68}, + [3818] = {.lex_state = 0, .external_lex_state = 4}, + [3819] = {.lex_state = 68}, + [3820] = {.lex_state = 68}, + [3821] = {.lex_state = 68}, + [3822] = {.lex_state = 68}, + [3823] = {.lex_state = 68}, + [3824] = {.lex_state = 0}, + [3825] = {.lex_state = 68}, + [3826] = {.lex_state = 68}, + [3827] = {.lex_state = 68}, + [3828] = {.lex_state = 68}, + [3829] = {.lex_state = 68}, + [3830] = {.lex_state = 68}, + [3831] = {.lex_state = 68}, + [3832] = {.lex_state = 68}, + [3833] = {.lex_state = 68}, + [3834] = {.lex_state = 0}, + [3835] = {.lex_state = 68}, + [3836] = {.lex_state = 68}, + [3837] = {.lex_state = 68}, + [3838] = {.lex_state = 0, .external_lex_state = 4}, + [3839] = {.lex_state = 68}, + [3840] = {.lex_state = 68}, + [3841] = {.lex_state = 68}, + [3842] = {.lex_state = 68}, + [3843] = {.lex_state = 68}, + [3844] = {.lex_state = 68}, + [3845] = {.lex_state = 68}, + [3846] = {.lex_state = 68}, + [3847] = {.lex_state = 0}, + [3848] = {.lex_state = 68}, + [3849] = {.lex_state = 68}, + [3850] = {.lex_state = 68}, + [3851] = {.lex_state = 0}, + [3852] = {.lex_state = 0}, + [3853] = {.lex_state = 0}, + [3854] = {.lex_state = 68}, + [3855] = {.lex_state = 68}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 68}, + [3858] = {.lex_state = 68}, + [3859] = {.lex_state = 68}, + [3860] = {.lex_state = 68}, + [3861] = {.lex_state = 0, .external_lex_state = 4}, + [3862] = {.lex_state = 68}, + [3863] = {.lex_state = 0}, + [3864] = {.lex_state = 0}, + [3865] = {.lex_state = 0}, + [3866] = {.lex_state = 0, .external_lex_state = 4}, + [3867] = {.lex_state = 0}, + [3868] = {.lex_state = 0, .external_lex_state = 4}, + [3869] = {.lex_state = 0, .external_lex_state = 4}, + [3870] = {.lex_state = 0}, + [3871] = {.lex_state = 0}, + [3872] = {.lex_state = 68}, + [3873] = {.lex_state = 68}, + [3874] = {.lex_state = 68}, + [3875] = {.lex_state = 0}, + [3876] = {.lex_state = 68}, + [3877] = {.lex_state = 0}, + [3878] = {.lex_state = 68}, + [3879] = {.lex_state = 68}, + [3880] = {.lex_state = 0}, + [3881] = {.lex_state = 0, .external_lex_state = 4}, + [3882] = {.lex_state = 68}, + [3883] = {.lex_state = 68}, + [3884] = {.lex_state = 68}, + [3885] = {.lex_state = 68}, + [3886] = {.lex_state = 0}, + [3887] = {.lex_state = 0}, + [3888] = {.lex_state = 68}, + [3889] = {.lex_state = 68}, + [3890] = {.lex_state = 68}, + [3891] = {.lex_state = 68}, + [3892] = {.lex_state = 68}, + [3893] = {.lex_state = 0, .external_lex_state = 4}, + [3894] = {.lex_state = 68}, + [3895] = {.lex_state = 68}, + [3896] = {.lex_state = 0}, + [3897] = {.lex_state = 68}, + [3898] = {.lex_state = 0}, + [3899] = {.lex_state = 68}, + [3900] = {.lex_state = 68}, + [3901] = {.lex_state = 68}, + [3902] = {.lex_state = 0}, + [3903] = {.lex_state = 68}, + [3904] = {.lex_state = 68}, + [3905] = {.lex_state = 68}, + [3906] = {.lex_state = 68}, + [3907] = {.lex_state = 68}, + [3908] = {.lex_state = 68}, + [3909] = {.lex_state = 68}, + [3910] = {.lex_state = 68}, + [3911] = {.lex_state = 0, .external_lex_state = 4}, + [3912] = {.lex_state = 0}, + [3913] = {.lex_state = 68}, + [3914] = {.lex_state = 0, .external_lex_state = 4}, + [3915] = {.lex_state = 68}, + [3916] = {.lex_state = 0}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 0}, + [3919] = {.lex_state = 68}, + [3920] = {.lex_state = 0}, + [3921] = {.lex_state = 0}, + [3922] = {.lex_state = 0}, + [3923] = {.lex_state = 68}, + [3924] = {.lex_state = 0}, + [3925] = {.lex_state = 68}, + [3926] = {.lex_state = 68}, + [3927] = {.lex_state = 68}, + [3928] = {.lex_state = 68}, + [3929] = {.lex_state = 68}, + [3930] = {.lex_state = 68}, + [3931] = {.lex_state = 68}, + [3932] = {.lex_state = 68}, + [3933] = {.lex_state = 0, .external_lex_state = 4}, + [3934] = {.lex_state = 68}, + [3935] = {.lex_state = 68}, + [3936] = {.lex_state = 68}, + [3937] = {.lex_state = 0}, + [3938] = {.lex_state = 68}, + [3939] = {.lex_state = 0}, + [3940] = {.lex_state = 68}, + [3941] = {.lex_state = 68}, + [3942] = {.lex_state = 0}, + [3943] = {.lex_state = 68}, + [3944] = {.lex_state = 68}, + [3945] = {.lex_state = 68}, + [3946] = {.lex_state = 0}, + [3947] = {.lex_state = 68}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 68}, + [3950] = {.lex_state = 0}, + [3951] = {.lex_state = 68}, + [3952] = {.lex_state = 0}, + [3953] = {.lex_state = 68}, + [3954] = {.lex_state = 0}, + [3955] = {.lex_state = 68}, + [3956] = {.lex_state = 0}, + [3957] = {.lex_state = 0}, + [3958] = {.lex_state = 68}, + [3959] = {.lex_state = 68}, + [3960] = {.lex_state = 0}, + [3961] = {.lex_state = 68}, + [3962] = {.lex_state = 0, .external_lex_state = 4}, + [3963] = {.lex_state = 68}, + [3964] = {.lex_state = 68}, + [3965] = {.lex_state = 0}, + [3966] = {.lex_state = 68}, + [3967] = {.lex_state = 0}, + [3968] = {.lex_state = 68}, + [3969] = {.lex_state = 68}, + [3970] = {.lex_state = 68}, + [3971] = {.lex_state = 0}, + [3972] = {.lex_state = 0}, + [3973] = {.lex_state = 0}, + [3974] = {.lex_state = 0}, + [3975] = {.lex_state = 68}, + [3976] = {.lex_state = 68}, + [3977] = {.lex_state = 0}, + [3978] = {.lex_state = 0}, + [3979] = {.lex_state = 68}, + [3980] = {.lex_state = 0}, + [3981] = {.lex_state = 68}, + [3982] = {.lex_state = 0}, + [3983] = {.lex_state = 0}, + [3984] = {.lex_state = 68}, + [3985] = {.lex_state = 68}, + [3986] = {.lex_state = 0}, + [3987] = {.lex_state = 0}, + [3988] = {.lex_state = 0}, + [3989] = {.lex_state = 0}, + [3990] = {.lex_state = 0, .external_lex_state = 4}, + [3991] = {.lex_state = 0}, + [3992] = {.lex_state = 0}, + [3993] = {.lex_state = 0}, + [3994] = {.lex_state = 68}, + [3995] = {.lex_state = 0}, + [3996] = {.lex_state = 68}, + [3997] = {.lex_state = 68}, + [3998] = {.lex_state = 68}, + [3999] = {.lex_state = 0}, + [4000] = {.lex_state = 68}, + [4001] = {.lex_state = 68}, + [4002] = {.lex_state = 0}, + [4003] = {.lex_state = 68}, + [4004] = {.lex_state = 0}, + [4005] = {.lex_state = 0}, + [4006] = {.lex_state = 0}, + [4007] = {.lex_state = 0}, + [4008] = {.lex_state = 14}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 68}, + [4011] = {.lex_state = 68}, + [4012] = {.lex_state = 0}, + [4013] = {.lex_state = 0}, + [4014] = {.lex_state = 0}, + [4015] = {.lex_state = 68}, + [4016] = {.lex_state = 68}, + [4017] = {.lex_state = 0}, + [4018] = {.lex_state = 0}, + [4019] = {.lex_state = 0}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 0}, + [4022] = {.lex_state = 0}, + [4023] = {.lex_state = 68}, + [4024] = {.lex_state = 68}, + [4025] = {.lex_state = 0}, + [4026] = {.lex_state = 0}, + [4027] = {.lex_state = 68}, + [4028] = {.lex_state = 68}, + [4029] = {.lex_state = 68}, + [4030] = {.lex_state = 0}, + [4031] = {.lex_state = 0}, + [4032] = {.lex_state = 0}, + [4033] = {.lex_state = 68}, + [4034] = {.lex_state = 0}, + [4035] = {.lex_state = 0}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 0}, + [4038] = {.lex_state = 0}, + [4039] = {.lex_state = 0}, + [4040] = {.lex_state = 68}, + [4041] = {.lex_state = 68}, + [4042] = {.lex_state = 0}, + [4043] = {.lex_state = 0}, + [4044] = {.lex_state = 0}, + [4045] = {.lex_state = 0}, + [4046] = {.lex_state = 0}, + [4047] = {.lex_state = 0}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 0}, + [4050] = {.lex_state = 68}, + [4051] = {.lex_state = 0}, + [4052] = {.lex_state = 0}, + [4053] = {.lex_state = 0}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 68}, + [4056] = {.lex_state = 14}, + [4057] = {.lex_state = 68}, + [4058] = {.lex_state = 68}, + [4059] = {.lex_state = 0}, + [4060] = {.lex_state = 68}, + [4061] = {.lex_state = 0}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 0}, + [4064] = {.lex_state = 68}, + [4065] = {.lex_state = 68}, + [4066] = {.lex_state = 0}, + [4067] = {.lex_state = 0}, + [4068] = {.lex_state = 0}, + [4069] = {.lex_state = 68}, + [4070] = {.lex_state = 68}, + [4071] = {.lex_state = 0}, + [4072] = {.lex_state = 0}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 14}, + [4075] = {.lex_state = 68}, + [4076] = {.lex_state = 68}, + [4077] = {.lex_state = 0}, + [4078] = {.lex_state = 0}, + [4079] = {.lex_state = 0}, + [4080] = {.lex_state = 0}, + [4081] = {.lex_state = 0}, + [4082] = {.lex_state = 68}, + [4083] = {.lex_state = 0}, + [4084] = {.lex_state = 68}, + [4085] = {.lex_state = 0}, + [4086] = {.lex_state = 0}, + [4087] = {.lex_state = 0}, + [4088] = {.lex_state = 0}, + [4089] = {.lex_state = 0}, + [4090] = {.lex_state = 68}, + [4091] = {.lex_state = 68}, + [4092] = {.lex_state = 0}, + [4093] = {.lex_state = 0}, + [4094] = {.lex_state = 0}, + [4095] = {.lex_state = 0}, + [4096] = {.lex_state = 68}, + [4097] = {.lex_state = 68}, + [4098] = {.lex_state = 68}, + [4099] = {.lex_state = 0}, + [4100] = {.lex_state = 0}, + [4101] = {.lex_state = 68}, + [4102] = {.lex_state = 68}, + [4103] = {.lex_state = 0}, + [4104] = {.lex_state = 68}, + [4105] = {.lex_state = 68}, + [4106] = {.lex_state = 5}, + [4107] = {.lex_state = 0}, + [4108] = {.lex_state = 0}, + [4109] = {.lex_state = 0}, + [4110] = {.lex_state = 0}, + [4111] = {.lex_state = 68}, + [4112] = {.lex_state = 0}, + [4113] = {.lex_state = 68}, + [4114] = {.lex_state = 68}, + [4115] = {.lex_state = 0}, + [4116] = {.lex_state = 0}, + [4117] = {.lex_state = 0}, + [4118] = {.lex_state = 0}, + [4119] = {.lex_state = 0}, + [4120] = {.lex_state = 68}, + [4121] = {.lex_state = 68}, + [4122] = {.lex_state = 0}, + [4123] = {.lex_state = 0}, + [4124] = {.lex_state = 0}, + [4125] = {.lex_state = 0}, + [4126] = {.lex_state = 0}, + [4127] = {.lex_state = 68}, + [4128] = {.lex_state = 68}, + [4129] = {.lex_state = 0}, + [4130] = {.lex_state = 68}, + [4131] = {.lex_state = 0}, + [4132] = {.lex_state = 68}, + [4133] = {.lex_state = 0}, + [4134] = {.lex_state = 0}, + [4135] = {.lex_state = 0}, + [4136] = {.lex_state = 68}, + [4137] = {.lex_state = 68}, + [4138] = {.lex_state = 0}, + [4139] = {.lex_state = 68}, + [4140] = {.lex_state = 68}, + [4141] = {.lex_state = 68}, + [4142] = {.lex_state = 68}, + [4143] = {.lex_state = 0}, + [4144] = {.lex_state = 0}, + [4145] = {.lex_state = 68}, + [4146] = {.lex_state = 68}, + [4147] = {.lex_state = 0}, + [4148] = {.lex_state = 0}, + [4149] = {.lex_state = 0}, + [4150] = {.lex_state = 0}, + [4151] = {.lex_state = 0}, + [4152] = {.lex_state = 0}, + [4153] = {.lex_state = 0}, + [4154] = {.lex_state = 0}, + [4155] = {.lex_state = 0}, + [4156] = {.lex_state = 0}, + [4157] = {.lex_state = 68}, + [4158] = {.lex_state = 68}, + [4159] = {.lex_state = 0}, + [4160] = {.lex_state = 0}, + [4161] = {.lex_state = 0}, + [4162] = {.lex_state = 0}, + [4163] = {.lex_state = 0}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 0}, + [4166] = {.lex_state = 5}, + [4167] = {.lex_state = 68}, + [4168] = {.lex_state = 0}, + [4169] = {.lex_state = 0}, + [4170] = {.lex_state = 68}, + [4171] = {.lex_state = 0}, + [4172] = {.lex_state = 0}, + [4173] = {.lex_state = 0}, + [4174] = {.lex_state = 68}, + [4175] = {.lex_state = 68}, + [4176] = {.lex_state = 68}, + [4177] = {.lex_state = 5}, + [4178] = {.lex_state = 68}, + [4179] = {.lex_state = 68}, + [4180] = {.lex_state = 68}, + [4181] = {.lex_state = 68}, + [4182] = {.lex_state = 68}, + [4183] = {.lex_state = 0}, + [4184] = {.lex_state = 68}, + [4185] = {.lex_state = 68}, + [4186] = {.lex_state = 0}, + [4187] = {.lex_state = 68}, + [4188] = {.lex_state = 68}, + [4189] = {.lex_state = 68}, + [4190] = {.lex_state = 0}, + [4191] = {.lex_state = 68}, + [4192] = {.lex_state = 68}, + [4193] = {.lex_state = 68}, + [4194] = {.lex_state = 68}, + [4195] = {.lex_state = 68}, + [4196] = {.lex_state = 0}, + [4197] = {.lex_state = 68}, + [4198] = {.lex_state = 68}, + [4199] = {.lex_state = 0}, + [4200] = {.lex_state = 68}, + [4201] = {.lex_state = 0}, + [4202] = {.lex_state = 0}, + [4203] = {.lex_state = 0}, + [4204] = {.lex_state = 0}, + [4205] = {.lex_state = 68}, + [4206] = {.lex_state = 68}, + [4207] = {.lex_state = 0}, + [4208] = {.lex_state = 0}, + [4209] = {.lex_state = 0}, + [4210] = {.lex_state = 68}, + [4211] = {.lex_state = 0}, + [4212] = {.lex_state = 0}, + [4213] = {.lex_state = 68}, + [4214] = {.lex_state = 68}, + [4215] = {.lex_state = 0}, + [4216] = {.lex_state = 0}, + [4217] = {.lex_state = 0}, + [4218] = {.lex_state = 68}, + [4219] = {.lex_state = 68}, + [4220] = {.lex_state = 68}, + [4221] = {.lex_state = 0}, + [4222] = {.lex_state = 68}, + [4223] = {.lex_state = 0}, + [4224] = {.lex_state = 0}, + [4225] = {.lex_state = 0}, + [4226] = {.lex_state = 0}, + [4227] = {.lex_state = 68}, + [4228] = {.lex_state = 68}, + [4229] = {.lex_state = 0}, + [4230] = {.lex_state = 68}, + [4231] = {.lex_state = 0}, + [4232] = {.lex_state = 68}, + [4233] = {.lex_state = 68}, + [4234] = {.lex_state = 0}, + [4235] = {.lex_state = 0}, + [4236] = {.lex_state = 68}, + [4237] = {.lex_state = 68}, + [4238] = {.lex_state = 68}, + [4239] = {.lex_state = 5}, + [4240] = {.lex_state = 68}, + [4241] = {.lex_state = 68}, + [4242] = {.lex_state = 0}, + [4243] = {.lex_state = 0}, + [4244] = {.lex_state = 68}, + [4245] = {.lex_state = 0}, + [4246] = {.lex_state = 0}, + [4247] = {.lex_state = 0}, + [4248] = {.lex_state = 0}, + [4249] = {.lex_state = 68}, + [4250] = {.lex_state = 0}, + [4251] = {.lex_state = 0}, + [4252] = {.lex_state = 0}, + [4253] = {.lex_state = 0}, + [4254] = {.lex_state = 0}, + [4255] = {.lex_state = 68}, + [4256] = {.lex_state = 0}, + [4257] = {.lex_state = 0}, + [4258] = {.lex_state = 68}, + [4259] = {.lex_state = 0}, + [4260] = {.lex_state = 0}, + [4261] = {.lex_state = 0}, + [4262] = {.lex_state = 68}, + [4263] = {.lex_state = 0}, + [4264] = {.lex_state = 0}, + [4265] = {.lex_state = 0}, + [4266] = {.lex_state = 0}, + [4267] = {.lex_state = 0}, + [4268] = {.lex_state = 0}, + [4269] = {.lex_state = 0}, + [4270] = {.lex_state = 68}, + [4271] = {.lex_state = 0}, + [4272] = {.lex_state = 0}, + [4273] = {.lex_state = 0}, + [4274] = {.lex_state = 0}, + [4275] = {.lex_state = 0}, + [4276] = {.lex_state = 0}, + [4277] = {.lex_state = 0}, + [4278] = {.lex_state = 0}, + [4279] = {.lex_state = 68}, + [4280] = {.lex_state = 0}, + [4281] = {.lex_state = 68}, + [4282] = {.lex_state = 68}, + [4283] = {.lex_state = 0}, + [4284] = {.lex_state = 0}, + [4285] = {.lex_state = 0}, + [4286] = {.lex_state = 0}, + [4287] = {.lex_state = 68}, + [4288] = {.lex_state = 0}, + [4289] = {.lex_state = 68}, + [4290] = {.lex_state = 68}, + [4291] = {.lex_state = 0}, + [4292] = {.lex_state = 0}, + [4293] = {.lex_state = 0}, + [4294] = {.lex_state = 68}, + [4295] = {.lex_state = 14}, + [4296] = {.lex_state = 0}, + [4297] = {.lex_state = 68}, + [4298] = {.lex_state = 0}, + [4299] = {.lex_state = 68}, + [4300] = {.lex_state = 68}, }; enum { @@ -9771,6 +10338,7 @@ enum { ts_external_token__template_chars = 1, ts_external_token_PIPE_PIPE = 2, ts_external_token__function_signature_automatic_semicolon = 3, + ts_external_token__call_type_arguments_closing_bracket = 4, }; static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -9778,14 +10346,16 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__template_chars] = sym__template_chars, [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, [ts_external_token__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, + [ts_external_token__call_type_arguments_closing_bracket] = sym__call_type_arguments_closing_bracket, }; -static bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token__template_chars] = true, [ts_external_token_PIPE_PIPE] = true, [ts_external_token__function_signature_automatic_semicolon] = true, + [ts_external_token__call_type_arguments_closing_bracket] = true, }, [2] = { [ts_external_token_PIPE_PIPE] = true, @@ -9803,10 +10373,17 @@ static bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__function_signature_automatic_semicolon] = true, }, [6] = { + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token__call_type_arguments_closing_bracket] = true, + }, + [7] = { + [ts_external_token__call_type_arguments_closing_bracket] = true, + }, + [8] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token__function_signature_automatic_semicolon] = true, }, - [7] = { + [9] = { [ts_external_token__template_chars] = true, }, }; @@ -9957,80 +10534,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1), [sym__template_chars] = ACTIONS(1), [sym__function_signature_automatic_semicolon] = ACTIONS(1), + [sym__call_type_arguments_closing_bracket] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3688), - [sym_export_statement] = STATE(13), - [sym__declaration] = STATE(13), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_program] = STATE(4094), + [sym_export_statement] = STATE(22), + [sym__declaration] = STATE(22), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(2969), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -10105,85 +10683,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [2] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1800), - [sym_assignment_pattern] = STATE(3104), - [sym_array] = STATE(1801), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_spread_element] = STATE(3104), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1792), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_method_definition] = STATE(3104), - [sym_pair] = STATE(3104), - [sym__property_name] = STATE(2394), - [sym_computed_property_name] = STATE(2394), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_accessibility_modifier] = STATE(2145), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2545), - [aux_sym_object_repeat1] = STATE(3117), + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1541), + [sym_assignment_pattern] = STATE(3738), + [sym_array] = STATE(1574), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_spread_element] = STATE(3738), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1543), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_method_definition] = STATE(3738), + [sym_pair] = STATE(3738), + [sym__property_name] = STATE(2818), + [sym_computed_property_name] = STATE(2818), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(2476), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(2969), + [aux_sym_object_repeat1] = STATE(3735), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), @@ -10260,93 +10838,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(139), }, [3] = { - [sym_export_statement] = STATE(22), - [sym__declaration] = STATE(22), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1800), - [sym_assignment_pattern] = STATE(3104), - [sym_array] = STATE(1801), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_spread_element] = STATE(3104), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1792), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_method_definition] = STATE(3104), - [sym_pair] = STATE(3104), - [sym__property_name] = STATE(2394), - [sym_computed_property_name] = STATE(2394), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_accessibility_modifier] = STATE(2145), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(2545), - [aux_sym_object_repeat1] = STATE(3117), - [sym_identifier] = ACTIONS(105), - [anon_sym_export] = ACTIONS(107), + [sym_export_statement] = STATE(14), + [sym__declaration] = STATE(14), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1541), + [sym_assignment_pattern] = STATE(3698), + [sym_array] = STATE(1574), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_spread_element] = STATE(3698), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1543), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_method_definition] = STATE(3698), + [sym_pair] = STATE(3698), + [sym__property_name] = STATE(2818), + [sym_computed_property_name] = STATE(2818), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(2476), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(2969), + [aux_sym_object_repeat1] = STATE(3692), + [sym_identifier] = ACTIONS(141), + [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(141), - [anon_sym_type] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_type] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -10373,7 +10951,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(121), + [anon_sym_async] = ACTIONS(151), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -10396,112 +10974,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(127), + [anon_sym_static] = ACTIONS(153), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_declare] = ACTIONS(131), - [anon_sym_public] = ACTIONS(133), - [anon_sym_private] = ACTIONS(133), - [anon_sym_protected] = ACTIONS(133), - [anon_sym_module] = ACTIONS(135), - [anon_sym_any] = ACTIONS(137), - [anon_sym_number] = ACTIONS(137), - [anon_sym_boolean] = ACTIONS(137), - [anon_sym_string] = ACTIONS(137), - [anon_sym_symbol] = ACTIONS(137), + [anon_sym_get] = ACTIONS(155), + [anon_sym_set] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_public] = ACTIONS(159), + [anon_sym_private] = ACTIONS(159), + [anon_sym_protected] = ACTIONS(159), + [anon_sym_module] = ACTIONS(161), + [anon_sym_any] = ACTIONS(163), + [anon_sym_number] = ACTIONS(163), + [anon_sym_boolean] = ACTIONS(163), + [anon_sym_string] = ACTIONS(163), + [anon_sym_symbol] = ACTIONS(163), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(139), + [sym_readonly] = ACTIONS(165), }, [4] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1800), - [sym_assignment_pattern] = STATE(3104), - [sym_array] = STATE(1801), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_spread_element] = STATE(3104), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1792), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_method_definition] = STATE(3104), - [sym_pair] = STATE(3104), - [sym__property_name] = STATE(2394), - [sym_computed_property_name] = STATE(2394), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_accessibility_modifier] = STATE(2145), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2545), - [aux_sym_object_repeat1] = STATE(3117), - [sym_identifier] = ACTIONS(105), - [anon_sym_export] = ACTIONS(107), + [sym_export_statement] = STATE(28), + [sym__declaration] = STATE(28), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1541), + [sym_assignment_pattern] = STATE(3598), + [sym_array] = STATE(1574), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_spread_element] = STATE(3598), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1543), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_method_definition] = STATE(3598), + [sym_pair] = STATE(3598), + [sym__property_name] = STATE(2818), + [sym_computed_property_name] = STATE(2818), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(2476), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(2969), + [aux_sym_object_repeat1] = STATE(3600), + [sym_identifier] = ACTIONS(167), + [anon_sym_export] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(171), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(143), - [anon_sym_type] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_type] = ACTIONS(175), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -10528,7 +11106,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(121), + [anon_sym_async] = ACTIONS(177), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -10551,112 +11129,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(127), + [anon_sym_static] = ACTIONS(179), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_declare] = ACTIONS(131), - [anon_sym_public] = ACTIONS(133), - [anon_sym_private] = ACTIONS(133), - [anon_sym_protected] = ACTIONS(133), - [anon_sym_module] = ACTIONS(135), - [anon_sym_any] = ACTIONS(137), - [anon_sym_number] = ACTIONS(137), - [anon_sym_boolean] = ACTIONS(137), - [anon_sym_string] = ACTIONS(137), - [anon_sym_symbol] = ACTIONS(137), + [anon_sym_get] = ACTIONS(181), + [anon_sym_set] = ACTIONS(181), + [anon_sym_declare] = ACTIONS(183), + [anon_sym_public] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_protected] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_any] = ACTIONS(189), + [anon_sym_number] = ACTIONS(189), + [anon_sym_boolean] = ACTIONS(189), + [anon_sym_string] = ACTIONS(189), + [anon_sym_symbol] = ACTIONS(189), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(139), + [sym_readonly] = ACTIONS(191), }, [5] = { - [sym_export_statement] = STATE(12), - [sym__declaration] = STATE(12), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1800), - [sym_assignment_pattern] = STATE(3180), - [sym_array] = STATE(1801), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_spread_element] = STATE(3180), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1792), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_method_definition] = STATE(3180), - [sym_pair] = STATE(3180), - [sym__property_name] = STATE(2394), - [sym_computed_property_name] = STATE(2394), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_accessibility_modifier] = STATE(2145), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(2545), - [aux_sym_object_repeat1] = STATE(3229), - [sym_identifier] = ACTIONS(145), - [anon_sym_export] = ACTIONS(147), + [sym_export_statement] = STATE(14), + [sym__declaration] = STATE(14), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1541), + [sym_assignment_pattern] = STATE(3698), + [sym_array] = STATE(1574), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_spread_element] = STATE(3698), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1543), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_method_definition] = STATE(3698), + [sym_pair] = STATE(3698), + [sym__property_name] = STATE(2818), + [sym_computed_property_name] = STATE(2818), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(2476), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(2969), + [aux_sym_object_repeat1] = STATE(3692), + [sym_identifier] = ACTIONS(141), + [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(151), - [anon_sym_type] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_type] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -10683,7 +11261,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(155), + [anon_sym_async] = ACTIONS(151), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -10706,112 +11284,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(157), + [anon_sym_static] = ACTIONS(153), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(159), - [anon_sym_set] = ACTIONS(159), - [anon_sym_declare] = ACTIONS(161), - [anon_sym_public] = ACTIONS(163), - [anon_sym_private] = ACTIONS(163), - [anon_sym_protected] = ACTIONS(163), - [anon_sym_module] = ACTIONS(165), - [anon_sym_any] = ACTIONS(167), - [anon_sym_number] = ACTIONS(167), - [anon_sym_boolean] = ACTIONS(167), - [anon_sym_string] = ACTIONS(167), - [anon_sym_symbol] = ACTIONS(167), + [anon_sym_get] = ACTIONS(155), + [anon_sym_set] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_public] = ACTIONS(159), + [anon_sym_private] = ACTIONS(159), + [anon_sym_protected] = ACTIONS(159), + [anon_sym_module] = ACTIONS(161), + [anon_sym_any] = ACTIONS(163), + [anon_sym_number] = ACTIONS(163), + [anon_sym_boolean] = ACTIONS(163), + [anon_sym_string] = ACTIONS(163), + [anon_sym_symbol] = ACTIONS(163), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(169), + [sym_readonly] = ACTIONS(165), }, [6] = { - [sym_export_statement] = STATE(19), - [sym__declaration] = STATE(19), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1800), - [sym_assignment_pattern] = STATE(3033), - [sym_array] = STATE(1801), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_spread_element] = STATE(3033), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1792), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_method_definition] = STATE(3033), - [sym_pair] = STATE(3033), - [sym__property_name] = STATE(2394), - [sym_computed_property_name] = STATE(2394), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_accessibility_modifier] = STATE(2145), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(2545), - [aux_sym_object_repeat1] = STATE(3198), - [sym_identifier] = ACTIONS(171), - [anon_sym_export] = ACTIONS(173), + [sym_export_statement] = STATE(15), + [sym__declaration] = STATE(15), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1541), + [sym_assignment_pattern] = STATE(3698), + [sym_array] = STATE(1574), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_spread_element] = STATE(3698), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1543), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_method_definition] = STATE(3698), + [sym_pair] = STATE(3698), + [sym__property_name] = STATE(2818), + [sym_computed_property_name] = STATE(2818), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(2476), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2969), + [aux_sym_object_repeat1] = STATE(3692), + [sym_identifier] = ACTIONS(141), + [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_namespace] = ACTIONS(175), + [anon_sym_namespace] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_type] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -10838,7 +11416,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(181), + [anon_sym_async] = ACTIONS(151), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -10861,32 +11439,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(183), + [anon_sym_static] = ACTIONS(153), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(185), - [anon_sym_set] = ACTIONS(185), - [anon_sym_declare] = ACTIONS(187), - [anon_sym_public] = ACTIONS(189), - [anon_sym_private] = ACTIONS(189), - [anon_sym_protected] = ACTIONS(189), - [anon_sym_module] = ACTIONS(191), - [anon_sym_any] = ACTIONS(193), - [anon_sym_number] = ACTIONS(193), - [anon_sym_boolean] = ACTIONS(193), - [anon_sym_string] = ACTIONS(193), - [anon_sym_symbol] = ACTIONS(193), + [anon_sym_get] = ACTIONS(155), + [anon_sym_set] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_public] = ACTIONS(159), + [anon_sym_private] = ACTIONS(159), + [anon_sym_protected] = ACTIONS(159), + [anon_sym_module] = ACTIONS(161), + [anon_sym_any] = ACTIONS(163), + [anon_sym_number] = ACTIONS(163), + [anon_sym_boolean] = ACTIONS(163), + [anon_sym_string] = ACTIONS(163), + [anon_sym_symbol] = ACTIONS(163), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(195), + [sym_readonly] = ACTIONS(165), }, [7] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), + [sym_import] = STATE(1608), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -10903,54 +11481,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [aux_sym_export_statement_repeat1] = STATE(2969), [ts_builtin_sym_end] = ACTIONS(197), [sym_identifier] = ACTIONS(199), [anon_sym_export] = ACTIONS(202), @@ -11027,77 +11605,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(327), }, [8] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_export_statement] = STATE(11), + [sym__declaration] = STATE(11), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_for_in_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_with_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_debugger_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_throw_statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(345), @@ -11173,159 +11751,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [9] = { - [sym_export_statement] = STATE(10), - [sym__declaration] = STATE(10), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(2545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_type] = 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_case] = ACTIONS(349), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), - }, - [10] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), + [sym_import] = STATE(1608), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11342,60 +11774,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(353), + [anon_sym_default] = ACTIONS(349), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -11418,7 +11850,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(55), [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_case] = ACTIONS(353), + [anon_sym_case] = ACTIONS(349), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), @@ -11464,84 +11896,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [11] = { - [sym_export_statement] = STATE(8), - [sym__declaration] = STATE(8), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_for_in_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_try_statement] = STATE(8), - [sym_with_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_debugger_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_throw_statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(2545), + [10] = { + [sym_export_statement] = STATE(9), + [sym__declaration] = STATE(9), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(357), + [anon_sym_default] = ACTIONS(353), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_RBRACE] = ACTIONS(355), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -11564,7 +11996,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(55), [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_case] = ACTIONS(357), + [anon_sym_case] = ACTIONS(353), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), @@ -11610,14 +12042,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [12] = { + [11] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), + [sym_import] = STATE(1608), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11634,59 +12066,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), + [anon_sym_default] = ACTIONS(357), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(359), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -11709,6 +12142,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(55), [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_case] = ACTIONS(357), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), @@ -11754,83 +12188,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [13] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), - [ts_builtin_sym_end] = ACTIONS(363), + [12] = { + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(361), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -11898,14 +12332,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [14] = { + [13] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), + [sym_import] = STATE(1608), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -11922,59 +12356,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(363), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12042,83 +12476,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [15] = { - [sym_export_statement] = STATE(26), - [sym__declaration] = STATE(26), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(2545), + [14] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(365), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12186,83 +12620,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [16] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2545), + [15] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(367), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12330,83 +12764,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [17] = { - [sym_export_statement] = STATE(23), - [sym__declaration] = STATE(23), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(2545), - [ts_builtin_sym_end] = ACTIONS(363), + [16] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(369), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12474,83 +12908,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [18] = { - [sym_export_statement] = STATE(12), - [sym__declaration] = STATE(12), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(2545), + [17] = { + [sym_export_statement] = STATE(23), + [sym__declaration] = STATE(23), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2969), + [ts_builtin_sym_end] = ACTIONS(371), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(371), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12618,78 +13052,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [19] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [18] = { + [sym_export_statement] = STATE(14), + [sym__declaration] = STATE(14), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12762,78 +13196,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [20] = { - [sym_export_statement] = STATE(19), - [sym__declaration] = STATE(19), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(2545), + [19] = { + [sym_export_statement] = STATE(15), + [sym__declaration] = STATE(15), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12906,78 +13340,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [21] = { - [sym_export_statement] = STATE(28), - [sym__declaration] = STATE(28), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(2545), + [20] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13050,14 +13484,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, + [21] = { + [sym_export_statement] = STATE(28), + [sym__declaration] = STATE(28), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(2969), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_type] = 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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), + }, [22] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), + [sym_import] = STATE(1608), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -13074,59 +13652,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [aux_sym_export_statement_repeat1] = STATE(2969), + [ts_builtin_sym_end] = ACTIONS(371), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13197,11 +13775,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [23] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), + [sym_import] = STATE(1608), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -13218,54 +13796,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [aux_sym_export_statement_repeat1] = STATE(2969), [ts_builtin_sym_end] = ACTIONS(381), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), @@ -13339,77 +13917,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [24] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_export_statement] = STATE(20), + [sym__declaration] = STATE(20), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13483,77 +14061,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [25] = { - [sym_export_statement] = STATE(22), - [sym__declaration] = STATE(22), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_export_statement] = STATE(27), + [sym__declaration] = STATE(27), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13627,13 +14205,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [26] = { + [sym_export_statement] = STATE(16), + [sym__declaration] = STATE(16), + [sym_import] = STATE(1608), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(2969), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_type] = 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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), + }, + [27] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), + [sym_import] = STATE(1608), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), [sym_statement_block] = STATE(7), [sym_if_statement] = STATE(7), [sym_switch_statement] = STATE(7), @@ -13650,59 +14372,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13770,83 +14492,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [27] = { - [sym_export_statement] = STATE(14), - [sym__declaration] = STATE(14), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2545), + [28] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13914,99 +14636,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [28] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_type] = ACTIONS(17), + [29] = { + [sym_export_statement] = STATE(4289), + [sym__declaration] = STATE(4289), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(4289), + [sym_expression_statement] = STATE(4289), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_switch_statement] = STATE(4289), + [sym_for_statement] = STATE(4289), + [sym_for_in_statement] = STATE(4289), + [sym_while_statement] = STATE(4289), + [sym_do_statement] = STATE(4289), + [sym_try_statement] = STATE(4289), + [sym_with_statement] = STATE(4289), + [sym_break_statement] = STATE(4289), + [sym_continue_statement] = STATE(4289), + [sym_debugger_statement] = STATE(4289), + [sym_return_statement] = STATE(4289), + [sym_throw_statement] = STATE(4289), + [sym_empty_statement] = STATE(4289), + [sym_labeled_statement] = STATE(4289), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [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(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14017,9 +14737,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14040,115 +14760,115 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, - [29] = { - [sym_export_statement] = STATE(620), - [sym__declaration] = STATE(620), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(620), - [sym_expression_statement] = STATE(620), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(620), - [sym_if_statement] = STATE(620), - [sym_switch_statement] = STATE(620), - [sym_for_statement] = STATE(620), - [sym_for_in_statement] = STATE(620), - [sym_while_statement] = STATE(620), - [sym_do_statement] = STATE(620), - [sym_try_statement] = STATE(620), - [sym_with_statement] = STATE(620), - [sym_break_statement] = STATE(620), - [sym_continue_statement] = STATE(620), - [sym_debugger_statement] = STATE(620), - [sym_return_statement] = STATE(620), - [sym_throw_statement] = STATE(620), - [sym_empty_statement] = STATE(620), - [sym_labeled_statement] = STATE(620), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [30] = { + [sym_export_statement] = STATE(706), + [sym__declaration] = STATE(706), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(706), + [sym_expression_statement] = STATE(706), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(706), + [sym_if_statement] = STATE(706), + [sym_switch_statement] = STATE(706), + [sym_for_statement] = STATE(706), + [sym_for_in_statement] = STATE(706), + [sym_while_statement] = STATE(706), + [sym_do_statement] = STATE(706), + [sym_try_statement] = STATE(706), + [sym_with_statement] = STATE(706), + [sym_break_statement] = STATE(706), + [sym_continue_statement] = STATE(706), + [sym_debugger_statement] = STATE(706), + [sym_return_statement] = STATE(706), + [sym_throw_statement] = STATE(706), + [sym_empty_statement] = STATE(706), + [sym_labeled_statement] = STATE(706), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [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(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14159,9 +14879,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14182,95 +14902,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, - [30] = { - [sym_export_statement] = STATE(3228), - [sym__declaration] = STATE(3228), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(3228), - [sym_expression_statement] = STATE(3228), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(3228), - [sym_if_statement] = STATE(3228), - [sym_switch_statement] = STATE(3228), - [sym_for_statement] = STATE(3228), - [sym_for_in_statement] = STATE(3228), - [sym_while_statement] = STATE(3228), - [sym_do_statement] = STATE(3228), - [sym_try_statement] = STATE(3228), - [sym_with_statement] = STATE(3228), - [sym_break_statement] = STATE(3228), - [sym_continue_statement] = STATE(3228), - [sym_debugger_statement] = STATE(3228), - [sym_return_statement] = STATE(3228), - [sym_throw_statement] = STATE(3228), - [sym_empty_statement] = STATE(3228), - [sym_labeled_statement] = STATE(3228), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), + [31] = { + [sym_export_statement] = STATE(711), + [sym__declaration] = STATE(711), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_for_in_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_try_statement] = STATE(711), + [sym_with_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_debugger_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_throw_statement] = STATE(711), + [sym_empty_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -14342,77 +15062,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [31] = { - [sym_export_statement] = STATE(642), - [sym__declaration] = STATE(642), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), + [32] = { + [sym_export_statement] = STATE(686), + [sym__declaration] = STATE(686), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(686), + [sym_expression_statement] = STATE(686), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(686), + [sym_if_statement] = STATE(686), + [sym_switch_statement] = STATE(686), + [sym_for_statement] = STATE(686), + [sym_for_in_statement] = STATE(686), + [sym_while_statement] = STATE(686), + [sym_do_statement] = STATE(686), + [sym_try_statement] = STATE(686), + [sym_with_statement] = STATE(686), + [sym_break_statement] = STATE(686), + [sym_continue_statement] = STATE(686), + [sym_debugger_statement] = STATE(686), + [sym_return_statement] = STATE(686), + [sym_throw_statement] = STATE(686), + [sym_empty_statement] = STATE(686), + [sym_labeled_statement] = STATE(686), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -14484,77 +15204,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [32] = { - [sym_export_statement] = STATE(602), - [sym__declaration] = STATE(602), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(602), - [sym_expression_statement] = STATE(602), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(602), - [sym_if_statement] = STATE(602), - [sym_switch_statement] = STATE(602), - [sym_for_statement] = STATE(602), - [sym_for_in_statement] = STATE(602), - [sym_while_statement] = STATE(602), - [sym_do_statement] = STATE(602), - [sym_try_statement] = STATE(602), - [sym_with_statement] = STATE(602), - [sym_break_statement] = STATE(602), - [sym_continue_statement] = STATE(602), - [sym_debugger_statement] = STATE(602), - [sym_return_statement] = STATE(602), - [sym_throw_statement] = STATE(602), - [sym_empty_statement] = STATE(602), - [sym_labeled_statement] = STATE(602), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), + [33] = { + [sym_export_statement] = STATE(712), + [sym__declaration] = STATE(712), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(712), + [sym_expression_statement] = STATE(712), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(712), + [sym_if_statement] = STATE(712), + [sym_switch_statement] = STATE(712), + [sym_for_statement] = STATE(712), + [sym_for_in_statement] = STATE(712), + [sym_while_statement] = STATE(712), + [sym_do_statement] = STATE(712), + [sym_try_statement] = STATE(712), + [sym_with_statement] = STATE(712), + [sym_break_statement] = STATE(712), + [sym_continue_statement] = STATE(712), + [sym_debugger_statement] = STATE(712), + [sym_return_statement] = STATE(712), + [sym_throw_statement] = STATE(712), + [sym_empty_statement] = STATE(712), + [sym_labeled_statement] = STATE(712), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -14626,97 +15346,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [33] = { - [sym_export_statement] = STATE(614), - [sym__declaration] = STATE(614), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(614), - [sym_expression_statement] = STATE(614), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(614), - [sym_if_statement] = STATE(614), - [sym_switch_statement] = STATE(614), - [sym_for_statement] = STATE(614), - [sym_for_in_statement] = STATE(614), - [sym_while_statement] = STATE(614), - [sym_do_statement] = STATE(614), - [sym_try_statement] = STATE(614), - [sym_with_statement] = STATE(614), - [sym_break_statement] = STATE(614), - [sym_continue_statement] = STATE(614), - [sym_debugger_statement] = STATE(614), - [sym_return_statement] = STATE(614), - [sym_throw_statement] = STATE(614), - [sym_empty_statement] = STATE(614), - [sym_labeled_statement] = STATE(614), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [34] = { + [sym_export_statement] = STATE(3533), + [sym__declaration] = STATE(3533), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(3533), + [sym_expression_statement] = STATE(3533), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(3533), + [sym_if_statement] = STATE(3533), + [sym_switch_statement] = STATE(3533), + [sym_for_statement] = STATE(3533), + [sym_for_in_statement] = STATE(3533), + [sym_while_statement] = STATE(3533), + [sym_do_statement] = STATE(3533), + [sym_try_statement] = STATE(3533), + [sym_with_statement] = STATE(3533), + [sym_break_statement] = STATE(3533), + [sym_continue_statement] = STATE(3533), + [sym_debugger_statement] = STATE(3533), + [sym_return_statement] = STATE(3533), + [sym_throw_statement] = STATE(3533), + [sym_empty_statement] = STATE(3533), + [sym_labeled_statement] = STATE(3533), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [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(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14727,9 +15447,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14750,115 +15470,115 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, - [34] = { - [sym_export_statement] = STATE(661), - [sym__declaration] = STATE(661), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(661), - [sym_expression_statement] = STATE(661), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(661), - [sym_if_statement] = STATE(661), - [sym_switch_statement] = STATE(661), - [sym_for_statement] = STATE(661), - [sym_for_in_statement] = STATE(661), - [sym_while_statement] = STATE(661), - [sym_do_statement] = STATE(661), - [sym_try_statement] = STATE(661), - [sym_with_statement] = STATE(661), - [sym_break_statement] = STATE(661), - [sym_continue_statement] = STATE(661), - [sym_debugger_statement] = STATE(661), - [sym_return_statement] = STATE(661), - [sym_throw_statement] = STATE(661), - [sym_empty_statement] = STATE(661), - [sym_labeled_statement] = STATE(661), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [35] = { + [sym_export_statement] = STATE(715), + [sym__declaration] = STATE(715), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14869,9 +15589,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14892,95 +15612,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, - [35] = { - [sym_export_statement] = STATE(661), - [sym__declaration] = STATE(661), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(661), - [sym_expression_statement] = STATE(661), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(661), - [sym_if_statement] = STATE(661), - [sym_switch_statement] = STATE(661), - [sym_for_statement] = STATE(661), - [sym_for_in_statement] = STATE(661), - [sym_while_statement] = STATE(661), - [sym_do_statement] = STATE(661), - [sym_try_statement] = STATE(661), - [sym_with_statement] = STATE(661), - [sym_break_statement] = STATE(661), - [sym_continue_statement] = STATE(661), - [sym_debugger_statement] = STATE(661), - [sym_return_statement] = STATE(661), - [sym_throw_statement] = STATE(661), - [sym_empty_statement] = STATE(661), - [sym_labeled_statement] = STATE(661), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), + [36] = { + [sym_export_statement] = STATE(687), + [sym__declaration] = STATE(687), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(687), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(687), + [sym_if_statement] = STATE(687), + [sym_switch_statement] = STATE(687), + [sym_for_statement] = STATE(687), + [sym_for_in_statement] = STATE(687), + [sym_while_statement] = STATE(687), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(687), + [sym_with_statement] = STATE(687), + [sym_break_statement] = STATE(687), + [sym_continue_statement] = STATE(687), + [sym_debugger_statement] = STATE(687), + [sym_return_statement] = STATE(687), + [sym_throw_statement] = STATE(687), + [sym_empty_statement] = STATE(687), + [sym_labeled_statement] = STATE(687), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15052,219 +15772,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [36] = { - [sym_export_statement] = STATE(620), - [sym__declaration] = STATE(620), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(620), - [sym_expression_statement] = STATE(620), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(620), - [sym_if_statement] = STATE(620), - [sym_switch_statement] = STATE(620), - [sym_for_statement] = STATE(620), - [sym_for_in_statement] = STATE(620), - [sym_while_statement] = STATE(620), - [sym_do_statement] = STATE(620), - [sym_try_statement] = STATE(620), - [sym_with_statement] = STATE(620), - [sym_break_statement] = STATE(620), - [sym_continue_statement] = STATE(620), - [sym_debugger_statement] = STATE(620), - [sym_return_statement] = STATE(620), - [sym_throw_statement] = STATE(620), - [sym_empty_statement] = STATE(620), - [sym_labeled_statement] = STATE(620), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), - [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(403), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), - }, [37] = { - [sym_export_statement] = STATE(585), - [sym__declaration] = STATE(585), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(585), - [sym_expression_statement] = STATE(585), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(585), - [sym_if_statement] = STATE(585), - [sym_switch_statement] = STATE(585), - [sym_for_statement] = STATE(585), - [sym_for_in_statement] = STATE(585), - [sym_while_statement] = STATE(585), - [sym_do_statement] = STATE(585), - [sym_try_statement] = STATE(585), - [sym_with_statement] = STATE(585), - [sym_break_statement] = STATE(585), - [sym_continue_statement] = STATE(585), - [sym_debugger_statement] = STATE(585), - [sym_return_statement] = STATE(585), - [sym_throw_statement] = STATE(585), - [sym_empty_statement] = STATE(585), - [sym_labeled_statement] = STATE(585), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_export_statement] = STATE(680), + [sym__declaration] = STATE(680), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(680), + [sym_expression_statement] = STATE(680), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_switch_statement] = STATE(680), + [sym_for_statement] = STATE(680), + [sym_for_in_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_do_statement] = STATE(680), + [sym_try_statement] = STATE(680), + [sym_with_statement] = STATE(680), + [sym_break_statement] = STATE(680), + [sym_continue_statement] = STATE(680), + [sym_debugger_statement] = STATE(680), + [sym_return_statement] = STATE(680), + [sym_throw_statement] = STATE(680), + [sym_empty_statement] = STATE(680), + [sym_labeled_statement] = STATE(680), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15337,76 +15915,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [38] = { - [sym_export_statement] = STATE(599), - [sym__declaration] = STATE(599), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(599), - [sym_expression_statement] = STATE(599), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_switch_statement] = STATE(599), - [sym_for_statement] = STATE(599), - [sym_for_in_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_do_statement] = STATE(599), - [sym_try_statement] = STATE(599), - [sym_with_statement] = STATE(599), - [sym_break_statement] = STATE(599), - [sym_continue_statement] = STATE(599), - [sym_debugger_statement] = STATE(599), - [sym_return_statement] = STATE(599), - [sym_throw_statement] = STATE(599), - [sym_empty_statement] = STATE(599), - [sym_labeled_statement] = STATE(599), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_export_statement] = STATE(727), + [sym__declaration] = STATE(727), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(727), + [sym_expression_statement] = STATE(727), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(727), + [sym_if_statement] = STATE(727), + [sym_switch_statement] = STATE(727), + [sym_for_statement] = STATE(727), + [sym_for_in_statement] = STATE(727), + [sym_while_statement] = STATE(727), + [sym_do_statement] = STATE(727), + [sym_try_statement] = STATE(727), + [sym_with_statement] = STATE(727), + [sym_break_statement] = STATE(727), + [sym_continue_statement] = STATE(727), + [sym_debugger_statement] = STATE(727), + [sym_return_statement] = STATE(727), + [sym_throw_statement] = STATE(727), + [sym_empty_statement] = STATE(727), + [sym_labeled_statement] = STATE(727), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15479,76 +16057,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [39] = { - [sym_export_statement] = STATE(602), - [sym__declaration] = STATE(602), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(602), - [sym_expression_statement] = STATE(602), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(602), - [sym_if_statement] = STATE(602), - [sym_switch_statement] = STATE(602), - [sym_for_statement] = STATE(602), - [sym_for_in_statement] = STATE(602), - [sym_while_statement] = STATE(602), - [sym_do_statement] = STATE(602), - [sym_try_statement] = STATE(602), - [sym_with_statement] = STATE(602), - [sym_break_statement] = STATE(602), - [sym_continue_statement] = STATE(602), - [sym_debugger_statement] = STATE(602), - [sym_return_statement] = STATE(602), - [sym_throw_statement] = STATE(602), - [sym_empty_statement] = STATE(602), - [sym_labeled_statement] = STATE(602), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_export_statement] = STATE(658), + [sym__declaration] = STATE(658), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(658), + [sym_expression_statement] = STATE(658), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15621,96 +16199,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [40] = { - [sym_export_statement] = STATE(583), - [sym__declaration] = STATE(583), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(583), - [sym_expression_statement] = STATE(583), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(583), - [sym_if_statement] = STATE(583), - [sym_switch_statement] = STATE(583), - [sym_for_statement] = STATE(583), - [sym_for_in_statement] = STATE(583), - [sym_while_statement] = STATE(583), - [sym_do_statement] = STATE(583), - [sym_try_statement] = STATE(583), - [sym_with_statement] = STATE(583), - [sym_break_statement] = STATE(583), - [sym_continue_statement] = STATE(583), - [sym_debugger_statement] = STATE(583), - [sym_return_statement] = STATE(583), - [sym_throw_statement] = STATE(583), - [sym_empty_statement] = STATE(583), - [sym_labeled_statement] = STATE(583), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_export_statement] = STATE(727), + [sym__declaration] = STATE(727), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(727), + [sym_expression_statement] = STATE(727), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(727), + [sym_if_statement] = STATE(727), + [sym_switch_statement] = STATE(727), + [sym_for_statement] = STATE(727), + [sym_for_in_statement] = STATE(727), + [sym_while_statement] = STATE(727), + [sym_do_statement] = STATE(727), + [sym_try_statement] = STATE(727), + [sym_with_statement] = STATE(727), + [sym_break_statement] = STATE(727), + [sym_continue_statement] = STATE(727), + [sym_debugger_statement] = STATE(727), + [sym_return_statement] = STATE(727), + [sym_throw_statement] = STATE(727), + [sym_empty_statement] = STATE(727), + [sym_labeled_statement] = STATE(727), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [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(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15721,9 +16299,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -15744,95 +16322,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, [41] = { - [sym_export_statement] = STATE(3533), - [sym__declaration] = STATE(3533), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(3533), - [sym_expression_statement] = STATE(3533), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(3533), - [sym_if_statement] = STATE(3533), - [sym_switch_statement] = STATE(3533), - [sym_for_statement] = STATE(3533), - [sym_for_in_statement] = STATE(3533), - [sym_while_statement] = STATE(3533), - [sym_do_statement] = STATE(3533), - [sym_try_statement] = STATE(3533), - [sym_with_statement] = STATE(3533), - [sym_break_statement] = STATE(3533), - [sym_continue_statement] = STATE(3533), - [sym_debugger_statement] = STATE(3533), - [sym_return_statement] = STATE(3533), - [sym_throw_statement] = STATE(3533), - [sym_empty_statement] = STATE(3533), - [sym_labeled_statement] = STATE(3533), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), + [sym_export_statement] = STATE(715), + [sym__declaration] = STATE(715), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [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(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -15905,76 +16483,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(417), }, [42] = { - [sym_export_statement] = STATE(627), - [sym__declaration] = STATE(627), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(627), - [sym_expression_statement] = STATE(627), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(627), - [sym_if_statement] = STATE(627), - [sym_switch_statement] = STATE(627), - [sym_for_statement] = STATE(627), - [sym_for_in_statement] = STATE(627), - [sym_while_statement] = STATE(627), - [sym_do_statement] = STATE(627), - [sym_try_statement] = STATE(627), - [sym_with_statement] = STATE(627), - [sym_break_statement] = STATE(627), - [sym_continue_statement] = STATE(627), - [sym_debugger_statement] = STATE(627), - [sym_return_statement] = STATE(627), - [sym_throw_statement] = STATE(627), - [sym_empty_statement] = STATE(627), - [sym_labeled_statement] = STATE(627), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), + [sym_export_statement] = STATE(712), + [sym__declaration] = STATE(712), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(712), + [sym_expression_statement] = STATE(712), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(712), + [sym_if_statement] = STATE(712), + [sym_switch_statement] = STATE(712), + [sym_for_statement] = STATE(712), + [sym_for_in_statement] = STATE(712), + [sym_while_statement] = STATE(712), + [sym_do_statement] = STATE(712), + [sym_try_statement] = STATE(712), + [sym_with_statement] = STATE(712), + [sym_break_statement] = STATE(712), + [sym_continue_statement] = STATE(712), + [sym_debugger_statement] = STATE(712), + [sym_return_statement] = STATE(712), + [sym_throw_statement] = STATE(712), + [sym_empty_statement] = STATE(712), + [sym_labeled_statement] = STATE(712), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -16047,96 +16625,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [43] = { - [sym_export_statement] = STATE(599), - [sym__declaration] = STATE(599), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(599), - [sym_expression_statement] = STATE(599), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_switch_statement] = STATE(599), - [sym_for_statement] = STATE(599), - [sym_for_in_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_do_statement] = STATE(599), - [sym_try_statement] = STATE(599), - [sym_with_statement] = STATE(599), - [sym_break_statement] = STATE(599), - [sym_continue_statement] = STATE(599), - [sym_debugger_statement] = STATE(599), - [sym_return_statement] = STATE(599), - [sym_throw_statement] = STATE(599), - [sym_empty_statement] = STATE(599), - [sym_labeled_statement] = STATE(599), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [sym_export_statement] = STATE(711), + [sym__declaration] = STATE(711), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_for_in_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_try_statement] = STATE(711), + [sym_with_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_debugger_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_throw_statement] = STATE(711), + [sym_empty_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16147,9 +16725,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -16170,95 +16748,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, [44] = { - [sym_export_statement] = STATE(627), - [sym__declaration] = STATE(627), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(627), - [sym_expression_statement] = STATE(627), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(627), - [sym_if_statement] = STATE(627), - [sym_switch_statement] = STATE(627), - [sym_for_statement] = STATE(627), - [sym_for_in_statement] = STATE(627), - [sym_while_statement] = STATE(627), - [sym_do_statement] = STATE(627), - [sym_try_statement] = STATE(627), - [sym_with_statement] = STATE(627), - [sym_break_statement] = STATE(627), - [sym_continue_statement] = STATE(627), - [sym_debugger_statement] = STATE(627), - [sym_return_statement] = STATE(627), - [sym_throw_statement] = STATE(627), - [sym_empty_statement] = STATE(627), - [sym_labeled_statement] = STATE(627), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), + [sym_export_statement] = STATE(680), + [sym__declaration] = STATE(680), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(680), + [sym_expression_statement] = STATE(680), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(680), + [sym_if_statement] = STATE(680), + [sym_switch_statement] = STATE(680), + [sym_for_statement] = STATE(680), + [sym_for_in_statement] = STATE(680), + [sym_while_statement] = STATE(680), + [sym_do_statement] = STATE(680), + [sym_try_statement] = STATE(680), + [sym_with_statement] = STATE(680), + [sym_break_statement] = STATE(680), + [sym_continue_statement] = STATE(680), + [sym_debugger_statement] = STATE(680), + [sym_return_statement] = STATE(680), + [sym_throw_statement] = STATE(680), + [sym_empty_statement] = STATE(680), + [sym_labeled_statement] = STATE(680), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -16331,76 +16909,218 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(417), }, [45] = { - [sym_export_statement] = STATE(614), - [sym__declaration] = STATE(614), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(614), - [sym_expression_statement] = STATE(614), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(614), - [sym_if_statement] = STATE(614), - [sym_switch_statement] = STATE(614), - [sym_for_statement] = STATE(614), - [sym_for_in_statement] = STATE(614), - [sym_while_statement] = STATE(614), - [sym_do_statement] = STATE(614), - [sym_try_statement] = STATE(614), - [sym_with_statement] = STATE(614), - [sym_break_statement] = STATE(614), - [sym_continue_statement] = STATE(614), - [sym_debugger_statement] = STATE(614), - [sym_return_statement] = STATE(614), - [sym_throw_statement] = STATE(614), - [sym_empty_statement] = STATE(614), - [sym_labeled_statement] = STATE(614), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), + [sym_export_statement] = STATE(686), + [sym__declaration] = STATE(686), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(686), + [sym_expression_statement] = STATE(686), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(686), + [sym_if_statement] = STATE(686), + [sym_switch_statement] = STATE(686), + [sym_for_statement] = STATE(686), + [sym_for_in_statement] = STATE(686), + [sym_while_statement] = STATE(686), + [sym_do_statement] = STATE(686), + [sym_try_statement] = STATE(686), + [sym_with_statement] = STATE(686), + [sym_break_statement] = STATE(686), + [sym_continue_statement] = STATE(686), + [sym_debugger_statement] = STATE(686), + [sym_return_statement] = STATE(686), + [sym_throw_statement] = STATE(686), + [sym_empty_statement] = STATE(686), + [sym_labeled_statement] = STATE(686), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = 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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), + }, + [46] = { + [sym_export_statement] = STATE(687), + [sym__declaration] = STATE(687), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(687), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(687), + [sym_if_statement] = STATE(687), + [sym_switch_statement] = STATE(687), + [sym_for_statement] = STATE(687), + [sym_for_in_statement] = STATE(687), + [sym_while_statement] = STATE(687), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(687), + [sym_with_statement] = STATE(687), + [sym_break_statement] = STATE(687), + [sym_continue_statement] = STATE(687), + [sym_debugger_statement] = STATE(687), + [sym_return_statement] = STATE(687), + [sym_throw_statement] = STATE(687), + [sym_empty_statement] = STATE(687), + [sym_labeled_statement] = STATE(687), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(2049), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2946), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -16472,77 +17192,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [46] = { - [sym_export_statement] = STATE(642), - [sym__declaration] = STATE(642), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [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(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(111), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2545), + [47] = { + [sym_export_statement] = STATE(706), + [sym__declaration] = STATE(706), + [sym_import] = STATE(1608), + [sym_import_statement] = STATE(706), + [sym_expression_statement] = STATE(706), + [sym_variable_declaration] = STATE(669), + [sym_lexical_declaration] = STATE(669), + [sym_statement_block] = STATE(706), + [sym_if_statement] = STATE(706), + [sym_switch_statement] = STATE(706), + [sym_for_statement] = STATE(706), + [sym_for_in_statement] = STATE(706), + [sym_while_statement] = STATE(706), + [sym_do_statement] = STATE(706), + [sym_try_statement] = STATE(706), + [sym_with_statement] = STATE(706), + [sym_break_statement] = STATE(706), + [sym_continue_statement] = STATE(706), + [sym_debugger_statement] = STATE(706), + [sym_return_statement] = STATE(706), + [sym_throw_statement] = STATE(706), + [sym_empty_statement] = STATE(706), + [sym_labeled_statement] = STATE(706), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_class_declaration] = STATE(669), + [sym_function] = STATE(1608), + [sym_function_declaration] = STATE(669), + [sym_generator_function] = STATE(1608), + [sym_generator_function_declaration] = STATE(669), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(669), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(100), + [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(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2969), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -16614,220 +17334,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [47] = { - [sym_export_statement] = STATE(585), - [sym__declaration] = STATE(585), - [sym_import] = STATE(1811), - [sym_import_statement] = STATE(585), - [sym_expression_statement] = STATE(585), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_statement_block] = STATE(585), - [sym_if_statement] = STATE(585), - [sym_switch_statement] = STATE(585), - [sym_for_statement] = STATE(585), - [sym_for_in_statement] = STATE(585), - [sym_while_statement] = STATE(585), - [sym_do_statement] = STATE(585), - [sym_try_statement] = STATE(585), - [sym_with_statement] = STATE(585), - [sym_break_statement] = STATE(585), - [sym_continue_statement] = STATE(585), - [sym_debugger_statement] = STATE(585), - [sym_return_statement] = STATE(585), - [sym_throw_statement] = STATE(585), - [sym_empty_statement] = STATE(585), - [sym_labeled_statement] = STATE(585), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_class_declaration] = STATE(638), - [sym_function] = STATE(1811), - [sym_function_declaration] = STATE(638), - [sym_generator_function] = STATE(1811), - [sym_generator_function_declaration] = STATE(638), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_function_signature] = STATE(638), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(1577), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2582), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), - [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(403), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), - }, [48] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1432), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3060), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3635), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3062), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2212), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4005), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -16891,76 +17469,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [49] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1517), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3150), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3151), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2237), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4005), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -16975,7 +17554,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(501), + [anon_sym_RBRACK] = ACTIONS(449), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), @@ -17024,76 +17603,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [50] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1508), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3095), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3092), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2286), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3649), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3557), + [sym_optional_type] = STATE(3557), + [sym_rest_type] = STATE(3557), + [sym__tuple_type_member] = STATE(3557), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3742), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -17108,7 +17687,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(503), + [anon_sym_RBRACK] = ACTIONS(501), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), @@ -17157,76 +17736,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [51] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1531), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3203), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3204), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2231), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -17241,7 +17820,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(449), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), @@ -17290,76 +17869,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [52] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1508), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3095), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3092), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2286), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3649), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3742), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -17374,7 +17953,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(503), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), @@ -17423,76 +18002,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [53] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1519), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3060), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3062), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2286), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3649), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3742), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -17507,7 +18086,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(449), + [anon_sym_RBRACK] = ACTIONS(505), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), @@ -17556,76 +18135,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [54] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1508), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3095), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3092), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2286), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3649), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3742), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), @@ -17640,7 +18219,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(507), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), @@ -17689,82 +18268,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [55] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1508), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3095), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3092), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2335), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4005), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3557), + [sym_optional_type] = STATE(3557), + [sym_rest_type] = STATE(3557), + [sym__tuple_type_member] = STATE(3557), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), [anon_sym_namespace] = ACTIONS(429), [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(435), [anon_sym_import] = ACTIONS(437), @@ -17773,14 +18350,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(509), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), @@ -17822,103 +18399,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [56] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1517), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3150), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2202), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3581), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1628), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3263), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3417), + [sym_constructor_type] = STATE(3417), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3417), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3779), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3417), + [sym_intersection_type] = STATE(3417), + [sym_function_type] = STATE(3417), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3585), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(435), + [anon_sym_type] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(521), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(523), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(471), [anon_sym_delete] = ACTIONS(473), @@ -17928,109 +18503,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(483), - [sym_this] = ACTIONS(485), + [sym_number] = ACTIONS(541), + [sym_this] = ACTIONS(543), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(489), - [sym_false] = ACTIONS(489), + [sym_true] = ACTIONS(545), + [sym_false] = ACTIONS(545), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(491), - [anon_sym_number] = ACTIONS(491), - [anon_sym_boolean] = ACTIONS(491), - [anon_sym_string] = ACTIONS(491), - [anon_sym_symbol] = ACTIONS(491), - [sym_readonly] = ACTIONS(493), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(549), + [anon_sym_number] = ACTIONS(549), + [anon_sym_boolean] = ACTIONS(549), + [anon_sym_string] = ACTIONS(549), + [anon_sym_symbol] = ACTIONS(549), + [sym_readonly] = ACTIONS(551), [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(497), + [anon_sym_keyof] = ACTIONS(553), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [57] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1508), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3095), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3092), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2335), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4005), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3233), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [aux_sym_export_statement_repeat1] = STATE(3503), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), [anon_sym_namespace] = ACTIONS(429), [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(435), [anon_sym_import] = ACTIONS(437), @@ -18039,14 +18612,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(515), + [anon_sym_RBRACK] = ACTIONS(555), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), @@ -18088,365 +18661,716 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [58] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1508), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3095), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3199), - [sym_optional_type] = STATE(3199), - [sym_rest_type] = STATE(3199), - [sym__tuple_type_member] = STATE(3199), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3092), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2142), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1584), + [sym_array] = STATE(1585), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4280), + [sym_string] = STATE(1628), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3263), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3417), + [sym_constructor_type] = STATE(3417), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3417), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(407), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3779), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3417), + [sym_intersection_type] = STATE(3417), + [sym_function_type] = STATE(3417), + [aux_sym_export_statement_repeat1] = STATE(2366), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(435), + [anon_sym_namespace] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_type] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(563), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(565), [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(517), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(573), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(483), - [sym_this] = ACTIONS(485), + [sym_number] = ACTIONS(541), + [sym_this] = ACTIONS(587), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(489), - [sym_false] = ACTIONS(489), + [sym_true] = ACTIONS(545), + [sym_false] = ACTIONS(545), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(491), - [anon_sym_number] = ACTIONS(491), - [anon_sym_boolean] = ACTIONS(491), - [anon_sym_string] = ACTIONS(491), - [anon_sym_symbol] = ACTIONS(491), - [sym_readonly] = ACTIONS(493), + [anon_sym_static] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(589), + [anon_sym_private] = ACTIONS(589), + [anon_sym_protected] = ACTIONS(589), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(591), + [anon_sym_number] = ACTIONS(591), + [anon_sym_boolean] = ACTIONS(591), + [anon_sym_string] = ACTIONS(591), + [anon_sym_symbol] = ACTIONS(591), + [sym_readonly] = ACTIONS(593), [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(497), + [anon_sym_keyof] = ACTIONS(553), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [59] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1571), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3657), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2142), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1584), + [sym_array] = STATE(1585), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4280), + [sym_string] = STATE(1628), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3263), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3514), + [sym_constructor_type] = STATE(3514), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3514), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(407), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3779), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3514), + [sym_intersection_type] = STATE(3514), + [sym_function_type] = STATE(3514), + [aux_sym_export_statement_repeat1] = STATE(2366), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(435), + [anon_sym_namespace] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_type] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(563), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(565), [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(573), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(483), - [sym_this] = ACTIONS(485), + [sym_number] = ACTIONS(541), + [sym_this] = ACTIONS(587), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(489), - [sym_false] = ACTIONS(489), + [sym_true] = ACTIONS(545), + [sym_false] = ACTIONS(545), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(491), - [anon_sym_number] = ACTIONS(491), - [anon_sym_boolean] = ACTIONS(491), - [anon_sym_string] = ACTIONS(491), - [anon_sym_symbol] = ACTIONS(491), - [sym_readonly] = ACTIONS(493), + [anon_sym_static] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(589), + [anon_sym_private] = ACTIONS(589), + [anon_sym_protected] = ACTIONS(589), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(591), + [anon_sym_number] = ACTIONS(591), + [anon_sym_boolean] = ACTIONS(591), + [anon_sym_string] = ACTIONS(591), + [anon_sym_symbol] = ACTIONS(591), + [sym_readonly] = ACTIONS(593), [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(497), + [anon_sym_keyof] = ACTIONS(553), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [60] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1585), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3635), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(423), + [sym_template_string] = STATE(115), + [sym_arguments] = STATE(115), + [sym_type_arguments] = STATE(519), + [sym_call_type_arguments] = STATE(3328), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_export] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_default] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_as] = ACTIONS(599), + [anon_sym_namespace] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_type] = ACTIONS(597), + [anon_sym_typeof] = ACTIONS(597), + [anon_sym_import] = ACTIONS(597), + [anon_sym_var] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_await] = ACTIONS(597), + [anon_sym_in] = ACTIONS(599), + [anon_sym_while] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_debugger] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_function] = ACTIONS(597), + [anon_sym_EQ_GT] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_STAR_STAR_EQ] = ACTIONS(609), + [anon_sym_AMP_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(609), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_STAR_STAR] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_QMARK_QMARK] = ACTIONS(599), + [anon_sym_instanceof] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_null] = ACTIONS(597), + [sym_undefined] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_static] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_get] = ACTIONS(597), + [anon_sym_set] = ACTIONS(597), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(597), + [anon_sym_private] = ACTIONS(597), + [anon_sym_protected] = ACTIONS(597), + [anon_sym_module] = ACTIONS(597), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_extends] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [sym_readonly] = ACTIONS(597), + }, + [61] = { + [sym_object] = STATE(3171), + [sym_array] = STATE(3169), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(4123), + [sym_nested_type_identifier] = STATE(2506), + [sym__type] = STATE(3729), + [sym_constructor_type] = STATE(3729), + [sym__primary_type] = STATE(3454), + [sym_infer_type] = STATE(3729), + [sym_conditional_type] = STATE(3454), + [sym_generic_type] = STATE(3454), + [sym_type_query] = STATE(3454), + [sym_index_type_query] = STATE(3454), + [sym_lookup_type] = STATE(3454), + [sym_literal_type] = STATE(3454), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(3454), + [sym_flow_maybe_type] = STATE(3454), + [sym_parenthesized_type] = STATE(3454), + [sym_predefined_type] = STATE(3454), + [sym_call_type_arguments] = STATE(3522), + [sym_object_type] = STATE(3454), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(3454), + [sym__tuple_type_body] = STATE(541), + [sym_tuple_type] = STATE(3454), + [sym_union_type] = STATE(3729), + [sym_intersection_type] = STATE(3729), + [sym_function_type] = STATE(3729), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(615), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_async] = ACTIONS(615), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_new] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_void] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(665), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [anon_sym_declare] = ACTIONS(615), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(615), + [anon_sym_any] = ACTIONS(669), + [anon_sym_number] = ACTIONS(669), + [anon_sym_boolean] = ACTIONS(669), + [anon_sym_string] = ACTIONS(669), + [anon_sym_symbol] = ACTIONS(669), + [sym_readonly] = ACTIONS(671), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [62] = { + [sym_object] = STATE(3171), + [sym_array] = STATE(3169), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(4123), + [sym_nested_type_identifier] = STATE(2506), + [sym__type] = STATE(3729), + [sym_constructor_type] = STATE(3729), + [sym__primary_type] = STATE(3454), + [sym_infer_type] = STATE(3729), + [sym_conditional_type] = STATE(3454), + [sym_generic_type] = STATE(3454), + [sym_type_query] = STATE(3454), + [sym_index_type_query] = STATE(3454), + [sym_lookup_type] = STATE(3454), + [sym_literal_type] = STATE(3454), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(3454), + [sym_flow_maybe_type] = STATE(3454), + [sym_parenthesized_type] = STATE(3454), + [sym_predefined_type] = STATE(3454), + [sym_call_type_arguments] = STATE(3522), + [sym_object_type] = STATE(3454), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(3454), + [sym__tuple_type_body] = STATE(541), + [sym_tuple_type] = STATE(3454), + [sym_union_type] = STATE(3729), + [sym_intersection_type] = STATE(3729), + [sym_function_type] = STATE(3729), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(615), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_async] = ACTIONS(615), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_new] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_void] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(665), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [anon_sym_declare] = ACTIONS(615), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(615), + [anon_sym_any] = ACTIONS(669), + [anon_sym_number] = ACTIONS(669), + [anon_sym_boolean] = ACTIONS(669), + [anon_sym_string] = ACTIONS(669), + [anon_sym_symbol] = ACTIONS(669), + [sym_readonly] = ACTIONS(671), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [63] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2143), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1661), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3263), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2506), + [sym__type] = STATE(3301), + [sym_constructor_type] = STATE(3301), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3301), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3779), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3301), + [sym_intersection_type] = STATE(3301), + [sym_function_type] = STATE(3301), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(682), [anon_sym_export] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(427), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(435), + [anon_sym_typeof] = ACTIONS(686), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), [anon_sym_LPAREN] = ACTIONS(441), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(519), + [anon_sym_LBRACK] = ACTIONS(688), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_new] = ACTIONS(529), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(690), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(471), [anon_sym_delete] = ACTIONS(473), @@ -18456,11 +19380,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(483), - [sym_this] = ACTIONS(485), + [sym_number] = ACTIONS(692), + [sym_this] = ACTIONS(694), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(489), - [sym_false] = ACTIONS(489), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), @@ -18472,126 +19396,115 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(425), [anon_sym_protected] = ACTIONS(425), [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(491), - [anon_sym_number] = ACTIONS(491), - [anon_sym_boolean] = ACTIONS(491), - [anon_sym_string] = ACTIONS(491), - [anon_sym_symbol] = ACTIONS(491), + [anon_sym_any] = ACTIONS(698), + [anon_sym_number] = ACTIONS(698), + [anon_sym_boolean] = ACTIONS(698), + [anon_sym_string] = ACTIONS(698), + [anon_sym_symbol] = ACTIONS(698), [sym_readonly] = ACTIONS(493), [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(497), + [anon_sym_keyof] = ACTIONS(553), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [61] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1705), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3751), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(423), + [64] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2312), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(4099), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1439), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3097), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2541), + [sym__type] = STATE(2670), + [sym_constructor_type] = STATE(2670), + [sym__primary_type] = STATE(2585), + [sym_infer_type] = STATE(2670), + [sym_conditional_type] = STATE(2585), + [sym_generic_type] = STATE(2585), + [sym_type_query] = STATE(2585), + [sym_index_type_query] = STATE(2585), + [sym_lookup_type] = STATE(2585), + [sym_literal_type] = STATE(2585), + [sym__number] = STATE(2597), + [sym_existential_type] = STATE(2585), + [sym_flow_maybe_type] = STATE(2585), + [sym_parenthesized_type] = STATE(2585), + [sym_predefined_type] = STATE(2585), + [sym_type_arguments] = STATE(437), + [sym_object_type] = STATE(2585), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(2585), + [sym__tuple_type_body] = STATE(2566), + [sym_tuple_type] = STATE(2585), + [sym_union_type] = STATE(2670), + [sym_intersection_type] = STATE(2670), + [sym_function_type] = STATE(2670), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(700), [anon_sym_export] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(702), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(435), + [anon_sym_typeof] = ACTIONS(706), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(708), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(519), + [anon_sym_LBRACK] = ACTIONS(710), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_new] = ACTIONS(712), + [anon_sym_QMARK] = ACTIONS(714), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(720), [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), + [anon_sym_void] = ACTIONS(722), [anon_sym_delete] = ACTIONS(473), [anon_sym_PLUS_PLUS] = ACTIONS(475), [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(483), - [sym_this] = ACTIONS(485), + [sym_number] = ACTIONS(724), + [sym_this] = ACTIONS(726), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(489), - [sym_false] = ACTIONS(489), + [sym_true] = ACTIONS(728), + [sym_false] = ACTIONS(728), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), @@ -18603,114 +19516,341 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(425), [anon_sym_protected] = ACTIONS(425), [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(491), - [anon_sym_number] = ACTIONS(491), - [anon_sym_boolean] = ACTIONS(491), - [anon_sym_string] = ACTIONS(491), - [anon_sym_symbol] = ACTIONS(491), - [sym_readonly] = ACTIONS(493), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(497), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_any] = ACTIONS(730), + [anon_sym_number] = ACTIONS(730), + [anon_sym_boolean] = ACTIONS(730), + [anon_sym_string] = ACTIONS(730), + [anon_sym_symbol] = ACTIONS(730), + [sym_readonly] = ACTIONS(732), + [anon_sym_infer] = ACTIONS(734), + [anon_sym_keyof] = ACTIONS(736), + [anon_sym_LBRACE_PIPE] = ACTIONS(738), }, - [62] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1585), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3635), - [sym_string] = STATE(1918), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2685), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3199), - [sym_optional_type] = STATE(3199), - [sym_rest_type] = STATE(3199), - [sym__tuple_type_member] = STATE(3199), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3277), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(423), + [65] = { + [ts_builtin_sym_end] = ACTIONS(740), + [sym_identifier] = ACTIONS(742), + [anon_sym_export] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_default] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_as] = ACTIONS(744), + [anon_sym_namespace] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_type] = ACTIONS(742), + [anon_sym_typeof] = ACTIONS(742), + [anon_sym_import] = ACTIONS(742), + [anon_sym_var] = ACTIONS(742), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_else] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_switch] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_await] = ACTIONS(742), + [anon_sym_in] = ACTIONS(744), + [anon_sym_while] = ACTIONS(742), + [anon_sym_do] = ACTIONS(742), + [anon_sym_try] = ACTIONS(742), + [anon_sym_with] = ACTIONS(742), + [anon_sym_break] = ACTIONS(742), + [anon_sym_continue] = ACTIONS(742), + [anon_sym_debugger] = ACTIONS(742), + [anon_sym_return] = ACTIONS(742), + [anon_sym_throw] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_case] = ACTIONS(742), + [anon_sym_yield] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_class] = ACTIONS(742), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(742), + [anon_sym_QMARK_DOT] = ACTIONS(756), + [anon_sym_new] = ACTIONS(742), + [anon_sym_PLUS_EQ] = ACTIONS(756), + [anon_sym_DASH_EQ] = ACTIONS(756), + [anon_sym_STAR_EQ] = ACTIONS(756), + [anon_sym_SLASH_EQ] = ACTIONS(756), + [anon_sym_PERCENT_EQ] = ACTIONS(756), + [anon_sym_CARET_EQ] = ACTIONS(756), + [anon_sym_AMP_EQ] = ACTIONS(756), + [anon_sym_PIPE_EQ] = ACTIONS(756), + [anon_sym_GT_GT_EQ] = ACTIONS(756), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(756), + [anon_sym_LT_LT_EQ] = ACTIONS(756), + [anon_sym_STAR_STAR_EQ] = ACTIONS(756), + [anon_sym_AMP_AMP_EQ] = ACTIONS(756), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(756), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(756), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AMP_AMP] = ACTIONS(744), + [anon_sym_PIPE_PIPE] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_GT_GT_GT] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_QMARK_QMARK] = ACTIONS(744), + [anon_sym_instanceof] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_void] = ACTIONS(742), + [anon_sym_delete] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_DASH_DASH] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(749), + [sym_number] = ACTIONS(740), + [sym_this] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_undefined] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_static] = ACTIONS(742), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_get] = ACTIONS(742), + [anon_sym_set] = ACTIONS(742), + [anon_sym_declare] = ACTIONS(742), + [anon_sym_public] = ACTIONS(742), + [anon_sym_private] = ACTIONS(742), + [anon_sym_protected] = ACTIONS(742), + [anon_sym_module] = ACTIONS(742), + [anon_sym_any] = ACTIONS(742), + [anon_sym_number] = ACTIONS(742), + [anon_sym_boolean] = ACTIONS(742), + [anon_sym_string] = ACTIONS(742), + [anon_sym_symbol] = ACTIONS(742), + [anon_sym_interface] = ACTIONS(742), + [anon_sym_extends] = ACTIONS(742), + [anon_sym_enum] = ACTIONS(742), + [sym_readonly] = ACTIONS(742), + }, + [66] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1917), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_await] = ACTIONS(778), + [anon_sym_in] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(788), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [67] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2186), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_as] = ACTIONS(764), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(435), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(770), [anon_sym_await] = ACTIONS(443), + [anon_sym_in] = ACTIONS(764), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(764), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), + [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), [anon_sym_PLUS_PLUS] = ACTIONS(475), [anon_sym_DASH_DASH] = ACTIONS(475), @@ -18718,11 +19858,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(483), - [sym_this] = ACTIONS(485), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(489), - [sym_false] = ACTIONS(489), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), @@ -18734,7397 +19874,5590 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(425), [anon_sym_protected] = ACTIONS(425), [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(491), - [anon_sym_number] = ACTIONS(491), - [anon_sym_boolean] = ACTIONS(491), - [anon_sym_string] = ACTIONS(491), - [anon_sym_symbol] = ACTIONS(491), - [sym_readonly] = ACTIONS(493), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(497), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [63] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1390), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1732), - [sym_array] = STATE(1731), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3690), - [sym_string] = STATE(1832), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2831), - [sym_rest_parameter] = STATE(3142), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3428), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(3026), - [sym_intersection_type] = STATE(3026), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(533), + [68] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2176), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(816), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_in] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(75), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + [sym__automatic_semicolon] = ACTIONS(770), + }, + [69] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1792), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_in] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + [sym__automatic_semicolon] = ACTIONS(770), + }, + [70] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2030), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_await] = ACTIONS(874), + [anon_sym_in] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(764), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(553), - [sym_this] = ACTIONS(555), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(557), - [sym_false] = ACTIONS(557), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(561), - [anon_sym_number] = ACTIONS(561), - [anon_sym_boolean] = ACTIONS(561), - [anon_sym_string] = ACTIONS(561), - [anon_sym_symbol] = ACTIONS(561), - [sym_readonly] = ACTIONS(563), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [64] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1337), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1732), - [sym_array] = STATE(1731), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3544), - [sym_string] = STATE(1832), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2831), - [sym_rest_parameter] = STATE(3142), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3428), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(3026), - [sym_intersection_type] = STATE(3026), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(533), + [71] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2217), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_await] = ACTIONS(569), + [anon_sym_in] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(764), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(553), - [sym_this] = ACTIONS(555), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(557), - [sym_false] = ACTIONS(557), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(561), - [anon_sym_number] = ACTIONS(561), - [anon_sym_boolean] = ACTIONS(561), - [anon_sym_string] = ACTIONS(561), - [anon_sym_symbol] = ACTIONS(561), - [sym_readonly] = ACTIONS(563), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [65] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1333), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1732), - [sym_array] = STATE(1731), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3633), - [sym_string] = STATE(1832), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2831), - [sym_rest_parameter] = STATE(3142), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3428), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(3026), - [sym_intersection_type] = STATE(3026), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(533), + [72] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2118), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_in] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(764), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(788), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(553), - [sym_this] = ACTIONS(555), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(557), - [sym_false] = ACTIONS(557), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(561), - [anon_sym_number] = ACTIONS(561), - [anon_sym_boolean] = ACTIONS(561), - [anon_sym_string] = ACTIONS(561), - [anon_sym_symbol] = ACTIONS(561), - [sym_readonly] = ACTIONS(563), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = 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_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_implements] = ACTIONS(764), + [sym_readonly] = ACTIONS(906), }, - [66] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1333), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1732), - [sym_array] = STATE(1731), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3633), - [sym_string] = STATE(1832), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2831), - [sym_rest_parameter] = STATE(3142), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(2999), - [sym_constructor_type] = STATE(2999), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2999), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3428), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2999), - [sym_intersection_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [aux_sym_export_statement_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(533), + [73] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2014), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_in] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + [anon_sym_LBRACE_PIPE] = ACTIONS(770), + }, + [74] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2256), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_in] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(764), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(553), - [sym_this] = ACTIONS(555), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(557), - [sym_false] = ACTIONS(557), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(561), - [anon_sym_number] = ACTIONS(561), - [anon_sym_boolean] = ACTIONS(561), - [anon_sym_string] = ACTIONS(561), - [anon_sym_symbol] = ACTIONS(561), - [sym_readonly] = ACTIONS(563), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [anon_sym_implements] = ACTIONS(764), + [sym_readonly] = ACTIONS(982), + }, + [75] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2199), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(764), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_QMARK_DOT] = ACTIONS(770), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_GT_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_STAR_STAR] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ_EQ] = ACTIONS(770), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ_EQ] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(770), + [anon_sym_QMARK_QMARK] = ACTIONS(770), + [anon_sym_instanceof] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + [anon_sym_LBRACE_PIPE] = ACTIONS(770), + }, + [76] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(4123), + [sym_nested_type_identifier] = STATE(2506), + [sym__type] = STATE(3729), + [sym_constructor_type] = STATE(3729), + [sym__primary_type] = STATE(3454), + [sym_infer_type] = STATE(3729), + [sym_conditional_type] = STATE(3454), + [sym_generic_type] = STATE(3454), + [sym_type_query] = STATE(3454), + [sym_index_type_query] = STATE(3454), + [sym_lookup_type] = STATE(3454), + [sym_literal_type] = STATE(3454), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(3454), + [sym_flow_maybe_type] = STATE(3454), + [sym_parenthesized_type] = STATE(3454), + [sym_predefined_type] = STATE(3454), + [sym_call_type_arguments] = STATE(3522), + [sym_object_type] = STATE(3454), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(3454), + [sym__tuple_type_body] = STATE(541), + [sym_tuple_type] = STATE(3454), + [sym_union_type] = STATE(3729), + [sym_intersection_type] = STATE(3729), + [sym_function_type] = STATE(3729), + [sym_identifier] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_new] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_void] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1042), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), + [anon_sym_keyof] = ACTIONS(553), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [67] = { - [sym_type_arguments] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(567), - [sym_identifier] = ACTIONS(569), - [anon_sym_export] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_default] = ACTIONS(569), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_as] = ACTIONS(571), - [anon_sym_namespace] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_type] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(569), - [anon_sym_var] = ACTIONS(569), - [anon_sym_let] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_else] = ACTIONS(569), - [anon_sym_if] = ACTIONS(569), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_await] = ACTIONS(569), - [anon_sym_in] = ACTIONS(571), - [anon_sym_while] = ACTIONS(569), - [anon_sym_do] = ACTIONS(569), - [anon_sym_try] = ACTIONS(569), - [anon_sym_with] = ACTIONS(569), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_debugger] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_throw] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_case] = ACTIONS(569), - [anon_sym_yield] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(569), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(569), - [anon_sym_function] = ACTIONS(569), - [anon_sym_EQ_GT] = ACTIONS(579), - [anon_sym_QMARK_DOT] = ACTIONS(581), - [anon_sym_new] = ACTIONS(569), - [anon_sym_PLUS_EQ] = ACTIONS(583), - [anon_sym_DASH_EQ] = ACTIONS(583), - [anon_sym_STAR_EQ] = ACTIONS(583), - [anon_sym_SLASH_EQ] = ACTIONS(583), - [anon_sym_PERCENT_EQ] = ACTIONS(583), - [anon_sym_CARET_EQ] = ACTIONS(583), - [anon_sym_AMP_EQ] = ACTIONS(583), - [anon_sym_PIPE_EQ] = ACTIONS(583), - [anon_sym_GT_GT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT_EQ] = ACTIONS(583), - [anon_sym_STAR_STAR_EQ] = ACTIONS(583), - [anon_sym_AMP_AMP_EQ] = ACTIONS(583), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(583), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(571), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_STAR_STAR] = ACTIONS(571), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_EQ_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_QMARK_QMARK] = ACTIONS(571), - [anon_sym_instanceof] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_void] = ACTIONS(569), - [anon_sym_delete] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(567), - [sym_number] = ACTIONS(567), - [sym_this] = ACTIONS(569), - [sym_super] = ACTIONS(569), - [sym_true] = ACTIONS(569), - [sym_false] = ACTIONS(569), - [sym_null] = ACTIONS(569), - [sym_undefined] = ACTIONS(569), - [anon_sym_AT] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_abstract] = ACTIONS(569), - [anon_sym_get] = ACTIONS(569), - [anon_sym_set] = ACTIONS(569), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(569), - [anon_sym_private] = ACTIONS(569), - [anon_sym_protected] = ACTIONS(569), - [anon_sym_module] = ACTIONS(569), - [anon_sym_any] = ACTIONS(569), - [anon_sym_number] = ACTIONS(569), - [anon_sym_boolean] = ACTIONS(569), - [anon_sym_string] = ACTIONS(569), - [anon_sym_symbol] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(569), - [anon_sym_extends] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [sym_readonly] = ACTIONS(569), - }, - [68] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1423), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1890), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2831), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(2858), - [sym_constructor_type] = STATE(2858), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2858), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3428), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2858), - [sym_intersection_type] = STATE(2858), - [sym_function_type] = STATE(2858), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(587), - [anon_sym_export] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(591), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(597), - [sym_this] = ACTIONS(599), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [sym_readonly] = ACTIONS(493), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - }, - [69] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1485), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2745), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(2513), - [sym_constructor_type] = STATE(2513), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2513), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(309), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3376), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2513), - [sym_intersection_type] = STATE(2513), - [sym_function_type] = STATE(2513), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(605), - [anon_sym_export] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(657), - [sym_this] = ACTIONS(659), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(665), - [anon_sym_number] = ACTIONS(665), - [anon_sym_boolean] = ACTIONS(665), - [anon_sym_string] = ACTIONS(665), - [anon_sym_symbol] = ACTIONS(665), - [sym_readonly] = ACTIONS(667), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(669), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - }, - [70] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2745), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(2513), - [sym_constructor_type] = STATE(2513), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2513), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(427), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3376), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2513), - [sym_intersection_type] = STATE(2513), - [sym_function_type] = STATE(2513), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(671), - [anon_sym_export] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(679), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(697), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(699), - [sym_this] = ACTIONS(701), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(703), - [sym_false] = ACTIONS(703), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(705), - [anon_sym_number] = ACTIONS(705), - [anon_sym_boolean] = ACTIONS(705), - [anon_sym_string] = ACTIONS(705), - [anon_sym_symbol] = ACTIONS(705), - [sym_readonly] = ACTIONS(707), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(669), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - }, - [71] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1552), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1839), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2745), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(2513), - [sym_constructor_type] = STATE(2513), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2513), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(358), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3376), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2513), - [sym_intersection_type] = STATE(2513), - [sym_function_type] = STATE(2513), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(709), - [anon_sym_export] = ACTIONS(711), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(715), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(731), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(737), - [sym_this] = ACTIONS(739), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(741), - [sym_false] = ACTIONS(741), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(743), - [anon_sym_number] = ACTIONS(743), - [anon_sym_boolean] = ACTIONS(743), - [anon_sym_string] = ACTIONS(743), - [anon_sym_symbol] = ACTIONS(743), - [sym_readonly] = ACTIONS(745), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(669), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - }, - [72] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1307), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1308), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2745), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(2513), - [sym_constructor_type] = STATE(2513), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2513), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3376), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2513), - [sym_intersection_type] = STATE(2513), - [sym_function_type] = STATE(2513), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(747), - [anon_sym_export] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(751), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(755), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(759), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(763), - [sym_false] = ACTIONS(763), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(765), - [anon_sym_number] = ACTIONS(765), - [anon_sym_boolean] = ACTIONS(765), - [anon_sym_string] = ACTIONS(765), - [anon_sym_symbol] = ACTIONS(765), - [sym_readonly] = ACTIONS(493), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(669), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - }, - [73] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1598), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(3578), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1455), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2814), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2210), - [sym__type] = STATE(2307), - [sym_constructor_type] = STATE(2307), - [sym__primary_type] = STATE(2258), - [sym_infer_type] = STATE(2307), - [sym_conditional_type] = STATE(2258), - [sym_generic_type] = STATE(2258), - [sym_type_query] = STATE(2258), - [sym_index_type_query] = STATE(2258), - [sym_lookup_type] = STATE(2258), - [sym_literal_type] = STATE(2258), - [sym__number] = STATE(2255), - [sym_existential_type] = STATE(2258), - [sym_flow_maybe_type] = STATE(2258), - [sym_parenthesized_type] = STATE(2258), - [sym_predefined_type] = STATE(2258), - [sym_type_arguments] = STATE(392), - [sym_object_type] = STATE(2258), - [sym_type_parameters] = STATE(3335), - [sym_array_type] = STATE(2258), - [sym__tuple_type_body] = STATE(2247), - [sym_tuple_type] = STATE(2258), - [sym_union_type] = STATE(2307), - [sym_intersection_type] = STATE(2307), - [sym_function_type] = STATE(2307), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(767), - [anon_sym_export] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(789), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(791), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(795), - [sym_false] = ACTIONS(795), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(797), - [anon_sym_number] = ACTIONS(797), - [anon_sym_boolean] = ACTIONS(797), - [anon_sym_string] = ACTIONS(797), - [anon_sym_symbol] = ACTIONS(797), - [sym_readonly] = ACTIONS(799), - [anon_sym_infer] = ACTIONS(801), - [anon_sym_keyof] = ACTIONS(803), - [anon_sym_LBRACE_PIPE] = ACTIONS(805), - }, - [74] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1460), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1308), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2745), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(2513), - [sym_constructor_type] = STATE(2513), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2513), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(444), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3376), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2513), - [sym_intersection_type] = STATE(2513), - [sym_function_type] = STATE(2513), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(829), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(759), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(763), - [sym_false] = ACTIONS(763), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(835), - [anon_sym_number] = ACTIONS(835), - [anon_sym_boolean] = ACTIONS(835), - [anon_sym_string] = ACTIONS(835), - [anon_sym_symbol] = ACTIONS(835), - [sym_readonly] = ACTIONS(837), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(669), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - }, - [75] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1636), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1740), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2745), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(2513), - [sym_constructor_type] = STATE(2513), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2513), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_type_arguments] = STATE(315), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3376), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2513), - [sym_intersection_type] = STATE(2513), - [sym_function_type] = STATE(2513), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(845), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(861), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), + [77] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(4123), + [sym_nested_type_identifier] = STATE(2506), + [sym__type] = STATE(3729), + [sym_constructor_type] = STATE(3729), + [sym__primary_type] = STATE(3400), + [sym_infer_type] = STATE(3729), + [sym_conditional_type] = STATE(3400), + [sym_generic_type] = STATE(3400), + [sym_type_query] = STATE(3400), + [sym_index_type_query] = STATE(3400), + [sym_lookup_type] = STATE(3400), + [sym_literal_type] = STATE(3400), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(3400), + [sym_flow_maybe_type] = STATE(3400), + [sym_parenthesized_type] = STATE(3400), + [sym_predefined_type] = STATE(3400), + [sym_call_type_arguments] = STATE(3522), + [sym_object_type] = STATE(3400), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(3400), + [sym__tuple_type_body] = STATE(2584), + [sym_tuple_type] = STATE(3400), + [sym_union_type] = STATE(3729), + [sym_intersection_type] = STATE(3729), + [sym_function_type] = STATE(3729), + [sym_identifier] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_new] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_void] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(867), - [sym_this] = ACTIONS(869), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(871), - [sym_false] = ACTIONS(871), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - [sym_readonly] = ACTIONS(875), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1048), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(669), + [anon_sym_keyof] = ACTIONS(553), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [76] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1277), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_as] = ACTIONS(881), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_await] = ACTIONS(443), - [anon_sym_in] = ACTIONS(881), - [anon_sym_COLON] = ACTIONS(885), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_QMARK_DOT] = ACTIONS(885), - [anon_sym_new] = ACTIONS(895), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_QMARK_QMARK] = ACTIONS(885), - [anon_sym_instanceof] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), - }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_default] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_as] = ACTIONS(905), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_else] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(910), - [anon_sym_await] = ACTIONS(903), - [anon_sym_in] = ACTIONS(905), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_QMARK_DOT] = ACTIONS(917), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_STAR_STAR_EQ] = ACTIONS(917), - [anon_sym_AMP_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(917), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(917), - [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_GT_GT_GT] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(905), - [anon_sym_STAR_STAR] = ACTIONS(905), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_QMARK_QMARK] = ACTIONS(905), - [anon_sym_instanceof] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(910), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(910), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_extends] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), - }, [78] = { - [sym_object] = STATE(2679), - [sym_array] = STATE(2688), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_type] = ACTIONS(921), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_async] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(971), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [anon_sym_declare] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_any] = ACTIONS(975), - [anon_sym_number] = ACTIONS(975), - [anon_sym_boolean] = ACTIONS(975), - [anon_sym_string] = ACTIONS(975), - [anon_sym_symbol] = ACTIONS(975), - [sym_readonly] = ACTIONS(977), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [sym_template_string] = STATE(115), + [sym_arguments] = STATE(115), + [sym_call_type_arguments] = STATE(3328), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_export] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_default] = ACTIONS(597), + [anon_sym_as] = ACTIONS(599), + [anon_sym_namespace] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_type] = ACTIONS(597), + [anon_sym_typeof] = ACTIONS(597), + [anon_sym_import] = ACTIONS(597), + [anon_sym_var] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_await] = ACTIONS(597), + [anon_sym_in] = ACTIONS(599), + [anon_sym_while] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_debugger] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_function] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_new] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_STAR_STAR] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_QMARK_QMARK] = ACTIONS(611), + [anon_sym_instanceof] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_null] = ACTIONS(597), + [sym_undefined] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_static] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_get] = ACTIONS(597), + [anon_sym_set] = ACTIONS(597), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(597), + [anon_sym_private] = ACTIONS(597), + [anon_sym_protected] = ACTIONS(597), + [anon_sym_module] = ACTIONS(597), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_extends] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [sym_readonly] = ACTIONS(597), }, [79] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1344), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(981), - [anon_sym_as] = ACTIONS(881), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_in] = ACTIONS(881), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_QMARK_DOT] = ACTIONS(885), - [anon_sym_new] = ACTIONS(75), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_QMARK_QMARK] = ACTIONS(885), - [anon_sym_instanceof] = ACTIONS(881), - [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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - [sym__automatic_semicolon] = ACTIONS(885), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1054), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_namespace] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_type] = ACTIONS(1054), + [anon_sym_typeof] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_with] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_debugger] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_COLON] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_async] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_EQ_GT] = ACTIONS(1056), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_void] = ACTIONS(1054), + [anon_sym_delete] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1052), + [sym_number] = ACTIONS(1052), + [sym_this] = ACTIONS(1054), + [sym_super] = ACTIONS(1054), + [sym_true] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [sym_undefined] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_get] = ACTIONS(1054), + [anon_sym_set] = ACTIONS(1054), + [anon_sym_declare] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_protected] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_any] = ACTIONS(1054), + [anon_sym_number] = ACTIONS(1054), + [anon_sym_boolean] = ACTIONS(1054), + [anon_sym_string] = ACTIONS(1054), + [anon_sym_symbol] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_extends] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [sym_readonly] = ACTIONS(1054), }, [80] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1549), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_as] = ACTIONS(881), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_in] = ACTIONS(881), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_QMARK_DOT] = ACTIONS(885), - [anon_sym_new] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_QMARK_QMARK] = ACTIONS(885), - [anon_sym_instanceof] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - [sym__automatic_semicolon] = ACTIONS(885), + [sym_statement_block] = STATE(105), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1060), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [anon_sym_namespace] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1060), + [anon_sym_typeof] = ACTIONS(1060), + [anon_sym_import] = ACTIONS(1060), + [anon_sym_var] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_with] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_debugger] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_throw] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_yield] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1064), + [anon_sym_class] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1060), + [anon_sym_QMARK_DOT] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_AMP_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1060), + [anon_sym_GT_GT_GT] = ACTIONS(1058), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1060), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_STAR_STAR] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1058), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1058), + [anon_sym_QMARK_QMARK] = ACTIONS(1058), + [anon_sym_instanceof] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_void] = ACTIONS(1060), + [anon_sym_delete] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1058), + [sym_number] = ACTIONS(1058), + [sym_this] = ACTIONS(1060), + [sym_super] = ACTIONS(1060), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_abstract] = ACTIONS(1060), + [anon_sym_get] = ACTIONS(1060), + [anon_sym_set] = ACTIONS(1060), + [anon_sym_declare] = ACTIONS(1060), + [anon_sym_public] = ACTIONS(1060), + [anon_sym_private] = ACTIONS(1060), + [anon_sym_protected] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_any] = ACTIONS(1060), + [anon_sym_number] = ACTIONS(1060), + [anon_sym_boolean] = ACTIONS(1060), + [anon_sym_string] = ACTIONS(1060), + [anon_sym_symbol] = ACTIONS(1060), + [anon_sym_interface] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [sym_readonly] = ACTIONS(1060), + [sym__automatic_semicolon] = ACTIONS(1058), }, [81] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1437), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_as] = ACTIONS(881), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_in] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_QMARK_DOT] = ACTIONS(885), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_QMARK_QMARK] = ACTIONS(885), - [anon_sym_instanceof] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_implements] = ACTIONS(881), - [sym_readonly] = ACTIONS(809), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(1068), + [anon_sym_var] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_await] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_with] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_throw] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_yield] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_class] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(1068), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_QMARK_DOT] = ACTIONS(1072), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(1072), + [anon_sym_PIPE_PIPE] = ACTIONS(1072), + [anon_sym_GT_GT] = ACTIONS(1070), + [anon_sym_GT_GT_GT] = ACTIONS(1072), + [anon_sym_LT_LT] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1072), + [anon_sym_STAR_STAR] = ACTIONS(1072), + [anon_sym_LT_EQ] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1072), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1072), + [anon_sym_GT_EQ] = ACTIONS(1072), + [anon_sym_QMARK_QMARK] = ACTIONS(1072), + [anon_sym_instanceof] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1068), + [anon_sym_delete] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_number] = ACTIONS(1066), + [sym_this] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_undefined] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_abstract] = 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_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_interface] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [sym_readonly] = ACTIONS(1068), + [sym__automatic_semicolon] = ACTIONS(1074), }, [82] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1503), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_as] = ACTIONS(881), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_in] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_QMARK_DOT] = ACTIONS(885), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_QMARK_QMARK] = ACTIONS(885), - [anon_sym_instanceof] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - [anon_sym_LBRACE_PIPE] = ACTIONS(885), + [sym_statement_block] = STATE(105), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1060), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [anon_sym_namespace] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1060), + [anon_sym_typeof] = ACTIONS(1060), + [anon_sym_import] = ACTIONS(1060), + [anon_sym_var] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_with] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_debugger] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_throw] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_yield] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1060), + [anon_sym_QMARK_DOT] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_AMP_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1060), + [anon_sym_GT_GT_GT] = ACTIONS(1058), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1060), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_STAR_STAR] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1058), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1058), + [anon_sym_QMARK_QMARK] = ACTIONS(1058), + [anon_sym_instanceof] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_void] = ACTIONS(1060), + [anon_sym_delete] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1058), + [sym_number] = ACTIONS(1058), + [sym_this] = ACTIONS(1060), + [sym_super] = ACTIONS(1060), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_abstract] = ACTIONS(1060), + [anon_sym_get] = ACTIONS(1060), + [anon_sym_set] = ACTIONS(1060), + [anon_sym_declare] = ACTIONS(1060), + [anon_sym_public] = ACTIONS(1060), + [anon_sym_private] = ACTIONS(1060), + [anon_sym_protected] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_any] = ACTIONS(1060), + [anon_sym_number] = ACTIONS(1060), + [anon_sym_boolean] = ACTIONS(1060), + [anon_sym_string] = ACTIONS(1060), + [anon_sym_symbol] = ACTIONS(1060), + [anon_sym_interface] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [sym_readonly] = ACTIONS(1060), + [sym__automatic_semicolon] = ACTIONS(1058), }, [83] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1632), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(881), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_in] = ACTIONS(881), - [anon_sym_COLON] = ACTIONS(885), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_QMARK_DOT] = ACTIONS(885), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_QMARK_QMARK] = ACTIONS(885), - [anon_sym_instanceof] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [anon_sym_namespace] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_with] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_debugger] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_QMARK_DOT] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_GT_GT_GT] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_QMARK_QMARK] = ACTIONS(1076), + [anon_sym_instanceof] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_delete] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1076), + [sym_number] = ACTIONS(1076), + [sym_this] = ACTIONS(1078), + [sym_super] = ACTIONS(1078), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_protected] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_any] = ACTIONS(1078), + [anon_sym_number] = ACTIONS(1078), + [anon_sym_boolean] = ACTIONS(1078), + [anon_sym_string] = ACTIONS(1078), + [anon_sym_symbol] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [sym_readonly] = ACTIONS(1078), + [sym__automatic_semicolon] = ACTIONS(1076), }, [84] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1043), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_namespace] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_type] = ACTIONS(1082), + [anon_sym_typeof] = ACTIONS(1082), + [anon_sym_import] = ACTIONS(1082), + [anon_sym_var] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_with] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_debugger] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_throw] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_class] = ACTIONS(1082), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_QMARK_DOT] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_QMARK] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1080), + [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_GT_GT_GT] = ACTIONS(1080), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_STAR_STAR] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1080), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1080), + [anon_sym_GT_EQ] = ACTIONS(1080), + [anon_sym_QMARK_QMARK] = ACTIONS(1080), + [anon_sym_instanceof] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_void] = ACTIONS(1082), + [anon_sym_delete] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1080), + [sym_number] = ACTIONS(1080), + [sym_this] = ACTIONS(1082), + [sym_super] = ACTIONS(1082), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_undefined] = ACTIONS(1082), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_abstract] = ACTIONS(1082), + [anon_sym_get] = ACTIONS(1082), + [anon_sym_set] = ACTIONS(1082), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_public] = ACTIONS(1082), + [anon_sym_private] = ACTIONS(1082), + [anon_sym_protected] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_any] = ACTIONS(1082), + [anon_sym_number] = ACTIONS(1082), + [anon_sym_boolean] = ACTIONS(1082), + [anon_sym_string] = ACTIONS(1082), + [anon_sym_symbol] = ACTIONS(1082), + [anon_sym_interface] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [sym_readonly] = ACTIONS(1082), + [sym__automatic_semicolon] = ACTIONS(1080), }, [85] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_as] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1043), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - [sym__automatic_semicolon] = ACTIONS(961), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1088), + [anon_sym_namespace] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_type] = ACTIONS(1086), + [anon_sym_typeof] = ACTIONS(1086), + [anon_sym_import] = ACTIONS(1086), + [anon_sym_var] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_await] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_with] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_debugger] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_throw] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(1086), + [anon_sym_QMARK_DOT] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_GT_GT_GT] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_QMARK_QMARK] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_void] = ACTIONS(1086), + [anon_sym_delete] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1084), + [sym_number] = ACTIONS(1084), + [sym_this] = ACTIONS(1086), + [sym_super] = ACTIONS(1086), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_abstract] = ACTIONS(1086), + [anon_sym_get] = ACTIONS(1086), + [anon_sym_set] = ACTIONS(1086), + [anon_sym_declare] = ACTIONS(1086), + [anon_sym_public] = ACTIONS(1086), + [anon_sym_private] = ACTIONS(1086), + [anon_sym_protected] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1086), + [anon_sym_number] = ACTIONS(1086), + [anon_sym_boolean] = ACTIONS(1086), + [anon_sym_string] = ACTIONS(1086), + [anon_sym_symbol] = ACTIONS(1086), + [anon_sym_interface] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [sym_readonly] = ACTIONS(1086), + [sym__automatic_semicolon] = ACTIONS(1092), }, [86] = { - [sym_statement_block] = STATE(102), - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_default] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_namespace] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_type] = ACTIONS(1059), - [anon_sym_typeof] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1059), - [anon_sym_var] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_switch] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_await] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_with] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_debugger] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_throw] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1059), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_function] = ACTIONS(1059), - [anon_sym_QMARK_DOT] = ACTIONS(1057), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_GT_GT_GT] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1057), - [anon_sym_STAR_STAR] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_QMARK_QMARK] = ACTIONS(1057), - [anon_sym_instanceof] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_void] = ACTIONS(1059), - [anon_sym_delete] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_number] = ACTIONS(1057), - [sym_this] = ACTIONS(1059), - [sym_super] = ACTIONS(1059), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_undefined] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_static] = ACTIONS(1059), - [anon_sym_abstract] = ACTIONS(1059), - [anon_sym_get] = ACTIONS(1059), - [anon_sym_set] = ACTIONS(1059), - [anon_sym_declare] = ACTIONS(1059), - [anon_sym_public] = ACTIONS(1059), - [anon_sym_private] = ACTIONS(1059), - [anon_sym_protected] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_any] = ACTIONS(1059), - [anon_sym_number] = ACTIONS(1059), - [anon_sym_boolean] = ACTIONS(1059), - [anon_sym_string] = ACTIONS(1059), - [anon_sym_symbol] = ACTIONS(1059), - [anon_sym_interface] = ACTIONS(1059), - [anon_sym_enum] = ACTIONS(1059), - [sym_readonly] = ACTIONS(1059), - [sym__automatic_semicolon] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1096), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_as] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_COMMA] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_type] = ACTIONS(1096), + [anon_sym_typeof] = ACTIONS(1096), + [anon_sym_import] = ACTIONS(1096), + [anon_sym_var] = ACTIONS(1096), + [anon_sym_let] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_else] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [anon_sym_await] = ACTIONS(1096), + [anon_sym_in] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_try] = ACTIONS(1096), + [anon_sym_with] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_debugger] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_yield] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_DOT] = ACTIONS(1098), + [anon_sym_class] = ACTIONS(1096), + [anon_sym_async] = ACTIONS(1096), + [anon_sym_function] = ACTIONS(1096), + [anon_sym_QMARK_DOT] = ACTIONS(1100), + [anon_sym_new] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_GT_GT_GT] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1100), + [anon_sym_STAR_STAR] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1100), + [anon_sym_QMARK_QMARK] = ACTIONS(1100), + [anon_sym_instanceof] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_void] = ACTIONS(1096), + [anon_sym_delete] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1094), + [sym_number] = ACTIONS(1094), + [sym_this] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), + [sym_undefined] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_abstract] = ACTIONS(1096), + [anon_sym_get] = ACTIONS(1096), + [anon_sym_set] = ACTIONS(1096), + [anon_sym_declare] = ACTIONS(1096), + [anon_sym_public] = ACTIONS(1096), + [anon_sym_private] = ACTIONS(1096), + [anon_sym_protected] = ACTIONS(1096), + [anon_sym_module] = ACTIONS(1096), + [anon_sym_any] = ACTIONS(1096), + [anon_sym_number] = ACTIONS(1096), + [anon_sym_boolean] = ACTIONS(1096), + [anon_sym_string] = ACTIONS(1096), + [anon_sym_symbol] = ACTIONS(1096), + [anon_sym_interface] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [sym_readonly] = ACTIONS(1096), + [sym__automatic_semicolon] = ACTIONS(1102), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1067), - [anon_sym_as] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_var] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_debugger] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1067), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_QMARK_DOT] = ACTIONS(1069), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1067), - [anon_sym_AMP_AMP] = ACTIONS(1069), - [anon_sym_PIPE_PIPE] = ACTIONS(1069), - [anon_sym_GT_GT] = ACTIONS(1067), - [anon_sym_GT_GT_GT] = ACTIONS(1069), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1069), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1069), - [anon_sym_BANG_EQ] = ACTIONS(1067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_QMARK_QMARK] = ACTIONS(1069), - [anon_sym_instanceof] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_void] = ACTIONS(1065), - [anon_sym_delete] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_get] = ACTIONS(1065), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_declare] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_any] = ACTIONS(1065), - [anon_sym_number] = ACTIONS(1065), - [anon_sym_boolean] = ACTIONS(1065), - [anon_sym_string] = ACTIONS(1065), - [anon_sym_symbol] = ACTIONS(1065), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [sym_readonly] = ACTIONS(1065), - [sym__automatic_semicolon] = ACTIONS(1071), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [anon_sym_namespace] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_with] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_debugger] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_QMARK_DOT] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_GT_GT_GT] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_QMARK_QMARK] = ACTIONS(1076), + [anon_sym_instanceof] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_delete] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1076), + [sym_number] = ACTIONS(1076), + [sym_this] = ACTIONS(1078), + [sym_super] = ACTIONS(1078), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_protected] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_any] = ACTIONS(1078), + [anon_sym_number] = ACTIONS(1078), + [anon_sym_boolean] = ACTIONS(1078), + [anon_sym_string] = ACTIONS(1078), + [anon_sym_symbol] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [sym_readonly] = ACTIONS(1078), + [sym__automatic_semicolon] = ACTIONS(1104), }, [88] = { - [sym_statement_block] = STATE(102), - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_default] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_namespace] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_type] = ACTIONS(1059), - [anon_sym_typeof] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1059), - [anon_sym_var] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_switch] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_await] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_with] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_debugger] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_throw] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_class] = ACTIONS(1059), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_function] = ACTIONS(1059), - [anon_sym_QMARK_DOT] = ACTIONS(1057), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_GT_GT_GT] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1057), - [anon_sym_STAR_STAR] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_QMARK_QMARK] = ACTIONS(1057), - [anon_sym_instanceof] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_void] = ACTIONS(1059), - [anon_sym_delete] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_number] = ACTIONS(1057), - [sym_this] = ACTIONS(1059), - [sym_super] = ACTIONS(1059), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_undefined] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_static] = ACTIONS(1059), - [anon_sym_abstract] = ACTIONS(1059), - [anon_sym_get] = ACTIONS(1059), - [anon_sym_set] = ACTIONS(1059), - [anon_sym_declare] = ACTIONS(1059), - [anon_sym_public] = ACTIONS(1059), - [anon_sym_private] = ACTIONS(1059), - [anon_sym_protected] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_any] = ACTIONS(1059), - [anon_sym_number] = ACTIONS(1059), - [anon_sym_boolean] = ACTIONS(1059), - [anon_sym_string] = ACTIONS(1059), - [anon_sym_symbol] = ACTIONS(1059), - [anon_sym_interface] = ACTIONS(1059), - [anon_sym_enum] = ACTIONS(1059), - [sym_readonly] = ACTIONS(1059), - [sym__automatic_semicolon] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_export] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_as] = ACTIONS(1108), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_await] = ACTIONS(1108), + [anon_sym_in] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_debugger] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_function] = ACTIONS(1108), + [anon_sym_QMARK_DOT] = ACTIONS(1106), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1108), + [anon_sym_GT_GT_GT] = ACTIONS(1106), + [anon_sym_LT_LT] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1106), + [anon_sym_LT_EQ] = ACTIONS(1106), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1106), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1106), + [anon_sym_GT_EQ] = ACTIONS(1106), + [anon_sym_QMARK_QMARK] = ACTIONS(1106), + [anon_sym_instanceof] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_void] = ACTIONS(1108), + [anon_sym_delete] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1106), + [sym_number] = ACTIONS(1106), + [sym_this] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_get] = ACTIONS(1108), + [anon_sym_set] = ACTIONS(1108), + [anon_sym_declare] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_protected] = ACTIONS(1108), + [anon_sym_module] = ACTIONS(1108), + [anon_sym_any] = ACTIONS(1108), + [anon_sym_number] = ACTIONS(1108), + [anon_sym_boolean] = ACTIONS(1108), + [anon_sym_string] = ACTIONS(1108), + [anon_sym_symbol] = ACTIONS(1108), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [sym_readonly] = ACTIONS(1108), + [sym__automatic_semicolon] = ACTIONS(1106), }, [89] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_as] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_EQ_GT] = ACTIONS(1077), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1043), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), - [sym__automatic_semicolon] = ACTIONS(961), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_as] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_typeof] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(1112), + [anon_sym_var] = ACTIONS(1112), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_await] = ACTIONS(1112), + [anon_sym_in] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_with] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_debugger] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_throw] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1114), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1114), + [anon_sym_class] = ACTIONS(1112), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1112), + [anon_sym_QMARK_DOT] = ACTIONS(1116), + [anon_sym_new] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1116), + [anon_sym_PIPE_PIPE] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1114), + [anon_sym_GT_GT_GT] = ACTIONS(1116), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1116), + [anon_sym_STAR_STAR] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1116), + [anon_sym_BANG_EQ] = ACTIONS(1114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1116), + [anon_sym_QMARK_QMARK] = ACTIONS(1116), + [anon_sym_instanceof] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_void] = ACTIONS(1112), + [anon_sym_delete] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1110), + [sym_number] = ACTIONS(1110), + [sym_this] = ACTIONS(1112), + [sym_super] = ACTIONS(1112), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_abstract] = ACTIONS(1112), + [anon_sym_get] = ACTIONS(1112), + [anon_sym_set] = ACTIONS(1112), + [anon_sym_declare] = ACTIONS(1112), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_private] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), + [anon_sym_module] = ACTIONS(1112), + [anon_sym_any] = ACTIONS(1112), + [anon_sym_number] = ACTIONS(1112), + [anon_sym_boolean] = ACTIONS(1112), + [anon_sym_string] = ACTIONS(1112), + [anon_sym_symbol] = ACTIONS(1112), + [anon_sym_interface] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [sym_readonly] = ACTIONS(1112), + [sym__automatic_semicolon] = ACTIONS(1118), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(1079), - [sym_identifier] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1081), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_as] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_typeof] = ACTIONS(1081), - [anon_sym_import] = ACTIONS(1081), - [anon_sym_var] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_const] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_if] = ACTIONS(1081), - [anon_sym_switch] = ACTIONS(1081), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_in] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_with] = ACTIONS(1081), - [anon_sym_break] = ACTIONS(1081), - [anon_sym_continue] = ACTIONS(1081), - [anon_sym_debugger] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(1081), - [anon_sym_throw] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1079), - [anon_sym_case] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1081), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_class] = ACTIONS(1081), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(1081), - [anon_sym_QMARK_DOT] = ACTIONS(1079), - [anon_sym_new] = ACTIONS(1081), - [anon_sym_QMARK] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [anon_sym_GT_GT] = ACTIONS(1081), - [anon_sym_GT_GT_GT] = ACTIONS(1079), - [anon_sym_LT_LT] = ACTIONS(1079), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_CARET] = ACTIONS(1079), - [anon_sym_PIPE] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_PERCENT] = ACTIONS(1079), - [anon_sym_STAR_STAR] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1079), - [anon_sym_BANG_EQ] = ACTIONS(1081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_QMARK_QMARK] = ACTIONS(1079), - [anon_sym_instanceof] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_void] = ACTIONS(1081), - [anon_sym_delete] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1079), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1079), - [sym_number] = ACTIONS(1079), - [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(1081), - [sym_true] = ACTIONS(1081), - [sym_false] = ACTIONS(1081), - [sym_null] = ACTIONS(1081), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1079), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_abstract] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_interface] = ACTIONS(1081), - [anon_sym_enum] = ACTIONS(1081), - [sym_readonly] = ACTIONS(1081), - [sym__automatic_semicolon] = ACTIONS(1079), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_as] = ACTIONS(1124), + [anon_sym_namespace] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_type] = ACTIONS(1122), + [anon_sym_typeof] = ACTIONS(1122), + [anon_sym_import] = ACTIONS(1122), + [anon_sym_var] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_in] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_try] = ACTIONS(1122), + [anon_sym_with] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_debugger] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_throw] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1124), + [anon_sym_class] = ACTIONS(1122), + [anon_sym_async] = ACTIONS(1122), + [anon_sym_function] = ACTIONS(1122), + [anon_sym_QMARK_DOT] = ACTIONS(1126), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_GT_GT_GT] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_CARET] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PERCENT] = ACTIONS(1126), + [anon_sym_STAR_STAR] = ACTIONS(1126), + [anon_sym_LT_EQ] = ACTIONS(1126), + [anon_sym_EQ_EQ] = ACTIONS(1124), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1126), + [anon_sym_BANG_EQ] = ACTIONS(1124), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1126), + [anon_sym_GT_EQ] = ACTIONS(1126), + [anon_sym_QMARK_QMARK] = ACTIONS(1126), + [anon_sym_instanceof] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1122), + [anon_sym_delete] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [sym_this] = ACTIONS(1122), + [sym_super] = ACTIONS(1122), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_abstract] = ACTIONS(1122), + [anon_sym_get] = ACTIONS(1122), + [anon_sym_set] = ACTIONS(1122), + [anon_sym_declare] = ACTIONS(1122), + [anon_sym_public] = ACTIONS(1122), + [anon_sym_private] = ACTIONS(1122), + [anon_sym_protected] = ACTIONS(1122), + [anon_sym_module] = ACTIONS(1122), + [anon_sym_any] = ACTIONS(1122), + [anon_sym_number] = ACTIONS(1122), + [anon_sym_boolean] = ACTIONS(1122), + [anon_sym_string] = ACTIONS(1122), + [anon_sym_symbol] = ACTIONS(1122), + [anon_sym_interface] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [sym_readonly] = ACTIONS(1122), + [sym__automatic_semicolon] = ACTIONS(1128), }, [91] = { - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_default] = ACTIONS(1085), - [anon_sym_as] = ACTIONS(1087), - [anon_sym_namespace] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1083), - [anon_sym_type] = ACTIONS(1085), - [anon_sym_typeof] = ACTIONS(1085), - [anon_sym_import] = ACTIONS(1085), - [anon_sym_var] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_else] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_in] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_with] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_debugger] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1085), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_async] = ACTIONS(1085), - [anon_sym_function] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1089), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_QMARK] = ACTIONS(1087), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_GT_GT_GT] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_PERCENT] = ACTIONS(1089), - [anon_sym_STAR_STAR] = ACTIONS(1089), - [anon_sym_LT_EQ] = ACTIONS(1089), - [anon_sym_EQ_EQ] = ACTIONS(1087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1089), - [anon_sym_BANG_EQ] = ACTIONS(1087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1089), - [anon_sym_QMARK_QMARK] = ACTIONS(1089), - [anon_sym_instanceof] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_void] = ACTIONS(1085), - [anon_sym_delete] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1083), - [anon_sym_SQUOTE] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1083), - [sym_number] = ACTIONS(1083), - [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(1085), - [sym_true] = ACTIONS(1085), - [sym_false] = ACTIONS(1085), - [sym_null] = ACTIONS(1085), - [sym_undefined] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [anon_sym_declare] = ACTIONS(1085), - [anon_sym_public] = ACTIONS(1085), - [anon_sym_private] = ACTIONS(1085), - [anon_sym_protected] = ACTIONS(1085), - [anon_sym_module] = ACTIONS(1085), - [anon_sym_any] = ACTIONS(1085), - [anon_sym_number] = ACTIONS(1085), - [anon_sym_boolean] = ACTIONS(1085), - [anon_sym_string] = ACTIONS(1085), - [anon_sym_symbol] = ACTIONS(1085), - [anon_sym_interface] = ACTIONS(1085), - [anon_sym_enum] = ACTIONS(1085), - [sym_readonly] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(1091), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_as] = ACTIONS(1134), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1132), + [anon_sym_typeof] = ACTIONS(1132), + [anon_sym_import] = ACTIONS(1132), + [anon_sym_var] = ACTIONS(1132), + [anon_sym_let] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_else] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_await] = ACTIONS(1132), + [anon_sym_in] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_try] = ACTIONS(1132), + [anon_sym_with] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_throw] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(1134), + [anon_sym_class] = ACTIONS(1132), + [anon_sym_async] = ACTIONS(1132), + [anon_sym_function] = ACTIONS(1132), + [anon_sym_QMARK_DOT] = ACTIONS(1136), + [anon_sym_new] = ACTIONS(1132), + [anon_sym_QMARK] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_PIPE_PIPE] = ACTIONS(1136), + [anon_sym_GT_GT] = ACTIONS(1134), + [anon_sym_GT_GT_GT] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PERCENT] = ACTIONS(1136), + [anon_sym_STAR_STAR] = ACTIONS(1136), + [anon_sym_LT_EQ] = ACTIONS(1136), + [anon_sym_EQ_EQ] = ACTIONS(1134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1136), + [anon_sym_BANG_EQ] = ACTIONS(1134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1136), + [anon_sym_GT_EQ] = ACTIONS(1136), + [anon_sym_QMARK_QMARK] = ACTIONS(1136), + [anon_sym_instanceof] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [sym_this] = ACTIONS(1132), + [sym_super] = ACTIONS(1132), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [sym_undefined] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_abstract] = ACTIONS(1132), + [anon_sym_get] = ACTIONS(1132), + [anon_sym_set] = ACTIONS(1132), + [anon_sym_declare] = ACTIONS(1132), + [anon_sym_public] = ACTIONS(1132), + [anon_sym_private] = ACTIONS(1132), + [anon_sym_protected] = ACTIONS(1132), + [anon_sym_module] = ACTIONS(1132), + [anon_sym_any] = ACTIONS(1132), + [anon_sym_number] = ACTIONS(1132), + [anon_sym_boolean] = ACTIONS(1132), + [anon_sym_string] = ACTIONS(1132), + [anon_sym_symbol] = ACTIONS(1132), + [anon_sym_interface] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [sym_readonly] = ACTIONS(1132), + [sym__automatic_semicolon] = ACTIONS(1138), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_as] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_COMMA] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_QMARK_DOT] = ACTIONS(1099), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1099), - [anon_sym_PIPE_PIPE] = ACTIONS(1099), - [anon_sym_GT_GT] = ACTIONS(1097), - [anon_sym_GT_GT_GT] = ACTIONS(1099), - [anon_sym_LT_LT] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1099), - [anon_sym_STAR_STAR] = ACTIONS(1099), - [anon_sym_LT_EQ] = ACTIONS(1099), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1099), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1099), - [anon_sym_QMARK_QMARK] = ACTIONS(1099), - [anon_sym_instanceof] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), - [sym__automatic_semicolon] = ACTIONS(1101), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_export] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(1142), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_COMMA] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_typeof] = ACTIONS(1142), + [anon_sym_import] = ACTIONS(1142), + [anon_sym_var] = ACTIONS(1142), + [anon_sym_let] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_await] = ACTIONS(1142), + [anon_sym_in] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_with] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_debugger] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_throw] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_GT] = ACTIONS(1142), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(1142), + [anon_sym_class] = ACTIONS(1142), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1142), + [anon_sym_QMARK_DOT] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_QMARK] = ACTIONS(1142), + [anon_sym_AMP_AMP] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1142), + [anon_sym_GT_GT_GT] = ACTIONS(1140), + [anon_sym_LT_LT] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1140), + [anon_sym_STAR_STAR] = ACTIONS(1140), + [anon_sym_LT_EQ] = ACTIONS(1140), + [anon_sym_EQ_EQ] = ACTIONS(1142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1140), + [anon_sym_BANG_EQ] = ACTIONS(1142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1140), + [anon_sym_GT_EQ] = ACTIONS(1140), + [anon_sym_QMARK_QMARK] = ACTIONS(1140), + [anon_sym_instanceof] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_void] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1140), + [sym_number] = ACTIONS(1140), + [sym_this] = ACTIONS(1142), + [sym_super] = ACTIONS(1142), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_abstract] = ACTIONS(1142), + [anon_sym_get] = ACTIONS(1142), + [anon_sym_set] = ACTIONS(1142), + [anon_sym_declare] = ACTIONS(1142), + [anon_sym_public] = ACTIONS(1142), + [anon_sym_private] = ACTIONS(1142), + [anon_sym_protected] = ACTIONS(1142), + [anon_sym_module] = ACTIONS(1142), + [anon_sym_any] = ACTIONS(1142), + [anon_sym_number] = ACTIONS(1142), + [anon_sym_boolean] = ACTIONS(1142), + [anon_sym_string] = ACTIONS(1142), + [anon_sym_symbol] = ACTIONS(1142), + [anon_sym_interface] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [sym_readonly] = ACTIONS(1142), + [sym__automatic_semicolon] = ACTIONS(1140), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_identifier] = ACTIONS(1105), - [anon_sym_export] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_as] = ACTIONS(1105), - [anon_sym_namespace] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_type] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(1105), - [anon_sym_var] = ACTIONS(1105), - [anon_sym_let] = ACTIONS(1105), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1105), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_with] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_debugger] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_throw] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_case] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_async] = ACTIONS(1105), - [anon_sym_function] = ACTIONS(1105), - [anon_sym_QMARK_DOT] = ACTIONS(1103), - [anon_sym_new] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_GT_GT_GT] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1103), - [anon_sym_STAR_STAR] = ACTIONS(1103), - [anon_sym_LT_EQ] = ACTIONS(1103), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1103), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1103), - [anon_sym_GT_EQ] = ACTIONS(1103), - [anon_sym_QMARK_QMARK] = ACTIONS(1103), - [anon_sym_instanceof] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1103), - [sym_number] = ACTIONS(1103), - [sym_this] = ACTIONS(1105), - [sym_super] = ACTIONS(1105), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_null] = ACTIONS(1105), - [sym_undefined] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_abstract] = ACTIONS(1105), - [anon_sym_get] = ACTIONS(1105), - [anon_sym_set] = ACTIONS(1105), - [anon_sym_declare] = ACTIONS(1105), - [anon_sym_public] = ACTIONS(1105), - [anon_sym_private] = ACTIONS(1105), - [anon_sym_protected] = ACTIONS(1105), - [anon_sym_module] = ACTIONS(1105), - [anon_sym_any] = ACTIONS(1105), - [anon_sym_number] = ACTIONS(1105), - [anon_sym_boolean] = ACTIONS(1105), - [anon_sym_string] = ACTIONS(1105), - [anon_sym_symbol] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [sym_readonly] = ACTIONS(1105), - [sym__automatic_semicolon] = ACTIONS(1103), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_as] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_typeof] = ACTIONS(1146), + [anon_sym_import] = ACTIONS(1146), + [anon_sym_var] = ACTIONS(1146), + [anon_sym_let] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_await] = ACTIONS(1146), + [anon_sym_in] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1146), + [anon_sym_with] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_debugger] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_DOT] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(1146), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(1146), + [anon_sym_QMARK_DOT] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1144), + [anon_sym_PIPE_PIPE] = ACTIONS(1144), + [anon_sym_GT_GT] = ACTIONS(1146), + [anon_sym_GT_GT_GT] = ACTIONS(1144), + [anon_sym_LT_LT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_CARET] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PERCENT] = ACTIONS(1144), + [anon_sym_STAR_STAR] = ACTIONS(1144), + [anon_sym_LT_EQ] = ACTIONS(1144), + [anon_sym_EQ_EQ] = ACTIONS(1146), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1144), + [anon_sym_BANG_EQ] = ACTIONS(1146), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1144), + [anon_sym_GT_EQ] = ACTIONS(1144), + [anon_sym_QMARK_QMARK] = ACTIONS(1144), + [anon_sym_instanceof] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_void] = ACTIONS(1146), + [anon_sym_delete] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1144), + [sym_this] = ACTIONS(1146), + [sym_super] = ACTIONS(1146), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_abstract] = ACTIONS(1146), + [anon_sym_get] = ACTIONS(1146), + [anon_sym_set] = ACTIONS(1146), + [anon_sym_declare] = ACTIONS(1146), + [anon_sym_public] = ACTIONS(1146), + [anon_sym_private] = ACTIONS(1146), + [anon_sym_protected] = ACTIONS(1146), + [anon_sym_module] = ACTIONS(1146), + [anon_sym_any] = ACTIONS(1146), + [anon_sym_number] = ACTIONS(1146), + [anon_sym_boolean] = ACTIONS(1146), + [anon_sym_string] = ACTIONS(1146), + [anon_sym_symbol] = ACTIONS(1146), + [anon_sym_interface] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [sym_readonly] = ACTIONS(1146), + [sym__automatic_semicolon] = ACTIONS(1144), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1109), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_default] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_COMMA] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_typeof] = ACTIONS(1109), - [anon_sym_import] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_switch] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_with] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_debugger] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_throw] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_class] = ACTIONS(1109), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1109), - [anon_sym_QMARK_DOT] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_GT_GT_GT] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_PERCENT] = ACTIONS(1107), - [anon_sym_STAR_STAR] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1107), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1107), - [anon_sym_QMARK_QMARK] = ACTIONS(1107), - [anon_sym_instanceof] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1109), - [anon_sym_delete] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1107), - [sym_number] = ACTIONS(1107), - [sym_this] = ACTIONS(1109), - [sym_super] = ACTIONS(1109), - [sym_true] = ACTIONS(1109), - [sym_false] = ACTIONS(1109), - [sym_null] = ACTIONS(1109), - [sym_undefined] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1107), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_abstract] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_interface] = ACTIONS(1109), - [anon_sym_enum] = ACTIONS(1109), - [sym_readonly] = ACTIONS(1109), - [sym__automatic_semicolon] = ACTIONS(1107), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_export] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_typeof] = ACTIONS(1150), + [anon_sym_import] = ACTIONS(1150), + [anon_sym_var] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_in] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1150), + [anon_sym_with] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_debugger] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_throw] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1150), + [anon_sym_DOT] = ACTIONS(1152), + [anon_sym_class] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_QMARK_DOT] = ACTIONS(1154), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE_PIPE] = ACTIONS(1154), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_GT_GT_GT] = ACTIONS(1154), + [anon_sym_LT_LT] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_CARET] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PERCENT] = ACTIONS(1154), + [anon_sym_STAR_STAR] = ACTIONS(1154), + [anon_sym_LT_EQ] = ACTIONS(1154), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1154), + [anon_sym_BANG_EQ] = ACTIONS(1152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1154), + [anon_sym_GT_EQ] = ACTIONS(1154), + [anon_sym_QMARK_QMARK] = ACTIONS(1154), + [anon_sym_instanceof] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1150), + [anon_sym_delete] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1148), + [sym_number] = ACTIONS(1148), + [sym_this] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_abstract] = ACTIONS(1150), + [anon_sym_get] = ACTIONS(1150), + [anon_sym_set] = ACTIONS(1150), + [anon_sym_declare] = ACTIONS(1150), + [anon_sym_public] = ACTIONS(1150), + [anon_sym_private] = ACTIONS(1150), + [anon_sym_protected] = ACTIONS(1150), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1150), + [anon_sym_number] = ACTIONS(1150), + [anon_sym_boolean] = ACTIONS(1150), + [anon_sym_string] = ACTIONS(1150), + [anon_sym_symbol] = ACTIONS(1150), + [anon_sym_interface] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [sym_readonly] = ACTIONS(1150), + [sym__automatic_semicolon] = ACTIONS(1156), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_default] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_namespace] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_var] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_switch] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_debugger] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_throw] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_case] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_class] = ACTIONS(1113), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(1113), - [anon_sym_QMARK_DOT] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_GT_GT] = ACTIONS(1113), - [anon_sym_GT_GT_GT] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_PERCENT] = ACTIONS(1111), - [anon_sym_STAR_STAR] = ACTIONS(1111), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_QMARK_QMARK] = ACTIONS(1111), - [anon_sym_instanceof] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_delete] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1111), - [sym_this] = ACTIONS(1113), - [sym_super] = ACTIONS(1113), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_null] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1111), - [anon_sym_static] = ACTIONS(1113), - [anon_sym_abstract] = ACTIONS(1113), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1113), - [anon_sym_declare] = ACTIONS(1113), - [anon_sym_public] = ACTIONS(1113), - [anon_sym_private] = ACTIONS(1113), - [anon_sym_protected] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_any] = ACTIONS(1113), - [anon_sym_number] = ACTIONS(1113), - [anon_sym_boolean] = ACTIONS(1113), - [anon_sym_string] = ACTIONS(1113), - [anon_sym_symbol] = ACTIONS(1113), - [anon_sym_interface] = ACTIONS(1113), - [anon_sym_enum] = ACTIONS(1113), - [sym_readonly] = ACTIONS(1113), - [sym__automatic_semicolon] = ACTIONS(1111), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_as] = ACTIONS(1162), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_COMMA] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_import] = ACTIONS(1160), + [anon_sym_var] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_else] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_await] = ACTIONS(1160), + [anon_sym_in] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_with] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_debugger] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_QMARK_DOT] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_GT_GT_GT] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_PERCENT] = ACTIONS(1164), + [anon_sym_STAR_STAR] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_QMARK_QMARK] = ACTIONS(1164), + [anon_sym_instanceof] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1158), + [anon_sym_void] = ACTIONS(1160), + [anon_sym_delete] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_number] = ACTIONS(1158), + [sym_this] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), + [sym_true] = ACTIONS(1160), + [sym_false] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_interface] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [sym_readonly] = ACTIONS(1160), + [sym__automatic_semicolon] = ACTIONS(1166), }, [96] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2963), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2963), - [sym_generic_type] = STATE(2963), - [sym_type_query] = STATE(2963), - [sym_index_type_query] = STATE(2963), - [sym_lookup_type] = STATE(2963), - [sym_literal_type] = STATE(2963), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2963), - [sym_flow_maybe_type] = STATE(2963), - [sym_parenthesized_type] = STATE(2963), - [sym_predefined_type] = STATE(2963), - [sym_object_type] = STATE(2963), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2963), - [sym__tuple_type_body] = STATE(2257), - [sym_tuple_type] = STATE(2963), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1117), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), + [anon_sym_export] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_as] = ACTIONS(1172), + [anon_sym_namespace] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(1170), + [anon_sym_var] = ACTIONS(1170), + [anon_sym_let] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1170), + [anon_sym_in] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_try] = ACTIONS(1170), + [anon_sym_with] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_debugger] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_throw] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_GT] = ACTIONS(1172), + [anon_sym_SLASH] = ACTIONS(1170), + [anon_sym_DOT] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_QMARK_DOT] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1174), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_GT_GT_GT] = ACTIONS(1174), + [anon_sym_LT_LT] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_CARET] = ACTIONS(1174), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PERCENT] = ACTIONS(1174), + [anon_sym_STAR_STAR] = ACTIONS(1174), + [anon_sym_LT_EQ] = ACTIONS(1174), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1174), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1174), + [anon_sym_GT_EQ] = ACTIONS(1174), + [anon_sym_QMARK_QMARK] = ACTIONS(1174), + [anon_sym_instanceof] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1168), + [sym_number] = ACTIONS(1168), + [sym_this] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_abstract] = ACTIONS(1170), + [anon_sym_get] = ACTIONS(1170), + [anon_sym_set] = ACTIONS(1170), + [anon_sym_declare] = ACTIONS(1170), + [anon_sym_public] = ACTIONS(1170), + [anon_sym_private] = ACTIONS(1170), + [anon_sym_protected] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(1170), + [anon_sym_any] = ACTIONS(1170), + [anon_sym_number] = ACTIONS(1170), + [anon_sym_boolean] = ACTIONS(1170), + [anon_sym_string] = ACTIONS(1170), + [anon_sym_symbol] = ACTIONS(1170), + [anon_sym_interface] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [sym_readonly] = ACTIONS(1170), + [sym__automatic_semicolon] = ACTIONS(1176), }, [97] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(1123), - [anon_sym_namespace] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_typeof] = ACTIONS(1121), - [anon_sym_import] = ACTIONS(1121), - [anon_sym_var] = ACTIONS(1121), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1121), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_in] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_try] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_break] = ACTIONS(1121), - [anon_sym_continue] = ACTIONS(1121), - [anon_sym_debugger] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1121), - [anon_sym_throw] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_case] = ACTIONS(1121), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1123), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_function] = ACTIONS(1121), - [anon_sym_QMARK_DOT] = ACTIONS(1125), - [anon_sym_new] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_GT_GT_GT] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1125), - [anon_sym_STAR_STAR] = ACTIONS(1125), - [anon_sym_LT_EQ] = ACTIONS(1125), - [anon_sym_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1125), - [anon_sym_BANG_EQ] = ACTIONS(1123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1125), - [anon_sym_GT_EQ] = ACTIONS(1125), - [anon_sym_QMARK_QMARK] = ACTIONS(1125), - [anon_sym_instanceof] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_void] = ACTIONS(1121), - [anon_sym_delete] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1119), - [sym_this] = ACTIONS(1121), - [sym_super] = ACTIONS(1121), - [sym_true] = ACTIONS(1121), - [sym_false] = ACTIONS(1121), - [sym_null] = ACTIONS(1121), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_abstract] = ACTIONS(1121), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1121), - [anon_sym_private] = ACTIONS(1121), - [anon_sym_protected] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1121), - [anon_sym_number] = ACTIONS(1121), - [anon_sym_boolean] = ACTIONS(1121), - [anon_sym_string] = ACTIONS(1121), - [anon_sym_symbol] = ACTIONS(1121), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1121), - [sym_readonly] = ACTIONS(1121), - [sym__automatic_semicolon] = ACTIONS(1127), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_as] = ACTIONS(1182), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1180), + [anon_sym_var] = ACTIONS(1180), + [anon_sym_let] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_else] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_switch] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_await] = ACTIONS(1180), + [anon_sym_in] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_do] = ACTIONS(1180), + [anon_sym_try] = ACTIONS(1180), + [anon_sym_with] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_debugger] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_throw] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_SLASH] = ACTIONS(1180), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_class] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_QMARK_DOT] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1180), + [anon_sym_QMARK] = ACTIONS(1182), + [anon_sym_AMP_AMP] = ACTIONS(1184), + [anon_sym_PIPE_PIPE] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1182), + [anon_sym_GT_GT_GT] = ACTIONS(1184), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_PERCENT] = ACTIONS(1184), + [anon_sym_STAR_STAR] = ACTIONS(1184), + [anon_sym_LT_EQ] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1184), + [anon_sym_GT_EQ] = ACTIONS(1184), + [anon_sym_QMARK_QMARK] = ACTIONS(1184), + [anon_sym_instanceof] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1178), + [sym_number] = ACTIONS(1178), + [sym_this] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_true] = ACTIONS(1180), + [sym_false] = ACTIONS(1180), + [sym_null] = ACTIONS(1180), + [sym_undefined] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_abstract] = ACTIONS(1180), + [anon_sym_get] = ACTIONS(1180), + [anon_sym_set] = ACTIONS(1180), + [anon_sym_declare] = ACTIONS(1180), + [anon_sym_public] = ACTIONS(1180), + [anon_sym_private] = ACTIONS(1180), + [anon_sym_protected] = ACTIONS(1180), + [anon_sym_module] = ACTIONS(1180), + [anon_sym_any] = ACTIONS(1180), + [anon_sym_number] = ACTIONS(1180), + [anon_sym_boolean] = ACTIONS(1180), + [anon_sym_string] = ACTIONS(1180), + [anon_sym_symbol] = ACTIONS(1180), + [anon_sym_interface] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [sym_readonly] = ACTIONS(1180), + [sym__automatic_semicolon] = ACTIONS(1186), }, [98] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_typeof] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(1131), - [anon_sym_let] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_in] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_try] = ACTIONS(1131), - [anon_sym_with] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_debugger] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_throw] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_yield] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1133), - [anon_sym_class] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(1131), - [anon_sym_QMARK_DOT] = ACTIONS(1135), - [anon_sym_new] = ACTIONS(1131), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_GT_GT_GT] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_STAR_STAR] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1135), - [anon_sym_GT_EQ] = ACTIONS(1135), - [anon_sym_QMARK_QMARK] = ACTIONS(1135), - [anon_sym_instanceof] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1131), - [anon_sym_delete] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1129), - [sym_number] = ACTIONS(1129), - [sym_this] = ACTIONS(1131), - [sym_super] = ACTIONS(1131), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [sym_null] = ACTIONS(1131), - [sym_undefined] = ACTIONS(1131), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_abstract] = ACTIONS(1131), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1131), - [anon_sym_declare] = ACTIONS(1131), - [anon_sym_public] = ACTIONS(1131), - [anon_sym_private] = ACTIONS(1131), - [anon_sym_protected] = ACTIONS(1131), - [anon_sym_module] = ACTIONS(1131), - [anon_sym_any] = ACTIONS(1131), - [anon_sym_number] = ACTIONS(1131), - [anon_sym_boolean] = ACTIONS(1131), - [anon_sym_string] = ACTIONS(1131), - [anon_sym_symbol] = ACTIONS(1131), - [anon_sym_interface] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [sym_readonly] = ACTIONS(1131), - [sym__automatic_semicolon] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(740), + [sym_identifier] = ACTIONS(742), + [anon_sym_export] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_default] = ACTIONS(742), + [anon_sym_as] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_type] = ACTIONS(742), + [anon_sym_typeof] = ACTIONS(742), + [anon_sym_import] = ACTIONS(742), + [anon_sym_var] = ACTIONS(742), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_else] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_switch] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_await] = ACTIONS(742), + [anon_sym_in] = ACTIONS(742), + [anon_sym_while] = ACTIONS(742), + [anon_sym_do] = ACTIONS(742), + [anon_sym_try] = ACTIONS(742), + [anon_sym_with] = ACTIONS(742), + [anon_sym_break] = ACTIONS(742), + [anon_sym_continue] = ACTIONS(742), + [anon_sym_debugger] = ACTIONS(742), + [anon_sym_return] = ACTIONS(742), + [anon_sym_throw] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_case] = ACTIONS(742), + [anon_sym_yield] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_GT] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_class] = ACTIONS(742), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(742), + [anon_sym_QMARK_DOT] = ACTIONS(740), + [anon_sym_new] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(742), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_GT_GT] = ACTIONS(742), + [anon_sym_GT_GT_GT] = ACTIONS(740), + [anon_sym_LT_LT] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_CARET] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_QMARK_QMARK] = ACTIONS(740), + [anon_sym_instanceof] = ACTIONS(742), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_void] = ACTIONS(742), + [anon_sym_delete] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(740), + [sym_number] = ACTIONS(740), + [sym_this] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_undefined] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_static] = ACTIONS(742), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_get] = ACTIONS(742), + [anon_sym_set] = ACTIONS(742), + [anon_sym_declare] = ACTIONS(742), + [anon_sym_public] = ACTIONS(742), + [anon_sym_private] = ACTIONS(742), + [anon_sym_protected] = ACTIONS(742), + [anon_sym_module] = ACTIONS(742), + [anon_sym_any] = ACTIONS(742), + [anon_sym_number] = ACTIONS(742), + [anon_sym_boolean] = ACTIONS(742), + [anon_sym_string] = ACTIONS(742), + [anon_sym_symbol] = ACTIONS(742), + [anon_sym_interface] = ACTIONS(742), + [anon_sym_enum] = ACTIONS(742), + [sym_readonly] = ACTIONS(742), + [sym__automatic_semicolon] = ACTIONS(740), }, [99] = { - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1141), - [anon_sym_export] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_as] = ACTIONS(1143), - [anon_sym_namespace] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_type] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_var] = ACTIONS(1141), - [anon_sym_let] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_with] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_debugger] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1143), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1143), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_function] = ACTIONS(1141), - [anon_sym_QMARK_DOT] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1145), - [anon_sym_PIPE_PIPE] = ACTIONS(1145), - [anon_sym_GT_GT] = ACTIONS(1143), - [anon_sym_GT_GT_GT] = ACTIONS(1145), - [anon_sym_LT_LT] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1145), - [anon_sym_STAR_STAR] = ACTIONS(1145), - [anon_sym_LT_EQ] = ACTIONS(1145), - [anon_sym_EQ_EQ] = ACTIONS(1143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1145), - [anon_sym_BANG_EQ] = ACTIONS(1143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1145), - [anon_sym_GT_EQ] = ACTIONS(1145), - [anon_sym_QMARK_QMARK] = ACTIONS(1145), - [anon_sym_instanceof] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_void] = ACTIONS(1141), - [anon_sym_delete] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1139), - [sym_this] = ACTIONS(1141), - [sym_super] = ACTIONS(1141), - [sym_true] = ACTIONS(1141), - [sym_false] = ACTIONS(1141), - [sym_null] = ACTIONS(1141), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1141), - [anon_sym_declare] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_protected] = ACTIONS(1141), - [anon_sym_module] = ACTIONS(1141), - [anon_sym_any] = ACTIONS(1141), - [anon_sym_number] = ACTIONS(1141), - [anon_sym_boolean] = ACTIONS(1141), - [anon_sym_string] = ACTIONS(1141), - [anon_sym_symbol] = ACTIONS(1141), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [sym_readonly] = ACTIONS(1141), - [sym__automatic_semicolon] = ACTIONS(1147), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_export] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_namespace] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_var] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_in] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_with] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_debugger] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_throw] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DOT] = ACTIONS(1190), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(1190), + [anon_sym_QMARK_DOT] = ACTIONS(1188), + [anon_sym_new] = ACTIONS(1190), + [anon_sym_QMARK] = ACTIONS(1190), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_GT_GT_GT] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_CARET] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PERCENT] = ACTIONS(1188), + [anon_sym_STAR_STAR] = ACTIONS(1188), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1188), + [anon_sym_BANG_EQ] = ACTIONS(1190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_QMARK_QMARK] = ACTIONS(1188), + [anon_sym_instanceof] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_void] = ACTIONS(1190), + [anon_sym_delete] = ACTIONS(1190), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [sym_this] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_undefined] = ACTIONS(1190), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_abstract] = ACTIONS(1190), + [anon_sym_get] = ACTIONS(1190), + [anon_sym_set] = ACTIONS(1190), + [anon_sym_declare] = ACTIONS(1190), + [anon_sym_public] = ACTIONS(1190), + [anon_sym_private] = ACTIONS(1190), + [anon_sym_protected] = ACTIONS(1190), + [anon_sym_module] = ACTIONS(1190), + [anon_sym_any] = ACTIONS(1190), + [anon_sym_number] = ACTIONS(1190), + [anon_sym_boolean] = ACTIONS(1190), + [anon_sym_string] = ACTIONS(1190), + [anon_sym_symbol] = ACTIONS(1190), + [anon_sym_interface] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [sym_readonly] = ACTIONS(1190), + [sym__automatic_semicolon] = ACTIONS(1188), }, [100] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_COMMA] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_type] = ACTIONS(1151), - [anon_sym_typeof] = ACTIONS(1151), - [anon_sym_import] = ACTIONS(1151), - [anon_sym_var] = ACTIONS(1151), - [anon_sym_let] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_await] = ACTIONS(1151), - [anon_sym_in] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_try] = ACTIONS(1151), - [anon_sym_with] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_debugger] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_throw] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_yield] = ACTIONS(1151), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_LT] = ACTIONS(1151), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_SLASH] = ACTIONS(1151), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_class] = ACTIONS(1151), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(1151), - [anon_sym_QMARK_DOT] = ACTIONS(1155), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1155), - [anon_sym_LT_LT] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_CARET] = ACTIONS(1155), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PERCENT] = ACTIONS(1155), - [anon_sym_STAR_STAR] = ACTIONS(1155), - [anon_sym_LT_EQ] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1155), - [anon_sym_BANG_EQ] = ACTIONS(1153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1155), - [anon_sym_GT_EQ] = ACTIONS(1155), - [anon_sym_QMARK_QMARK] = ACTIONS(1155), - [anon_sym_instanceof] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_void] = ACTIONS(1151), - [anon_sym_delete] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1149), - [sym_this] = ACTIONS(1151), - [sym_super] = ACTIONS(1151), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1151), - [anon_sym_AT] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_abstract] = ACTIONS(1151), - [anon_sym_get] = ACTIONS(1151), - [anon_sym_set] = ACTIONS(1151), - [anon_sym_declare] = ACTIONS(1151), - [anon_sym_public] = ACTIONS(1151), - [anon_sym_private] = ACTIONS(1151), - [anon_sym_protected] = ACTIONS(1151), - [anon_sym_module] = ACTIONS(1151), - [anon_sym_any] = ACTIONS(1151), - [anon_sym_number] = ACTIONS(1151), - [anon_sym_boolean] = ACTIONS(1151), - [anon_sym_string] = ACTIONS(1151), - [anon_sym_symbol] = ACTIONS(1151), - [anon_sym_interface] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [sym_readonly] = ACTIONS(1151), - [sym__automatic_semicolon] = ACTIONS(1157), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_export] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_as] = ACTIONS(599), + [anon_sym_namespace] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_typeof] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_var] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_await] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(599), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_debugger] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_throw] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_class] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_function] = ACTIONS(1194), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_STAR_STAR] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_QMARK_QMARK] = ACTIONS(611), + [anon_sym_instanceof] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_delete] = ACTIONS(1194), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [sym_this] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [sym_null] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1194), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_abstract] = ACTIONS(1194), + [anon_sym_get] = ACTIONS(1194), + [anon_sym_set] = ACTIONS(1194), + [anon_sym_declare] = ACTIONS(1194), + [anon_sym_public] = ACTIONS(1194), + [anon_sym_private] = ACTIONS(1194), + [anon_sym_protected] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_any] = ACTIONS(1194), + [anon_sym_number] = ACTIONS(1194), + [anon_sym_boolean] = ACTIONS(1194), + [anon_sym_string] = ACTIONS(1194), + [anon_sym_symbol] = ACTIONS(1194), + [anon_sym_interface] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [sym_readonly] = ACTIONS(1194), + [sym__automatic_semicolon] = ACTIONS(611), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1065), - [anon_sym_namespace] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_var] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_debugger] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_QMARK_DOT] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_GT_GT_GT] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_QMARK_QMARK] = ACTIONS(1063), - [anon_sym_instanceof] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_void] = ACTIONS(1065), - [anon_sym_delete] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_get] = ACTIONS(1065), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_declare] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_any] = ACTIONS(1065), - [anon_sym_number] = ACTIONS(1065), - [anon_sym_boolean] = ACTIONS(1065), - [anon_sym_string] = ACTIONS(1065), - [anon_sym_symbol] = ACTIONS(1065), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [sym_readonly] = ACTIONS(1065), - [sym__automatic_semicolon] = ACTIONS(1159), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1198), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_as] = ACTIONS(1200), + [anon_sym_namespace] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_typeof] = ACTIONS(1198), + [anon_sym_import] = ACTIONS(1198), + [anon_sym_var] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_await] = ACTIONS(1198), + [anon_sym_in] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1198), + [anon_sym_with] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_debugger] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1200), + [anon_sym_SLASH] = ACTIONS(1198), + [anon_sym_DOT] = ACTIONS(1200), + [anon_sym_class] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1198), + [anon_sym_function] = ACTIONS(1198), + [anon_sym_QMARK_DOT] = ACTIONS(1202), + [anon_sym_new] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(1200), + [anon_sym_AMP_AMP] = ACTIONS(1202), + [anon_sym_PIPE_PIPE] = ACTIONS(1202), + [anon_sym_GT_GT] = ACTIONS(1200), + [anon_sym_GT_GT_GT] = ACTIONS(1202), + [anon_sym_LT_LT] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PERCENT] = ACTIONS(1202), + [anon_sym_STAR_STAR] = ACTIONS(1202), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_EQ_EQ] = ACTIONS(1200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1202), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_QMARK_QMARK] = ACTIONS(1202), + [anon_sym_instanceof] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_void] = ACTIONS(1198), + [anon_sym_delete] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1196), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(1198), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [sym_null] = ACTIONS(1198), + [sym_undefined] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_abstract] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_interface] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [sym_readonly] = ACTIONS(1198), + [sym__automatic_semicolon] = ACTIONS(1204), }, [102] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_as] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_in] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_QMARK_DOT] = ACTIONS(1161), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1161), - [anon_sym_PIPE_PIPE] = ACTIONS(1161), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_GT_GT_GT] = ACTIONS(1161), - [anon_sym_LT_LT] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1161), - [anon_sym_BANG_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_QMARK_QMARK] = ACTIONS(1161), - [anon_sym_instanceof] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), - [sym__automatic_semicolon] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_as] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_DOT] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_QMARK_DOT] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1208), + [anon_sym_AMP_AMP] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_GT_GT_GT] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PERCENT] = ACTIONS(1206), + [anon_sym_STAR_STAR] = ACTIONS(1206), + [anon_sym_LT_EQ] = ACTIONS(1206), + [anon_sym_EQ_EQ] = ACTIONS(1208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1206), + [anon_sym_BANG_EQ] = ACTIONS(1208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1206), + [anon_sym_GT_EQ] = ACTIONS(1206), + [anon_sym_QMARK_QMARK] = ACTIONS(1206), + [anon_sym_instanceof] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), + [sym__automatic_semicolon] = ACTIONS(1206), }, [103] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_export] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(1169), - [anon_sym_namespace] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_COMMA] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_typeof] = ACTIONS(1167), - [anon_sym_import] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(1167), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_await] = ACTIONS(1167), - [anon_sym_in] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_try] = ACTIONS(1167), - [anon_sym_with] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_debugger] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_GT] = ACTIONS(1169), - [anon_sym_SLASH] = ACTIONS(1167), - [anon_sym_DOT] = ACTIONS(1169), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_async] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1167), - [anon_sym_QMARK_DOT] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_QMARK] = ACTIONS(1169), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [anon_sym_GT_GT] = ACTIONS(1169), - [anon_sym_GT_GT_GT] = ACTIONS(1171), - [anon_sym_LT_LT] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_PERCENT] = ACTIONS(1171), - [anon_sym_STAR_STAR] = ACTIONS(1171), - [anon_sym_LT_EQ] = ACTIONS(1171), - [anon_sym_EQ_EQ] = ACTIONS(1169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1171), - [anon_sym_BANG_EQ] = ACTIONS(1169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1171), - [anon_sym_QMARK_QMARK] = ACTIONS(1171), - [anon_sym_instanceof] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_void] = ACTIONS(1167), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1165), - [sym_number] = ACTIONS(1165), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(1167), - [sym_true] = ACTIONS(1167), - [sym_false] = ACTIONS(1167), - [sym_null] = ACTIONS(1167), - [sym_undefined] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_abstract] = ACTIONS(1167), - [anon_sym_get] = ACTIONS(1167), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_declare] = ACTIONS(1167), - [anon_sym_public] = ACTIONS(1167), - [anon_sym_private] = ACTIONS(1167), - [anon_sym_protected] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_any] = ACTIONS(1167), - [anon_sym_number] = ACTIONS(1167), - [anon_sym_boolean] = ACTIONS(1167), - [anon_sym_string] = ACTIONS(1167), - [anon_sym_symbol] = ACTIONS(1167), - [anon_sym_interface] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [sym_readonly] = ACTIONS(1167), - [sym__automatic_semicolon] = ACTIONS(1173), + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_export] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_as] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_typeof] = ACTIONS(1212), + [anon_sym_import] = ACTIONS(1212), + [anon_sym_var] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_try] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_debugger] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_throw] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1212), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_class] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_function] = ACTIONS(1212), + [anon_sym_QMARK_DOT] = ACTIONS(1216), + [anon_sym_new] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_GT_GT_GT] = ACTIONS(1216), + [anon_sym_LT_LT] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_CARET] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1216), + [anon_sym_LT_EQ] = ACTIONS(1216), + [anon_sym_EQ_EQ] = ACTIONS(1214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1216), + [anon_sym_BANG_EQ] = ACTIONS(1214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1216), + [anon_sym_GT_EQ] = ACTIONS(1216), + [anon_sym_QMARK_QMARK] = ACTIONS(1216), + [anon_sym_instanceof] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1212), + [anon_sym_delete] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1210), + [sym_number] = ACTIONS(1210), + [sym_this] = ACTIONS(1212), + [sym_super] = ACTIONS(1212), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [sym_null] = ACTIONS(1212), + [sym_undefined] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_abstract] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_interface] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [sym_readonly] = ACTIONS(1212), + [sym__automatic_semicolon] = ACTIONS(1218), }, [104] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_as] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_await] = ACTIONS(1177), - [anon_sym_in] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_debugger] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_throw] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_async] = ACTIONS(1177), - [anon_sym_function] = ACTIONS(1177), - [anon_sym_QMARK_DOT] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_GT_GT_GT] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_CARET] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PERCENT] = ACTIONS(1175), - [anon_sym_STAR_STAR] = ACTIONS(1175), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1175), - [anon_sym_instanceof] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_delete] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1175), - [sym_number] = ACTIONS(1175), - [sym_this] = ACTIONS(1177), - [sym_super] = ACTIONS(1177), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_get] = ACTIONS(1177), - [anon_sym_set] = ACTIONS(1177), - [anon_sym_declare] = ACTIONS(1177), - [anon_sym_public] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(1177), - [anon_sym_any] = ACTIONS(1177), - [anon_sym_number] = ACTIONS(1177), - [anon_sym_boolean] = ACTIONS(1177), - [anon_sym_string] = ACTIONS(1177), - [anon_sym_symbol] = ACTIONS(1177), - [anon_sym_interface] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [sym_readonly] = ACTIONS(1177), - [sym__automatic_semicolon] = ACTIONS(1179), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(1068), + [anon_sym_var] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_await] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_with] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_throw] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_yield] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_class] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(1068), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_QMARK_DOT] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_GT_GT] = ACTIONS(1068), + [anon_sym_GT_GT_GT] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1066), + [anon_sym_STAR_STAR] = ACTIONS(1066), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_QMARK_QMARK] = ACTIONS(1066), + [anon_sym_instanceof] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1068), + [anon_sym_delete] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_number] = ACTIONS(1066), + [sym_this] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_undefined] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_abstract] = 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_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_interface] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [sym_readonly] = ACTIONS(1068), + [sym__automatic_semicolon] = ACTIONS(1220), }, [105] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_export] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(1185), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_debugger] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(1183), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1183), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_async] = ACTIONS(1183), - [anon_sym_function] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(1187), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_GT_GT_GT] = ACTIONS(1187), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_STAR_STAR] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1187), - [anon_sym_QMARK_QMARK] = ACTIONS(1187), - [anon_sym_instanceof] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1183), - [anon_sym_delete] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1181), - [sym_number] = ACTIONS(1181), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_null] = ACTIONS(1183), - [sym_undefined] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_get] = ACTIONS(1183), - [anon_sym_set] = ACTIONS(1183), - [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_any] = ACTIONS(1183), - [anon_sym_number] = ACTIONS(1183), - [anon_sym_boolean] = ACTIONS(1183), - [anon_sym_string] = ACTIONS(1183), - [anon_sym_symbol] = ACTIONS(1183), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [sym_readonly] = ACTIONS(1183), - [sym__automatic_semicolon] = ACTIONS(1189), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_as] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1224), + [anon_sym_var] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_in] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_try] = ACTIONS(1224), + [anon_sym_with] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_debugger] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_throw] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_SLASH] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(1224), + [anon_sym_QMARK_DOT] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_QMARK] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ] = ACTIONS(1224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1224), + [anon_sym_delete] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_number] = ACTIONS(1222), + [sym_this] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [sym_null] = ACTIONS(1224), + [sym_undefined] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_abstract] = ACTIONS(1224), + [anon_sym_get] = ACTIONS(1224), + [anon_sym_set] = ACTIONS(1224), + [anon_sym_declare] = ACTIONS(1224), + [anon_sym_public] = ACTIONS(1224), + [anon_sym_private] = ACTIONS(1224), + [anon_sym_protected] = ACTIONS(1224), + [anon_sym_module] = ACTIONS(1224), + [anon_sym_any] = ACTIONS(1224), + [anon_sym_number] = ACTIONS(1224), + [anon_sym_boolean] = ACTIONS(1224), + [anon_sym_string] = ACTIONS(1224), + [anon_sym_symbol] = ACTIONS(1224), + [anon_sym_interface] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [sym_readonly] = ACTIONS(1224), + [sym__automatic_semicolon] = ACTIONS(1222), }, [106] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_as] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_await] = ACTIONS(1177), - [anon_sym_in] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_debugger] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_throw] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_async] = ACTIONS(1177), - [anon_sym_function] = ACTIONS(1177), - [anon_sym_QMARK_DOT] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_GT_GT_GT] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_CARET] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PERCENT] = ACTIONS(1175), - [anon_sym_STAR_STAR] = ACTIONS(1175), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1175), - [anon_sym_instanceof] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_delete] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1175), - [sym_number] = ACTIONS(1175), - [sym_this] = ACTIONS(1177), - [sym_super] = ACTIONS(1177), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_get] = ACTIONS(1177), - [anon_sym_set] = ACTIONS(1177), - [anon_sym_declare] = ACTIONS(1177), - [anon_sym_public] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(1177), - [anon_sym_any] = ACTIONS(1177), - [anon_sym_number] = ACTIONS(1177), - [anon_sym_boolean] = ACTIONS(1177), - [anon_sym_string] = ACTIONS(1177), - [anon_sym_symbol] = ACTIONS(1177), - [anon_sym_interface] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [sym_readonly] = ACTIONS(1177), - [sym__automatic_semicolon] = ACTIONS(1175), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_as] = ACTIONS(1230), + [anon_sym_namespace] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(1228), + [anon_sym_var] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_await] = ACTIONS(1228), + [anon_sym_in] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(1228), + [anon_sym_with] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_debugger] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_throw] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DOT] = ACTIONS(1230), + [anon_sym_class] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_function] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(1232), + [anon_sym_new] = ACTIONS(1228), + [anon_sym_QMARK] = ACTIONS(1230), + [anon_sym_AMP_AMP] = ACTIONS(1232), + [anon_sym_PIPE_PIPE] = ACTIONS(1232), + [anon_sym_GT_GT] = ACTIONS(1230), + [anon_sym_GT_GT_GT] = ACTIONS(1232), + [anon_sym_LT_LT] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PERCENT] = ACTIONS(1232), + [anon_sym_STAR_STAR] = ACTIONS(1232), + [anon_sym_LT_EQ] = ACTIONS(1232), + [anon_sym_EQ_EQ] = ACTIONS(1230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1232), + [anon_sym_BANG_EQ] = ACTIONS(1230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1232), + [anon_sym_GT_EQ] = ACTIONS(1232), + [anon_sym_QMARK_QMARK] = ACTIONS(1232), + [anon_sym_instanceof] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1226), + [sym_number] = ACTIONS(1226), + [sym_this] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), + [sym_undefined] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_abstract] = ACTIONS(1228), + [anon_sym_get] = ACTIONS(1228), + [anon_sym_set] = ACTIONS(1228), + [anon_sym_declare] = ACTIONS(1228), + [anon_sym_public] = ACTIONS(1228), + [anon_sym_private] = ACTIONS(1228), + [anon_sym_protected] = ACTIONS(1228), + [anon_sym_module] = ACTIONS(1228), + [anon_sym_any] = ACTIONS(1228), + [anon_sym_number] = ACTIONS(1228), + [anon_sym_boolean] = ACTIONS(1228), + [anon_sym_string] = ACTIONS(1228), + [anon_sym_symbol] = ACTIONS(1228), + [anon_sym_interface] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [sym_readonly] = ACTIONS(1228), + [sym__automatic_semicolon] = ACTIONS(1234), }, [107] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1043), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_as] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(1238), + [anon_sym_var] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [anon_sym_with] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_debugger] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_throw] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1238), + [anon_sym_class] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_function] = ACTIONS(1238), + [anon_sym_QMARK_DOT] = ACTIONS(1236), + [anon_sym_new] = ACTIONS(1238), + [anon_sym_QMARK] = ACTIONS(1238), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_GT_GT] = ACTIONS(1238), + [anon_sym_GT_GT_GT] = ACTIONS(1236), + [anon_sym_LT_LT] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_CARET] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PERCENT] = ACTIONS(1236), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1236), + [anon_sym_GT_EQ] = ACTIONS(1236), + [anon_sym_QMARK_QMARK] = ACTIONS(1236), + [anon_sym_instanceof] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1236), + [sym_number] = ACTIONS(1236), + [sym_this] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [sym_undefined] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_abstract] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_interface] = ACTIONS(1238), + [anon_sym_extends] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [sym_readonly] = ACTIONS(1238), }, [108] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1197), - [anon_sym_export] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1197), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym_import] = ACTIONS(1197), - [anon_sym_var] = ACTIONS(1197), - [anon_sym_let] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_await] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_try] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_debugger] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_throw] = ACTIONS(1197), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_yield] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_class] = ACTIONS(1197), - [anon_sym_async] = ACTIONS(1197), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_QMARK_DOT] = ACTIONS(1201), - [anon_sym_new] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1201), - [anon_sym_PIPE_PIPE] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_GT_GT_GT] = ACTIONS(1201), - [anon_sym_LT_LT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_STAR_STAR] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_EQ_EQ] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK] = ACTIONS(1201), - [anon_sym_instanceof] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1195), - [sym_number] = ACTIONS(1195), - [sym_this] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_undefined] = ACTIONS(1197), - [anon_sym_AT] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_abstract] = ACTIONS(1197), - [anon_sym_get] = ACTIONS(1197), - [anon_sym_set] = ACTIONS(1197), - [anon_sym_declare] = ACTIONS(1197), - [anon_sym_public] = ACTIONS(1197), - [anon_sym_private] = ACTIONS(1197), - [anon_sym_protected] = ACTIONS(1197), - [anon_sym_module] = ACTIONS(1197), - [anon_sym_any] = ACTIONS(1197), - [anon_sym_number] = ACTIONS(1197), - [anon_sym_boolean] = ACTIONS(1197), - [anon_sym_string] = ACTIONS(1197), - [anon_sym_symbol] = ACTIONS(1197), - [anon_sym_interface] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [sym_readonly] = ACTIONS(1197), - [sym__automatic_semicolon] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1054), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_namespace] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_type] = ACTIONS(1054), + [anon_sym_typeof] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_with] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_debugger] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_async] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_void] = ACTIONS(1054), + [anon_sym_delete] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1052), + [sym_number] = ACTIONS(1052), + [sym_this] = ACTIONS(1054), + [sym_super] = ACTIONS(1054), + [sym_true] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [sym_undefined] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_get] = ACTIONS(1054), + [anon_sym_set] = ACTIONS(1054), + [anon_sym_declare] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_protected] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_any] = ACTIONS(1054), + [anon_sym_number] = ACTIONS(1054), + [anon_sym_boolean] = ACTIONS(1054), + [anon_sym_string] = ACTIONS(1054), + [anon_sym_symbol] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_extends] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [sym_readonly] = ACTIONS(1054), }, [109] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_export] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_as] = ACTIONS(1207), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_type] = ACTIONS(1207), - [anon_sym_typeof] = ACTIONS(1207), - [anon_sym_import] = ACTIONS(1207), - [anon_sym_var] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_await] = ACTIONS(1207), - [anon_sym_in] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_try] = ACTIONS(1207), - [anon_sym_with] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_debugger] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_throw] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_DOT] = ACTIONS(1207), - [anon_sym_class] = ACTIONS(1207), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(1207), - [anon_sym_QMARK_DOT] = ACTIONS(1205), - [anon_sym_new] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_AMP_AMP] = ACTIONS(1205), - [anon_sym_PIPE_PIPE] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1207), - [anon_sym_GT_GT_GT] = ACTIONS(1205), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1207), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1207), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_QMARK_QMARK] = ACTIONS(1205), - [anon_sym_instanceof] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_void] = ACTIONS(1207), - [anon_sym_delete] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1205), - [sym_number] = ACTIONS(1205), - [sym_this] = ACTIONS(1207), - [sym_super] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_null] = ACTIONS(1207), - [sym_undefined] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_abstract] = ACTIONS(1207), - [anon_sym_get] = ACTIONS(1207), - [anon_sym_set] = ACTIONS(1207), - [anon_sym_declare] = ACTIONS(1207), - [anon_sym_public] = ACTIONS(1207), - [anon_sym_private] = ACTIONS(1207), - [anon_sym_protected] = ACTIONS(1207), - [anon_sym_module] = ACTIONS(1207), - [anon_sym_any] = ACTIONS(1207), - [anon_sym_number] = ACTIONS(1207), - [anon_sym_boolean] = ACTIONS(1207), - [anon_sym_string] = ACTIONS(1207), - [anon_sym_symbol] = ACTIONS(1207), - [anon_sym_interface] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [sym_readonly] = ACTIONS(1207), - [sym__automatic_semicolon] = ACTIONS(1205), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_export] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_as] = ACTIONS(1242), + [anon_sym_namespace] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1242), + [anon_sym_typeof] = ACTIONS(1242), + [anon_sym_import] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(1242), + [anon_sym_let] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [anon_sym_with] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_debugger] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_throw] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_class] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1242), + [anon_sym_function] = ACTIONS(1242), + [anon_sym_QMARK_DOT] = ACTIONS(1240), + [anon_sym_new] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_GT_GT_GT] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_STAR_STAR] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ] = ACTIONS(1242), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1240), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_QMARK_QMARK] = ACTIONS(1240), + [anon_sym_instanceof] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1242), + [anon_sym_delete] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1240), + [sym_this] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [sym_null] = ACTIONS(1242), + [sym_undefined] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_abstract] = ACTIONS(1242), + [anon_sym_get] = ACTIONS(1242), + [anon_sym_set] = ACTIONS(1242), + [anon_sym_declare] = ACTIONS(1242), + [anon_sym_public] = ACTIONS(1242), + [anon_sym_private] = ACTIONS(1242), + [anon_sym_protected] = ACTIONS(1242), + [anon_sym_module] = ACTIONS(1242), + [anon_sym_any] = ACTIONS(1242), + [anon_sym_number] = ACTIONS(1242), + [anon_sym_boolean] = ACTIONS(1242), + [anon_sym_string] = ACTIONS(1242), + [anon_sym_symbol] = ACTIONS(1242), + [anon_sym_interface] = ACTIONS(1242), + [anon_sym_extends] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [sym_readonly] = ACTIONS(1242), }, [110] = { - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1211), - [anon_sym_as] = ACTIONS(1211), - [anon_sym_namespace] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1211), - [anon_sym_typeof] = ACTIONS(1211), - [anon_sym_import] = ACTIONS(1211), - [anon_sym_var] = ACTIONS(1211), - [anon_sym_let] = ACTIONS(1211), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_do] = ACTIONS(1211), - [anon_sym_try] = ACTIONS(1211), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_debugger] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_throw] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1211), - [anon_sym_yield] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1211), - [anon_sym_async] = ACTIONS(1211), - [anon_sym_function] = ACTIONS(1211), - [anon_sym_QMARK_DOT] = ACTIONS(1209), - [anon_sym_new] = ACTIONS(1211), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_CARET] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_instanceof] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_void] = ACTIONS(1211), - [anon_sym_delete] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1209), - [sym_number] = ACTIONS(1209), - [sym_this] = ACTIONS(1211), - [sym_super] = ACTIONS(1211), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [sym_null] = ACTIONS(1211), - [sym_undefined] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_abstract] = ACTIONS(1211), - [anon_sym_get] = ACTIONS(1211), - [anon_sym_set] = ACTIONS(1211), - [anon_sym_declare] = ACTIONS(1211), - [anon_sym_public] = ACTIONS(1211), - [anon_sym_private] = ACTIONS(1211), - [anon_sym_protected] = ACTIONS(1211), - [anon_sym_module] = ACTIONS(1211), - [anon_sym_any] = ACTIONS(1211), - [anon_sym_number] = ACTIONS(1211), - [anon_sym_boolean] = ACTIONS(1211), - [anon_sym_string] = ACTIONS(1211), - [anon_sym_symbol] = ACTIONS(1211), - [anon_sym_interface] = ACTIONS(1211), - [anon_sym_enum] = ACTIONS(1211), - [sym_readonly] = ACTIONS(1211), - [sym__automatic_semicolon] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_as] = ACTIONS(1246), + [anon_sym_namespace] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_typeof] = ACTIONS(1246), + [anon_sym_import] = ACTIONS(1246), + [anon_sym_var] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [anon_sym_with] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_debugger] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_throw] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_DOT] = ACTIONS(1246), + [anon_sym_class] = ACTIONS(1246), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(1246), + [anon_sym_QMARK_DOT] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1246), + [anon_sym_QMARK] = ACTIONS(1246), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_GT_GT] = ACTIONS(1246), + [anon_sym_GT_GT_GT] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PERCENT] = ACTIONS(1244), + [anon_sym_STAR_STAR] = ACTIONS(1244), + [anon_sym_LT_EQ] = ACTIONS(1244), + [anon_sym_EQ_EQ] = ACTIONS(1246), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1246), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1244), + [anon_sym_GT_EQ] = ACTIONS(1244), + [anon_sym_QMARK_QMARK] = ACTIONS(1244), + [anon_sym_instanceof] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1246), + [anon_sym_delete] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1244), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_super] = ACTIONS(1246), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_AT] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_abstract] = ACTIONS(1246), + [anon_sym_get] = ACTIONS(1246), + [anon_sym_set] = ACTIONS(1246), + [anon_sym_declare] = ACTIONS(1246), + [anon_sym_public] = ACTIONS(1246), + [anon_sym_private] = ACTIONS(1246), + [anon_sym_protected] = ACTIONS(1246), + [anon_sym_module] = ACTIONS(1246), + [anon_sym_any] = ACTIONS(1246), + [anon_sym_number] = ACTIONS(1246), + [anon_sym_boolean] = ACTIONS(1246), + [anon_sym_string] = ACTIONS(1246), + [anon_sym_symbol] = ACTIONS(1246), + [anon_sym_interface] = ACTIONS(1246), + [anon_sym_extends] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [sym_readonly] = ACTIONS(1246), }, [111] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [anon_sym_export] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_as] = ACTIONS(571), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_type] = ACTIONS(1215), - [anon_sym_typeof] = ACTIONS(1215), - [anon_sym_import] = ACTIONS(1215), - [anon_sym_var] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_switch] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_await] = ACTIONS(1215), - [anon_sym_in] = ACTIONS(571), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_debugger] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_throw] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_class] = ACTIONS(1215), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_function] = ACTIONS(1215), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_new] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_STAR_STAR] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_EQ_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_QMARK_QMARK] = ACTIONS(585), - [anon_sym_instanceof] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_void] = ACTIONS(1215), - [anon_sym_delete] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1213), - [sym_number] = ACTIONS(1213), - [sym_this] = ACTIONS(1215), - [sym_super] = ACTIONS(1215), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [sym_null] = ACTIONS(1215), - [sym_undefined] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_abstract] = ACTIONS(1215), - [anon_sym_get] = ACTIONS(1215), - [anon_sym_set] = ACTIONS(1215), - [anon_sym_declare] = ACTIONS(1215), - [anon_sym_public] = ACTIONS(1215), - [anon_sym_private] = ACTIONS(1215), - [anon_sym_protected] = ACTIONS(1215), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_any] = ACTIONS(1215), - [anon_sym_number] = ACTIONS(1215), - [anon_sym_boolean] = ACTIONS(1215), - [anon_sym_string] = ACTIONS(1215), - [anon_sym_symbol] = ACTIONS(1215), - [anon_sym_interface] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [sym_readonly] = ACTIONS(1215), - [sym__automatic_semicolon] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1250), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1250), + [anon_sym_import] = ACTIONS(1250), + [anon_sym_var] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_in] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_with] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_debugger] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_throw] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_yield] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_DOT] = ACTIONS(1250), + [anon_sym_class] = ACTIONS(1250), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_QMARK_DOT] = ACTIONS(1248), + [anon_sym_new] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1248), + [anon_sym_PIPE_PIPE] = ACTIONS(1248), + [anon_sym_GT_GT] = ACTIONS(1250), + [anon_sym_GT_GT_GT] = ACTIONS(1248), + [anon_sym_LT_LT] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PERCENT] = ACTIONS(1248), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1248), + [anon_sym_GT_EQ] = ACTIONS(1248), + [anon_sym_QMARK_QMARK] = ACTIONS(1248), + [anon_sym_instanceof] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_void] = ACTIONS(1250), + [anon_sym_delete] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1248), + [sym_number] = ACTIONS(1248), + [sym_this] = ACTIONS(1250), + [sym_super] = ACTIONS(1250), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [sym_null] = ACTIONS(1250), + [sym_undefined] = ACTIONS(1250), + [anon_sym_AT] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_abstract] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_interface] = ACTIONS(1250), + [anon_sym_extends] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [sym_readonly] = ACTIONS(1250), }, [112] = { - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), - [anon_sym_export] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_as] = ACTIONS(1221), - [anon_sym_namespace] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_COMMA] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_type] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(1219), - [anon_sym_import] = ACTIONS(1219), - [anon_sym_var] = ACTIONS(1219), - [anon_sym_let] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1217), - [anon_sym_await] = ACTIONS(1219), - [anon_sym_in] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_try] = ACTIONS(1219), - [anon_sym_with] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_debugger] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_throw] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_LT] = ACTIONS(1219), - [anon_sym_GT] = ACTIONS(1221), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_class] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(1219), - [anon_sym_QMARK_DOT] = ACTIONS(1223), - [anon_sym_new] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1221), - [anon_sym_GT_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1223), - [anon_sym_STAR_STAR] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1223), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1223), - [anon_sym_GT_EQ] = ACTIONS(1223), - [anon_sym_QMARK_QMARK] = ACTIONS(1223), - [anon_sym_instanceof] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_void] = ACTIONS(1219), - [anon_sym_delete] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1217), - [sym_number] = ACTIONS(1217), - [sym_this] = ACTIONS(1219), - [sym_super] = ACTIONS(1219), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [sym_null] = ACTIONS(1219), - [sym_undefined] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_abstract] = ACTIONS(1219), - [anon_sym_get] = ACTIONS(1219), - [anon_sym_set] = ACTIONS(1219), - [anon_sym_declare] = ACTIONS(1219), - [anon_sym_public] = ACTIONS(1219), - [anon_sym_private] = ACTIONS(1219), - [anon_sym_protected] = ACTIONS(1219), - [anon_sym_module] = ACTIONS(1219), - [anon_sym_any] = ACTIONS(1219), - [anon_sym_number] = ACTIONS(1219), - [anon_sym_boolean] = ACTIONS(1219), - [anon_sym_string] = ACTIONS(1219), - [anon_sym_symbol] = ACTIONS(1219), - [anon_sym_interface] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [sym_readonly] = ACTIONS(1219), - [sym__automatic_semicolon] = ACTIONS(1225), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_export] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_as] = ACTIONS(1254), + [anon_sym_namespace] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_import] = ACTIONS(1254), + [anon_sym_var] = ACTIONS(1254), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_await] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_with] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_debugger] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_throw] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_class] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(1254), + [anon_sym_function] = ACTIONS(1254), + [anon_sym_QMARK_DOT] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_GT_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1254), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1254), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1252), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_QMARK_QMARK] = ACTIONS(1252), + [anon_sym_instanceof] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_delete] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1252), + [sym_number] = ACTIONS(1252), + [sym_this] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [sym_null] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1254), + [anon_sym_AT] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_abstract] = ACTIONS(1254), + [anon_sym_get] = ACTIONS(1254), + [anon_sym_set] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_protected] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_any] = ACTIONS(1254), + [anon_sym_number] = ACTIONS(1254), + [anon_sym_boolean] = ACTIONS(1254), + [anon_sym_string] = ACTIONS(1254), + [anon_sym_symbol] = ACTIONS(1254), + [anon_sym_interface] = ACTIONS(1254), + [anon_sym_extends] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [sym_readonly] = ACTIONS(1254), }, [113] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1229), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_typeof] = ACTIONS(1229), - [anon_sym_import] = ACTIONS(1229), - [anon_sym_var] = ACTIONS(1229), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_await] = ACTIONS(1229), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_try] = ACTIONS(1229), - [anon_sym_with] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_debugger] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_throw] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_yield] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_SLASH] = ACTIONS(1229), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1229), - [anon_sym_QMARK_DOT] = ACTIONS(1233), - [anon_sym_new] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PERCENT] = ACTIONS(1233), - [anon_sym_STAR_STAR] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG_EQ] = ACTIONS(1231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1233), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_QMARK_QMARK] = ACTIONS(1233), - [anon_sym_instanceof] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_void] = ACTIONS(1229), - [anon_sym_delete] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [sym_this] = ACTIONS(1229), - [sym_super] = ACTIONS(1229), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [sym_null] = ACTIONS(1229), - [sym_undefined] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_abstract] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_interface] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [sym_readonly] = ACTIONS(1229), - [sym__automatic_semicolon] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_export] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(1258), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_typeof] = ACTIONS(1258), + [anon_sym_import] = ACTIONS(1258), + [anon_sym_var] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_in] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1258), + [anon_sym_with] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_debugger] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_throw] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_DOT] = ACTIONS(1258), + [anon_sym_class] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_function] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(1256), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_GT_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1256), + [anon_sym_STAR_STAR] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1256), + [anon_sym_QMARK_QMARK] = ACTIONS(1256), + [anon_sym_instanceof] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1258), + [anon_sym_delete] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [sym_this] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [sym_null] = ACTIONS(1258), + [sym_undefined] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_abstract] = ACTIONS(1258), + [anon_sym_get] = ACTIONS(1258), + [anon_sym_set] = ACTIONS(1258), + [anon_sym_declare] = ACTIONS(1258), + [anon_sym_public] = ACTIONS(1258), + [anon_sym_private] = ACTIONS(1258), + [anon_sym_protected] = ACTIONS(1258), + [anon_sym_module] = ACTIONS(1258), + [anon_sym_any] = ACTIONS(1258), + [anon_sym_number] = ACTIONS(1258), + [anon_sym_boolean] = ACTIONS(1258), + [anon_sym_string] = ACTIONS(1258), + [anon_sym_symbol] = ACTIONS(1258), + [anon_sym_interface] = ACTIONS(1258), + [anon_sym_extends] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [sym_readonly] = ACTIONS(1258), }, [114] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(1237), - [anon_sym_as] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1043), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [anon_sym_implements] = ACTIONS(928), - [sym_readonly] = ACTIONS(1045), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1262), + [anon_sym_export] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_as] = ACTIONS(1262), + [anon_sym_namespace] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1262), + [anon_sym_typeof] = ACTIONS(1262), + [anon_sym_import] = ACTIONS(1262), + [anon_sym_var] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(1262), + [anon_sym_in] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(1262), + [anon_sym_with] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_debugger] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_throw] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_yield] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_SLASH] = ACTIONS(1262), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_class] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(1260), + [anon_sym_new] = ACTIONS(1262), + [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_GT_GT_GT] = ACTIONS(1260), + [anon_sym_LT_LT] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PERCENT] = ACTIONS(1260), + [anon_sym_STAR_STAR] = ACTIONS(1260), + [anon_sym_LT_EQ] = ACTIONS(1260), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1260), + [anon_sym_BANG_EQ] = ACTIONS(1262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1260), + [anon_sym_GT_EQ] = ACTIONS(1260), + [anon_sym_QMARK_QMARK] = ACTIONS(1260), + [anon_sym_instanceof] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_void] = ACTIONS(1262), + [anon_sym_delete] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1260), + [sym_number] = ACTIONS(1260), + [sym_this] = ACTIONS(1262), + [sym_super] = ACTIONS(1262), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [sym_null] = ACTIONS(1262), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_abstract] = ACTIONS(1262), + [anon_sym_get] = ACTIONS(1262), + [anon_sym_set] = ACTIONS(1262), + [anon_sym_declare] = ACTIONS(1262), + [anon_sym_public] = ACTIONS(1262), + [anon_sym_private] = ACTIONS(1262), + [anon_sym_protected] = ACTIONS(1262), + [anon_sym_module] = ACTIONS(1262), + [anon_sym_any] = ACTIONS(1262), + [anon_sym_number] = ACTIONS(1262), + [anon_sym_boolean] = ACTIONS(1262), + [anon_sym_string] = ACTIONS(1262), + [anon_sym_symbol] = ACTIONS(1262), + [anon_sym_interface] = ACTIONS(1262), + [anon_sym_extends] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [sym_readonly] = ACTIONS(1262), }, [115] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_await] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_QMARK_DOT] = ACTIONS(901), - [anon_sym_new] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(901), - [anon_sym_PIPE_PIPE] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_GT_GT_GT] = ACTIONS(901), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_EQ_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_QMARK_QMARK] = ACTIONS(901), - [anon_sym_instanceof] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(901), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), - [sym__automatic_semicolon] = ACTIONS(901), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1266), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_namespace] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1266), + [anon_sym_typeof] = ACTIONS(1266), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_var] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_await] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_debugger] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_throw] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_function] = ACTIONS(1266), + [anon_sym_QMARK_DOT] = ACTIONS(1264), + [anon_sym_new] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1264), + [anon_sym_PIPE_PIPE] = ACTIONS(1264), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_GT_GT_GT] = ACTIONS(1264), + [anon_sym_LT_LT] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1264), + [anon_sym_STAR_STAR] = ACTIONS(1264), + [anon_sym_LT_EQ] = ACTIONS(1264), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1264), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1264), + [anon_sym_GT_EQ] = ACTIONS(1264), + [anon_sym_QMARK_QMARK] = ACTIONS(1264), + [anon_sym_instanceof] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_void] = ACTIONS(1266), + [anon_sym_delete] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1264), + [sym_number] = ACTIONS(1264), + [sym_this] = ACTIONS(1266), + [sym_super] = ACTIONS(1266), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_null] = ACTIONS(1266), + [sym_undefined] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_abstract] = ACTIONS(1266), + [anon_sym_get] = ACTIONS(1266), + [anon_sym_set] = ACTIONS(1266), + [anon_sym_declare] = ACTIONS(1266), + [anon_sym_public] = ACTIONS(1266), + [anon_sym_private] = ACTIONS(1266), + [anon_sym_protected] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_any] = ACTIONS(1266), + [anon_sym_number] = ACTIONS(1266), + [anon_sym_boolean] = ACTIONS(1266), + [anon_sym_string] = ACTIONS(1266), + [anon_sym_symbol] = ACTIONS(1266), + [anon_sym_interface] = ACTIONS(1266), + [anon_sym_extends] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [sym_readonly] = ACTIONS(1266), }, [116] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1243), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1245), - [anon_sym_namespace] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_COMMA] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_type] = ACTIONS(1243), - [anon_sym_typeof] = ACTIONS(1243), - [anon_sym_import] = ACTIONS(1243), - [anon_sym_var] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1241), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_with] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_debugger] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_throw] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1245), - [anon_sym_class] = ACTIONS(1243), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(1243), - [anon_sym_QMARK_DOT] = ACTIONS(1247), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1247), - [anon_sym_PIPE_PIPE] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_GT_GT_GT] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_QMARK_QMARK] = ACTIONS(1247), - [anon_sym_instanceof] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_void] = ACTIONS(1243), - [anon_sym_delete] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1241), - [sym_number] = ACTIONS(1241), - [sym_this] = ACTIONS(1243), - [sym_super] = ACTIONS(1243), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [sym_null] = ACTIONS(1243), - [sym_undefined] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_abstract] = ACTIONS(1243), - [anon_sym_get] = ACTIONS(1243), - [anon_sym_set] = ACTIONS(1243), - [anon_sym_declare] = ACTIONS(1243), - [anon_sym_public] = ACTIONS(1243), - [anon_sym_private] = ACTIONS(1243), - [anon_sym_protected] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_any] = ACTIONS(1243), - [anon_sym_number] = ACTIONS(1243), - [anon_sym_boolean] = ACTIONS(1243), - [anon_sym_string] = ACTIONS(1243), - [anon_sym_symbol] = ACTIONS(1243), - [anon_sym_interface] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [sym_readonly] = ACTIONS(1243), - [sym__automatic_semicolon] = ACTIONS(1249), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_typeof] = ACTIONS(1270), + [anon_sym_import] = ACTIONS(1270), + [anon_sym_var] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_with] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_debugger] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_throw] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_yield] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_class] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(1270), + [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_new] = ACTIONS(1270), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_AMP_AMP] = ACTIONS(1268), + [anon_sym_PIPE_PIPE] = ACTIONS(1268), + [anon_sym_GT_GT] = ACTIONS(1270), + [anon_sym_GT_GT_GT] = ACTIONS(1268), + [anon_sym_LT_LT] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_QMARK_QMARK] = ACTIONS(1268), + [anon_sym_instanceof] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_void] = ACTIONS(1270), + [anon_sym_delete] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1268), + [sym_number] = ACTIONS(1268), + [sym_this] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [sym_null] = ACTIONS(1270), + [sym_undefined] = ACTIONS(1270), + [anon_sym_AT] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_interface] = ACTIONS(1270), + [anon_sym_extends] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [sym_readonly] = ACTIONS(1270), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_identifier] = ACTIONS(1253), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_namespace] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_type] = ACTIONS(1253), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(1253), - [anon_sym_var] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_with] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_debugger] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_throw] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_DOT] = ACTIONS(1253), - [anon_sym_class] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1253), - [anon_sym_function] = ACTIONS(1253), - [anon_sym_QMARK_DOT] = ACTIONS(1251), - [anon_sym_new] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1253), - [anon_sym_GT_GT_GT] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_STAR_STAR] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_QMARK_QMARK] = ACTIONS(1251), - [anon_sym_instanceof] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1251), - [sym_number] = ACTIONS(1251), - [sym_this] = ACTIONS(1253), - [sym_super] = ACTIONS(1253), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [sym_null] = ACTIONS(1253), - [sym_undefined] = ACTIONS(1253), - [anon_sym_AT] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_abstract] = ACTIONS(1253), - [anon_sym_get] = ACTIONS(1253), - [anon_sym_set] = ACTIONS(1253), - [anon_sym_declare] = ACTIONS(1253), - [anon_sym_public] = ACTIONS(1253), - [anon_sym_private] = ACTIONS(1253), - [anon_sym_protected] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_any] = ACTIONS(1253), - [anon_sym_number] = ACTIONS(1253), - [anon_sym_boolean] = ACTIONS(1253), - [anon_sym_string] = ACTIONS(1253), - [anon_sym_symbol] = ACTIONS(1253), - [anon_sym_interface] = ACTIONS(1253), - [anon_sym_extends] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [sym_readonly] = ACTIONS(1253), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_as] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1274), + [anon_sym_import] = ACTIONS(1274), + [anon_sym_var] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_await] = ACTIONS(1274), + [anon_sym_in] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_with] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_debugger] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_throw] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_yield] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_GT] = ACTIONS(1274), + [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_DOT] = ACTIONS(1274), + [anon_sym_class] = ACTIONS(1274), + [anon_sym_async] = ACTIONS(1274), + [anon_sym_function] = ACTIONS(1274), + [anon_sym_QMARK_DOT] = ACTIONS(1272), + [anon_sym_new] = ACTIONS(1274), + [anon_sym_QMARK] = ACTIONS(1274), + [anon_sym_AMP_AMP] = ACTIONS(1272), + [anon_sym_PIPE_PIPE] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1274), + [anon_sym_GT_GT_GT] = ACTIONS(1272), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1272), + [anon_sym_EQ_EQ] = ACTIONS(1274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1272), + [anon_sym_GT_EQ] = ACTIONS(1272), + [anon_sym_QMARK_QMARK] = ACTIONS(1272), + [anon_sym_instanceof] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_void] = ACTIONS(1274), + [anon_sym_delete] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1272), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_super] = ACTIONS(1274), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [sym_null] = ACTIONS(1274), + [sym_undefined] = ACTIONS(1274), + [anon_sym_AT] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_abstract] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_interface] = ACTIONS(1274), + [anon_sym_extends] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [sym_readonly] = ACTIONS(1274), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_identifier] = ACTIONS(1257), - [anon_sym_export] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1257), - [anon_sym_as] = ACTIONS(1257), - [anon_sym_namespace] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_type] = ACTIONS(1257), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(1257), - [anon_sym_var] = ACTIONS(1257), - [anon_sym_let] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_switch] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_await] = ACTIONS(1257), - [anon_sym_in] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_try] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_debugger] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_throw] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1257), - [anon_sym_class] = ACTIONS(1257), - [anon_sym_async] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(1257), - [anon_sym_QMARK_DOT] = ACTIONS(1255), - [anon_sym_new] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_GT_GT_GT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_STAR_STAR] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_QMARK_QMARK] = ACTIONS(1255), - [anon_sym_instanceof] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1255), - [sym_number] = ACTIONS(1255), - [sym_this] = ACTIONS(1257), - [sym_super] = ACTIONS(1257), - [sym_true] = ACTIONS(1257), - [sym_false] = ACTIONS(1257), - [sym_null] = ACTIONS(1257), - [sym_undefined] = ACTIONS(1257), - [anon_sym_AT] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_abstract] = ACTIONS(1257), - [anon_sym_get] = ACTIONS(1257), - [anon_sym_set] = ACTIONS(1257), - [anon_sym_declare] = ACTIONS(1257), - [anon_sym_public] = ACTIONS(1257), - [anon_sym_private] = ACTIONS(1257), - [anon_sym_protected] = ACTIONS(1257), - [anon_sym_module] = ACTIONS(1257), - [anon_sym_any] = ACTIONS(1257), - [anon_sym_number] = ACTIONS(1257), - [anon_sym_boolean] = ACTIONS(1257), - [anon_sym_string] = ACTIONS(1257), - [anon_sym_symbol] = ACTIONS(1257), - [anon_sym_interface] = ACTIONS(1257), - [anon_sym_extends] = ACTIONS(1257), - [anon_sym_enum] = ACTIONS(1257), - [sym_readonly] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1278), + [anon_sym_export] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_as] = ACTIONS(1278), + [anon_sym_namespace] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(1278), + [anon_sym_var] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_in] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(1278), + [anon_sym_with] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_debugger] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_throw] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1278), + [anon_sym_GT] = ACTIONS(1278), + [anon_sym_SLASH] = ACTIONS(1278), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_class] = ACTIONS(1278), + [anon_sym_async] = ACTIONS(1278), + [anon_sym_function] = ACTIONS(1278), + [anon_sym_QMARK_DOT] = ACTIONS(1276), + [anon_sym_new] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1278), + [anon_sym_AMP_AMP] = ACTIONS(1276), + [anon_sym_PIPE_PIPE] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1278), + [anon_sym_GT_GT_GT] = ACTIONS(1276), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1276), + [anon_sym_GT_EQ] = ACTIONS(1276), + [anon_sym_QMARK_QMARK] = ACTIONS(1276), + [anon_sym_instanceof] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1276), + [sym_number] = ACTIONS(1276), + [sym_this] = ACTIONS(1278), + [sym_super] = ACTIONS(1278), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [sym_null] = ACTIONS(1278), + [sym_undefined] = ACTIONS(1278), + [anon_sym_AT] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_abstract] = ACTIONS(1278), + [anon_sym_get] = ACTIONS(1278), + [anon_sym_set] = ACTIONS(1278), + [anon_sym_declare] = ACTIONS(1278), + [anon_sym_public] = ACTIONS(1278), + [anon_sym_private] = ACTIONS(1278), + [anon_sym_protected] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_any] = ACTIONS(1278), + [anon_sym_number] = ACTIONS(1278), + [anon_sym_boolean] = ACTIONS(1278), + [anon_sym_string] = ACTIONS(1278), + [anon_sym_symbol] = ACTIONS(1278), + [anon_sym_interface] = ACTIONS(1278), + [anon_sym_extends] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [sym_readonly] = ACTIONS(1278), }, [119] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(1267), - [anon_sym_new] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1043), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1282), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_as] = ACTIONS(1282), + [anon_sym_namespace] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1282), + [anon_sym_import] = ACTIONS(1282), + [anon_sym_var] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_in] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_with] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_debugger] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_throw] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1282), + [anon_sym_class] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_QMARK] = ACTIONS(1282), + [anon_sym_AMP_AMP] = ACTIONS(1280), + [anon_sym_PIPE_PIPE] = ACTIONS(1280), + [anon_sym_GT_GT] = ACTIONS(1282), + [anon_sym_GT_GT_GT] = ACTIONS(1280), + [anon_sym_LT_LT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_STAR_STAR] = ACTIONS(1280), + [anon_sym_LT_EQ] = ACTIONS(1280), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1280), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1280), + [anon_sym_GT_EQ] = ACTIONS(1280), + [anon_sym_QMARK_QMARK] = ACTIONS(1280), + [anon_sym_instanceof] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1282), + [anon_sym_delete] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_abstract] = ACTIONS(1282), + [anon_sym_get] = ACTIONS(1282), + [anon_sym_set] = ACTIONS(1282), + [anon_sym_declare] = ACTIONS(1282), + [anon_sym_public] = ACTIONS(1282), + [anon_sym_private] = ACTIONS(1282), + [anon_sym_protected] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_any] = ACTIONS(1282), + [anon_sym_number] = ACTIONS(1282), + [anon_sym_boolean] = ACTIONS(1282), + [anon_sym_string] = ACTIONS(1282), + [anon_sym_symbol] = ACTIONS(1282), + [anon_sym_interface] = ACTIONS(1282), + [anon_sym_extends] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [sym_readonly] = ACTIONS(1282), }, [120] = { - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1271), - [anon_sym_export] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_as] = ACTIONS(1271), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1271), - [anon_sym_typeof] = ACTIONS(1271), - [anon_sym_import] = ACTIONS(1271), - [anon_sym_var] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_switch] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_await] = ACTIONS(1271), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_do] = ACTIONS(1271), - [anon_sym_try] = ACTIONS(1271), - [anon_sym_with] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_debugger] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_throw] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1271), - [anon_sym_yield] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(1271), - [anon_sym_GT] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1271), - [anon_sym_DOT] = ACTIONS(1271), - [anon_sym_class] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1271), - [anon_sym_function] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(1269), - [anon_sym_new] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_PIPE_PIPE] = ACTIONS(1269), - [anon_sym_GT_GT] = ACTIONS(1271), - [anon_sym_GT_GT_GT] = ACTIONS(1269), - [anon_sym_LT_LT] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_PERCENT] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1269), - [anon_sym_EQ_EQ] = ACTIONS(1271), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ] = ACTIONS(1271), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1269), - [anon_sym_GT_EQ] = ACTIONS(1269), - [anon_sym_QMARK_QMARK] = ACTIONS(1269), - [anon_sym_instanceof] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1271), - [anon_sym_delete] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_number] = ACTIONS(1269), - [sym_this] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_null] = ACTIONS(1271), - [sym_undefined] = ACTIONS(1271), - [anon_sym_AT] = ACTIONS(1269), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_abstract] = ACTIONS(1271), - [anon_sym_get] = ACTIONS(1271), - [anon_sym_set] = ACTIONS(1271), - [anon_sym_declare] = ACTIONS(1271), - [anon_sym_public] = ACTIONS(1271), - [anon_sym_private] = ACTIONS(1271), - [anon_sym_protected] = ACTIONS(1271), - [anon_sym_module] = ACTIONS(1271), - [anon_sym_any] = ACTIONS(1271), - [anon_sym_number] = ACTIONS(1271), - [anon_sym_boolean] = ACTIONS(1271), - [anon_sym_string] = ACTIONS(1271), - [anon_sym_symbol] = ACTIONS(1271), - [anon_sym_interface] = ACTIONS(1271), - [anon_sym_extends] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [sym_readonly] = ACTIONS(1271), - }, - [121] = { - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1275), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_as] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1275), - [anon_sym_import] = ACTIONS(1275), - [anon_sym_var] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_switch] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_await] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1275), - [anon_sym_with] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_debugger] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_throw] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1275), - [anon_sym_yield] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_class] = ACTIONS(1275), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_function] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_QMARK] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_GT_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_QMARK_QMARK] = ACTIONS(1273), - [anon_sym_instanceof] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1273), - [anon_sym_void] = ACTIONS(1275), - [anon_sym_delete] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1273), - [sym_number] = ACTIONS(1273), - [sym_this] = ACTIONS(1275), - [sym_super] = ACTIONS(1275), - [sym_true] = ACTIONS(1275), - [sym_false] = ACTIONS(1275), - [sym_null] = ACTIONS(1275), - [sym_undefined] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_abstract] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_interface] = ACTIONS(1275), - [anon_sym_extends] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [sym_readonly] = ACTIONS(1275), - }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(1277), - [sym_identifier] = ACTIONS(1279), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_as] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_import] = ACTIONS(1279), - [anon_sym_var] = ACTIONS(1279), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_switch] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_await] = ACTIONS(1279), - [anon_sym_in] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_try] = ACTIONS(1279), - [anon_sym_with] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_debugger] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_throw] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_DOT] = ACTIONS(1279), - [anon_sym_class] = ACTIONS(1279), - [anon_sym_async] = ACTIONS(1279), - [anon_sym_function] = ACTIONS(1279), - [anon_sym_QMARK_DOT] = ACTIONS(1277), - [anon_sym_new] = ACTIONS(1279), - [anon_sym_QMARK] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_GT_GT_GT] = ACTIONS(1277), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(1277), - [anon_sym_STAR_STAR] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_BANG_EQ] = ACTIONS(1279), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_QMARK_QMARK] = ACTIONS(1277), - [anon_sym_instanceof] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1279), - [anon_sym_delete] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1277), - [sym_number] = ACTIONS(1277), - [sym_this] = ACTIONS(1279), - [sym_super] = ACTIONS(1279), - [sym_true] = ACTIONS(1279), - [sym_false] = ACTIONS(1279), - [sym_null] = ACTIONS(1279), - [sym_undefined] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_abstract] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_interface] = ACTIONS(1279), - [anon_sym_extends] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [sym_readonly] = ACTIONS(1279), - }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_identifier] = ACTIONS(1283), - [anon_sym_export] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_as] = ACTIONS(1283), - [anon_sym_namespace] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_type] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1283), - [anon_sym_import] = ACTIONS(1283), - [anon_sym_var] = ACTIONS(1283), - [anon_sym_let] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_else] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_switch] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_await] = ACTIONS(1283), - [anon_sym_in] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_try] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_debugger] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_throw] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_class] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_function] = ACTIONS(1283), - [anon_sym_QMARK_DOT] = ACTIONS(1281), - [anon_sym_new] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_GT_GT_GT] = ACTIONS(1281), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1281), - [anon_sym_STAR_STAR] = ACTIONS(1281), - [anon_sym_LT_EQ] = ACTIONS(1281), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1281), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1281), - [anon_sym_QMARK_QMARK] = ACTIONS(1281), - [anon_sym_instanceof] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_void] = ACTIONS(1283), - [anon_sym_delete] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1281), - [sym_number] = ACTIONS(1281), - [sym_this] = ACTIONS(1283), - [sym_super] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [sym_null] = ACTIONS(1283), - [sym_undefined] = ACTIONS(1283), - [anon_sym_AT] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_abstract] = ACTIONS(1283), - [anon_sym_get] = ACTIONS(1283), - [anon_sym_set] = ACTIONS(1283), - [anon_sym_declare] = ACTIONS(1283), - [anon_sym_public] = ACTIONS(1283), - [anon_sym_private] = ACTIONS(1283), - [anon_sym_protected] = ACTIONS(1283), - [anon_sym_module] = ACTIONS(1283), - [anon_sym_any] = ACTIONS(1283), - [anon_sym_number] = ACTIONS(1283), - [anon_sym_boolean] = ACTIONS(1283), - [anon_sym_string] = ACTIONS(1283), - [anon_sym_symbol] = ACTIONS(1283), - [anon_sym_interface] = ACTIONS(1283), - [anon_sym_extends] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [sym_readonly] = ACTIONS(1283), - }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(567), - [sym_identifier] = ACTIONS(569), - [anon_sym_export] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_default] = ACTIONS(569), - [anon_sym_as] = ACTIONS(571), - [anon_sym_namespace] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_type] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(569), - [anon_sym_var] = ACTIONS(569), - [anon_sym_let] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_else] = ACTIONS(569), - [anon_sym_if] = ACTIONS(569), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_await] = ACTIONS(569), - [anon_sym_in] = ACTIONS(571), - [anon_sym_while] = ACTIONS(569), - [anon_sym_do] = ACTIONS(569), - [anon_sym_try] = ACTIONS(569), - [anon_sym_with] = ACTIONS(569), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_debugger] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_throw] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_case] = ACTIONS(569), - [anon_sym_yield] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(569), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(569), - [anon_sym_function] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(581), - [anon_sym_new] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_STAR_STAR] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_EQ_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_QMARK_QMARK] = ACTIONS(585), - [anon_sym_instanceof] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_void] = ACTIONS(569), - [anon_sym_delete] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(567), - [sym_number] = ACTIONS(567), - [sym_this] = ACTIONS(569), - [sym_super] = ACTIONS(569), - [sym_true] = ACTIONS(569), - [sym_false] = ACTIONS(569), - [sym_null] = ACTIONS(569), - [sym_undefined] = ACTIONS(569), - [anon_sym_AT] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_abstract] = ACTIONS(569), - [anon_sym_get] = ACTIONS(569), - [anon_sym_set] = ACTIONS(569), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(569), - [anon_sym_private] = ACTIONS(569), - [anon_sym_protected] = ACTIONS(569), - [anon_sym_module] = ACTIONS(569), - [anon_sym_any] = ACTIONS(569), - [anon_sym_number] = ACTIONS(569), - [anon_sym_boolean] = ACTIONS(569), - [anon_sym_string] = ACTIONS(569), - [anon_sym_symbol] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(569), - [anon_sym_extends] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [sym_readonly] = ACTIONS(569), - }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1289), - [anon_sym_export] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(1289), - [anon_sym_namespace] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_type] = ACTIONS(1289), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_import] = ACTIONS(1289), - [anon_sym_var] = ACTIONS(1289), - [anon_sym_let] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_else] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_await] = ACTIONS(1289), - [anon_sym_in] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_try] = ACTIONS(1289), - [anon_sym_with] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_debugger] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_throw] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_yield] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_class] = ACTIONS(1289), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(1289), - [anon_sym_QMARK_DOT] = ACTIONS(1287), - [anon_sym_new] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_GT_GT] = ACTIONS(1289), - [anon_sym_GT_GT_GT] = ACTIONS(1287), - [anon_sym_LT_LT] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1287), - [anon_sym_STAR_STAR] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_EQ_EQ] = ACTIONS(1289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1287), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1287), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_QMARK_QMARK] = ACTIONS(1287), - [anon_sym_instanceof] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_void] = ACTIONS(1289), - [anon_sym_delete] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1287), - [sym_number] = ACTIONS(1287), - [sym_this] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [sym_null] = ACTIONS(1289), - [sym_undefined] = ACTIONS(1289), - [anon_sym_AT] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_abstract] = ACTIONS(1289), - [anon_sym_get] = ACTIONS(1289), - [anon_sym_set] = ACTIONS(1289), - [anon_sym_declare] = ACTIONS(1289), - [anon_sym_public] = ACTIONS(1289), - [anon_sym_private] = ACTIONS(1289), - [anon_sym_protected] = ACTIONS(1289), - [anon_sym_module] = ACTIONS(1289), - [anon_sym_any] = ACTIONS(1289), - [anon_sym_number] = ACTIONS(1289), - [anon_sym_boolean] = ACTIONS(1289), - [anon_sym_string] = ACTIONS(1289), - [anon_sym_symbol] = ACTIONS(1289), - [anon_sym_interface] = ACTIONS(1289), - [anon_sym_extends] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [sym_readonly] = ACTIONS(1289), - }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1293), - [anon_sym_export] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_as] = ACTIONS(1293), - [anon_sym_namespace] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1293), - [anon_sym_typeof] = ACTIONS(1293), - [anon_sym_import] = ACTIONS(1293), - [anon_sym_var] = ACTIONS(1293), - [anon_sym_let] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [anon_sym_else] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_switch] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_await] = ACTIONS(1293), - [anon_sym_in] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_do] = ACTIONS(1293), - [anon_sym_try] = ACTIONS(1293), - [anon_sym_with] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_debugger] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_throw] = ACTIONS(1293), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_case] = ACTIONS(1293), - [anon_sym_yield] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_DOT] = ACTIONS(1293), - [anon_sym_class] = ACTIONS(1293), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_function] = ACTIONS(1293), - [anon_sym_QMARK_DOT] = ACTIONS(1291), - [anon_sym_new] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_AMP_AMP] = ACTIONS(1291), - [anon_sym_PIPE_PIPE] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1293), - [anon_sym_GT_GT_GT] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1293), - [anon_sym_CARET] = ACTIONS(1291), - [anon_sym_PIPE] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1291), - [anon_sym_STAR_STAR] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ] = ACTIONS(1293), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_QMARK_QMARK] = ACTIONS(1291), - [anon_sym_instanceof] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(1293), - [anon_sym_delete] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_number] = ACTIONS(1291), - [sym_this] = ACTIONS(1293), - [sym_super] = ACTIONS(1293), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [sym_null] = ACTIONS(1293), - [sym_undefined] = ACTIONS(1293), - [anon_sym_AT] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_abstract] = ACTIONS(1293), - [anon_sym_get] = ACTIONS(1293), - [anon_sym_set] = ACTIONS(1293), - [anon_sym_declare] = ACTIONS(1293), - [anon_sym_public] = ACTIONS(1293), - [anon_sym_private] = ACTIONS(1293), - [anon_sym_protected] = ACTIONS(1293), - [anon_sym_module] = ACTIONS(1293), - [anon_sym_any] = ACTIONS(1293), - [anon_sym_number] = ACTIONS(1293), - [anon_sym_boolean] = ACTIONS(1293), - [anon_sym_string] = ACTIONS(1293), - [anon_sym_symbol] = ACTIONS(1293), - [anon_sym_interface] = ACTIONS(1293), - [anon_sym_extends] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [sym_readonly] = ACTIONS(1293), - }, - [127] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1297), - [anon_sym_export] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_as] = ACTIONS(1297), - [anon_sym_namespace] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_type] = ACTIONS(1297), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1297), - [anon_sym_var] = ACTIONS(1297), - [anon_sym_let] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_await] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_try] = ACTIONS(1297), - [anon_sym_with] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_debugger] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_throw] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_yield] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1297), - [anon_sym_GT] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_class] = ACTIONS(1297), - [anon_sym_async] = ACTIONS(1297), - [anon_sym_function] = ACTIONS(1297), - [anon_sym_QMARK_DOT] = ACTIONS(1295), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_QMARK] = ACTIONS(1297), - [anon_sym_AMP_AMP] = ACTIONS(1295), - [anon_sym_PIPE_PIPE] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1297), - [anon_sym_GT_GT_GT] = ACTIONS(1295), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_CARET] = ACTIONS(1295), - [anon_sym_PIPE] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PERCENT] = ACTIONS(1295), - [anon_sym_STAR_STAR] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ] = ACTIONS(1297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_BANG_EQ] = ACTIONS(1297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_QMARK_QMARK] = ACTIONS(1295), - [anon_sym_instanceof] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1295), - [sym_number] = ACTIONS(1295), - [sym_this] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1297), - [anon_sym_AT] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_abstract] = ACTIONS(1297), - [anon_sym_get] = ACTIONS(1297), - [anon_sym_set] = ACTIONS(1297), - [anon_sym_declare] = ACTIONS(1297), - [anon_sym_public] = ACTIONS(1297), - [anon_sym_private] = ACTIONS(1297), - [anon_sym_protected] = ACTIONS(1297), - [anon_sym_module] = ACTIONS(1297), - [anon_sym_any] = ACTIONS(1297), - [anon_sym_number] = ACTIONS(1297), - [anon_sym_boolean] = ACTIONS(1297), - [anon_sym_string] = ACTIONS(1297), - [anon_sym_symbol] = ACTIONS(1297), - [anon_sym_interface] = ACTIONS(1297), - [anon_sym_extends] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [sym_readonly] = ACTIONS(1297), - }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1301), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_as] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_typeof] = ACTIONS(1301), - [anon_sym_import] = ACTIONS(1301), - [anon_sym_var] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_else] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_await] = ACTIONS(1301), - [anon_sym_in] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_try] = ACTIONS(1301), - [anon_sym_with] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_debugger] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_throw] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_SLASH] = ACTIONS(1301), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_class] = ACTIONS(1301), - [anon_sym_async] = ACTIONS(1301), - [anon_sym_function] = ACTIONS(1301), - [anon_sym_QMARK_DOT] = ACTIONS(1299), - [anon_sym_new] = ACTIONS(1301), - [anon_sym_QMARK] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1299), - [anon_sym_PIPE_PIPE] = ACTIONS(1299), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_GT_GT_GT] = ACTIONS(1299), - [anon_sym_LT_LT] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PERCENT] = ACTIONS(1299), - [anon_sym_STAR_STAR] = ACTIONS(1299), - [anon_sym_LT_EQ] = ACTIONS(1299), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1299), - [anon_sym_BANG_EQ] = ACTIONS(1301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1299), - [anon_sym_GT_EQ] = ACTIONS(1299), - [anon_sym_QMARK_QMARK] = ACTIONS(1299), - [anon_sym_instanceof] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_void] = ACTIONS(1301), - [anon_sym_delete] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_super] = ACTIONS(1301), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [sym_null] = ACTIONS(1301), - [sym_undefined] = ACTIONS(1301), - [anon_sym_AT] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_abstract] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_interface] = ACTIONS(1301), - [anon_sym_extends] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [sym_readonly] = ACTIONS(1301), - }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_identifier] = ACTIONS(1305), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_namespace] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_type] = ACTIONS(1305), - [anon_sym_typeof] = ACTIONS(1305), - [anon_sym_import] = ACTIONS(1305), - [anon_sym_var] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_await] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_with] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_debugger] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_throw] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1305), - [anon_sym_yield] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_class] = ACTIONS(1305), - [anon_sym_async] = ACTIONS(1305), - [anon_sym_function] = ACTIONS(1305), - [anon_sym_QMARK_DOT] = ACTIONS(1303), - [anon_sym_new] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(1305), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_GT_GT] = ACTIONS(1305), - [anon_sym_GT_GT_GT] = ACTIONS(1303), - [anon_sym_LT_LT] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PERCENT] = ACTIONS(1303), - [anon_sym_STAR_STAR] = ACTIONS(1303), - [anon_sym_LT_EQ] = ACTIONS(1303), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1303), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1303), - [anon_sym_GT_EQ] = ACTIONS(1303), - [anon_sym_QMARK_QMARK] = ACTIONS(1303), - [anon_sym_instanceof] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_void] = ACTIONS(1305), - [anon_sym_delete] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1303), - [sym_number] = ACTIONS(1303), - [sym_this] = ACTIONS(1305), - [sym_super] = ACTIONS(1305), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_AT] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_abstract] = ACTIONS(1305), - [anon_sym_get] = ACTIONS(1305), - [anon_sym_set] = ACTIONS(1305), - [anon_sym_declare] = ACTIONS(1305), - [anon_sym_public] = ACTIONS(1305), - [anon_sym_private] = ACTIONS(1305), - [anon_sym_protected] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_any] = ACTIONS(1305), - [anon_sym_number] = ACTIONS(1305), - [anon_sym_boolean] = ACTIONS(1305), - [anon_sym_string] = ACTIONS(1305), - [anon_sym_symbol] = ACTIONS(1305), - [anon_sym_interface] = ACTIONS(1305), - [anon_sym_extends] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [sym_readonly] = ACTIONS(1305), - }, - [130] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1337), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1732), - [sym_array] = STATE(1731), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3544), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_rest_parameter] = STATE(3142), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(527), + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2196), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3722), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3721), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1286), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -26134,95 +25467,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(1309), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [131] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1390), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1732), - [sym_array] = STATE(1731), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3690), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_rest_parameter] = STATE(3142), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(527), + [121] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2200), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3619), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3631), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1292), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -26232,291 +25567,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(1309), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(1311), - }, - [132] = { - [sym_import] = STATE(1811), - [sym_expression_statement] = STATE(168), - [sym_variable_declaration] = STATE(168), - [sym_lexical_declaration] = STATE(168), - [sym_empty_statement] = STATE(168), - [sym_parenthesized_expression] = STATE(1081), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1578), - [sym_array] = STATE(1567), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1081), - [sym_subscript_expression] = STATE(1081), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1082), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1313), - [anon_sym_export] = ACTIONS(1315), - [anon_sym_namespace] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [anon_sym_var] = ACTIONS(1319), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1323), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_get] = ACTIONS(1315), - [anon_sym_set] = ACTIONS(1315), - [anon_sym_declare] = ACTIONS(1315), - [anon_sym_public] = ACTIONS(1315), - [anon_sym_private] = ACTIONS(1315), - [anon_sym_protected] = ACTIONS(1315), - [anon_sym_module] = ACTIONS(1315), - [anon_sym_any] = ACTIONS(1315), - [anon_sym_number] = ACTIONS(1315), - [anon_sym_boolean] = ACTIONS(1315), - [anon_sym_string] = ACTIONS(1315), - [anon_sym_symbol] = ACTIONS(1315), - [sym_readonly] = ACTIONS(1315), - }, - [133] = { - [sym_import] = STATE(1811), - [sym_expression_statement] = STATE(169), - [sym_variable_declaration] = STATE(169), - [sym_lexical_declaration] = STATE(169), - [sym_empty_statement] = STATE(169), - [sym_parenthesized_expression] = STATE(1081), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1578), - [sym_array] = STATE(1567), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1081), - [sym_subscript_expression] = STATE(1081), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1082), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1313), - [anon_sym_export] = ACTIONS(1315), - [anon_sym_namespace] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [anon_sym_var] = ACTIONS(1319), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1323), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_get] = ACTIONS(1315), - [anon_sym_set] = ACTIONS(1315), - [anon_sym_declare] = ACTIONS(1315), - [anon_sym_public] = ACTIONS(1315), - [anon_sym_private] = ACTIONS(1315), - [anon_sym_protected] = ACTIONS(1315), - [anon_sym_module] = ACTIONS(1315), - [anon_sym_any] = ACTIONS(1315), - [anon_sym_number] = ACTIONS(1315), - [anon_sym_boolean] = ACTIONS(1315), - [anon_sym_string] = ACTIONS(1315), - [anon_sym_symbol] = ACTIONS(1315), - [sym_readonly] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [134] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1333), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1732), - [sym_array] = STATE(1731), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3633), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_rest_parameter] = STATE(3142), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(527), + [122] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2202), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3581), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3585), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(523), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -26526,93 +25667,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(1309), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [135] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(425), + [123] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2211), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3641), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3594), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1294), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1325), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -26622,92 +25767,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [anon_sym_extends] = ACTIONS(1327), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [136] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(425), + [124] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2220), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3534), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3535), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1296), [anon_sym_await] = ACTIONS(443), - [anon_sym_SEMI] = ACTIONS(1325), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -26717,383 +25867,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [anon_sym_extends] = ACTIONS(1327), - [sym_readonly] = ACTIONS(425), - [anon_sym_PIPE_RBRACE] = ACTIONS(1325), - [sym__automatic_semicolon] = ACTIONS(1325), - }, - [137] = { - [sym_export_clause] = STATE(2925), - [sym__declaration] = STATE(659), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(624), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [aux_sym_object_repeat1] = STATE(3195), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(1335), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [138] = { - [sym_export_clause] = STATE(2925), - [sym__declaration] = STATE(659), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(624), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [aux_sym_object_repeat1] = STATE(3112), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(1335), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [139] = { - [sym_export_clause] = STATE(2925), - [sym__declaration] = STATE(659), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(624), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [aux_sym_object_repeat1] = STATE(3178), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(1335), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [140] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1513), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3060), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_mapped_type_clause] = STATE(3624), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3062), - [sym_identifier] = ACTIONS(1386), - [anon_sym_export] = ACTIONS(1388), - [anon_sym_namespace] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(883), + [125] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2202), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3581), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3585), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_type] = ACTIONS(1388), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1298), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -27103,92 +25967,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_get] = ACTIONS(1388), - [anon_sym_set] = ACTIONS(1388), - [anon_sym_declare] = ACTIONS(1388), - [anon_sym_public] = ACTIONS(1388), - [anon_sym_private] = ACTIONS(1388), - [anon_sym_protected] = ACTIONS(1388), - [anon_sym_module] = ACTIONS(1388), - [anon_sym_any] = ACTIONS(1388), - [anon_sym_number] = ACTIONS(1388), - [anon_sym_boolean] = ACTIONS(1388), - [anon_sym_string] = ACTIONS(1388), - [anon_sym_symbol] = ACTIONS(1388), - [sym_readonly] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [141] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1492), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3060), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3635), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3062), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [126] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2228), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3638), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3636), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_type] = ACTIONS(425), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1300), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -27198,92 +26067,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [142] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1432), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3060), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3635), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3062), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [127] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2202), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1634), + [sym_array] = STATE(1633), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3581), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [aux_sym_array_repeat1] = STATE(3585), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(515), + [anon_sym_namespace] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_type] = ACTIONS(425), + [anon_sym_type] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1302), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(527), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -27293,88 +26167,390 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1288), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), [sym_false] = ACTIONS(487), [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [anon_sym_declare] = ACTIONS(515), + [anon_sym_public] = ACTIONS(547), + [anon_sym_private] = ACTIONS(547), + [anon_sym_protected] = ACTIONS(547), + [anon_sym_module] = ACTIONS(515), + [anon_sym_any] = ACTIONS(515), + [anon_sym_number] = ACTIONS(515), + [anon_sym_boolean] = ACTIONS(515), + [anon_sym_string] = ACTIONS(515), + [anon_sym_symbol] = ACTIONS(515), + [sym_readonly] = ACTIONS(1290), }, - [143] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1394), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(673), + [128] = { + [sym_export_clause] = STATE(3390), + [sym__declaration] = STATE(690), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(691), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [aux_sym_object_repeat1] = STATE(3666), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1359), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [129] = { + [sym_export_clause] = STATE(3390), + [sym__declaration] = STATE(690), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(691), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [aux_sym_object_repeat1] = STATE(3583), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1359), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [130] = { + [sym_export_clause] = STATE(3390), + [sym__declaration] = STATE(690), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(691), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [aux_sym_object_repeat1] = STATE(3727), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1359), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [131] = { + [sym_import] = STATE(1608), + [sym_expression_statement] = STATE(164), + [sym_variable_declaration] = STATE(164), + [sym_lexical_declaration] = STATE(164), + [sym_empty_statement] = STATE(164), + [sym_parenthesized_expression] = STATE(914), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1500), + [sym_array] = STATE(1482), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(914), + [sym_subscript_expression] = STATE(914), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(1369), + [anon_sym_export] = ACTIONS(1371), + [anon_sym_namespace] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(1371), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), [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_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1325), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), @@ -27394,84 +26570,572 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [anon_sym_extends] = ACTIONS(1327), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1371), + [anon_sym_set] = ACTIONS(1371), + [anon_sym_declare] = ACTIONS(1371), + [anon_sym_public] = ACTIONS(1371), + [anon_sym_private] = ACTIONS(1371), + [anon_sym_protected] = ACTIONS(1371), + [anon_sym_module] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_number] = ACTIONS(1371), + [anon_sym_boolean] = ACTIONS(1371), + [anon_sym_string] = ACTIONS(1371), + [anon_sym_symbol] = ACTIONS(1371), + [sym_readonly] = ACTIONS(1371), }, - [144] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1519), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3060), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3062), - [sym_identifier] = ACTIONS(877), + [132] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2155), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1584), + [sym_array] = STATE(1585), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4268), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [sym_identifier] = ACTIONS(1381), + [anon_sym_export] = ACTIONS(559), + [anon_sym_namespace] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(573), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1383), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(589), + [anon_sym_private] = ACTIONS(589), + [anon_sym_protected] = ACTIONS(589), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(559), + [anon_sym_number] = ACTIONS(559), + [anon_sym_boolean] = ACTIONS(559), + [anon_sym_string] = ACTIONS(559), + [anon_sym_symbol] = ACTIONS(559), + [sym_readonly] = ACTIONS(1385), + }, + [133] = { + [sym_import] = STATE(1608), + [sym_expression_statement] = STATE(168), + [sym_variable_declaration] = STATE(168), + [sym_lexical_declaration] = STATE(168), + [sym_empty_statement] = STATE(168), + [sym_parenthesized_expression] = STATE(914), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1500), + [sym_array] = STATE(1482), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(914), + [sym_subscript_expression] = STATE(914), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(1369), + [anon_sym_export] = ACTIONS(1371), + [anon_sym_namespace] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1371), + [anon_sym_set] = ACTIONS(1371), + [anon_sym_declare] = ACTIONS(1371), + [anon_sym_public] = ACTIONS(1371), + [anon_sym_private] = ACTIONS(1371), + [anon_sym_protected] = ACTIONS(1371), + [anon_sym_module] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_number] = ACTIONS(1371), + [anon_sym_boolean] = ACTIONS(1371), + [anon_sym_string] = ACTIONS(1371), + [anon_sym_symbol] = ACTIONS(1371), + [sym_readonly] = ACTIONS(1371), + }, + [134] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2142), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1584), + [sym_array] = STATE(1585), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4280), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [sym_identifier] = ACTIONS(1381), + [anon_sym_export] = ACTIONS(559), + [anon_sym_namespace] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(573), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1383), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(589), + [anon_sym_private] = ACTIONS(589), + [anon_sym_protected] = ACTIONS(589), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(559), + [anon_sym_number] = ACTIONS(559), + [anon_sym_boolean] = ACTIONS(559), + [anon_sym_string] = ACTIONS(559), + [anon_sym_symbol] = ACTIONS(559), + [sym_readonly] = ACTIONS(1385), + }, + [135] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2164), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1584), + [sym_array] = STATE(1585), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4225), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_rest_parameter] = STATE(3736), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(2366), + [sym_identifier] = ACTIONS(1381), + [anon_sym_export] = ACTIONS(559), + [anon_sym_namespace] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(573), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(1383), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(589), + [anon_sym_private] = ACTIONS(589), + [anon_sym_protected] = ACTIONS(589), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(559), + [anon_sym_number] = ACTIONS(559), + [anon_sym_boolean] = ACTIONS(559), + [anon_sym_string] = ACTIONS(559), + [anon_sym_symbol] = ACTIONS(559), + [sym_readonly] = ACTIONS(1385), + }, + [136] = { + [sym__declaration] = STATE(673), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(669), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [aux_sym_object_repeat1] = STATE(3666), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_global] = ACTIONS(1391), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [137] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), + [anon_sym_SEMI] = ACTIONS(1393), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -27481,7 +27145,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -27502,70 +27166,462 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(425), [anon_sym_string] = ACTIONS(425), [anon_sym_symbol] = ACTIONS(425), + [anon_sym_extends] = ACTIONS(1395), [sym_readonly] = ACTIONS(425), + [anon_sym_PIPE_RBRACE] = ACTIONS(1393), + [sym__automatic_semicolon] = ACTIONS(1393), }, - [145] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1472), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3147), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3148), - [sym_identifier] = ACTIONS(877), + [138] = { + [sym_export_clause] = STATE(3390), + [sym__declaration] = STATE(690), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(691), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1359), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [139] = { + [sym__declaration] = STATE(673), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(669), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [aux_sym_object_repeat1] = STATE(3583), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_global] = ACTIONS(1391), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [140] = { + [sym__declaration] = STATE(673), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(669), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [aux_sym_object_repeat1] = STATE(3727), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_global] = ACTIONS(1391), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [141] = { + [sym_export_clause] = STATE(3390), + [sym__declaration] = STATE(690), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(691), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1359), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [142] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(1393), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1393), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1393), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -27575,7 +27631,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -27596,446 +27652,262 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(425), [anon_sym_string] = ACTIONS(425), [anon_sym_symbol] = ACTIONS(425), + [anon_sym_extends] = ACTIONS(1395), [sym_readonly] = ACTIONS(425), }, - [146] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1558), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [143] = { + [sym__declaration] = STATE(673), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(669), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [anon_sym_extends] = ACTIONS(1327), - [sym_readonly] = ACTIONS(711), - }, - [147] = { - [sym__declaration] = STATE(628), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(638), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [aux_sym_object_repeat1] = STATE(3178), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1400), - [anon_sym_global] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [148] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1506), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [anon_sym_extends] = ACTIONS(1327), - [sym_readonly] = ACTIONS(607), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_global] = ACTIONS(1391), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), }, - [149] = { - [sym_export_clause] = STATE(2925), - [sym__declaration] = STATE(659), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(624), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1335), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), + [144] = { + [sym__declaration] = STATE(673), + [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_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_decorator] = STATE(2501), + [sym_function_signature] = STATE(669), + [sym_ambient_declaration] = STATE(669), + [sym_abstract_class_declaration] = STATE(669), + [sym_module] = STATE(669), + [sym_internal_module] = STATE(694), + [sym_import_alias] = STATE(669), + [sym_interface_declaration] = STATE(669), + [sym_enum_declaration] = STATE(669), + [sym_type_alias_declaration] = STATE(669), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_export_statement_repeat1] = STATE(3259), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1320), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1412), + [anon_sym_global] = ACTIONS(1391), + [anon_sym_interface] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [sym__automatic_semicolon] = ACTIONS(655), }, - [150] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1563), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3122), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3001), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [145] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2237), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4005), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1414), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -28045,7 +27917,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -28068,68 +27940,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [151] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1448), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3150), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(877), + [146] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2212), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4005), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1414), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -28139,7 +28012,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -28162,68 +28035,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [152] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1508), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3095), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3092), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [147] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2206), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_mapped_type_clause] = STATE(4119), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), + [sym_identifier] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1418), + [anon_sym_namespace] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_type] = ACTIONS(425), + [anon_sym_type] = ACTIONS(1418), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_RBRACK] = ACTIONS(1414), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1422), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -28233,7 +28107,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -28241,83 +28115,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_get] = ACTIONS(1418), + [anon_sym_set] = ACTIONS(1418), + [anon_sym_declare] = ACTIONS(1418), + [anon_sym_public] = ACTIONS(1418), + [anon_sym_private] = ACTIONS(1418), + [anon_sym_protected] = ACTIONS(1418), + [anon_sym_module] = ACTIONS(1418), + [anon_sym_any] = ACTIONS(1418), + [anon_sym_number] = ACTIONS(1418), + [anon_sym_boolean] = ACTIONS(1418), + [anon_sym_string] = ACTIONS(1418), + [anon_sym_symbol] = ACTIONS(1418), + [sym_readonly] = ACTIONS(1418), }, - [153] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1494), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3122), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [148] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2211), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3641), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3594), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1424), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -28327,7 +28201,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -28350,68 +28224,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [154] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1527), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3144), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3146), - [sym_identifier] = ACTIONS(877), + [149] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2200), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3619), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3631), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1426), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -28421,7 +28295,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -28444,68 +28318,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [155] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1509), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3087), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3091), - [sym_identifier] = ACTIONS(877), + [150] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2287), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3686), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3683), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1428), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -28515,7 +28389,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -28538,162 +28412,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [156] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1441), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_extends] = ACTIONS(1327), - [sym_readonly] = ACTIONS(809), - }, - [157] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1531), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3203), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3204), - [sym_identifier] = ACTIONS(877), + [151] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2228), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3638), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3636), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1430), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -28703,7 +28483,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -28726,350 +28506,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [158] = { - [sym__declaration] = STATE(628), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(638), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [aux_sym_object_repeat1] = STATE(3112), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1400), - [anon_sym_global] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [159] = { - [sym__declaration] = STATE(628), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(638), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [aux_sym_object_repeat1] = STATE(3195), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1400), - [anon_sym_global] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [160] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1713), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_extends] = ACTIONS(1327), - [sym_readonly] = ACTIONS(841), - }, - [161] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1526), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3083), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3084), - [sym_identifier] = ACTIONS(877), + [152] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2286), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3649), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3742), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1432), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -29079,7 +28577,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -29102,68 +28600,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [162] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1517), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3150), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(877), + [153] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2258), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3658), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -29173,7 +28671,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -29196,68 +28694,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [163] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1516), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3170), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3168), - [sym_identifier] = ACTIONS(877), + [154] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2250), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3564), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(1436), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1436), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1436), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -29267,7 +28765,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -29290,68 +28788,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [164] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1433), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3064), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3067), - [sym_identifier] = ACTIONS(877), + [155] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2197), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3551), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3552), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1438), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -29361,7 +28859,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -29384,162 +28882,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [165] = { - [sym_export_clause] = STATE(2925), - [sym__declaration] = STATE(659), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(624), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1335), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1430), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [166] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1473), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3060), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3062), - [sym_identifier] = ACTIONS(877), + [156] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2196), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3722), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3721), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1440), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -29549,7 +28953,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -29572,68 +28976,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [167] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1489), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_spread_element] = STATE(3193), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [aux_sym_array_repeat1] = STATE(3196), - [sym_identifier] = ACTIONS(877), + [157] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2288), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3658), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), + [anon_sym_new] = ACTIONS(806), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -29643,7 +29047,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -29666,1356 +29070,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [168] = { - [sym_import] = STATE(1811), - [sym_expression_statement] = STATE(201), - [sym_empty_statement] = STATE(201), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [169] = { - [sym_import] = STATE(1811), - [sym_expression_statement] = STATE(202), - [sym_empty_statement] = STATE(202), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1443), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [170] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1511), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3458), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - [sym__automatic_semicolon] = ACTIONS(1434), - }, - [171] = { - [sym_import] = STATE(2036), - [sym_parenthesized_expression] = STATE(1160), - [sym__expression] = STATE(1897), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1981), - [sym_array] = STATE(1978), - [sym_nested_identifier] = STATE(520), - [sym_class] = STATE(2036), - [sym_function] = STATE(2036), - [sym_generator_function] = STATE(2036), - [sym_arrow_function] = STATE(2036), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(124), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1160), - [sym_subscript_expression] = STATE(1160), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(2036), - [sym_template_string] = STATE(2036), - [sym_regex] = STATE(2036), - [sym_meta_property] = STATE(2036), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1436), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_namespace] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1444), - [sym_this] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [sym_null] = ACTIONS(1446), - [sym_undefined] = ACTIONS(1446), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_declare] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_protected] = ACTIONS(1438), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_any] = ACTIONS(1438), - [anon_sym_number] = ACTIONS(1438), - [anon_sym_boolean] = ACTIONS(1438), - [anon_sym_string] = ACTIONS(1438), - [anon_sym_symbol] = ACTIONS(1438), - [sym_readonly] = ACTIONS(1438), - }, - [172] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1152), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1966), - [sym_array] = STATE(1965), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1156), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_var] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_get] = ACTIONS(1450), - [anon_sym_set] = ACTIONS(1450), - [anon_sym_declare] = ACTIONS(1450), - [anon_sym_public] = ACTIONS(1450), - [anon_sym_private] = ACTIONS(1450), - [anon_sym_protected] = ACTIONS(1450), - [anon_sym_module] = ACTIONS(1450), - [anon_sym_any] = ACTIONS(1450), - [anon_sym_number] = ACTIONS(1450), - [anon_sym_boolean] = ACTIONS(1450), - [anon_sym_string] = ACTIONS(1450), - [anon_sym_symbol] = ACTIONS(1450), - [sym_readonly] = ACTIONS(1450), - }, - [173] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1441), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1229), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1458), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [174] = { - [sym__declaration] = STATE(628), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(638), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(1400), - [anon_sym_global] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [175] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1415), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_nested_identifier] = STATE(3489), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_nested_type_identifier] = STATE(2568), - [sym_generic_type] = STATE(3031), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1460), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [176] = { - [sym_import] = STATE(1975), - [sym_parenthesized_expression] = STATE(1163), - [sym__expression] = STATE(1951), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1990), - [sym_array] = STATE(1988), - [sym_nested_identifier] = STATE(2226), - [sym_class] = STATE(1975), - [sym_function] = STATE(1975), - [sym_generator_function] = STATE(1975), - [sym_arrow_function] = STATE(1975), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1239), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1163), - [sym_subscript_expression] = STATE(1163), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1975), - [sym_template_string] = STATE(1975), - [sym_regex] = STATE(1975), - [sym_meta_property] = STATE(1975), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3379), - [sym_generic_type] = STATE(2275), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1470), - [sym_this] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [sym_null] = ACTIONS(1472), - [sym_undefined] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [sym_readonly] = ACTIONS(1464), - }, - [177] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1713), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1229), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [178] = { - [sym_import] = STATE(1975), - [sym_parenthesized_expression] = STATE(1163), - [sym__expression] = STATE(1951), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1990), - [sym_array] = STATE(1988), - [sym_nested_identifier] = STATE(2226), - [sym_class] = STATE(1975), - [sym_function] = STATE(1975), - [sym_generator_function] = STATE(1975), - [sym_arrow_function] = STATE(1975), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1239), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1163), - [sym_subscript_expression] = STATE(1163), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1975), - [sym_template_string] = STATE(1975), - [sym_regex] = STATE(1975), - [sym_meta_property] = STATE(1975), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3379), - [sym_generic_type] = STATE(2275), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1476), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1470), - [sym_this] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [sym_null] = ACTIONS(1472), - [sym_undefined] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [sym_readonly] = ACTIONS(1464), - }, - [179] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1506), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1780), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [180] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1893), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [181] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1514), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_nested_identifier] = STATE(3489), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_nested_type_identifier] = STATE(2809), - [sym_generic_type] = STATE(3184), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [182] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1229), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1484), + [158] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2202), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3581), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3585), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1442), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -31025,7 +29141,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -31048,434 +29164,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [183] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1207), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [184] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1394), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1619), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [185] = { - [sym_import] = STATE(1975), - [sym_parenthesized_expression] = STATE(1163), - [sym__expression] = STATE(1951), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1990), - [sym_array] = STATE(1988), - [sym_nested_identifier] = STATE(1715), - [sym_class] = STATE(1975), - [sym_function] = STATE(1975), - [sym_generator_function] = STATE(1975), - [sym_arrow_function] = STATE(1975), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1714), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1163), - [sym_subscript_expression] = STATE(1163), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1975), - [sym_template_string] = STATE(1975), - [sym_regex] = STATE(1975), - [sym_meta_property] = STATE(1975), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3402), - [sym_generic_type] = STATE(1702), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1470), - [sym_this] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [sym_null] = ACTIONS(1472), - [sym_undefined] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [sym_readonly] = ACTIONS(1464), - }, - [186] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(1276), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1241), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3473), - [sym_generic_type] = STATE(1275), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1492), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [187] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1207), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1494), + [159] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2220), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3534), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3535), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1444), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -31485,7 +29235,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -31508,526 +29258,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [188] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1558), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1619), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1496), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [189] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1207), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [190] = { - [sym_import] = STATE(2022), - [sym_parenthesized_expression] = STATE(1162), - [sym__expression] = STATE(1888), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1984), - [sym_array] = STATE(1983), - [sym_nested_identifier] = STATE(1867), - [sym_class] = STATE(2022), - [sym_function] = STATE(2022), - [sym_generator_function] = STATE(2022), - [sym_arrow_function] = STATE(2022), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1787), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(2022), - [sym_template_string] = STATE(2022), - [sym_regex] = STATE(2022), - [sym_meta_property] = STATE(2022), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3289), - [sym_generic_type] = STATE(1868), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1500), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1508), - [sym_this] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_null] = ACTIONS(1510), - [sym_undefined] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_get] = ACTIONS(1502), - [anon_sym_set] = ACTIONS(1502), - [anon_sym_declare] = ACTIONS(1502), - [anon_sym_public] = ACTIONS(1502), - [anon_sym_private] = ACTIONS(1502), - [anon_sym_protected] = ACTIONS(1502), - [anon_sym_module] = ACTIONS(1502), - [anon_sym_any] = ACTIONS(1502), - [anon_sym_number] = ACTIONS(1502), - [anon_sym_boolean] = ACTIONS(1502), - [anon_sym_string] = ACTIONS(1502), - [anon_sym_symbol] = ACTIONS(1502), - [sym_readonly] = ACTIONS(1502), - }, - [191] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1496), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2727), - [sym_generic_type] = STATE(3169), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1512), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [192] = { - [sym__declaration] = STATE(628), - [sym_variable_declaration] = STATE(638), - [sym_lexical_declaration] = STATE(638), - [sym_class_declaration] = STATE(638), - [sym_function_declaration] = STATE(638), - [sym_generator_function_declaration] = STATE(638), - [sym_decorator] = STATE(2168), - [sym_function_signature] = STATE(638), - [sym_ambient_declaration] = STATE(638), - [sym_abstract_class_declaration] = STATE(638), - [sym_module] = STATE(638), - [sym_internal_module] = STATE(636), - [sym_import_alias] = STATE(638), - [sym_interface_declaration] = STATE(638), - [sym_enum_declaration] = STATE(638), - [sym_type_alias_declaration] = STATE(638), - [aux_sym_export_statement_repeat1] = STATE(2839), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_var] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1430), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [193] = { - [sym_import] = STATE(1975), - [sym_parenthesized_expression] = STATE(1151), - [sym__expression] = STATE(1612), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1895), - [sym_array] = STATE(1894), - [sym_nested_identifier] = STATE(2226), - [sym_class] = STATE(1975), - [sym_function] = STATE(1975), - [sym_generator_function] = STATE(1975), - [sym_arrow_function] = STATE(1975), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1239), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1975), - [sym_template_string] = STATE(1975), - [sym_regex] = STATE(1975), - [sym_meta_property] = STATE(1975), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3379), - [sym_generic_type] = STATE(2275), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1516), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1518), + [160] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2362), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3564), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(3340), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1436), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -32037,89 +29329,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1470), - [sym_this] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [sym_null] = ACTIONS(1472), - [sym_undefined] = ACTIONS(1472), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [sym_readonly] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [194] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1785), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1524), + [161] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2204), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3603), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3604), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1446), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -32129,7 +29423,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -32152,76 +29446,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [195] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1229), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [162] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2231), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1414), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -32229,81 +29525,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [196] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1893), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1526), + [163] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2203), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_spread_element] = STATE(3563), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [aux_sym_array_repeat1] = STATE(3562), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(433), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(1414), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -32313,7 +29611,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -32336,168 +29634,541 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [197] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1229), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1528), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [164] = { + [sym_import] = STATE(1608), + [sym_expression_statement] = STATE(203), + [sym_empty_statement] = STATE(203), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [198] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1373), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_nested_identifier] = STATE(3486), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(2512), - [sym_generic_type] = STATE(2937), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [165] = { + [sym__call_signature] = STATE(4107), + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [aux_sym_object_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(1448), + [anon_sym_export] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_get] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_declare] = ACTIONS(1450), + [anon_sym_public] = ACTIONS(1450), + [anon_sym_private] = ACTIONS(1450), + [anon_sym_protected] = ACTIONS(1450), + [anon_sym_module] = ACTIONS(1450), + [anon_sym_any] = ACTIONS(1450), + [anon_sym_number] = ACTIONS(1450), + [anon_sym_boolean] = ACTIONS(1450), + [anon_sym_string] = ACTIONS(1450), + [anon_sym_symbol] = ACTIONS(1450), + [sym_readonly] = ACTIONS(1450), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [166] = { + [sym__call_signature] = STATE(4107), + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [aux_sym_object_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(1448), + [anon_sym_export] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_get] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_declare] = ACTIONS(1450), + [anon_sym_public] = ACTIONS(1450), + [anon_sym_private] = ACTIONS(1450), + [anon_sym_protected] = ACTIONS(1450), + [anon_sym_module] = ACTIONS(1450), + [anon_sym_any] = ACTIONS(1450), + [anon_sym_number] = ACTIONS(1450), + [anon_sym_boolean] = ACTIONS(1450), + [anon_sym_string] = ACTIONS(1450), + [anon_sym_symbol] = ACTIONS(1450), + [sym_readonly] = ACTIONS(1450), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [167] = { + [sym__call_signature] = STATE(4107), + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [aux_sym_object_repeat1] = STATE(3666), + [sym_identifier] = ACTIONS(1448), + [anon_sym_export] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_get] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_declare] = ACTIONS(1450), + [anon_sym_public] = ACTIONS(1450), + [anon_sym_private] = ACTIONS(1450), + [anon_sym_protected] = ACTIONS(1450), + [anon_sym_module] = ACTIONS(1450), + [anon_sym_any] = ACTIONS(1450), + [anon_sym_number] = ACTIONS(1450), + [anon_sym_boolean] = ACTIONS(1450), + [anon_sym_string] = ACTIONS(1450), + [anon_sym_symbol] = ACTIONS(1450), + [sym_readonly] = ACTIONS(1450), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [168] = { + [sym_import] = STATE(1608), + [sym_expression_statement] = STATE(202), + [sym_empty_statement] = STATE(202), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2205), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3933), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [169] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -32505,264 +30176,358 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_extends] = ACTIONS(1395), + [sym_readonly] = ACTIONS(890), }, - [199] = { - [sym_import] = STATE(2025), - [sym_parenthesized_expression] = STATE(1161), - [sym__expression] = STATE(1953), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(2001), - [sym_array] = STATE(2000), - [sym_nested_identifier] = STATE(2305), - [sym_class] = STATE(2025), - [sym_function] = STATE(2025), - [sym_generator_function] = STATE(2025), - [sym_arrow_function] = STATE(2025), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1670), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(2025), - [sym_template_string] = STATE(2025), - [sym_regex] = STATE(2025), - [sym_meta_property] = STATE(2025), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3368), - [sym_generic_type] = STATE(2346), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1532), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(863), + [170] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2153), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_nested_identifier] = STATE(4026), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_nested_type_identifier] = STATE(2930), + [sym_generic_type] = STATE(3320), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1472), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [171] = { + [sym_import] = STATE(1745), + [sym_parenthesized_expression] = STATE(1002), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1659), + [sym_array] = STATE(1658), + [sym_nested_identifier] = STATE(2561), + [sym_class] = STATE(1745), + [sym_function] = STATE(1745), + [sym_generator_function] = STATE(1745), + [sym_arrow_function] = STATE(1745), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1424), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1002), + [sym_subscript_expression] = STATE(1002), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1745), + [sym_template_string] = STATE(1745), + [sym_regex] = STATE(1745), + [sym_meta_property] = STATE(1745), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3900), + [sym_generic_type] = STATE(2574), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1476), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_namespace] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1538), + [anon_sym_async] = ACTIONS(1482), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1540), - [sym_this] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_undefined] = ACTIONS(1542), + [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(91), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [sym_readonly] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_get] = ACTIONS(1478), + [anon_sym_set] = ACTIONS(1478), + [anon_sym_declare] = ACTIONS(1478), + [anon_sym_public] = ACTIONS(1478), + [anon_sym_private] = ACTIONS(1478), + [anon_sym_protected] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_any] = ACTIONS(1478), + [anon_sym_number] = ACTIONS(1478), + [anon_sym_boolean] = ACTIONS(1478), + [anon_sym_string] = ACTIONS(1478), + [anon_sym_symbol] = ACTIONS(1478), + [sym_readonly] = ACTIONS(1478), }, - [200] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_nested_identifier] = STATE(2184), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1207), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_nested_type_identifier] = STATE(3270), - [sym_generic_type] = STATE(486), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1544), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [172] = { + [sym_import] = STATE(2044), + [sym_parenthesized_expression] = STATE(1367), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1838), + [sym_array] = STATE(1837), + [sym_nested_identifier] = STATE(2639), + [sym_class] = STATE(2044), + [sym_function] = STATE(2044), + [sym_generator_function] = STATE(2044), + [sym_arrow_function] = STATE(2044), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1527), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2044), + [sym_template_string] = STATE(2044), + [sym_regex] = STATE(2044), + [sym_meta_property] = STATE(2044), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3752), + [sym_generic_type] = STATE(2746), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1488), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_namespace] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(1494), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(1496), + [sym_this] = ACTIONS(1498), + [sym_super] = ACTIONS(1498), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [sym_null] = ACTIONS(1498), + [sym_undefined] = ACTIONS(1498), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_get] = ACTIONS(1490), + [anon_sym_set] = ACTIONS(1490), + [anon_sym_declare] = ACTIONS(1490), + [anon_sym_public] = ACTIONS(1490), + [anon_sym_private] = ACTIONS(1490), + [anon_sym_protected] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_any] = ACTIONS(1490), + [anon_sym_number] = ACTIONS(1490), + [anon_sym_boolean] = ACTIONS(1490), + [anon_sym_string] = ACTIONS(1490), + [anon_sym_symbol] = ACTIONS(1490), + [sym_readonly] = ACTIONS(1490), }, - [201] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1668), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3701), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), + [173] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(1310), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1742), + [sym_array] = STATE(1744), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1500), + [anon_sym_export] = ACTIONS(1502), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1502), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), + [anon_sym_var] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1508), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -32772,7 +30537,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -32780,80 +30545,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_get] = ACTIONS(1502), + [anon_sym_set] = ACTIONS(1502), + [anon_sym_declare] = ACTIONS(1502), + [anon_sym_public] = ACTIONS(1502), + [anon_sym_private] = ACTIONS(1502), + [anon_sym_protected] = ACTIONS(1502), + [anon_sym_module] = ACTIONS(1502), + [anon_sym_any] = ACTIONS(1502), + [anon_sym_number] = ACTIONS(1502), + [anon_sym_boolean] = ACTIONS(1502), + [anon_sym_string] = ACTIONS(1502), + [anon_sym_symbol] = ACTIONS(1502), + [sym_readonly] = ACTIONS(1502), }, - [202] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1607), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3659), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), + [174] = { + [sym_import] = STATE(2034), + [sym_parenthesized_expression] = STATE(1360), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1888), + [sym_array] = STATE(1889), + [sym_nested_identifier] = STATE(2698), + [sym_class] = STATE(2034), + [sym_function] = STATE(2034), + [sym_generator_function] = STATE(2034), + [sym_arrow_function] = STATE(2034), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1360), + [sym_subscript_expression] = STATE(1360), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2034), + [sym_template_string] = STATE(2034), + [sym_regex] = STATE(2034), + [sym_meta_property] = STATE(2034), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3940), + [sym_generic_type] = STATE(2843), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_namespace] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1512), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1516), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -32863,87 +30629,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [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(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_get] = ACTIONS(1512), + [anon_sym_set] = ACTIONS(1512), + [anon_sym_declare] = ACTIONS(1512), + [anon_sym_public] = ACTIONS(1512), + [anon_sym_private] = ACTIONS(1512), + [anon_sym_protected] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_any] = ACTIONS(1512), + [anon_sym_number] = ACTIONS(1512), + [anon_sym_boolean] = ACTIONS(1512), + [anon_sym_string] = ACTIONS(1512), + [anon_sym_symbol] = ACTIONS(1512), + [sym_readonly] = ACTIONS(1512), }, - [203] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1672), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3483), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), + [175] = { + [sym_import] = STATE(1745), + [sym_parenthesized_expression] = STATE(1002), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1659), + [sym_array] = STATE(1658), + [sym_nested_identifier] = STATE(1694), + [sym_class] = STATE(1745), + [sym_function] = STATE(1745), + [sym_generator_function] = STATE(1745), + [sym_arrow_function] = STATE(1745), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1002), + [sym_subscript_expression] = STATE(1002), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1745), + [sym_template_string] = STATE(1745), + [sym_regex] = STATE(1745), + [sym_meta_property] = STATE(1745), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3899), + [sym_generic_type] = STATE(1697), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_namespace] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1478), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1482), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -32953,87 +30721,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [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(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_get] = ACTIONS(1478), + [anon_sym_set] = ACTIONS(1478), + [anon_sym_declare] = ACTIONS(1478), + [anon_sym_public] = ACTIONS(1478), + [anon_sym_private] = ACTIONS(1478), + [anon_sym_protected] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_any] = ACTIONS(1478), + [anon_sym_number] = ACTIONS(1478), + [anon_sym_boolean] = ACTIONS(1478), + [anon_sym_string] = ACTIONS(1478), + [anon_sym_symbol] = ACTIONS(1478), + [sym_readonly] = ACTIONS(1478), }, - [204] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1404), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3540), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [176] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1540), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1524), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -33043,7 +30813,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -33066,64 +30836,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [205] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1426), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1261), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [177] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1660), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1526), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -33133,7 +30905,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -33156,74 +30928,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [206] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1847), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_mapped_type_clause] = STATE(3624), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1552), - [anon_sym_export] = ACTIONS(1554), - [anon_sym_namespace] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1554), - [anon_sym_typeof] = ACTIONS(863), + [178] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2267), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3235), + [sym_generic_type] = STATE(3711), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -33231,169 +31005,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_get] = ACTIONS(1554), - [anon_sym_set] = ACTIONS(1554), - [anon_sym_declare] = ACTIONS(1554), - [anon_sym_public] = ACTIONS(1554), - [anon_sym_private] = ACTIONS(1554), - [anon_sym_protected] = ACTIONS(1554), - [anon_sym_module] = ACTIONS(1554), - [anon_sym_any] = ACTIONS(1554), - [anon_sym_number] = ACTIONS(1554), - [anon_sym_boolean] = ACTIONS(1554), - [anon_sym_string] = ACTIONS(1554), - [anon_sym_symbol] = ACTIONS(1554), - [sym_readonly] = ACTIONS(1554), - }, - [207] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1512), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3460), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [208] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1402), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1302), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [179] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1670), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1530), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -33403,7 +31089,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -33426,64 +31112,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [209] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1306), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3001), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [180] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1379), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1532), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -33493,7 +31181,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -33516,1144 +31204,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [210] = { - [sym_import] = STATE(1518), - [sym_parenthesized_expression] = STATE(824), - [sym__expression] = STATE(1930), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1368), - [sym_array] = STATE(1369), - [sym_class] = STATE(1518), - [sym_function] = STATE(1518), - [sym_generator_function] = STATE(1518), - [sym_arrow_function] = STATE(1518), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1518), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(824), - [sym_subscript_expression] = STATE(824), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1518), - [sym_template_string] = STATE(1518), - [sym_regex] = STATE(1518), - [sym_meta_property] = STATE(1518), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1560), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1568), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1572), - [sym_this] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_true] = ACTIONS(1574), - [sym_false] = ACTIONS(1574), - [sym_null] = ACTIONS(1574), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1562), - }, - [211] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2880), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3265), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1578), - [anon_sym_namespace] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [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(91), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_get] = ACTIONS(1578), - [anon_sym_set] = ACTIONS(1578), - [anon_sym_declare] = ACTIONS(1578), - [anon_sym_public] = ACTIONS(1578), - [anon_sym_private] = ACTIONS(1578), - [anon_sym_protected] = ACTIONS(1578), - [anon_sym_module] = ACTIONS(1578), - [anon_sym_any] = ACTIONS(1578), - [anon_sym_number] = ACTIONS(1578), - [anon_sym_boolean] = ACTIONS(1578), - [anon_sym_string] = ACTIONS(1578), - [anon_sym_symbol] = ACTIONS(1578), - [sym_readonly] = ACTIONS(1578), - }, - [212] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1758), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1430), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [213] = { - [sym_import] = STATE(1909), - [sym_statement_block] = STATE(1923), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1475), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [214] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1726), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1420), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [215] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1424), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [216] = { - [sym_import] = STATE(1909), - [sym_statement_block] = STATE(1958), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1470), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [217] = { - [sym_import] = STATE(1909), - [sym_statement_block] = STATE(1961), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1469), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [218] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1594), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1600), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [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(91), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [sym_readonly] = ACTIONS(1596), - }, - [219] = { - [sym_import] = STATE(1909), - [sym_statement_block] = STATE(1959), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1468), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [220] = { - [sym_import] = STATE(1611), - [sym_parenthesized_expression] = STATE(834), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1502), - [sym_array] = STATE(1501), - [sym_class] = STATE(1611), - [sym_function] = STATE(1611), - [sym_generator_function] = STATE(1611), - [sym_arrow_function] = STATE(1611), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1611), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(834), - [sym_subscript_expression] = STATE(834), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1611), - [sym_template_string] = STATE(1611), - [sym_regex] = STATE(1611), - [sym_meta_property] = STATE(1611), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2835), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3372), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1602), - [anon_sym_export] = ACTIONS(1604), - [anon_sym_namespace] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1604), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1614), - [sym_this] = ACTIONS(1616), - [sym_super] = ACTIONS(1616), - [sym_true] = ACTIONS(1616), - [sym_false] = ACTIONS(1616), - [sym_null] = ACTIONS(1616), - [sym_undefined] = ACTIONS(1616), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_get] = ACTIONS(1604), - [anon_sym_set] = ACTIONS(1604), - [anon_sym_declare] = ACTIONS(1604), - [anon_sym_public] = ACTIONS(1604), - [anon_sym_private] = ACTIONS(1604), - [anon_sym_protected] = ACTIONS(1604), - [anon_sym_module] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_number] = ACTIONS(1604), - [anon_sym_boolean] = ACTIONS(1604), - [anon_sym_string] = ACTIONS(1604), - [anon_sym_symbol] = ACTIONS(1604), - [sym_readonly] = ACTIONS(1604), - }, - [221] = { - [sym_import] = STATE(1611), - [sym_parenthesized_expression] = STATE(834), - [sym__expression] = STATE(1940), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1502), - [sym_array] = STATE(1501), - [sym_class] = STATE(1611), - [sym_function] = STATE(1611), - [sym_generator_function] = STATE(1611), - [sym_arrow_function] = STATE(1611), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1611), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(834), - [sym_subscript_expression] = STATE(834), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1611), - [sym_template_string] = STATE(1611), - [sym_regex] = STATE(1611), - [sym_meta_property] = STATE(1611), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1602), - [anon_sym_export] = ACTIONS(1604), - [anon_sym_namespace] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1604), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1614), - [sym_this] = ACTIONS(1616), - [sym_super] = ACTIONS(1616), - [sym_true] = ACTIONS(1616), - [sym_false] = ACTIONS(1616), - [sym_null] = ACTIONS(1616), - [sym_undefined] = ACTIONS(1616), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_get] = ACTIONS(1604), - [anon_sym_set] = ACTIONS(1604), - [anon_sym_declare] = ACTIONS(1604), - [anon_sym_public] = ACTIONS(1604), - [anon_sym_private] = ACTIONS(1604), - [anon_sym_protected] = ACTIONS(1604), - [anon_sym_module] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_number] = ACTIONS(1604), - [anon_sym_boolean] = ACTIONS(1604), - [anon_sym_string] = ACTIONS(1604), - [anon_sym_symbol] = ACTIONS(1604), - [sym_readonly] = ACTIONS(1604), - }, - [222] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1585), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3635), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [181] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1379), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1534), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -34663,7 +31273,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -34686,244 +31296,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [223] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1855), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1584), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [224] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2861), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3438), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1578), - [anon_sym_namespace] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_typeof] = ACTIONS(863), + [182] = { + [sym_import] = STATE(1745), + [sym_parenthesized_expression] = STATE(1002), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1659), + [sym_array] = STATE(1658), + [sym_nested_identifier] = STATE(2561), + [sym_class] = STATE(1745), + [sym_function] = STATE(1745), + [sym_generator_function] = STATE(1745), + [sym_arrow_function] = STATE(1745), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1424), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1002), + [sym_subscript_expression] = STATE(1002), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1745), + [sym_template_string] = STATE(1745), + [sym_regex] = STATE(1745), + [sym_meta_property] = STATE(1745), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3900), + [sym_generic_type] = STATE(2574), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1536), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_namespace] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1582), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1584), + [anon_sym_async] = ACTIONS(1482), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [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), + [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(91), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_get] = ACTIONS(1578), - [anon_sym_set] = ACTIONS(1578), - [anon_sym_declare] = ACTIONS(1578), - [anon_sym_public] = ACTIONS(1578), - [anon_sym_private] = ACTIONS(1578), - [anon_sym_protected] = ACTIONS(1578), - [anon_sym_module] = ACTIONS(1578), - [anon_sym_any] = ACTIONS(1578), - [anon_sym_number] = ACTIONS(1578), - [anon_sym_boolean] = ACTIONS(1578), - [anon_sym_string] = ACTIONS(1578), - [anon_sym_symbol] = ACTIONS(1578), - [sym_readonly] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_get] = ACTIONS(1478), + [anon_sym_set] = ACTIONS(1478), + [anon_sym_declare] = ACTIONS(1478), + [anon_sym_public] = ACTIONS(1478), + [anon_sym_private] = ACTIONS(1478), + [anon_sym_protected] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_any] = ACTIONS(1478), + [anon_sym_number] = ACTIONS(1478), + [anon_sym_boolean] = ACTIONS(1478), + [anon_sym_string] = ACTIONS(1478), + [anon_sym_symbol] = ACTIONS(1478), + [sym_readonly] = ACTIONS(1478), }, - [225] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1377), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1322), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [183] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(1515), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1406), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3772), + [sym_generic_type] = STATE(1517), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1538), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -34933,7 +31457,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -34956,64 +31480,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [226] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1675), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3645), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [184] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(1515), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1430), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3772), + [sym_generic_type] = STATE(1517), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1540), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -35023,7 +31549,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -35046,154 +31572,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [227] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1581), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_function_signature] = STATE(609), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [228] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1354), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3733), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [185] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1660), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1542), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -35203,7 +31641,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -35226,164 +31664,168 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [229] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2835), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3372), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1594), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_typeof] = ACTIONS(863), + [186] = { + [sym_import] = STATE(1745), + [sym_parenthesized_expression] = STATE(1002), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1659), + [sym_array] = STATE(1658), + [sym_nested_identifier] = STATE(1694), + [sym_class] = STATE(1745), + [sym_function] = STATE(1745), + [sym_generator_function] = STATE(1745), + [sym_arrow_function] = STATE(1745), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1479), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1002), + [sym_subscript_expression] = STATE(1002), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1745), + [sym_template_string] = STATE(1745), + [sym_regex] = STATE(1745), + [sym_meta_property] = STATE(1745), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3899), + [sym_generic_type] = STATE(1697), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1544), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_namespace] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1600), + [anon_sym_async] = ACTIONS(1482), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [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), + [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(91), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [sym_readonly] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_get] = ACTIONS(1478), + [anon_sym_set] = ACTIONS(1478), + [anon_sym_declare] = ACTIONS(1478), + [anon_sym_public] = ACTIONS(1478), + [anon_sym_private] = ACTIONS(1478), + [anon_sym_protected] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_any] = ACTIONS(1478), + [anon_sym_number] = ACTIONS(1478), + [anon_sym_boolean] = ACTIONS(1478), + [anon_sym_string] = ACTIONS(1478), + [anon_sym_symbol] = ACTIONS(1478), + [sym_readonly] = ACTIONS(1478), }, - [230] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1446), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [187] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2151), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(2956), + [sym_generic_type] = STATE(3456), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1546), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -35391,169 +31833,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [231] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [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(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), - }, - [232] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1571), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3657), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [188] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(1515), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1406), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3772), + [sym_generic_type] = STATE(1517), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1538), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1548), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -35563,7 +31917,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -35586,344 +31940,352 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [233] = { - [sym_import] = STATE(1382), - [sym_variable_declarator] = STATE(2936), - [sym_parenthesized_expression] = STATE(1153), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1298), - [sym_array] = STATE(1297), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1157), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1630), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(863), + [189] = { + [sym_import] = STATE(2108), + [sym_parenthesized_expression] = STATE(1350), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1784), + [sym_array] = STATE(1780), + [sym_nested_identifier] = STATE(1961), + [sym_class] = STATE(2108), + [sym_function] = STATE(2108), + [sym_generator_function] = STATE(2108), + [sym_arrow_function] = STATE(2108), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1556), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1350), + [sym_subscript_expression] = STATE(1350), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2108), + [sym_template_string] = STATE(2108), + [sym_regex] = STATE(2108), + [sym_meta_property] = STATE(2108), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3774), + [sym_generic_type] = STATE(1960), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1550), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1556), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(1558), + [sym_this] = ACTIONS(1560), + [sym_super] = ACTIONS(1560), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [sym_readonly] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_get] = ACTIONS(1552), + [anon_sym_set] = ACTIONS(1552), + [anon_sym_declare] = ACTIONS(1552), + [anon_sym_public] = ACTIONS(1552), + [anon_sym_private] = ACTIONS(1552), + [anon_sym_protected] = ACTIONS(1552), + [anon_sym_module] = ACTIONS(1552), + [anon_sym_any] = ACTIONS(1552), + [anon_sym_number] = ACTIONS(1552), + [anon_sym_boolean] = ACTIONS(1552), + [anon_sym_string] = ACTIONS(1552), + [anon_sym_symbol] = ACTIONS(1552), + [sym_readonly] = ACTIONS(1552), }, - [234] = { - [sym_import] = STATE(1382), - [sym_variable_declarator] = STATE(2930), - [sym_parenthesized_expression] = STATE(1153), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1298), - [sym_array] = STATE(1297), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1157), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1630), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(863), + [190] = { + [sym_import] = STATE(2034), + [sym_parenthesized_expression] = STATE(1360), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1888), + [sym_array] = STATE(1889), + [sym_nested_identifier] = STATE(2698), + [sym_class] = STATE(2034), + [sym_function] = STATE(2034), + [sym_generator_function] = STATE(2034), + [sym_arrow_function] = STATE(2034), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1669), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1360), + [sym_subscript_expression] = STATE(1360), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2034), + [sym_template_string] = STATE(2034), + [sym_regex] = STATE(2034), + [sym_meta_property] = STATE(2034), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3940), + [sym_generic_type] = STATE(2843), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_namespace] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1516), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [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(91), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [sym_readonly] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_get] = ACTIONS(1512), + [anon_sym_set] = ACTIONS(1512), + [anon_sym_declare] = ACTIONS(1512), + [anon_sym_public] = ACTIONS(1512), + [anon_sym_private] = ACTIONS(1512), + [anon_sym_protected] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_any] = ACTIONS(1512), + [anon_sym_number] = ACTIONS(1512), + [anon_sym_boolean] = ACTIONS(1512), + [anon_sym_string] = ACTIONS(1512), + [anon_sym_symbol] = ACTIONS(1512), + [sym_readonly] = ACTIONS(1512), }, - [235] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1361), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1447), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [191] = { + [sym_import] = STATE(1745), + [sym_parenthesized_expression] = STATE(1002), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1659), + [sym_array] = STATE(1658), + [sym_nested_identifier] = STATE(2561), + [sym_class] = STATE(1745), + [sym_function] = STATE(1745), + [sym_generator_function] = STATE(1745), + [sym_arrow_function] = STATE(1745), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1424), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1002), + [sym_subscript_expression] = STATE(1002), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1745), + [sym_template_string] = STATE(1745), + [sym_regex] = STATE(1745), + [sym_meta_property] = STATE(1745), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3900), + [sym_generic_type] = STATE(2574), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_namespace] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(1482), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [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(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_get] = ACTIONS(1478), + [anon_sym_set] = ACTIONS(1478), + [anon_sym_declare] = ACTIONS(1478), + [anon_sym_public] = ACTIONS(1478), + [anon_sym_private] = ACTIONS(1478), + [anon_sym_protected] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_any] = ACTIONS(1478), + [anon_sym_number] = ACTIONS(1478), + [anon_sym_boolean] = ACTIONS(1478), + [anon_sym_string] = ACTIONS(1478), + [anon_sym_symbol] = ACTIONS(1478), + [sym_readonly] = ACTIONS(1478), }, - [236] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1364), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1449), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [192] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1540), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1566), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -35931,349 +32293,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [237] = { - [sym_import] = STATE(1518), - [sym_parenthesized_expression] = STATE(824), - [sym__expression] = STATE(1930), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1368), - [sym_array] = STATE(1369), - [sym_class] = STATE(1518), - [sym_function] = STATE(1518), - [sym_generator_function] = STATE(1518), - [sym_arrow_function] = STATE(1518), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1518), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(824), - [sym_subscript_expression] = STATE(824), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1518), - [sym_template_string] = STATE(1518), - [sym_regex] = STATE(1518), - [sym_meta_property] = STATE(1518), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2835), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3372), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1560), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1568), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1572), - [sym_this] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_true] = ACTIONS(1574), - [sym_false] = ACTIONS(1574), - [sym_null] = ACTIONS(1574), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1562), - }, - [238] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1377), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1451), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [193] = { + [sym_import] = STATE(2108), + [sym_parenthesized_expression] = STATE(1350), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1784), + [sym_array] = STATE(1780), + [sym_nested_identifier] = STATE(1961), + [sym_class] = STATE(2108), + [sym_function] = STATE(2108), + [sym_generator_function] = STATE(2108), + [sym_arrow_function] = STATE(2108), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1544), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1350), + [sym_subscript_expression] = STATE(1350), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2108), + [sym_template_string] = STATE(2108), + [sym_regex] = STATE(2108), + [sym_meta_property] = STATE(2108), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3774), + [sym_generic_type] = STATE(1960), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(1556), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(1558), + [sym_this] = ACTIONS(1560), + [sym_super] = ACTIONS(1560), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_get] = ACTIONS(1552), + [anon_sym_set] = ACTIONS(1552), + [anon_sym_declare] = ACTIONS(1552), + [anon_sym_public] = ACTIONS(1552), + [anon_sym_private] = ACTIONS(1552), + [anon_sym_protected] = ACTIONS(1552), + [anon_sym_module] = ACTIONS(1552), + [anon_sym_any] = ACTIONS(1552), + [anon_sym_number] = ACTIONS(1552), + [anon_sym_boolean] = ACTIONS(1552), + [anon_sym_string] = ACTIONS(1552), + [anon_sym_symbol] = ACTIONS(1552), + [sym_readonly] = ACTIONS(1552), }, - [239] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1855), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1395), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [240] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1572), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3636), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [194] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1379), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1570), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -36283,7 +32469,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -36306,244 +32492,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_identifier] = ACTIONS(1640), - [anon_sym_export] = ACTIONS(1640), - [anon_sym_default] = ACTIONS(1640), - [anon_sym_EQ] = ACTIONS(1640), - [anon_sym_namespace] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_type] = ACTIONS(1640), - [anon_sym_typeof] = ACTIONS(1640), - [anon_sym_import] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_else] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_try] = ACTIONS(1640), - [anon_sym_with] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_debugger] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_throw] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_case] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_RBRACK] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_class] = ACTIONS(1640), - [anon_sym_async] = ACTIONS(1640), - [anon_sym_function] = ACTIONS(1640), - [anon_sym_EQ_GT] = ACTIONS(1638), - [anon_sym_new] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1640), - [anon_sym_delete] = ACTIONS(1640), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [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(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(1638), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_abstract] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(1640), - [anon_sym_set] = ACTIONS(1640), - [anon_sym_declare] = ACTIONS(1640), - [anon_sym_public] = ACTIONS(1640), - [anon_sym_private] = ACTIONS(1640), - [anon_sym_protected] = 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_implements] = ACTIONS(1640), - [anon_sym_interface] = ACTIONS(1640), - [anon_sym_extends] = ACTIONS(1640), - [anon_sym_enum] = ACTIONS(1640), - [sym_readonly] = ACTIONS(1640), - }, - [242] = { - [sym_import] = STATE(1518), - [sym_parenthesized_expression] = STATE(824), - [sym__expression] = STATE(1930), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1368), - [sym_array] = STATE(1369), - [sym_class] = STATE(1518), - [sym_function] = STATE(1518), - [sym_generator_function] = STATE(1518), - [sym_arrow_function] = STATE(1518), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1518), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(824), - [sym_subscript_expression] = STATE(824), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1518), - [sym_template_string] = STATE(1518), - [sym_regex] = STATE(1518), - [sym_meta_property] = STATE(1518), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1644), - [anon_sym_namespace] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1644), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1572), - [sym_this] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_true] = ACTIONS(1574), - [sym_false] = ACTIONS(1574), - [sym_null] = ACTIONS(1574), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_get] = ACTIONS(1644), - [anon_sym_set] = ACTIONS(1644), - [anon_sym_declare] = ACTIONS(1644), - [anon_sym_public] = ACTIONS(1644), - [anon_sym_private] = ACTIONS(1644), - [anon_sym_protected] = ACTIONS(1644), - [anon_sym_module] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_number] = ACTIONS(1644), - [anon_sym_boolean] = ACTIONS(1644), - [anon_sym_string] = ACTIONS(1644), - [anon_sym_symbol] = ACTIONS(1644), - [sym_readonly] = ACTIONS(1644), - }, - [243] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1667), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3600), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [195] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1379), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1570), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1548), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -36553,7 +32561,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -36576,69 +32584,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [244] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1757), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1710), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), + [196] = { + [sym_import] = STATE(2097), + [sym_parenthesized_expression] = STATE(1341), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1797), + [sym_array] = STATE(1796), + [sym_nested_identifier] = STATE(621), + [sym_class] = STATE(2097), + [sym_function] = STATE(2097), + [sym_generator_function] = STATE(2097), + [sym_arrow_function] = STATE(2097), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(78), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2097), + [sym_template_string] = STATE(2097), + [sym_regex] = STATE(2097), + [sym_meta_property] = STATE(2097), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1572), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1580), + [sym_this] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_true] = ACTIONS(1582), + [sym_false] = ACTIONS(1582), + [sym_null] = ACTIONS(1582), + [sym_undefined] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [sym_readonly] = ACTIONS(1574), + }, + [197] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2221), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3808), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -36651,259 +32752,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + [sym__automatic_semicolon] = ACTIONS(1584), }, - [245] = { - [sym__call_signature] = STATE(3536), - [sym_string] = STATE(2490), - [sym_formal_parameters] = STATE(2860), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [sym_type_parameters] = STATE(3333), - [aux_sym_object_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(1650), - [anon_sym_export] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1667), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_protected] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_number] = ACTIONS(1652), - [anon_sym_boolean] = ACTIONS(1652), - [anon_sym_string] = ACTIONS(1652), - [anon_sym_symbol] = ACTIONS(1652), - [sym_readonly] = ACTIONS(1652), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [246] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [198] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2234), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_nested_identifier] = STATE(4026), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_nested_type_identifier] = STATE(3115), + [sym_generic_type] = STATE(3543), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1586), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [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_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [247] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1682), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3574), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [199] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1670), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1588), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -36913,7 +32929,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -36936,154 +32952,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [248] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1810), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1562), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [249] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1566), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3691), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [200] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(2509), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1379), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3787), + [sym_generic_type] = STATE(557), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1590), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1592), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -37093,7 +33021,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -37116,64 +33044,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [250] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1705), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3751), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [201] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_nested_identifier] = STATE(1515), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1430), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_nested_type_identifier] = STATE(3772), + [sym_generic_type] = STATE(1517), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1540), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1548), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -37183,7 +33113,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -37206,154 +33136,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [251] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1758), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1588), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [252] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1660), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3735), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [202] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2331), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4035), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1594), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -37363,7 +33204,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -37386,64 +33227,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [253] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1540), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3670), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [203] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2313), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4032), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(1596), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -37453,7 +33295,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -37476,64 +33318,784 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [254] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1666), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3506), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [204] = { + [sym_import] = STATE(1630), + [sym_statement_block] = STATE(1844), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1843), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [205] = { + [sym_import] = STATE(1630), + [sym_statement_block] = STATE(1949), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1950), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [206] = { + [ts_builtin_sym_end] = ACTIONS(1600), + [sym_identifier] = ACTIONS(1602), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1602), + [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_RPAREN] = 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_COLON] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_class] = ACTIONS(1602), + [anon_sym_async] = ACTIONS(1602), + [anon_sym_function] = ACTIONS(1602), + [anon_sym_EQ_GT] = ACTIONS(1600), + [anon_sym_new] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [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(1600), + [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_abstract] = 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_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_implements] = ACTIONS(1602), + [anon_sym_interface] = ACTIONS(1602), + [anon_sym_extends] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [sym_readonly] = ACTIONS(1602), + }, + [207] = { + [sym_import] = STATE(2091), + [sym_parenthesized_expression] = STATE(1340), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1805), + [sym_array] = STATE(1809), + [sym_class] = STATE(2091), + [sym_function] = STATE(2091), + [sym_generator_function] = STATE(2091), + [sym_arrow_function] = STATE(2091), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2091), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2091), + [sym_template_string] = STATE(2091), + [sym_regex] = STATE(2091), + [sym_meta_property] = STATE(2091), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3231), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3778), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1606), + [anon_sym_namespace] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1614), + [sym_this] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_true] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [sym_undefined] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_get] = ACTIONS(1606), + [anon_sym_set] = ACTIONS(1606), + [anon_sym_declare] = ACTIONS(1606), + [anon_sym_public] = ACTIONS(1606), + [anon_sym_private] = ACTIONS(1606), + [anon_sym_protected] = ACTIONS(1606), + [anon_sym_module] = ACTIONS(1606), + [anon_sym_any] = ACTIONS(1606), + [anon_sym_number] = ACTIONS(1606), + [anon_sym_boolean] = ACTIONS(1606), + [anon_sym_string] = ACTIONS(1606), + [anon_sym_symbol] = ACTIONS(1606), + [sym_readonly] = ACTIONS(1606), + }, + [208] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1603), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1987), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [209] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1604), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1991), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [210] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1613), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2004), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [211] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1594), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2005), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [212] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2326), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4039), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -37543,7 +34105,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -37566,244 +34128,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [255] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1726), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1589), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [256] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1591), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [257] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1592), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3736), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [213] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2328), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4038), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -37813,7 +34195,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -37836,51 +34218,141 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [258] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1757), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1341), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(673), + [214] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1576), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2006), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [215] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2216), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3866), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -37888,9 +34360,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -37911,169 +34383,169 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [259] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1847), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_mapped_type_clause] = STATE(3576), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1673), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_typeof] = ACTIONS(863), + [216] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1572), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2007), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [sym_readonly] = ACTIONS(1675), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [260] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1541), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3668), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), + [217] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2381), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_mapped_type_clause] = STATE(4119), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1418), + [anon_sym_namespace] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1418), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1422), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -38083,7 +34555,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -38091,259 +34563,529 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_get] = ACTIONS(1418), + [anon_sym_set] = ACTIONS(1418), + [anon_sym_declare] = ACTIONS(1418), + [anon_sym_public] = ACTIONS(1418), + [anon_sym_private] = ACTIONS(1418), + [anon_sym_protected] = ACTIONS(1418), + [anon_sym_module] = ACTIONS(1418), + [anon_sym_any] = ACTIONS(1418), + [anon_sym_number] = ACTIONS(1418), + [anon_sym_boolean] = ACTIONS(1418), + [anon_sym_string] = ACTIONS(1418), + [anon_sym_symbol] = ACTIONS(1418), + [sym_readonly] = ACTIONS(1418), }, - [261] = { - [sym_import] = STATE(1518), - [sym_parenthesized_expression] = STATE(824), - [sym__expression] = STATE(1930), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1368), - [sym_array] = STATE(1369), - [sym_class] = STATE(1518), - [sym_function] = STATE(1518), - [sym_generator_function] = STATE(1518), - [sym_arrow_function] = STATE(1518), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1518), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(824), - [sym_subscript_expression] = STATE(824), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1518), - [sym_template_string] = STATE(1518), - [sym_regex] = STATE(1518), - [sym_meta_property] = STATE(1518), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2835), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3372), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1644), - [anon_sym_namespace] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(1644), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(847), + [218] = { + [sym_import] = STATE(1630), + [sym_statement_block] = STATE(1944), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1943), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1572), - [sym_this] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_true] = ACTIONS(1574), - [sym_false] = ACTIONS(1574), - [sym_null] = ACTIONS(1574), - [sym_undefined] = ACTIONS(1574), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_get] = ACTIONS(1644), - [anon_sym_set] = ACTIONS(1644), - [anon_sym_declare] = ACTIONS(1644), - [anon_sym_public] = ACTIONS(1644), - [anon_sym_private] = ACTIONS(1644), - [anon_sym_protected] = ACTIONS(1644), - [anon_sym_module] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_number] = ACTIONS(1644), - [anon_sym_boolean] = ACTIONS(1644), - [anon_sym_string] = ACTIONS(1644), - [anon_sym_symbol] = ACTIONS(1644), - [sym_readonly] = ACTIONS(1644), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [262] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2628), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3291), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1578), - [anon_sym_namespace] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_typeof] = ACTIONS(863), + [219] = { + [sym_import] = STATE(2111), + [sym_parenthesized_expression] = STATE(1342), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1762), + [sym_array] = STATE(1776), + [sym_class] = STATE(2111), + [sym_function] = STATE(2111), + [sym_generator_function] = STATE(2111), + [sym_arrow_function] = STATE(2111), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2111), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2111), + [sym_template_string] = STATE(2111), + [sym_regex] = STATE(2111), + [sym_meta_property] = STATE(2111), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1620), + [anon_sym_export] = ACTIONS(1622), + [anon_sym_namespace] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1626), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1584), + [anon_sym_async] = ACTIONS(1628), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [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), + [sym_number] = ACTIONS(1630), + [sym_this] = ACTIONS(1632), + [sym_super] = ACTIONS(1632), + [sym_true] = ACTIONS(1632), + [sym_false] = ACTIONS(1632), + [sym_null] = ACTIONS(1632), + [sym_undefined] = ACTIONS(1632), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_get] = ACTIONS(1578), - [anon_sym_set] = ACTIONS(1578), - [anon_sym_declare] = ACTIONS(1578), - [anon_sym_public] = ACTIONS(1578), - [anon_sym_private] = ACTIONS(1578), - [anon_sym_protected] = ACTIONS(1578), - [anon_sym_module] = ACTIONS(1578), - [anon_sym_any] = ACTIONS(1578), - [anon_sym_number] = ACTIONS(1578), - [anon_sym_boolean] = ACTIONS(1578), - [anon_sym_string] = ACTIONS(1578), - [anon_sym_symbol] = ACTIONS(1578), - [sym_readonly] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1622), + [anon_sym_set] = ACTIONS(1622), + [anon_sym_declare] = ACTIONS(1622), + [anon_sym_public] = ACTIONS(1622), + [anon_sym_private] = ACTIONS(1622), + [anon_sym_protected] = ACTIONS(1622), + [anon_sym_module] = ACTIONS(1622), + [anon_sym_any] = ACTIONS(1622), + [anon_sym_number] = ACTIONS(1622), + [anon_sym_boolean] = ACTIONS(1622), + [anon_sym_string] = ACTIONS(1622), + [anon_sym_symbol] = ACTIONS(1622), + [sym_readonly] = ACTIONS(1622), }, - [263] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1613), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3746), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [220] = { + [sym_import] = STATE(1630), + [sym_statement_block] = STATE(1940), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1937), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [221] = { + [sym_import] = STATE(1630), + [sym_statement_block] = STATE(1935), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1916), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [222] = { + [sym_import] = STATE(1653), + [sym_statement_block] = STATE(1978), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(1979), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + }, + [223] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2333), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4030), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -38353,7 +35095,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -38376,64 +35118,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [264] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1610), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3621), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [224] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2338), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(3077), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1636), + [anon_sym_function] = ACTIONS(1638), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [225] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2336), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4152), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -38443,7 +35275,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -38466,244 +35298,244 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [265] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1543), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3667), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [226] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1603), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1859), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(786), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [266] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1603), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3660), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [227] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1604), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1827), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(786), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [267] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1600), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3666), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), + [228] = { + [sym_import] = STATE(2091), + [sym_parenthesized_expression] = STATE(1340), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1805), + [sym_array] = STATE(1809), + [sym_class] = STATE(2091), + [sym_function] = STATE(2091), + [sym_generator_function] = STATE(2091), + [sym_arrow_function] = STATE(2091), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2091), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2091), + [sym_template_string] = STATE(2091), + [sym_regex] = STATE(2091), + [sym_meta_property] = STATE(2091), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3147), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1606), + [anon_sym_namespace] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1606), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1610), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1612), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -38713,7 +35545,277 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(1614), + [sym_this] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_true] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [sym_undefined] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_get] = ACTIONS(1606), + [anon_sym_set] = ACTIONS(1606), + [anon_sym_declare] = ACTIONS(1606), + [anon_sym_public] = ACTIONS(1606), + [anon_sym_private] = ACTIONS(1606), + [anon_sym_protected] = ACTIONS(1606), + [anon_sym_module] = ACTIONS(1606), + [anon_sym_any] = ACTIONS(1606), + [anon_sym_number] = ACTIONS(1606), + [anon_sym_boolean] = ACTIONS(1606), + [anon_sym_string] = ACTIONS(1606), + [anon_sym_symbol] = ACTIONS(1606), + [sym_readonly] = ACTIONS(1606), + }, + [229] = { + [sym_import] = STATE(1653), + [sym_statement_block] = STATE(1976), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(1977), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + }, + [230] = { + [sym_import] = STATE(1653), + [sym_statement_block] = STATE(2131), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(1974), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + }, + [231] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2346), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4019), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -38721,79 +35823,529 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [268] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1596), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3745), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), + [232] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1613), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1835), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [233] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1594), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1834), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [234] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1576), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1830), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [235] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1572), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1829), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [236] = { + [sym_import] = STATE(1653), + [sym_statement_block] = STATE(1984), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(1988), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + }, + [237] = { + [sym_import] = STATE(2102), + [sym_parenthesized_expression] = STATE(1364), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1793), + [sym_array] = STATE(1790), + [sym_class] = STATE(2102), + [sym_function] = STATE(2102), + [sym_generator_function] = STATE(2102), + [sym_arrow_function] = STATE(2102), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2102), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2102), + [sym_template_string] = STATE(2102), + [sym_regex] = STATE(2102), + [sym_meta_property] = STATE(2102), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1642), + [anon_sym_namespace] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1642), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1646), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1648), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -38803,87 +36355,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(1650), + [sym_this] = ACTIONS(1652), + [sym_super] = ACTIONS(1652), + [sym_true] = ACTIONS(1652), + [sym_false] = ACTIONS(1652), + [sym_null] = ACTIONS(1652), + [sym_undefined] = ACTIONS(1652), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1642), + [anon_sym_get] = ACTIONS(1642), + [anon_sym_set] = ACTIONS(1642), + [anon_sym_declare] = ACTIONS(1642), + [anon_sym_public] = ACTIONS(1642), + [anon_sym_private] = ACTIONS(1642), + [anon_sym_protected] = ACTIONS(1642), + [anon_sym_module] = ACTIONS(1642), + [anon_sym_any] = ACTIONS(1642), + [anon_sym_number] = ACTIONS(1642), + [anon_sym_boolean] = ACTIONS(1642), + [anon_sym_string] = ACTIONS(1642), + [anon_sym_symbol] = ACTIONS(1642), + [sym_readonly] = ACTIONS(1642), }, - [269] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1364), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1325), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(425), + [238] = { + [sym_import] = STATE(1432), + [sym_variable_declarator] = STATE(3342), + [sym_parenthesized_expression] = STATE(1329), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1413), + [sym_array] = STATE(1411), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1329), + [sym_subscript_expression] = STATE(1329), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1377), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(1656), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1660), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -38893,7 +36445,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -38901,79 +36453,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [270] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1361), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1326), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(425), + [239] = { + [sym_import] = STATE(1432), + [sym_variable_declarator] = STATE(3345), + [sym_parenthesized_expression] = STATE(1329), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1413), + [sym_array] = STATE(1411), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1329), + [sym_subscript_expression] = STATE(1329), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1377), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(1656), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1660), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -38983,7 +36535,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -38991,66 +36543,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [271] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1510), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3336), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [240] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2315), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_function_signature] = STATE(661), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -39058,9 +36610,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_function] = ACTIONS(1664), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -39081,79 +36633,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [272] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1359), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1327), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [241] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2296), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4143), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -39163,7 +36715,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -39186,64 +36738,244 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [273] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1544), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3665), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [242] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2293), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(3340), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [243] = { + [sym_import] = STATE(2067), + [sym_parenthesized_expression] = STATE(1337), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1810), + [sym_array] = STATE(1804), + [sym_class] = STATE(2067), + [sym_function] = STATE(2067), + [sym_generator_function] = STATE(2067), + [sym_arrow_function] = STATE(2067), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2067), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2067), + [sym_template_string] = STATE(2067), + [sym_regex] = STATE(2067), + [sym_meta_property] = STATE(2067), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1666), + [anon_sym_export] = ACTIONS(1668), + [anon_sym_namespace] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1668), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1668), + [anon_sym_set] = ACTIONS(1668), + [anon_sym_declare] = ACTIONS(1668), + [anon_sym_public] = ACTIONS(1668), + [anon_sym_private] = ACTIONS(1668), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1668), + }, + [244] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2301), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4199), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -39253,7 +36985,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -39276,244 +37008,334 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [274] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2835), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3372), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1578), - [anon_sym_namespace] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_typeof] = ACTIONS(863), + [245] = { + [sym_import] = STATE(2035), + [sym_parenthesized_expression] = STATE(1332), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1884), + [sym_array] = STATE(1882), + [sym_class] = STATE(2035), + [sym_function] = STATE(2035), + [sym_generator_function] = STATE(2035), + [sym_arrow_function] = STATE(2035), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2035), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1332), + [sym_subscript_expression] = STATE(1332), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2035), + [sym_template_string] = STATE(2035), + [sym_regex] = STATE(2035), + [sym_meta_property] = STATE(2035), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1680), + [anon_sym_namespace] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1680), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1610), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1584), + [anon_sym_async] = ACTIONS(1684), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [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), + [sym_number] = ACTIONS(1686), + [sym_this] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_undefined] = ACTIONS(1688), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_get] = ACTIONS(1578), - [anon_sym_set] = ACTIONS(1578), - [anon_sym_declare] = ACTIONS(1578), - [anon_sym_public] = ACTIONS(1578), - [anon_sym_private] = ACTIONS(1578), - [anon_sym_protected] = ACTIONS(1578), - [anon_sym_module] = ACTIONS(1578), - [anon_sym_any] = ACTIONS(1578), - [anon_sym_number] = ACTIONS(1578), - [anon_sym_boolean] = ACTIONS(1578), - [anon_sym_string] = ACTIONS(1578), - [anon_sym_symbol] = ACTIONS(1578), - [sym_readonly] = ACTIONS(1578), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1680), }, - [275] = { - [sym_import] = STATE(1909), - [sym_statement_block] = STATE(1910), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1487), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [246] = { + [sym_import] = STATE(2091), + [sym_parenthesized_expression] = STATE(1340), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1805), + [sym_array] = STATE(1809), + [sym_class] = STATE(2091), + [sym_function] = STATE(2091), + [sym_generator_function] = STATE(2091), + [sym_arrow_function] = STATE(2091), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2091), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2091), + [sym_template_string] = STATE(2091), + [sym_regex] = STATE(2091), + [sym_meta_property] = STATE(2091), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3231), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3778), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1606), + [anon_sym_namespace] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1614), + [sym_this] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_true] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [sym_undefined] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_get] = ACTIONS(1606), + [anon_sym_set] = ACTIONS(1606), + [anon_sym_declare] = ACTIONS(1606), + [anon_sym_public] = ACTIONS(1606), + [anon_sym_private] = ACTIONS(1606), + [anon_sym_protected] = ACTIONS(1606), + [anon_sym_module] = ACTIONS(1606), + [anon_sym_any] = ACTIONS(1606), + [anon_sym_number] = ACTIONS(1606), + [anon_sym_boolean] = ACTIONS(1606), + [anon_sym_string] = ACTIONS(1606), + [anon_sym_symbol] = ACTIONS(1606), + [sym_readonly] = ACTIONS(1606), + }, + [247] = { + [sym_import] = STATE(2035), + [sym_parenthesized_expression] = STATE(1332), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1884), + [sym_array] = STATE(1882), + [sym_class] = STATE(2035), + [sym_function] = STATE(2035), + [sym_generator_function] = STATE(2035), + [sym_arrow_function] = STATE(2035), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2035), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1332), + [sym_subscript_expression] = STATE(1332), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2035), + [sym_template_string] = STATE(2035), + [sym_regex] = STATE(2035), + [sym_meta_property] = STATE(2035), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1680), + [anon_sym_namespace] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1680), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1686), + [sym_this] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_undefined] = ACTIONS(1688), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = 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_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), + [sym_readonly] = ACTIONS(1680), }, - [276] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1580), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3657), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [248] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2319), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4242), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -39523,7 +37345,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -39546,74 +37368,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [277] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1426), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1628), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [249] = { + [sym_import] = STATE(1653), + [sym_statement_block] = STATE(1981), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(1982), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + }, + [250] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2299), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4118), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -39621,89 +37533,179 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), + }, + [251] = { + [sym_import] = STATE(2091), + [sym_parenthesized_expression] = STATE(1340), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1805), + [sym_array] = STATE(1809), + [sym_class] = STATE(2091), + [sym_function] = STATE(2091), + [sym_generator_function] = STATE(2091), + [sym_arrow_function] = STATE(2091), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2091), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2091), + [sym_template_string] = STATE(2091), + [sym_regex] = STATE(2091), + [sym_meta_property] = STATE(2091), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3215), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3834), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1606), + [anon_sym_namespace] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1614), + [sym_this] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_true] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [sym_undefined] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_get] = ACTIONS(1606), + [anon_sym_set] = ACTIONS(1606), + [anon_sym_declare] = ACTIONS(1606), + [anon_sym_public] = ACTIONS(1606), + [anon_sym_private] = ACTIONS(1606), + [anon_sym_protected] = ACTIONS(1606), + [anon_sym_module] = ACTIONS(1606), + [anon_sym_any] = ACTIONS(1606), + [anon_sym_number] = ACTIONS(1606), + [anon_sym_boolean] = ACTIONS(1606), + [anon_sym_string] = ACTIONS(1606), + [anon_sym_symbol] = ACTIONS(1606), + [sym_readonly] = ACTIONS(1606), }, - [278] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1402), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1462), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [252] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2298), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4116), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -39711,89 +37713,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [279] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1402), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1633), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [253] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2171), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4092), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -39801,79 +37803,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [280] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1575), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_sequence_expression] = STATE(3695), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [254] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2335), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4005), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -39883,7 +37885,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -39906,344 +37908,254 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [281] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1578), - [anon_sym_namespace] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [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(91), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_get] = ACTIONS(1578), - [anon_sym_set] = ACTIONS(1578), - [anon_sym_declare] = ACTIONS(1578), - [anon_sym_public] = ACTIONS(1578), - [anon_sym_private] = ACTIONS(1578), - [anon_sym_protected] = ACTIONS(1578), - [anon_sym_module] = ACTIONS(1578), - [anon_sym_any] = ACTIONS(1578), - [anon_sym_number] = ACTIONS(1578), - [anon_sym_boolean] = ACTIONS(1578), - [anon_sym_string] = ACTIONS(1578), - [anon_sym_symbol] = ACTIONS(1578), - [sym_readonly] = ACTIONS(1578), - }, - [282] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1587), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_function_signature] = STATE(2731), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), + [255] = { + [sym_import] = STATE(1630), + [sym_statement_block] = STATE(1890), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1893), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(1681), - [anon_sym_function] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [283] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(863), + [256] = { + [sym_import] = STATE(2091), + [sym_parenthesized_expression] = STATE(1340), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1805), + [sym_array] = STATE(1809), + [sym_class] = STATE(2091), + [sym_function] = STATE(2091), + [sym_generator_function] = STATE(2091), + [sym_arrow_function] = STATE(2091), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2091), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2091), + [sym_template_string] = STATE(2091), + [sym_regex] = STATE(2091), + [sym_meta_property] = STATE(2091), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1606), + [anon_sym_namespace] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1610), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1690), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [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), + [sym_number] = ACTIONS(1614), + [sym_this] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_true] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [sym_undefined] = ACTIONS(1616), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_get] = ACTIONS(1606), + [anon_sym_set] = ACTIONS(1606), + [anon_sym_declare] = ACTIONS(1606), + [anon_sym_public] = ACTIONS(1606), + [anon_sym_private] = ACTIONS(1606), + [anon_sym_protected] = ACTIONS(1606), + [anon_sym_module] = ACTIONS(1606), + [anon_sym_any] = ACTIONS(1606), + [anon_sym_number] = ACTIONS(1606), + [anon_sym_boolean] = ACTIONS(1606), + [anon_sym_string] = ACTIONS(1606), + [anon_sym_symbol] = ACTIONS(1606), + [sym_readonly] = ACTIONS(1606), }, - [284] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1426), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1465), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [257] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2371), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4171), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -40251,179 +38163,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [285] = { - [sym_import] = STATE(1909), - [sym_statement_block] = STATE(1929), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1495), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [286] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1359), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1657), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [258] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2370), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4169), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -40431,359 +38253,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [287] = { - [sym__call_signature] = STATE(3536), - [sym_string] = STATE(2490), - [sym_formal_parameters] = STATE(2860), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [sym_type_parameters] = STATE(3333), - [aux_sym_object_repeat1] = STATE(3178), - [sym_identifier] = ACTIONS(1650), - [anon_sym_export] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1667), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_protected] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_number] = ACTIONS(1652), - [anon_sym_boolean] = ACTIONS(1652), - [anon_sym_string] = ACTIONS(1652), - [anon_sym_symbol] = ACTIONS(1652), - [sym_readonly] = ACTIONS(1652), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [288] = { - [sym_import] = STATE(1811), - [sym_statement_block] = STATE(1810), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1384), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [289] = { - [sym__call_signature] = STATE(3536), - [sym_string] = STATE(2490), - [sym_formal_parameters] = STATE(2860), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [sym_type_parameters] = STATE(3333), - [aux_sym_object_repeat1] = STATE(3195), - [sym_identifier] = ACTIONS(1650), - [anon_sym_export] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1667), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_protected] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_number] = ACTIONS(1652), - [anon_sym_boolean] = ACTIONS(1652), - [anon_sym_string] = ACTIONS(1652), - [anon_sym_symbol] = ACTIONS(1652), - [sym_readonly] = ACTIONS(1652), - [sym__automatic_semicolon] = ACTIONS(961), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [290] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1377), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1651), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [259] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2297), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4168), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -40791,89 +38343,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [291] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1361), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1656), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [260] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2314), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4144), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -40881,179 +38433,179 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [292] = { - [sym_import] = STATE(1228), - [sym_parenthesized_expression] = STATE(712), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1212), - [sym_array] = STATE(1211), - [sym_class] = STATE(1228), - [sym_function] = STATE(1228), - [sym_generator_function] = STATE(1228), - [sym_arrow_function] = STATE(1228), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1228), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1228), - [sym_template_string] = STATE(1228), - [sym_regex] = STATE(1228), - [sym_meta_property] = STATE(1228), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2835), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3372), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_namespace] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_typeof] = ACTIONS(863), + [261] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2355), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4083), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1582), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [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), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_get] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_declare] = ACTIONS(1624), - [anon_sym_public] = ACTIONS(1624), - [anon_sym_private] = ACTIONS(1624), - [anon_sym_protected] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_number] = ACTIONS(1624), - [anon_sym_boolean] = ACTIONS(1624), - [anon_sym_string] = ACTIONS(1624), - [anon_sym_symbol] = ACTIONS(1624), - [sym_readonly] = ACTIONS(1624), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [293] = { - [sym_import] = STATE(1382), - [sym_statement_block] = STATE(1364), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1655), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [262] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2381), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_mapped_type_clause] = STATE(4122), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1694), + [anon_sym_export] = ACTIONS(1696), + [anon_sym_namespace] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1696), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(1700), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -41061,879 +38613,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1696), + [anon_sym_set] = ACTIONS(1696), + [anon_sym_declare] = ACTIONS(1696), + [anon_sym_public] = ACTIONS(1696), + [anon_sym_private] = ACTIONS(1696), + [anon_sym_protected] = ACTIONS(1696), + [anon_sym_module] = ACTIONS(1696), + [anon_sym_any] = ACTIONS(1696), + [anon_sym_number] = ACTIONS(1696), + [anon_sym_boolean] = ACTIONS(1696), + [anon_sym_string] = ACTIONS(1696), + [anon_sym_symbol] = ACTIONS(1696), + [sym_readonly] = ACTIONS(1696), }, - [294] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1335), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [263] = { + [sym_import] = STATE(1653), + [sym_statement_block] = STATE(2048), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2047), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [295] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1556), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [264] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2367), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4164), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [296] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1376), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [297] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1378), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [298] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1605), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [299] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1538), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [300] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1379), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [301] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1381), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [302] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1389), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [303] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [265] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2372), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4199), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -41943,7 +38875,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -41966,152 +38898,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [304] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1713), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [305] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1291), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [266] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2365), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4161), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -42121,7 +38965,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -42144,63 +38988,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [306] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1280), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [267] = { + [sym_import] = STATE(2091), + [sym_parenthesized_expression] = STATE(1340), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1805), + [sym_array] = STATE(1809), + [sym_class] = STATE(2091), + [sym_function] = STATE(2091), + [sym_generator_function] = STATE(2091), + [sym_arrow_function] = STATE(2091), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(2091), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(2091), + [sym_template_string] = STATE(2091), + [sym_regex] = STATE(2091), + [sym_meta_property] = STATE(2091), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1606), + [anon_sym_namespace] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1614), + [sym_this] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_true] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [sym_undefined] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_get] = ACTIONS(1606), + [anon_sym_set] = ACTIONS(1606), + [anon_sym_declare] = ACTIONS(1606), + [anon_sym_public] = ACTIONS(1606), + [anon_sym_private] = ACTIONS(1606), + [anon_sym_protected] = ACTIONS(1606), + [anon_sym_module] = ACTIONS(1606), + [anon_sym_any] = ACTIONS(1606), + [anon_sym_number] = ACTIONS(1606), + [anon_sym_boolean] = ACTIONS(1606), + [anon_sym_string] = ACTIONS(1606), + [anon_sym_symbol] = ACTIONS(1606), + [sym_readonly] = ACTIONS(1606), + }, + [268] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2363), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4159), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -42210,7 +39145,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -42233,953 +39168,334 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [307] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1490), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [308] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1497), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [309] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1498), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [310] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1394), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [311] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1542), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [312] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1206), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [269] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1603), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2061), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [313] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1499), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [314] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1500), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [315] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [270] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1604), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2060), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [316] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1665), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [271] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1613), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2052), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [317] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1332), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [272] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2304), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4215), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -43189,7 +39505,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -43212,152 +39528,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [318] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1542), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1685), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [319] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1564), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1687), + [273] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2167), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(3340), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -43367,7 +39595,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -43390,330 +39618,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_EQ] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_typeof] = ACTIONS(1691), - [anon_sym_import] = ACTIONS(1691), - [anon_sym_var] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_await] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_with] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_debugger] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_COLON] = ACTIONS(1689), - [anon_sym_case] = ACTIONS(1691), - [anon_sym_yield] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_RBRACK] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_GT] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(1691), - [anon_sym_EQ_GT] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_QMARK] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_void] = ACTIONS(1691), - [anon_sym_delete] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1689), - [sym_number] = ACTIONS(1689), - [sym_this] = ACTIONS(1691), - [sym_super] = ACTIONS(1691), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_undefined] = ACTIONS(1691), - [anon_sym_AT] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_abstract] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_implements] = ACTIONS(1691), - [anon_sym_interface] = ACTIONS(1691), - [anon_sym_extends] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [sym_readonly] = ACTIONS(1691), - }, - [321] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1464), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [322] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1363), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [323] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [274] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2349), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4066), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -43723,7 +39685,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1693), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -43746,340 +39708,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [324] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1652), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym_identifier] = ACTIONS(1697), - [anon_sym_export] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_namespace] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(1697), - [anon_sym_var] = ACTIONS(1697), - [anon_sym_let] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_await] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_with] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_debugger] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_throw] = ACTIONS(1697), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_COLON] = ACTIONS(1695), - [anon_sym_case] = ACTIONS(1697), - [anon_sym_yield] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_RBRACK] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(1695), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_async] = ACTIONS(1697), - [anon_sym_function] = ACTIONS(1697), - [anon_sym_EQ_GT] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1695), - [sym_number] = ACTIONS(1695), - [sym_this] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_true] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_null] = ACTIONS(1697), - [sym_undefined] = ACTIONS(1697), - [anon_sym_AT] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_abstract] = ACTIONS(1697), - [anon_sym_get] = ACTIONS(1697), - [anon_sym_set] = ACTIONS(1697), - [anon_sym_declare] = ACTIONS(1697), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1697), - [anon_sym_any] = ACTIONS(1697), - [anon_sym_number] = ACTIONS(1697), - [anon_sym_boolean] = ACTIONS(1697), - [anon_sym_string] = ACTIONS(1697), - [anon_sym_symbol] = ACTIONS(1697), - [anon_sym_implements] = ACTIONS(1697), - [anon_sym_interface] = ACTIONS(1697), - [anon_sym_extends] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [sym_readonly] = ACTIONS(1697), - }, - [326] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1650), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [327] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1649), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [275] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2179), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4068), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -44087,256 +39783,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [328] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1648), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [276] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1572), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2011), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [329] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1647), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [277] = { + [sym_import] = STATE(1985), + [sym_parenthesized_expression] = STATE(1346), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1966), + [sym_array] = STATE(1969), + [sym_class] = STATE(1985), + [sym_function] = STATE(1985), + [sym_generator_function] = STATE(1985), + [sym_arrow_function] = STATE(1985), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1985), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1346), + [sym_subscript_expression] = STATE(1346), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1985), + [sym_template_string] = STATE(1985), + [sym_regex] = STATE(1985), + [sym_meta_property] = STATE(1985), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1626), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(1708), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(1710), + [sym_this] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_true] = ACTIONS(1712), + [sym_false] = ACTIONS(1712), + [sym_null] = ACTIONS(1712), + [sym_undefined] = ACTIONS(1712), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [sym_readonly] = ACTIONS(1704), }, - [330] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [278] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2320), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_sequence_expression] = STATE(4037), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -44346,7 +40045,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -44369,50 +40068,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [331] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1391), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [279] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2264), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_sequence_expression] = STATE(3881), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -44420,9 +40120,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -44443,510 +40143,245 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [332] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1642), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [280] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1594), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2023), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [333] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1641), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [281] = { + [sym_import] = STATE(1434), + [sym_statement_block] = STATE(1576), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2012), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [334] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1638), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [335] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1878), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [336] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1636), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [337] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1391), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [282] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2168), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -44954,9 +40389,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -44977,154 +40412,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [338] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1635), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [339] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1372), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [283] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2330), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -45132,9 +40478,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -45155,889 +40501,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [340] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1630), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [341] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1569), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), - }, - [342] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1551), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), - }, - [343] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1564), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), - }, - [344] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1629), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [345] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1463), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [346] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1485), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [347] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1461), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [348] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1460), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [284] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2182), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [349] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1620), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [285] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2254), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -46045,65 +40679,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [350] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1360), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [286] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2181), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46111,9 +40745,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -46134,88 +40768,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [351] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1735), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [287] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2235), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -46223,88 +40857,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [352] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [288] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2397), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1685), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -46312,243 +40946,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), - }, - [353] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1488), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [354] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1486), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [355] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1393), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [289] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2162), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46556,9 +41012,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -46579,65 +41035,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [356] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1533), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [290] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2184), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46645,9 +41101,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -46668,83 +41124,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [357] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1601), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), + [291] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2178), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -46757,83 +41213,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [358] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1380), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), + [292] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(1887), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -46846,65 +41302,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [359] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1398), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [293] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2174), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46912,9 +41368,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -46935,88 +41391,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [360] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1423), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [294] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2280), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -47024,65 +41480,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [361] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1338), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [295] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2169), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -47090,9 +41546,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -47113,65 +41569,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [362] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1401), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [296] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2158), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -47179,9 +41635,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -47202,172 +41658,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), - }, - [363] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1598), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [364] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1595), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), + [297] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2152), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -47380,88 +41747,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [365] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1206), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [298] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2253), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -47469,88 +41836,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [366] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1459), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [299] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2268), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -47558,88 +41925,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [367] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [300] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2266), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1701), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -47647,266 +42014,266 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [368] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1609), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [301] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2265), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1703), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [369] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1637), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [302] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2252), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [370] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1153), - [sym__expression] = STATE(1942), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1962), - [sym_array] = STATE(1974), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1157), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(863), + [303] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2239), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -47914,88 +42281,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [sym_readonly] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [371] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1458), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [304] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2230), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -48003,533 +42370,533 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [372] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1534), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [305] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2025), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [373] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1348), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [306] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2100), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [374] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1339), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [307] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2101), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [375] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1535), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [308] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2251), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [376] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1388), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [309] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2247), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [377] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1457), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [310] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2246), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -48537,177 +42904,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [378] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1506), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [311] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1590), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [379] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1522), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [312] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2245), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -48715,266 +43082,266 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [380] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1505), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [313] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2243), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [381] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1504), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [314] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2248), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [382] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1847), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [315] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1590), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -48982,177 +43349,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [383] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1371), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [316] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2226), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [384] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1456), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [317] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2229), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -49160,701 +43527,968 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [385] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1565), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [318] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2219), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [386] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1609), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [319] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2213), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [387] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1561), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [320] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2051), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [388] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1560), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [321] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2198), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [389] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1559), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [322] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2100), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [390] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1557), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [323] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2101), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [391] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1375), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [324] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2194), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [392] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [325] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2053), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [326] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2241), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [327] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2240), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [328] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -49864,7 +44498,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(1714), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -49887,50 +44521,139 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [393] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1471), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [329] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2056), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [330] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2317), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -49938,9 +44661,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -49961,177 +44684,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [394] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1555), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [331] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2059), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [395] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1454), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [332] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2238), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -50139,266 +44862,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [396] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [397] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1870), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [333] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2063), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [398] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1834), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [334] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2357), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -50406,434 +45040,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), - }, - [399] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1552), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [400] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1547), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [401] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1483), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), - }, - [402] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1573), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [403] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1243), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [335] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2357), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1716), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -50843,7 +45121,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -50866,406 +45144,495 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [404] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1453), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [336] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2064), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [405] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1452), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [337] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1590), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_default] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1709), - [anon_sym_namespace] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_COMMA] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_typeof] = ACTIONS(1709), - [anon_sym_import] = ACTIONS(1709), - [anon_sym_var] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_switch] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_await] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_with] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_debugger] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_throw] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_COLON] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1709), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_RBRACK] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1709), - [anon_sym_class] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1709), - [anon_sym_function] = ACTIONS(1709), - [anon_sym_EQ_GT] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_void] = ACTIONS(1709), - [anon_sym_delete] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [anon_sym_SQUOTE] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1707), - [sym_number] = ACTIONS(1707), - [sym_this] = ACTIONS(1709), - [sym_super] = ACTIONS(1709), - [sym_true] = ACTIONS(1709), - [sym_false] = ACTIONS(1709), - [sym_null] = ACTIONS(1709), - [sym_undefined] = ACTIONS(1709), - [anon_sym_AT] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1709), - [anon_sym_abstract] = ACTIONS(1709), - [anon_sym_get] = ACTIONS(1709), - [anon_sym_set] = ACTIONS(1709), - [anon_sym_declare] = ACTIONS(1709), - [anon_sym_public] = ACTIONS(1709), - [anon_sym_private] = ACTIONS(1709), - [anon_sym_protected] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_any] = ACTIONS(1709), - [anon_sym_number] = ACTIONS(1709), - [anon_sym_boolean] = ACTIONS(1709), - [anon_sym_string] = ACTIONS(1709), - [anon_sym_symbol] = ACTIONS(1709), - [anon_sym_implements] = ACTIONS(1709), - [anon_sym_interface] = ACTIONS(1709), - [anon_sym_extends] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [sym_readonly] = ACTIONS(1709), + [338] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2066), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [407] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1481), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [339] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2033), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), + }, + [340] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2079), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [408] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1370), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [341] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2183), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -51273,9 +45640,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -51288,7 +45655,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1703), + [sym_number] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -51296,790 +45663,345 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [409] = { - [ts_builtin_sym_end] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_export] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1713), - [anon_sym_namespace] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_typeof] = ACTIONS(1713), - [anon_sym_import] = ACTIONS(1713), - [anon_sym_var] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1711), - [anon_sym_await] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_with] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_debugger] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_COLON] = ACTIONS(1711), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_RBRACK] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1713), - [anon_sym_class] = ACTIONS(1713), - [anon_sym_async] = ACTIONS(1713), - [anon_sym_function] = ACTIONS(1713), - [anon_sym_EQ_GT] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_QMARK] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1713), - [anon_sym_delete] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1711), - [sym_number] = ACTIONS(1711), - [sym_this] = ACTIONS(1713), - [sym_super] = ACTIONS(1713), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_null] = ACTIONS(1713), - [sym_undefined] = ACTIONS(1713), - [anon_sym_AT] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_abstract] = ACTIONS(1713), - [anon_sym_get] = ACTIONS(1713), - [anon_sym_set] = ACTIONS(1713), - [anon_sym_declare] = ACTIONS(1713), - [anon_sym_public] = ACTIONS(1713), - [anon_sym_private] = ACTIONS(1713), - [anon_sym_protected] = ACTIONS(1713), - [anon_sym_module] = ACTIONS(1713), - [anon_sym_any] = ACTIONS(1713), - [anon_sym_number] = ACTIONS(1713), - [anon_sym_boolean] = ACTIONS(1713), - [anon_sym_string] = ACTIONS(1713), - [anon_sym_symbol] = ACTIONS(1713), - [anon_sym_implements] = ACTIONS(1713), - [anon_sym_interface] = ACTIONS(1713), - [anon_sym_extends] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [sym_readonly] = ACTIONS(1713), - }, - [410] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1450), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [342] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(1534), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(878), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [411] = { - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_var] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_debugger] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_throw] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_COLON] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_RBRACK] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_function] = ACTIONS(1717), - [anon_sym_EQ_GT] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_QMARK] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_delete] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_this] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_undefined] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_abstract] = ACTIONS(1717), - [anon_sym_get] = ACTIONS(1717), - [anon_sym_set] = ACTIONS(1717), - [anon_sym_declare] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_any] = ACTIONS(1717), - [anon_sym_number] = ACTIONS(1717), - [anon_sym_boolean] = ACTIONS(1717), - [anon_sym_string] = ACTIONS(1717), - [anon_sym_symbol] = ACTIONS(1717), - [anon_sym_implements] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_extends] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [sym_readonly] = ACTIONS(1717), - }, - [412] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1546), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [413] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1548), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [414] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1558), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), + [343] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [415] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1466), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [344] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2081), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [416] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1480), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [417] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1281), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [345] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2377), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -52089,7 +46011,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -52112,241 +46034,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [418] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1436), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1685), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), - }, - [419] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1579), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), - }, - [420] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1423), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1719), + [346] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2227), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -52356,7 +46100,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -52379,50 +46123,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [421] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1388), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [347] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2183), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52430,9 +46174,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -52453,88 +46197,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [422] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1300), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [348] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2085), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [349] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1617), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -52542,78 +46375,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(425), - [anon_sym_get] = ACTIONS(425), - [anon_sym_set] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(425), - [anon_sym_public] = ACTIONS(425), - [anon_sym_private] = ACTIONS(425), - [anon_sym_protected] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - [anon_sym_any] = ACTIONS(425), - [anon_sym_number] = ACTIONS(425), - [anon_sym_boolean] = ACTIONS(425), - [anon_sym_string] = ACTIONS(425), - [anon_sym_symbol] = ACTIONS(425), - [sym_readonly] = ACTIONS(425), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [423] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1323), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [350] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [351] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2376), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [352] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -52623,7 +46634,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(1720), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -52646,73 +46657,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [424] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1717), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [353] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2095), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [354] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -52720,243 +46820,510 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [425] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1479), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [355] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1726), + [anon_sym_set] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [356] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2054), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [426] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1383), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), - [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), + [357] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2263), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = 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(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [427] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1380), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [358] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [359] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1726), + [anon_sym_set] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1728), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [360] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2201), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52964,9 +47331,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -52987,78 +47354,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [428] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [361] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2270), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [362] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1534), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), + }, + [363] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2143), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -53068,7 +47613,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1721), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -53091,157 +47636,246 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [429] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1445), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [364] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1726), + [anon_sym_set] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [365] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2170), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [430] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1144), - [sym__expression] = STATE(1586), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1887), - [sym_array] = STATE(1885), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3550), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2187), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1143), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(711), - [anon_sym_namespace] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(711), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(717), + [366] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2191), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(721), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(725), - [anon_sym_function] = ACTIONS(691), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_void] = ACTIONS(733), - [anon_sym_delete] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -53254,88 +47888,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(711), - [anon_sym_get] = ACTIONS(711), - [anon_sym_set] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_any] = ACTIONS(711), - [anon_sym_number] = ACTIONS(711), - [anon_sym_boolean] = ACTIONS(711), - [anon_sym_string] = ACTIONS(711), - [anon_sym_symbol] = ACTIONS(711), - [sym_readonly] = ACTIONS(711), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [431] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1441), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [367] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2255), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(996), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -53343,78 +47977,523 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [432] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1303), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [368] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2082), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [369] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [370] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2207), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [371] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [372] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2165), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [373] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2312), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -53424,7 +48503,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -53447,597 +48526,2288 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [433] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1478), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [374] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1726), + [anon_sym_set] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1728), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [375] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2080), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [434] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1439), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [376] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2172), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [377] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1832), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [378] = { + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_GT] = ACTIONS(1730), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_EQ_GT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_QMARK] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_abstract] = 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_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_implements] = ACTIONS(1732), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_extends] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [sym_readonly] = ACTIONS(1732), + }, + [379] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1857), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [380] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [435] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1438), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [381] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1617), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(920), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [436] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1467), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [382] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1910), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [437] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1500), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [383] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1783), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1723), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [438] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1746), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [384] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1953), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [385] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1864), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [386] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1534), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(786), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [439] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1321), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [387] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2080), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + }, + [388] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2082), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), + }, + [389] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [390] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1880), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [391] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1919), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [392] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(1617), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), + }, + [393] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), + }, + [394] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2208), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [395] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1534), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [396] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2119), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), + }, + [397] = { + [ts_builtin_sym_end] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_EQ] = ACTIONS(1736), + [anon_sym_namespace] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_type] = ACTIONS(1736), + [anon_sym_typeof] = ACTIONS(1736), + [anon_sym_import] = ACTIONS(1736), + [anon_sym_var] = ACTIONS(1736), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_await] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_do] = ACTIONS(1736), + [anon_sym_try] = ACTIONS(1736), + [anon_sym_with] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_debugger] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_throw] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_COLON] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1736), + [anon_sym_yield] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(1736), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_function] = ACTIONS(1736), + [anon_sym_EQ_GT] = ACTIONS(1734), + [anon_sym_new] = ACTIONS(1736), + [anon_sym_QMARK] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_void] = ACTIONS(1736), + [anon_sym_delete] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1734), + [sym_number] = ACTIONS(1734), + [sym_this] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_undefined] = ACTIONS(1736), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_abstract] = 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_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_implements] = ACTIONS(1736), + [anon_sym_interface] = ACTIONS(1736), + [anon_sym_extends] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [sym_readonly] = ACTIONS(1736), + }, + [398] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1617), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [399] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2358), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -54047,7 +50817,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54070,73 +50840,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [440] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1318), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(425), - [anon_sym_typeof] = ACTIONS(473), + [400] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(455), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_void] = ACTIONS(473), - [anon_sym_delete] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(1738), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [401] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2360), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54159,63 +51018,330 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [441] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1238), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [402] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2375), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [403] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2210), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [404] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2373), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [405] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2381), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -54225,7 +51351,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54248,73 +51374,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [442] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1436), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [406] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2390), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54322,88 +51448,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [443] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1206), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), + [407] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1580), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), + [anon_sym_async] = ACTIONS(898), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54411,167 +51537,167 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [444] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1137), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1722), - [sym_array] = STATE(1721), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3673), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2190), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1136), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(444), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(831), - [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(891), + [408] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1920), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_void] = ACTIONS(831), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [sym_readonly] = ACTIONS(809), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [445] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1317), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [409] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2156), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -54581,7 +51707,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54604,63 +51730,419 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [446] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1316), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [410] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1921), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [411] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1922), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [412] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1923), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [413] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2378), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [414] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2150), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -54670,7 +52152,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54693,152 +52175,330 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [447] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1477), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [415] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1924), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [416] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1887), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [448] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1315), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [417] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2394), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [418] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2149), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -54848,7 +52508,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -54871,50 +52531,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [449] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1421), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [419] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2172), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -54922,9 +52582,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -54945,78 +52605,167 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [450] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1314), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [420] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1925), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [421] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2148), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -55026,7 +52775,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -55049,73 +52798,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [451] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(1142), - [sym__expression] = STATE(1744), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1916), - [sym_array] = STATE(1917), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3620), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2189), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(315), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(841), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_type] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(863), + [422] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1926), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), + }, + [423] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2147), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_await] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), - [anon_sym_async] = ACTIONS(855), + [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_void] = ACTIONS(863), - [anon_sym_delete] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -55123,167 +52961,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(487), [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [sym_readonly] = ACTIONS(841), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [452] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1474), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [424] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2146), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), + }, + [425] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1927), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [453] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1307), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [426] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2141), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -55293,7 +53220,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(899), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -55316,50 +53243,228 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [454] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1371), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [427] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2395), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [428] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2382), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [429] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(1832), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -55367,9 +53472,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -55390,65 +53495,243 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [455] = { - [sym_import] = STATE(1811), - [sym_parenthesized_expression] = STATE(1096), - [sym__expression] = STATE(1370), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1698), - [sym_array] = STATE(1711), - [sym_class] = STATE(1811), - [sym_function] = STATE(1811), - [sym_generator_function] = STATE(1811), - [sym_arrow_function] = STATE(1811), - [sym__call_signature] = STATE(3679), - [sym_call_expression] = STATE(1811), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2186), - [sym_augmented_assignment_expression] = STATE(1730), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1811), - [sym_template_string] = STATE(1811), - [sym_regex] = STATE(1811), - [sym_meta_property] = STATE(1811), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2929), - [sym_identifier] = ACTIONS(979), - [anon_sym_export] = ACTIONS(673), - [anon_sym_namespace] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_type] = ACTIONS(673), + [430] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2385), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), + }, + [431] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3666), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1726), + [anon_sym_set] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [432] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2177), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(681), + [anon_sym_import] = ACTIONS(822), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -55456,9 +53739,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(687), - [anon_sym_async] = ACTIONS(689), - [anon_sym_function] = ACTIONS(691), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -55479,167 +53762,167 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(673), - [anon_sym_get] = ACTIONS(673), - [anon_sym_set] = ACTIONS(673), - [anon_sym_declare] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_any] = ACTIONS(673), - [anon_sym_number] = ACTIONS(673), - [anon_sym_boolean] = ACTIONS(673), - [anon_sym_string] = ACTIONS(673), - [anon_sym_symbol] = ACTIONS(673), - [sym_readonly] = ACTIONS(673), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [456] = { - [sym_import] = STATE(1909), - [sym_parenthesized_expression] = STATE(1126), - [sym__expression] = STATE(1476), - [sym_yield_expression] = STATE(1912), - [sym_object] = STATE(1771), - [sym_array] = STATE(1772), - [sym_class] = STATE(1909), - [sym_function] = STATE(1909), - [sym_generator_function] = STATE(1909), - [sym_arrow_function] = STATE(1909), - [sym__call_signature] = STATE(3598), - [sym_call_expression] = STATE(1909), - [sym_new_expression] = STATE(1912), - [sym_await_expression] = STATE(1912), - [sym_member_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1912), - [sym__augmented_assignment_lhs] = STATE(2191), - [sym_augmented_assignment_expression] = STATE(1912), - [sym_ternary_expression] = STATE(1912), - [sym_binary_expression] = STATE(1912), - [sym_unary_expression] = STATE(1912), - [sym_update_expression] = STATE(1912), - [sym_string] = STATE(1909), - [sym_template_string] = STATE(1909), - [sym_regex] = STATE(1909), - [sym_meta_property] = STATE(1909), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(1128), - [sym_type_assertion] = STATE(1912), - [sym_as_expression] = STATE(1912), - [sym_internal_module] = STATE(1912), - [sym_type_arguments] = STATE(309), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2972), - [sym_identifier] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(647), - [anon_sym_import] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_await] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(1017), + [433] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_class] = ACTIONS(629), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(633), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_void] = ACTIONS(647), - [anon_sym_delete] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(655), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(607), - [anon_sym_get] = ACTIONS(607), - [anon_sym_set] = ACTIONS(607), - [anon_sym_declare] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_any] = ACTIONS(607), - [anon_sym_number] = ACTIONS(607), - [anon_sym_boolean] = ACTIONS(607), - [anon_sym_string] = ACTIONS(607), - [anon_sym_symbol] = ACTIONS(607), - [sym_readonly] = ACTIONS(607), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [457] = { - [sym_import] = STATE(1382), - [sym_parenthesized_expression] = STATE(935), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1385), - [sym_object] = STATE(1529), - [sym_array] = STATE(1530), - [sym_class] = STATE(1382), - [sym_function] = STATE(1382), - [sym_generator_function] = STATE(1382), - [sym_arrow_function] = STATE(1382), - [sym__call_signature] = STATE(3591), - [sym_call_expression] = STATE(1382), - [sym_new_expression] = STATE(1385), - [sym_await_expression] = STATE(1385), - [sym_member_expression] = STATE(935), - [sym_subscript_expression] = STATE(935), - [sym_assignment_expression] = STATE(1385), - [sym__augmented_assignment_lhs] = STATE(2188), - [sym_augmented_assignment_expression] = STATE(1385), - [sym_ternary_expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_unary_expression] = STATE(1385), - [sym_update_expression] = STATE(1385), - [sym_string] = STATE(1382), - [sym_template_string] = STATE(1382), - [sym_regex] = STATE(1382), - [sym_meta_property] = STATE(1382), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(2860), - [sym_non_null_expression] = STATE(936), - [sym_type_assertion] = STATE(1385), - [sym_as_expression] = STATE(1385), - [sym_internal_module] = STATE(1385), - [sym_type_arguments] = STATE(392), - [sym_type_parameters] = STATE(3333), - [aux_sym_export_statement_repeat1] = STATE(2996), - [sym_identifier] = ACTIONS(877), + [434] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1590), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_type] = ACTIONS(425), [anon_sym_typeof] = ACTIONS(473), [anon_sym_import] = ACTIONS(437), [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(443), [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(782), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(451), [anon_sym_class] = ACTIONS(453), [anon_sym_async] = ACTIONS(455), [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), [anon_sym_TILDE] = ACTIONS(439), [anon_sym_void] = ACTIONS(473), [anon_sym_delete] = ACTIONS(473), @@ -55649,7 +53932,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(481), - [sym_number] = ACTIONS(1725), + [sym_number] = ACTIONS(810), [sym_this] = ACTIONS(487), [sym_super] = ACTIONS(487), [sym_true] = ACTIONS(487), @@ -55672,18667 +53955,28816 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(425), [sym_readonly] = ACTIONS(425), }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_COMMA] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_typeof] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1729), - [anon_sym_var] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_await] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_with] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_debugger] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_COLON] = ACTIONS(1727), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_RBRACK] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_function] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1727), - [sym_number] = ACTIONS(1727), - [sym_this] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_undefined] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_abstract] = ACTIONS(1729), - [anon_sym_get] = ACTIONS(1729), - [anon_sym_set] = ACTIONS(1729), - [anon_sym_declare] = ACTIONS(1729), - [anon_sym_public] = ACTIONS(1729), - [anon_sym_private] = ACTIONS(1729), - [anon_sym_protected] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_any] = ACTIONS(1729), - [anon_sym_number] = ACTIONS(1729), - [anon_sym_boolean] = ACTIONS(1729), - [anon_sym_string] = ACTIONS(1729), - [anon_sym_symbol] = ACTIONS(1729), - [anon_sym_interface] = ACTIONS(1729), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [sym_readonly] = ACTIONS(1729), - }, - [459] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_namespace] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(1733), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_var] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_switch] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_await] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_with] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_debugger] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_throw] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_COLON] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_class] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_function] = ACTIONS(1733), - [anon_sym_EQ_GT] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_delete] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_number] = ACTIONS(1731), - [sym_this] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_true] = ACTIONS(1733), - [sym_false] = ACTIONS(1733), - [sym_null] = ACTIONS(1733), - [sym_undefined] = ACTIONS(1733), - [anon_sym_AT] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_abstract] = ACTIONS(1733), - [anon_sym_get] = ACTIONS(1733), - [anon_sym_set] = ACTIONS(1733), - [anon_sym_declare] = ACTIONS(1733), - [anon_sym_public] = ACTIONS(1733), - [anon_sym_private] = ACTIONS(1733), - [anon_sym_protected] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_any] = ACTIONS(1733), - [anon_sym_number] = ACTIONS(1733), - [anon_sym_boolean] = ACTIONS(1733), - [anon_sym_string] = ACTIONS(1733), - [anon_sym_symbol] = ACTIONS(1733), - [anon_sym_interface] = ACTIONS(1733), - [anon_sym_extends] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [sym_readonly] = ACTIONS(1733), - }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_typeof] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_var] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_debugger] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_COLON] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_RBRACK] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1737), - [anon_sym_EQ_GT] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1735), - [sym_number] = ACTIONS(1735), - [sym_this] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_undefined] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(1737), - [anon_sym_get] = ACTIONS(1737), - [anon_sym_set] = ACTIONS(1737), - [anon_sym_declare] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_private] = ACTIONS(1737), - [anon_sym_protected] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1737), - [anon_sym_extends] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [sym_readonly] = ACTIONS(1737), - }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_EQ] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_typeof] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_var] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_debugger] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_throw] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_RBRACK] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_function] = ACTIONS(1741), - [anon_sym_EQ_GT] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_QMARK] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_delete] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_this] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_null] = ACTIONS(1741), - [sym_undefined] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_abstract] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1741), - [anon_sym_extends] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [sym_readonly] = ACTIONS(1741), - }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(1745), - [sym_identifier] = ACTIONS(1747), - [anon_sym_export] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_EQ] = ACTIONS(1747), - [anon_sym_namespace] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1747), - [anon_sym_typeof] = ACTIONS(1747), - [anon_sym_import] = ACTIONS(1747), - [anon_sym_var] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_switch] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_with] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_debugger] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_throw] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_COLON] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1747), - [anon_sym_yield] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_RBRACK] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1747), - [anon_sym_EQ_GT] = ACTIONS(1745), - [anon_sym_new] = ACTIONS(1747), - [anon_sym_QMARK] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_void] = ACTIONS(1747), - [anon_sym_delete] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1745), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1745), - [sym_number] = ACTIONS(1745), - [sym_this] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), - [sym_undefined] = ACTIONS(1747), - [anon_sym_AT] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_abstract] = ACTIONS(1747), - [anon_sym_get] = ACTIONS(1747), - [anon_sym_set] = ACTIONS(1747), - [anon_sym_declare] = ACTIONS(1747), - [anon_sym_public] = ACTIONS(1747), - [anon_sym_private] = ACTIONS(1747), - [anon_sym_protected] = ACTIONS(1747), - [anon_sym_module] = ACTIONS(1747), - [anon_sym_any] = ACTIONS(1747), - [anon_sym_number] = ACTIONS(1747), - [anon_sym_boolean] = ACTIONS(1747), - [anon_sym_string] = ACTIONS(1747), - [anon_sym_symbol] = ACTIONS(1747), - [anon_sym_interface] = ACTIONS(1747), - [anon_sym_extends] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [sym_readonly] = ACTIONS(1747), + [435] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1928), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_export] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_type] = ACTIONS(1207), - [anon_sym_typeof] = ACTIONS(1207), - [anon_sym_import] = ACTIONS(1207), - [anon_sym_var] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_await] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_try] = ACTIONS(1207), - [anon_sym_with] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_debugger] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_throw] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_RBRACK] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_class] = ACTIONS(1207), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(1207), - [anon_sym_EQ_GT] = ACTIONS(1205), - [anon_sym_new] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_void] = ACTIONS(1207), - [anon_sym_delete] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1205), - [sym_number] = ACTIONS(1205), - [sym_this] = ACTIONS(1207), - [sym_super] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_null] = ACTIONS(1207), - [sym_undefined] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_abstract] = ACTIONS(1207), - [anon_sym_get] = ACTIONS(1207), - [anon_sym_set] = ACTIONS(1207), - [anon_sym_declare] = ACTIONS(1207), - [anon_sym_public] = ACTIONS(1207), - [anon_sym_private] = ACTIONS(1207), - [anon_sym_protected] = ACTIONS(1207), - [anon_sym_module] = ACTIONS(1207), - [anon_sym_any] = ACTIONS(1207), - [anon_sym_number] = ACTIONS(1207), - [anon_sym_boolean] = ACTIONS(1207), - [anon_sym_string] = ACTIONS(1207), - [anon_sym_symbol] = ACTIONS(1207), - [anon_sym_interface] = ACTIONS(1207), - [anon_sym_extends] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [sym_readonly] = ACTIONS(1207), + [436] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1617), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [464] = { - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_namespace] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1211), - [anon_sym_typeof] = ACTIONS(1211), - [anon_sym_import] = ACTIONS(1211), - [anon_sym_var] = ACTIONS(1211), - [anon_sym_let] = ACTIONS(1211), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_do] = ACTIONS(1211), - [anon_sym_try] = ACTIONS(1211), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_debugger] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_throw] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1211), - [anon_sym_yield] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1209), - [anon_sym_GT] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1211), - [anon_sym_async] = ACTIONS(1211), - [anon_sym_function] = ACTIONS(1211), - [anon_sym_EQ_GT] = ACTIONS(1209), - [anon_sym_new] = ACTIONS(1211), - [anon_sym_QMARK] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_void] = ACTIONS(1211), - [anon_sym_delete] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1209), - [sym_number] = ACTIONS(1209), - [sym_this] = ACTIONS(1211), - [sym_super] = ACTIONS(1211), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [sym_null] = ACTIONS(1211), - [sym_undefined] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_abstract] = ACTIONS(1211), - [anon_sym_get] = ACTIONS(1211), - [anon_sym_set] = ACTIONS(1211), - [anon_sym_declare] = ACTIONS(1211), - [anon_sym_public] = ACTIONS(1211), - [anon_sym_private] = ACTIONS(1211), - [anon_sym_protected] = ACTIONS(1211), - [anon_sym_module] = ACTIONS(1211), - [anon_sym_any] = ACTIONS(1211), - [anon_sym_number] = ACTIONS(1211), - [anon_sym_boolean] = ACTIONS(1211), - [anon_sym_string] = ACTIONS(1211), - [anon_sym_symbol] = ACTIONS(1211), - [anon_sym_interface] = ACTIONS(1211), - [anon_sym_extends] = ACTIONS(1211), - [anon_sym_enum] = ACTIONS(1211), - [sym_readonly] = ACTIONS(1211), - }, - [465] = { - [ts_builtin_sym_end] = ACTIONS(1749), - [sym_identifier] = ACTIONS(1751), - [anon_sym_export] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_EQ] = ACTIONS(1751), - [anon_sym_namespace] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_COMMA] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1751), - [anon_sym_import] = ACTIONS(1751), - [anon_sym_var] = ACTIONS(1751), - [anon_sym_let] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_else] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_switch] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_await] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_do] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1751), - [anon_sym_with] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_debugger] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_COLON] = ACTIONS(1749), - [anon_sym_case] = ACTIONS(1751), - [anon_sym_yield] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_RBRACK] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_SLASH] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1751), - [anon_sym_async] = ACTIONS(1751), - [anon_sym_function] = ACTIONS(1751), - [anon_sym_EQ_GT] = ACTIONS(1749), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_QMARK] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_void] = ACTIONS(1751), - [anon_sym_delete] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1749), - [sym_number] = ACTIONS(1749), - [sym_this] = ACTIONS(1751), - [sym_super] = ACTIONS(1751), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_undefined] = ACTIONS(1751), - [anon_sym_AT] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1751), - [anon_sym_abstract] = ACTIONS(1751), - [anon_sym_get] = ACTIONS(1751), - [anon_sym_set] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1751), - [anon_sym_public] = ACTIONS(1751), - [anon_sym_private] = ACTIONS(1751), - [anon_sym_protected] = ACTIONS(1751), - [anon_sym_module] = ACTIONS(1751), - [anon_sym_any] = ACTIONS(1751), - [anon_sym_number] = ACTIONS(1751), - [anon_sym_boolean] = ACTIONS(1751), - [anon_sym_string] = ACTIONS(1751), - [anon_sym_symbol] = ACTIONS(1751), - [anon_sym_interface] = ACTIONS(1751), - [anon_sym_extends] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [sym_readonly] = ACTIONS(1751), - }, - [466] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_EQ] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_COMMA] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_var] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_debugger] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_COLON] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [anon_sym_RBRACK] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(1755), - [anon_sym_EQ_GT] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_QMARK] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_void] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym_number] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_undefined] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1755), - [anon_sym_get] = ACTIONS(1755), - [anon_sym_set] = ACTIONS(1755), - [anon_sym_declare] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_interface] = ACTIONS(1755), - [anon_sym_extends] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [sym_readonly] = ACTIONS(1755), - }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_typeof] = ACTIONS(1759), - [anon_sym_import] = ACTIONS(1759), - [anon_sym_var] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_await] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_with] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_debugger] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_COLON] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_RBRACK] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_async] = ACTIONS(1759), - [anon_sym_function] = ACTIONS(1759), - [anon_sym_EQ_GT] = ACTIONS(1757), - [anon_sym_new] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_void] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1757), - [sym_number] = ACTIONS(1757), - [sym_this] = ACTIONS(1759), - [sym_super] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_undefined] = ACTIONS(1759), - [anon_sym_AT] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_abstract] = ACTIONS(1759), - [anon_sym_get] = ACTIONS(1759), - [anon_sym_set] = ACTIONS(1759), - [anon_sym_declare] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_any] = ACTIONS(1759), - [anon_sym_number] = ACTIONS(1759), - [anon_sym_boolean] = ACTIONS(1759), - [anon_sym_string] = ACTIONS(1759), - [anon_sym_symbol] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_extends] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [sym_readonly] = ACTIONS(1759), - }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1763), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_var] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_debugger] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_COLON] = ACTIONS(1761), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_RBRACK] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(1763), - [anon_sym_EQ_GT] = ACTIONS(1761), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_void] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1761), - [sym_number] = ACTIONS(1761), - [sym_this] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_undefined] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_abstract] = ACTIONS(1763), - [anon_sym_get] = ACTIONS(1763), - [anon_sym_set] = ACTIONS(1763), - [anon_sym_declare] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_any] = ACTIONS(1763), - [anon_sym_number] = ACTIONS(1763), - [anon_sym_boolean] = ACTIONS(1763), - [anon_sym_string] = ACTIONS(1763), - [anon_sym_symbol] = ACTIONS(1763), - [anon_sym_interface] = ACTIONS(1763), - [anon_sym_extends] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym_readonly] = ACTIONS(1763), - }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_EQ] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1767), - [anon_sym_typeof] = ACTIONS(1767), - [anon_sym_import] = ACTIONS(1767), - [anon_sym_var] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_with] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_debugger] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_async] = ACTIONS(1767), - [anon_sym_function] = ACTIONS(1767), - [anon_sym_EQ_GT] = ACTIONS(1765), - [anon_sym_new] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_void] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1765), - [sym_number] = ACTIONS(1765), - [sym_this] = ACTIONS(1767), - [sym_super] = ACTIONS(1767), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_undefined] = ACTIONS(1767), - [anon_sym_AT] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_abstract] = ACTIONS(1767), - [anon_sym_get] = ACTIONS(1767), - [anon_sym_set] = ACTIONS(1767), - [anon_sym_declare] = ACTIONS(1767), - [anon_sym_public] = ACTIONS(1767), - [anon_sym_private] = ACTIONS(1767), - [anon_sym_protected] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_any] = ACTIONS(1767), - [anon_sym_number] = ACTIONS(1767), - [anon_sym_boolean] = ACTIONS(1767), - [anon_sym_string] = ACTIONS(1767), - [anon_sym_symbol] = ACTIONS(1767), - [anon_sym_interface] = ACTIONS(1767), - [anon_sym_extends] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [sym_readonly] = ACTIONS(1767), - }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_EQ] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(1771), - [anon_sym_import] = ACTIONS(1771), - [anon_sym_var] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_with] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_debugger] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_COLON] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_RBRACK] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_function] = ACTIONS(1771), - [anon_sym_EQ_GT] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_void] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1769), - [sym_number] = ACTIONS(1769), - [sym_this] = ACTIONS(1771), - [sym_super] = ACTIONS(1771), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_undefined] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_abstract] = ACTIONS(1771), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_declare] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_any] = ACTIONS(1771), - [anon_sym_number] = ACTIONS(1771), - [anon_sym_boolean] = ACTIONS(1771), - [anon_sym_string] = ACTIONS(1771), - [anon_sym_symbol] = ACTIONS(1771), - [anon_sym_interface] = ACTIONS(1771), - [anon_sym_extends] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [sym_readonly] = ACTIONS(1771), - }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_identifier] = ACTIONS(1775), - [anon_sym_export] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_EQ] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1775), - [anon_sym_typeof] = ACTIONS(1775), - [anon_sym_import] = ACTIONS(1775), - [anon_sym_var] = ACTIONS(1775), - [anon_sym_let] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_else] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_with] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_debugger] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_COLON] = ACTIONS(1773), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_yield] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_RBRACK] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_SLASH] = ACTIONS(1775), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_async] = ACTIONS(1775), - [anon_sym_function] = ACTIONS(1775), - [anon_sym_EQ_GT] = ACTIONS(1773), - [anon_sym_new] = ACTIONS(1775), - [anon_sym_QMARK] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_void] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1773), - [sym_number] = ACTIONS(1773), - [sym_this] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_undefined] = ACTIONS(1775), - [anon_sym_AT] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(1775), - [anon_sym_extends] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [sym_readonly] = ACTIONS(1775), - }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_EQ] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_var] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_debugger] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_COLON] = ACTIONS(1777), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_RBRACK] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_EQ_GT] = ACTIONS(1777), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_QMARK] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_void] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1777), - [sym_number] = ACTIONS(1777), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_abstract] = 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_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_extends] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [sym_readonly] = ACTIONS(1779), - }, - [473] = { - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1327), - [anon_sym_export] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1327), - [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_RPAREN] = 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_COLON] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_yield] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_RBRACK] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_class] = ACTIONS(1327), - [anon_sym_async] = ACTIONS(1327), - [anon_sym_function] = ACTIONS(1327), - [anon_sym_EQ_GT] = ACTIONS(1325), - [anon_sym_new] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = 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(1325), - [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_abstract] = 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_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_interface] = ACTIONS(1327), - [anon_sym_extends] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [sym_readonly] = ACTIONS(1327), - }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_EQ] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_RBRACK] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_EQ_GT] = ACTIONS(1781), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_extends] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [sym_readonly] = ACTIONS(1783), - }, - [475] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1787), - [anon_sym_EQ] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_typeof] = ACTIONS(1787), - [anon_sym_import] = ACTIONS(1787), - [anon_sym_var] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_switch] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_await] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_with] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_debugger] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1785), - [anon_sym_case] = ACTIONS(1787), - [anon_sym_yield] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_RBRACK] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_async] = ACTIONS(1787), - [anon_sym_function] = ACTIONS(1787), - [anon_sym_EQ_GT] = ACTIONS(1785), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_void] = ACTIONS(1787), - [anon_sym_delete] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1785), - [sym_number] = ACTIONS(1785), - [sym_this] = ACTIONS(1787), - [sym_super] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_null] = ACTIONS(1787), - [sym_undefined] = ACTIONS(1787), - [anon_sym_AT] = ACTIONS(1785), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(1787), - [anon_sym_extends] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [sym_readonly] = ACTIONS(1787), - }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_EQ_GT] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_abstract] = 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_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_extends] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [sym_readonly] = ACTIONS(1791), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_export] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_EQ] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_COMMA] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1795), - [anon_sym_import] = ACTIONS(1795), - [anon_sym_var] = ACTIONS(1795), - [anon_sym_let] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_switch] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_RPAREN] = ACTIONS(1793), - [anon_sym_await] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_do] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_with] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_debugger] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1795), - [anon_sym_yield] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_RBRACK] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_GT] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_async] = ACTIONS(1795), - [anon_sym_function] = ACTIONS(1795), - [anon_sym_EQ_GT] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1795), - [anon_sym_QMARK] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_void] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1793), - [sym_number] = ACTIONS(1793), - [sym_this] = ACTIONS(1795), - [sym_super] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_abstract] = ACTIONS(1795), - [anon_sym_get] = ACTIONS(1795), - [anon_sym_set] = ACTIONS(1795), - [anon_sym_declare] = ACTIONS(1795), - [anon_sym_public] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1795), - [anon_sym_protected] = ACTIONS(1795), - [anon_sym_module] = ACTIONS(1795), - [anon_sym_any] = ACTIONS(1795), - [anon_sym_number] = ACTIONS(1795), - [anon_sym_boolean] = ACTIONS(1795), - [anon_sym_string] = ACTIONS(1795), - [anon_sym_symbol] = ACTIONS(1795), - [anon_sym_interface] = ACTIONS(1795), - [anon_sym_extends] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [sym_readonly] = ACTIONS(1795), - }, - [478] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_EQ] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_COMMA] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_typeof] = ACTIONS(1799), - [anon_sym_import] = ACTIONS(1799), - [anon_sym_var] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_RPAREN] = ACTIONS(1797), - [anon_sym_await] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_with] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_debugger] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_COLON] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_yield] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_RBRACK] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_async] = ACTIONS(1799), - [anon_sym_function] = ACTIONS(1799), - [anon_sym_EQ_GT] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_void] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1797), - [sym_number] = ACTIONS(1797), - [sym_this] = ACTIONS(1799), - [sym_super] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_undefined] = ACTIONS(1799), - [anon_sym_AT] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_abstract] = ACTIONS(1799), - [anon_sym_get] = ACTIONS(1799), - [anon_sym_set] = ACTIONS(1799), - [anon_sym_declare] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_private] = ACTIONS(1799), - [anon_sym_protected] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_any] = ACTIONS(1799), - [anon_sym_number] = ACTIONS(1799), - [anon_sym_boolean] = ACTIONS(1799), - [anon_sym_string] = ACTIONS(1799), - [anon_sym_symbol] = ACTIONS(1799), - [anon_sym_interface] = ACTIONS(1799), - [anon_sym_extends] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [sym_readonly] = ACTIONS(1799), - }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_EQ] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_COLON] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_RBRACK] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_EQ_GT] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_QMARK] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_extends] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym_readonly] = ACTIONS(1803), - }, - [480] = { - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(1807), - [anon_sym_var] = ACTIONS(1807), - [anon_sym_let] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_await] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_with] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_debugger] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_COLON] = ACTIONS(1805), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_function] = ACTIONS(1807), - [anon_sym_EQ_GT] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_void] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1805), - [sym_number] = ACTIONS(1805), - [sym_this] = ACTIONS(1807), - [sym_super] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_undefined] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_abstract] = ACTIONS(1807), - [anon_sym_get] = ACTIONS(1807), - [anon_sym_set] = ACTIONS(1807), - [anon_sym_declare] = ACTIONS(1807), - [anon_sym_public] = ACTIONS(1807), - [anon_sym_private] = ACTIONS(1807), - [anon_sym_protected] = ACTIONS(1807), - [anon_sym_module] = ACTIONS(1807), - [anon_sym_any] = ACTIONS(1807), - [anon_sym_number] = ACTIONS(1807), - [anon_sym_boolean] = ACTIONS(1807), - [anon_sym_string] = ACTIONS(1807), - [anon_sym_symbol] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_extends] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [sym_readonly] = ACTIONS(1807), - }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_EQ] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_RBRACK] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_EQ_GT] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_extends] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [sym_readonly] = ACTIONS(1811), - }, - [482] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_COLON] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_RBRACK] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_EQ_GT] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_extends] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1815), - [sym_readonly] = ACTIONS(1815), - }, - [483] = { - [ts_builtin_sym_end] = ACTIONS(1817), - [sym_identifier] = ACTIONS(1819), - [anon_sym_export] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1819), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(1819), - [anon_sym_var] = ACTIONS(1819), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_with] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_debugger] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_throw] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_case] = ACTIONS(1819), - [anon_sym_yield] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_class] = ACTIONS(1819), - [anon_sym_async] = ACTIONS(1819), - [anon_sym_function] = ACTIONS(1819), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_new] = ACTIONS(1819), - [anon_sym_QMARK] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1817), - [sym_number] = ACTIONS(1817), - [sym_this] = ACTIONS(1819), - [sym_super] = ACTIONS(1819), - [sym_true] = ACTIONS(1819), - [sym_false] = ACTIONS(1819), - [sym_null] = ACTIONS(1819), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1819), - [anon_sym_abstract] = ACTIONS(1819), - [anon_sym_get] = ACTIONS(1819), - [anon_sym_set] = ACTIONS(1819), - [anon_sym_declare] = ACTIONS(1819), - [anon_sym_public] = ACTIONS(1819), - [anon_sym_private] = ACTIONS(1819), - [anon_sym_protected] = ACTIONS(1819), - [anon_sym_module] = ACTIONS(1819), - [anon_sym_any] = ACTIONS(1819), - [anon_sym_number] = ACTIONS(1819), - [anon_sym_boolean] = ACTIONS(1819), - [anon_sym_string] = ACTIONS(1819), - [anon_sym_symbol] = ACTIONS(1819), - [anon_sym_interface] = ACTIONS(1819), - [anon_sym_extends] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), - [sym_readonly] = ACTIONS(1819), - }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_COLON] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_RBRACK] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1821), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_QMARK] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_extends] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [sym_readonly] = ACTIONS(1823), - }, - [485] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_COLON] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_RBRACK] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1825), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_QMARK] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_abstract] = 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_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_extends] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [sym_readonly] = ACTIONS(1827), - }, - [486] = { - [ts_builtin_sym_end] = ACTIONS(567), - [sym_identifier] = ACTIONS(569), - [anon_sym_export] = ACTIONS(569), - [anon_sym_default] = ACTIONS(569), - [anon_sym_EQ] = ACTIONS(569), - [anon_sym_namespace] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_type] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(569), - [anon_sym_var] = ACTIONS(569), - [anon_sym_let] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_else] = ACTIONS(569), - [anon_sym_if] = ACTIONS(569), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_await] = ACTIONS(569), - [anon_sym_while] = ACTIONS(569), - [anon_sym_do] = ACTIONS(569), - [anon_sym_try] = ACTIONS(569), - [anon_sym_with] = ACTIONS(569), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_debugger] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_throw] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_case] = ACTIONS(569), - [anon_sym_yield] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_RBRACK] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(569), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(569), - [anon_sym_function] = ACTIONS(569), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_new] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_void] = ACTIONS(569), - [anon_sym_delete] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(567), - [sym_number] = ACTIONS(567), - [sym_this] = ACTIONS(569), - [sym_super] = ACTIONS(569), - [sym_true] = ACTIONS(569), - [sym_false] = ACTIONS(569), - [sym_null] = ACTIONS(569), - [sym_undefined] = ACTIONS(569), - [anon_sym_AT] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_abstract] = ACTIONS(569), - [anon_sym_get] = ACTIONS(569), - [anon_sym_set] = ACTIONS(569), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(569), - [anon_sym_private] = ACTIONS(569), - [anon_sym_protected] = ACTIONS(569), - [anon_sym_module] = ACTIONS(569), - [anon_sym_any] = ACTIONS(569), - [anon_sym_number] = ACTIONS(569), - [anon_sym_boolean] = ACTIONS(569), - [anon_sym_string] = ACTIONS(569), - [anon_sym_symbol] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(569), - [anon_sym_extends] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [sym_readonly] = ACTIONS(569), - }, - [487] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [sym_identifier] = ACTIONS(1831), - [anon_sym_export] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_namespace] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1831), - [anon_sym_import] = ACTIONS(1831), - [anon_sym_var] = ACTIONS(1831), - [anon_sym_let] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_switch] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_await] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_with] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_debugger] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_COLON] = ACTIONS(1829), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_yield] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_async] = ACTIONS(1831), - [anon_sym_function] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_QMARK] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_void] = ACTIONS(1831), - [anon_sym_delete] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1829), - [sym_number] = ACTIONS(1829), - [sym_this] = ACTIONS(1831), - [sym_super] = ACTIONS(1831), - [sym_true] = ACTIONS(1831), - [sym_false] = ACTIONS(1831), - [sym_null] = ACTIONS(1831), - [sym_undefined] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_abstract] = 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_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), - [anon_sym_interface] = ACTIONS(1831), - [anon_sym_extends] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [sym_readonly] = ACTIONS(1831), - }, - [488] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_var] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_RPAREN] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_debugger] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_COLON] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_RBRACK] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_QMARK] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_void] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1833), - [sym_number] = ACTIONS(1833), - [sym_this] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_abstract] = 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_module] = ACTIONS(1835), - [anon_sym_any] = ACTIONS(1835), - [anon_sym_number] = ACTIONS(1835), - [anon_sym_boolean] = ACTIONS(1835), - [anon_sym_string] = ACTIONS(1835), - [anon_sym_symbol] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_extends] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym_readonly] = ACTIONS(1835), - }, - [489] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [490] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3178), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(961), + [437] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1580), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [491] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3178), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(961), + [438] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2139), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [492] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(961), + [439] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2157), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [493] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(961), + [440] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3666), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(655), }, - [494] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3195), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(961), + [441] = { + [sym_string] = STATE(3029), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__property_name] = STATE(3029), + [sym_computed_property_name] = STATE(3029), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3666), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1726), + [anon_sym_set] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [sym_readonly] = ACTIONS(1728), + [sym__automatic_semicolon] = ACTIONS(655), }, - [495] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3195), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(961), + [442] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2138), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [496] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3195), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(961), + [443] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2137), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [497] = { - [sym_string] = STATE(2490), - [sym__property_name] = STATE(2490), - [sym_computed_property_name] = STATE(2490), - [aux_sym_object_repeat1] = STATE(3178), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [sym_readonly] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(961), + [444] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2189), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [498] = { - [sym__call_signature] = STATE(3520), - [sym_arguments] = STATE(1411), - [sym_formal_parameters] = STATE(2860), - [sym_type_arguments] = STATE(1283), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1847), + [445] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2140), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [499] = { - [sym_object] = STATE(2715), - [sym_array] = STATE(2717), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(3748), - [sym_rest_parameter] = STATE(3142), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(3026), - [sym_intersection_type] = STATE(3026), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(2063), - [sym_identifier] = ACTIONS(1859), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1871), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), + [446] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1807), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1861), - [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), - [sym_readonly] = ACTIONS(1877), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [500] = { - [sym_object] = STATE(2715), - [sym_array] = STATE(2717), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(3748), - [sym_rest_parameter] = STATE(3142), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(3019), - [sym_constructor_type] = STATE(3019), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(3019), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(3019), - [sym_intersection_type] = STATE(3019), - [sym_function_type] = STATE(3019), - [aux_sym_export_statement_repeat1] = STATE(2063), - [sym_identifier] = ACTIONS(1859), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1871), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), + [447] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1808), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1861), - [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), - [sym_readonly] = ACTIONS(1877), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [501] = { - [sym_object] = STATE(2715), - [sym_array] = STATE(2717), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(3748), - [sym_rest_parameter] = STATE(3142), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(2973), - [sym_constructor_type] = STATE(2973), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2973), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2973), - [sym_intersection_type] = STATE(2973), - [sym_function_type] = STATE(2973), - [aux_sym_export_statement_repeat1] = STATE(2063), - [sym_identifier] = ACTIONS(1859), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1871), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), + [448] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1811), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1861), - [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), - [sym_readonly] = ACTIONS(1877), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [502] = { - [sym_object] = STATE(2715), - [sym_array] = STATE(2717), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(3748), - [sym_rest_parameter] = STATE(3142), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(2999), - [sym_constructor_type] = STATE(2999), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2999), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2999), - [sym_intersection_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [aux_sym_export_statement_repeat1] = STATE(2063), - [sym_identifier] = ACTIONS(1859), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1871), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), + [449] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1815), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1861), - [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), - [sym_readonly] = ACTIONS(1877), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [503] = { - [sym_object] = STATE(2715), - [sym_array] = STATE(2717), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(3748), - [sym_rest_parameter] = STATE(3142), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(2933), - [sym_constructor_type] = STATE(2933), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2933), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2933), - [sym_intersection_type] = STATE(2933), - [sym_function_type] = STATE(2933), - [aux_sym_export_statement_repeat1] = STATE(2063), - [sym_identifier] = ACTIONS(1859), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1871), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), + [450] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1818), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1861), - [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), - [sym_readonly] = ACTIONS(1877), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [504] = { - [sym__call_signature] = STATE(3536), - [sym_arguments] = STATE(1782), - [sym_formal_parameters] = STATE(2860), - [sym_type_arguments] = STATE(1653), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1883), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [sym_readonly] = ACTIONS(1881), - [sym__automatic_semicolon] = ACTIONS(1851), + [451] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1779), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [505] = { - [sym_object] = STATE(2715), - [sym_array] = STATE(2717), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_decorator] = STATE(2168), - [sym_formal_parameters] = STATE(3748), - [sym_rest_parameter] = STATE(3142), - [sym_nested_type_identifier] = STATE(2180), - [sym_accessibility_modifier] = STATE(2176), - [sym_required_parameter] = STATE(3142), - [sym_optional_parameter] = STATE(3142), - [sym__parameter_name] = STATE(2436), - [sym__rest_identifier] = STATE(2943), - [sym__type] = STATE(2890), - [sym_constructor_type] = STATE(2890), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2890), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2890), - [sym_intersection_type] = STATE(2890), - [sym_function_type] = STATE(2890), - [aux_sym_export_statement_repeat1] = STATE(2063), - [sym_identifier] = ACTIONS(1859), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(1871), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), + [452] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1772), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1861), - [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), - [sym_readonly] = ACTIONS(1877), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [506] = { - [aux_sym_object_repeat1] = STATE(3195), - [sym_identifier] = ACTIONS(1885), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_get] = ACTIONS(1885), - [anon_sym_set] = ACTIONS(1885), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1885), - [anon_sym_private] = ACTIONS(1885), - [anon_sym_protected] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_any] = ACTIONS(1885), - [anon_sym_number] = ACTIONS(1885), - [anon_sym_boolean] = ACTIONS(1885), - [anon_sym_string] = ACTIONS(1885), - [anon_sym_symbol] = ACTIONS(1885), - [sym_readonly] = ACTIONS(1885), - [sym__automatic_semicolon] = ACTIONS(961), + [453] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1580), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [507] = { - [sym__call_signature] = STATE(3726), - [sym_arguments] = STATE(1905), - [sym_formal_parameters] = STATE(2860), - [sym_type_arguments] = STATE(1856), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_function] = ACTIONS(1897), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1891), - [anon_sym_public] = ACTIONS(1891), - [anon_sym_private] = ACTIONS(1891), - [anon_sym_protected] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_any] = ACTIONS(1891), - [anon_sym_number] = ACTIONS(1891), - [anon_sym_boolean] = ACTIONS(1891), - [anon_sym_string] = ACTIONS(1891), - [anon_sym_symbol] = ACTIONS(1891), - [sym_readonly] = ACTIONS(1891), - [anon_sym_LBRACE_PIPE] = ACTIONS(1851), + [454] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1802), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [508] = { - [aux_sym_object_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(1885), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_get] = ACTIONS(1885), - [anon_sym_set] = ACTIONS(1885), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1885), - [anon_sym_private] = ACTIONS(1885), - [anon_sym_protected] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_any] = ACTIONS(1885), - [anon_sym_number] = ACTIONS(1885), - [anon_sym_boolean] = ACTIONS(1885), - [anon_sym_string] = ACTIONS(1885), - [anon_sym_symbol] = ACTIONS(1885), - [sym_readonly] = ACTIONS(1885), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [509] = { - [aux_sym_object_repeat1] = STATE(3178), - [sym_identifier] = ACTIONS(1885), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_number] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_get] = ACTIONS(1885), - [anon_sym_set] = ACTIONS(1885), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1885), - [anon_sym_private] = ACTIONS(1885), - [anon_sym_protected] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_any] = ACTIONS(1885), - [anon_sym_number] = ACTIONS(1885), - [anon_sym_boolean] = ACTIONS(1885), - [anon_sym_string] = ACTIONS(1885), - [anon_sym_symbol] = ACTIONS(1885), - [sym_readonly] = ACTIONS(1885), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [510] = { - [sym__call_signature] = STATE(3520), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1847), - }, - [511] = { - [sym__call_signature] = STATE(3677), - [sym_arguments] = STATE(1411), - [sym_formal_parameters] = STATE(2860), - [sym_type_arguments] = STATE(1283), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1905), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_get] = ACTIONS(1907), - [anon_sym_set] = ACTIONS(1907), - [anon_sym_declare] = ACTIONS(1907), - [anon_sym_public] = ACTIONS(1907), - [anon_sym_private] = ACTIONS(1907), - [anon_sym_protected] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_any] = ACTIONS(1907), - [anon_sym_number] = ACTIONS(1907), - [anon_sym_boolean] = ACTIONS(1907), - [anon_sym_string] = ACTIONS(1907), - [anon_sym_symbol] = ACTIONS(1907), - [anon_sym_implements] = ACTIONS(1849), - [sym_readonly] = ACTIONS(1907), - }, - [512] = { - [sym__call_signature] = STATE(3536), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1909), - [anon_sym_of] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1883), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [sym_readonly] = ACTIONS(1881), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [513] = { - [sym__call_signature] = STATE(3567), - [sym_arguments] = STATE(1782), - [sym_formal_parameters] = STATE(2860), - [sym_type_arguments] = STATE(1653), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1914), - [anon_sym_export] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_function] = ACTIONS(1883), - [anon_sym_EQ_GT] = ACTIONS(1077), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(1916), - [anon_sym_set] = ACTIONS(1916), - [anon_sym_declare] = ACTIONS(1916), - [anon_sym_public] = ACTIONS(1916), - [anon_sym_private] = ACTIONS(1916), - [anon_sym_protected] = ACTIONS(1916), - [anon_sym_module] = ACTIONS(1916), - [anon_sym_any] = ACTIONS(1916), - [anon_sym_number] = ACTIONS(1916), - [anon_sym_boolean] = ACTIONS(1916), - [anon_sym_string] = ACTIONS(1916), - [anon_sym_symbol] = ACTIONS(1916), - [sym_readonly] = ACTIONS(1916), - [sym__automatic_semicolon] = ACTIONS(1851), - }, - [514] = { - [sym__call_signature] = STATE(3536), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1883), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [sym_readonly] = ACTIONS(1881), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [515] = { - [sym_type_arguments] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_namespace] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_import] = ACTIONS(1920), - [anon_sym_var] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_switch] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_await] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_with] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_debugger] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_throw] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_case] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_SLASH] = ACTIONS(1920), - [anon_sym_DOT] = ACTIONS(1922), - [anon_sym_class] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_function] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1918), - [anon_sym_void] = ACTIONS(1920), - [anon_sym_delete] = ACTIONS(1920), - [anon_sym_PLUS_PLUS] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1918), - [sym_number] = ACTIONS(1918), - [sym_this] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_true] = ACTIONS(1920), - [sym_false] = ACTIONS(1920), - [sym_null] = ACTIONS(1920), - [sym_undefined] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_abstract] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_declare] = ACTIONS(1920), - [anon_sym_public] = ACTIONS(1920), - [anon_sym_private] = ACTIONS(1920), - [anon_sym_protected] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_any] = ACTIONS(1920), - [anon_sym_number] = ACTIONS(1920), - [anon_sym_boolean] = ACTIONS(1920), - [anon_sym_string] = ACTIONS(1920), - [anon_sym_symbol] = ACTIONS(1920), - [anon_sym_interface] = ACTIONS(1920), - [anon_sym_extends] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [sym_readonly] = ACTIONS(1920), - }, - [516] = { - [sym_type_arguments] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1926), - [anon_sym_export] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_namespace] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1926), - [anon_sym_typeof] = ACTIONS(1926), - [anon_sym_import] = ACTIONS(1926), - [anon_sym_var] = ACTIONS(1926), - [anon_sym_let] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_else] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_switch] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_await] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_do] = ACTIONS(1926), - [anon_sym_try] = ACTIONS(1926), - [anon_sym_with] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_debugger] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_throw] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_case] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_SLASH] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(1922), - [anon_sym_class] = ACTIONS(1926), - [anon_sym_async] = ACTIONS(1926), - [anon_sym_function] = ACTIONS(1926), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_void] = ACTIONS(1926), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1924), - [sym_number] = ACTIONS(1924), - [sym_this] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_true] = ACTIONS(1926), - [sym_false] = ACTIONS(1926), - [sym_null] = ACTIONS(1926), - [sym_undefined] = ACTIONS(1926), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_abstract] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1926), - [anon_sym_set] = ACTIONS(1926), - [anon_sym_declare] = ACTIONS(1926), - [anon_sym_public] = ACTIONS(1926), - [anon_sym_private] = ACTIONS(1926), - [anon_sym_protected] = ACTIONS(1926), - [anon_sym_module] = ACTIONS(1926), - [anon_sym_any] = ACTIONS(1926), - [anon_sym_number] = ACTIONS(1926), - [anon_sym_boolean] = ACTIONS(1926), - [anon_sym_string] = ACTIONS(1926), - [anon_sym_symbol] = ACTIONS(1926), - [anon_sym_interface] = ACTIONS(1926), - [anon_sym_extends] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [sym_readonly] = ACTIONS(1926), - }, - [517] = { - [sym__call_signature] = STATE(3536), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1931), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [sym_readonly] = ACTIONS(1881), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [518] = { - [sym__call_signature] = STATE(3536), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1667), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [sym_readonly] = ACTIONS(1881), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [519] = { - [sym__call_signature] = STATE(3613), - [sym_arguments] = STATE(1411), - [sym_formal_parameters] = STATE(2860), - [sym_type_arguments] = STATE(1283), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [455] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(2215), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [520] = { - [ts_builtin_sym_end] = ACTIONS(567), - [sym_identifier] = ACTIONS(569), - [anon_sym_export] = ACTIONS(569), - [anon_sym_default] = ACTIONS(569), - [anon_sym_namespace] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_type] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(569), - [anon_sym_var] = ACTIONS(569), - [anon_sym_let] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_else] = ACTIONS(569), - [anon_sym_if] = ACTIONS(569), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(567), + [456] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1534), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), [anon_sym_await] = ACTIONS(569), - [anon_sym_while] = ACTIONS(569), - [anon_sym_do] = ACTIONS(569), - [anon_sym_try] = ACTIONS(569), - [anon_sym_with] = ACTIONS(569), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_debugger] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_throw] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_case] = ACTIONS(569), - [anon_sym_yield] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(569), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(569), - [anon_sym_function] = ACTIONS(569), - [anon_sym_new] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_void] = ACTIONS(569), - [anon_sym_delete] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(567), - [sym_number] = ACTIONS(567), - [sym_this] = ACTIONS(569), - [sym_super] = ACTIONS(569), - [sym_true] = ACTIONS(569), - [sym_false] = ACTIONS(569), - [sym_null] = ACTIONS(569), - [sym_undefined] = ACTIONS(569), - [anon_sym_AT] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_abstract] = ACTIONS(569), - [anon_sym_get] = ACTIONS(569), - [anon_sym_set] = ACTIONS(569), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(569), - [anon_sym_private] = ACTIONS(569), - [anon_sym_protected] = ACTIONS(569), - [anon_sym_module] = ACTIONS(569), - [anon_sym_any] = ACTIONS(569), - [anon_sym_number] = ACTIONS(569), - [anon_sym_boolean] = ACTIONS(569), - [anon_sym_string] = ACTIONS(569), - [anon_sym_symbol] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(569), - [anon_sym_extends] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [sym_readonly] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [521] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_await] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_debugger] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_throw] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_catch] = ACTIONS(1177), - [anon_sym_finally] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_async] = ACTIONS(1177), - [anon_sym_function] = ACTIONS(1177), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_delete] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1175), - [sym_number] = ACTIONS(1175), - [sym_this] = ACTIONS(1177), - [sym_super] = ACTIONS(1177), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_get] = ACTIONS(1177), - [anon_sym_set] = ACTIONS(1177), - [anon_sym_declare] = ACTIONS(1177), - [anon_sym_public] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(1177), - [anon_sym_any] = ACTIONS(1177), - [anon_sym_number] = ACTIONS(1177), - [anon_sym_boolean] = ACTIONS(1177), - [anon_sym_string] = ACTIONS(1177), - [anon_sym_symbol] = ACTIONS(1177), - [anon_sym_interface] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [sym_readonly] = ACTIONS(1177), - [sym__automatic_semicolon] = ACTIONS(1939), + [457] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1822), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [522] = { - [sym_type_arguments] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_typeof] = ACTIONS(1759), - [anon_sym_import] = ACTIONS(1759), - [anon_sym_var] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_await] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_with] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_debugger] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_async] = ACTIONS(1759), - [anon_sym_function] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_void] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1757), - [sym_number] = ACTIONS(1757), - [sym_this] = ACTIONS(1759), - [sym_super] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_undefined] = ACTIONS(1759), - [anon_sym_AT] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_abstract] = ACTIONS(1759), - [anon_sym_get] = ACTIONS(1759), - [anon_sym_set] = ACTIONS(1759), - [anon_sym_declare] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_any] = ACTIONS(1759), - [anon_sym_number] = ACTIONS(1759), - [anon_sym_boolean] = ACTIONS(1759), - [anon_sym_string] = ACTIONS(1759), - [anon_sym_symbol] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_extends] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [sym_readonly] = ACTIONS(1759), + [458] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(946), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1565), + [sym_array] = STATE(1571), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2515), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1373), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(407), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(890), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [sym_readonly] = ACTIONS(890), }, - [523] = { - [sym__call_signature] = STATE(3520), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1847), + [459] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1740), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [524] = { - [sym__call_signature] = STATE(3726), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_function] = ACTIONS(1897), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1891), - [anon_sym_public] = ACTIONS(1891), - [anon_sym_private] = ACTIONS(1891), - [anon_sym_protected] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_any] = ACTIONS(1891), - [anon_sym_number] = ACTIONS(1891), - [anon_sym_boolean] = ACTIONS(1891), - [anon_sym_string] = ACTIONS(1891), - [anon_sym_symbol] = ACTIONS(1891), - [sym_readonly] = ACTIONS(1891), - [anon_sym_LBRACE_PIPE] = ACTIONS(961), + [460] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [525] = { - [sym_object] = STATE(2679), - [sym_array] = STATE(2688), - [sym_identifier] = ACTIONS(1944), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_type] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_this] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [anon_sym_declare] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_any] = ACTIONS(921), - [anon_sym_number] = ACTIONS(921), - [anon_sym_boolean] = ACTIONS(921), - [anon_sym_string] = ACTIONS(921), - [anon_sym_symbol] = ACTIONS(921), - [sym_readonly] = ACTIONS(921), + [461] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(1779), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [526] = { - [sym__call_signature] = STATE(3520), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1847), + [462] = { + [sym_import] = STATE(1630), + [sym_parenthesized_expression] = STATE(908), + [sym__expression] = STATE(1770), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1478), + [sym_array] = STATE(1477), + [sym_class] = STATE(1630), + [sym_function] = STATE(1630), + [sym_generator_function] = STATE(1630), + [sym_arrow_function] = STATE(1630), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1630), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2521), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1630), + [sym_template_string] = STATE(1630), + [sym_regex] = STATE(1630), + [sym_meta_property] = STATE(1630), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1313), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(377), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(832), + [anon_sym_export] = ACTIONS(834), + [anon_sym_namespace] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(840), + [anon_sym_import] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_void] = ACTIONS(840), + [anon_sym_delete] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(858), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_null] = ACTIONS(860), + [sym_undefined] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(834), + [anon_sym_get] = ACTIONS(834), + [anon_sym_set] = ACTIONS(834), + [anon_sym_declare] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [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), + [sym_readonly] = ACTIONS(834), }, - [527] = { - [sym_catch_clause] = STATE(553), - [sym_finally_clause] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(1952), - [sym_identifier] = ACTIONS(1954), - [anon_sym_export] = ACTIONS(1954), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_namespace] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1954), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym_import] = ACTIONS(1954), - [anon_sym_var] = ACTIONS(1954), - [anon_sym_let] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1952), - [anon_sym_await] = ACTIONS(1954), - [anon_sym_while] = ACTIONS(1954), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_try] = ACTIONS(1954), - [anon_sym_with] = ACTIONS(1954), - [anon_sym_break] = ACTIONS(1954), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_debugger] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1954), - [anon_sym_throw] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_case] = ACTIONS(1954), - [anon_sym_catch] = ACTIONS(1956), - [anon_sym_finally] = ACTIONS(1958), - [anon_sym_yield] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_SLASH] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1954), - [anon_sym_async] = ACTIONS(1954), - [anon_sym_function] = ACTIONS(1954), - [anon_sym_new] = ACTIONS(1954), - [anon_sym_PLUS] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_TILDE] = ACTIONS(1952), - [anon_sym_void] = ACTIONS(1954), - [anon_sym_delete] = ACTIONS(1954), - [anon_sym_PLUS_PLUS] = ACTIONS(1952), - [anon_sym_DASH_DASH] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1952), - [sym_number] = ACTIONS(1952), - [sym_this] = ACTIONS(1954), - [sym_super] = ACTIONS(1954), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_undefined] = ACTIONS(1954), - [anon_sym_AT] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_abstract] = ACTIONS(1954), - [anon_sym_get] = ACTIONS(1954), - [anon_sym_set] = ACTIONS(1954), - [anon_sym_declare] = ACTIONS(1954), - [anon_sym_public] = ACTIONS(1954), - [anon_sym_private] = ACTIONS(1954), - [anon_sym_protected] = ACTIONS(1954), - [anon_sym_module] = ACTIONS(1954), - [anon_sym_any] = ACTIONS(1954), - [anon_sym_number] = ACTIONS(1954), - [anon_sym_boolean] = ACTIONS(1954), - [anon_sym_string] = ACTIONS(1954), - [anon_sym_symbol] = ACTIONS(1954), - [anon_sym_interface] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [sym_readonly] = ACTIONS(1954), + [463] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(1580), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [528] = { - [sym__call_signature] = STATE(3520), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1847), + [464] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2073), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [529] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_namespace] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_var] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_debugger] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_catch] = ACTIONS(1065), - [anon_sym_finally] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_void] = ACTIONS(1065), - [anon_sym_delete] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_get] = ACTIONS(1065), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_declare] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_any] = ACTIONS(1065), - [anon_sym_number] = ACTIONS(1065), - [anon_sym_boolean] = ACTIONS(1065), - [anon_sym_string] = ACTIONS(1065), - [anon_sym_symbol] = ACTIONS(1065), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [sym_readonly] = ACTIONS(1065), - [sym__automatic_semicolon] = ACTIONS(1071), + [465] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2092), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [530] = { - [sym_type_arguments] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_export] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_namespace] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_typeof] = ACTIONS(1964), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_var] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_else] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_switch] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_await] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_do] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [anon_sym_with] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_debugger] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_throw] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_case] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_class] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_function] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_void] = ACTIONS(1964), - [anon_sym_delete] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_DQUOTE] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1962), - [sym_number] = ACTIONS(1962), - [sym_this] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_true] = ACTIONS(1964), - [sym_false] = ACTIONS(1964), - [sym_null] = ACTIONS(1964), - [sym_undefined] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_abstract] = ACTIONS(1964), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1964), - [anon_sym_declare] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_private] = ACTIONS(1964), - [anon_sym_protected] = ACTIONS(1964), - [anon_sym_module] = ACTIONS(1964), - [anon_sym_any] = ACTIONS(1964), - [anon_sym_number] = ACTIONS(1964), - [anon_sym_boolean] = ACTIONS(1964), - [anon_sym_string] = ACTIONS(1964), - [anon_sym_symbol] = ACTIONS(1964), - [anon_sym_interface] = ACTIONS(1964), - [anon_sym_extends] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [sym_readonly] = ACTIONS(1964), + [466] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1824), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [531] = { - [sym_object] = STATE(2679), - [sym_array] = STATE(2688), - [sym_identifier] = ACTIONS(1944), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_type] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_this] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [anon_sym_declare] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_any] = ACTIONS(921), - [anon_sym_number] = ACTIONS(921), - [anon_sym_boolean] = ACTIONS(921), - [anon_sym_string] = ACTIONS(921), - [anon_sym_symbol] = ACTIONS(921), - [sym_readonly] = ACTIONS(921), + [467] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1590), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_else] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_await] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_new] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(901), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_extends] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), + [468] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2123), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [533] = { - [sym__call_signature] = STATE(3677), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1905), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1237), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_get] = ACTIONS(1907), - [anon_sym_set] = ACTIONS(1907), - [anon_sym_declare] = ACTIONS(1907), - [anon_sym_public] = ACTIONS(1907), - [anon_sym_private] = ACTIONS(1907), - [anon_sym_protected] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_any] = ACTIONS(1907), - [anon_sym_number] = ACTIONS(1907), - [anon_sym_boolean] = ACTIONS(1907), - [anon_sym_string] = ACTIONS(1907), - [anon_sym_symbol] = ACTIONS(1907), - [anon_sym_implements] = ACTIONS(928), - [sym_readonly] = ACTIONS(1907), + [469] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(1772), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [534] = { - [sym__call_signature] = STATE(3567), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1914), - [anon_sym_export] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_function] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1077), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(1916), - [anon_sym_set] = ACTIONS(1916), - [anon_sym_declare] = ACTIONS(1916), - [anon_sym_public] = ACTIONS(1916), - [anon_sym_private] = ACTIONS(1916), - [anon_sym_protected] = ACTIONS(1916), - [anon_sym_module] = ACTIONS(1916), - [anon_sym_any] = ACTIONS(1916), - [anon_sym_number] = ACTIONS(1916), - [anon_sym_boolean] = ACTIONS(1916), - [anon_sym_string] = ACTIONS(1916), - [anon_sym_symbol] = ACTIONS(1916), - [sym_readonly] = ACTIONS(1916), - [sym__automatic_semicolon] = ACTIONS(961), + [470] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2124), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [535] = { - [sym__call_signature] = STATE(3520), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(1976), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = 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_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), - [sym_readonly] = ACTIONS(1847), + [471] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2125), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [536] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_await] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_debugger] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_throw] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_async] = ACTIONS(1177), - [anon_sym_function] = ACTIONS(1177), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_delete] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1175), - [sym_number] = ACTIONS(1175), - [sym_this] = ACTIONS(1177), - [sym_super] = ACTIONS(1177), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_get] = ACTIONS(1177), - [anon_sym_set] = ACTIONS(1177), - [anon_sym_declare] = ACTIONS(1177), - [anon_sym_public] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(1177), - [anon_sym_any] = ACTIONS(1177), - [anon_sym_number] = ACTIONS(1177), - [anon_sym_boolean] = ACTIONS(1177), - [anon_sym_string] = ACTIONS(1177), - [anon_sym_symbol] = ACTIONS(1177), - [anon_sym_interface] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [sym_readonly] = ACTIONS(1177), - [anon_sym_PIPE_RBRACE] = ACTIONS(1175), - [sym__automatic_semicolon] = ACTIONS(1978), + [472] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2143), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [537] = { - [ts_builtin_sym_end] = ACTIONS(1980), - [sym_identifier] = ACTIONS(1982), - [anon_sym_export] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_namespace] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1982), - [anon_sym_typeof] = ACTIONS(1982), - [anon_sym_import] = ACTIONS(1982), - [anon_sym_var] = ACTIONS(1982), - [anon_sym_let] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_else] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1980), - [anon_sym_await] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_try] = ACTIONS(1982), - [anon_sym_with] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_debugger] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_throw] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_case] = ACTIONS(1982), - [anon_sym_yield] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1982), - [anon_sym_class] = ACTIONS(1982), - [anon_sym_async] = ACTIONS(1982), - [anon_sym_function] = ACTIONS(1982), - [anon_sym_new] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_TILDE] = ACTIONS(1980), - [anon_sym_void] = ACTIONS(1982), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1980), - [sym_number] = ACTIONS(1980), - [sym_this] = ACTIONS(1982), - [sym_super] = ACTIONS(1982), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_undefined] = ACTIONS(1982), - [anon_sym_AT] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_abstract] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1982), - [anon_sym_set] = ACTIONS(1982), - [anon_sym_declare] = ACTIONS(1982), - [anon_sym_public] = ACTIONS(1982), - [anon_sym_private] = ACTIONS(1982), - [anon_sym_protected] = ACTIONS(1982), - [anon_sym_module] = ACTIONS(1982), - [anon_sym_any] = ACTIONS(1982), - [anon_sym_number] = ACTIONS(1982), - [anon_sym_boolean] = ACTIONS(1982), - [anon_sym_string] = ACTIONS(1982), - [anon_sym_symbol] = ACTIONS(1982), - [anon_sym_interface] = ACTIONS(1982), - [anon_sym_extends] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1982), - [sym_readonly] = ACTIONS(1982), + [473] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1825), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [538] = { - [sym__call_signature] = STATE(3567), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1914), - [anon_sym_export] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_function] = ACTIONS(1990), - [anon_sym_EQ_GT] = ACTIONS(1077), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(1916), - [anon_sym_set] = ACTIONS(1916), - [anon_sym_declare] = ACTIONS(1916), - [anon_sym_public] = ACTIONS(1916), - [anon_sym_private] = ACTIONS(1916), - [anon_sym_protected] = ACTIONS(1916), - [anon_sym_module] = ACTIONS(1916), - [anon_sym_any] = ACTIONS(1916), - [anon_sym_number] = ACTIONS(1916), - [anon_sym_boolean] = ACTIONS(1916), - [anon_sym_string] = ACTIONS(1916), - [anon_sym_symbol] = ACTIONS(1916), - [sym_readonly] = ACTIONS(1916), - [sym__automatic_semicolon] = ACTIONS(961), + [474] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2126), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [539] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [475] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1826), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [540] = { - [ts_builtin_sym_end] = ACTIONS(1992), - [sym_identifier] = ACTIONS(1994), - [anon_sym_export] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_namespace] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1994), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym_import] = ACTIONS(1994), - [anon_sym_var] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_await] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1994), - [anon_sym_with] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_debugger] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_yield] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_SLASH] = ACTIONS(1994), - [anon_sym_class] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1994), - [anon_sym_function] = ACTIONS(1994), - [anon_sym_new] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_void] = ACTIONS(1994), - [anon_sym_delete] = ACTIONS(1994), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1992), - [sym_number] = ACTIONS(1992), - [sym_this] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_undefined] = ACTIONS(1994), - [anon_sym_AT] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_abstract] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(1994), - [anon_sym_set] = ACTIONS(1994), - [anon_sym_declare] = ACTIONS(1994), - [anon_sym_public] = ACTIONS(1994), - [anon_sym_private] = ACTIONS(1994), - [anon_sym_protected] = ACTIONS(1994), - [anon_sym_module] = ACTIONS(1994), - [anon_sym_any] = ACTIONS(1994), - [anon_sym_number] = ACTIONS(1994), - [anon_sym_boolean] = ACTIONS(1994), - [anon_sym_string] = ACTIONS(1994), - [anon_sym_symbol] = ACTIONS(1994), - [anon_sym_interface] = ACTIONS(1994), - [anon_sym_extends] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1994), - [sym_readonly] = ACTIONS(1994), + [476] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2127), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [541] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1998), - [anon_sym_export] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_namespace] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1998), - [anon_sym_typeof] = ACTIONS(1998), - [anon_sym_import] = ACTIONS(1998), - [anon_sym_var] = ACTIONS(1998), - [anon_sym_let] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1996), - [anon_sym_await] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_do] = ACTIONS(1998), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_with] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_debugger] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_throw] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_case] = ACTIONS(1998), - [anon_sym_yield] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_SLASH] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(1998), - [anon_sym_async] = ACTIONS(1998), - [anon_sym_function] = ACTIONS(1998), - [anon_sym_new] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_void] = ACTIONS(1998), - [anon_sym_delete] = ACTIONS(1998), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1996), - [sym_number] = ACTIONS(1996), - [sym_this] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_undefined] = ACTIONS(1998), - [anon_sym_AT] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_abstract] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(1998), - [anon_sym_set] = ACTIONS(1998), - [anon_sym_declare] = ACTIONS(1998), - [anon_sym_public] = ACTIONS(1998), - [anon_sym_private] = ACTIONS(1998), - [anon_sym_protected] = ACTIONS(1998), - [anon_sym_module] = ACTIONS(1998), - [anon_sym_any] = ACTIONS(1998), - [anon_sym_number] = ACTIONS(1998), - [anon_sym_boolean] = ACTIONS(1998), - [anon_sym_string] = ACTIONS(1998), - [anon_sym_symbol] = ACTIONS(1998), - [anon_sym_interface] = ACTIONS(1998), - [anon_sym_extends] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1998), - [sym_readonly] = ACTIONS(1998), + [477] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1617), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [542] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_namespace] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_typeof] = ACTIONS(2002), - [anon_sym_import] = ACTIONS(2002), - [anon_sym_var] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_else] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_await] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_with] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_debugger] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_throw] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_case] = ACTIONS(2002), - [anon_sym_yield] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_SLASH] = ACTIONS(2002), - [anon_sym_class] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_function] = ACTIONS(2002), - [anon_sym_new] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2000), - [anon_sym_void] = ACTIONS(2002), - [anon_sym_delete] = ACTIONS(2002), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2000), - [sym_number] = ACTIONS(2000), - [sym_this] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_undefined] = ACTIONS(2002), - [anon_sym_AT] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_abstract] = ACTIONS(2002), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2002), - [anon_sym_declare] = ACTIONS(2002), - [anon_sym_public] = ACTIONS(2002), - [anon_sym_private] = ACTIONS(2002), - [anon_sym_protected] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_any] = ACTIONS(2002), - [anon_sym_number] = ACTIONS(2002), - [anon_sym_boolean] = ACTIONS(2002), - [anon_sym_string] = ACTIONS(2002), - [anon_sym_symbol] = ACTIONS(2002), - [anon_sym_interface] = ACTIONS(2002), - [anon_sym_extends] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [sym_readonly] = ACTIONS(2002), + [478] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2128), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [543] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [479] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1842), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [544] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [480] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(1590), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [545] = { - [sym__call_signature] = STATE(3567), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1914), - [anon_sym_export] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_function] = ACTIONS(1883), - [anon_sym_EQ_GT] = ACTIONS(1077), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(1916), - [anon_sym_set] = ACTIONS(1916), - [anon_sym_declare] = ACTIONS(1916), - [anon_sym_public] = ACTIONS(1916), - [anon_sym_private] = ACTIONS(1916), - [anon_sym_protected] = ACTIONS(1916), - [anon_sym_module] = ACTIONS(1916), - [anon_sym_any] = ACTIONS(1916), - [anon_sym_number] = ACTIONS(1916), - [anon_sym_boolean] = ACTIONS(1916), - [anon_sym_string] = ACTIONS(1916), - [anon_sym_symbol] = ACTIONS(1916), - [sym_readonly] = ACTIONS(1916), - [sym__automatic_semicolon] = ACTIONS(961), + [481] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2129), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [546] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1109), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_default] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_COMMA] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_typeof] = ACTIONS(1109), - [anon_sym_import] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_switch] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_with] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_debugger] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_throw] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_class] = ACTIONS(1109), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1109), - [anon_sym_delete] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1107), - [sym_number] = ACTIONS(1107), - [sym_this] = ACTIONS(1109), - [sym_super] = ACTIONS(1109), - [sym_true] = ACTIONS(1109), - [sym_false] = ACTIONS(1109), - [sym_null] = ACTIONS(1109), - [sym_undefined] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1107), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_abstract] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_interface] = ACTIONS(1109), - [anon_sym_enum] = ACTIONS(1109), - [sym_readonly] = ACTIONS(1109), - [anon_sym_PIPE_RBRACE] = ACTIONS(1107), - [sym__automatic_semicolon] = ACTIONS(1107), + [482] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2130), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [547] = { - [ts_builtin_sym_end] = ACTIONS(1079), - [sym_identifier] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_typeof] = ACTIONS(1081), - [anon_sym_import] = ACTIONS(1081), - [anon_sym_var] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_const] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_if] = ACTIONS(1081), - [anon_sym_switch] = ACTIONS(1081), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_with] = ACTIONS(1081), - [anon_sym_break] = ACTIONS(1081), - [anon_sym_continue] = ACTIONS(1081), - [anon_sym_debugger] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(1081), - [anon_sym_throw] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1079), - [anon_sym_case] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_SLASH] = ACTIONS(1081), - [anon_sym_class] = ACTIONS(1081), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(1081), - [anon_sym_new] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_void] = ACTIONS(1081), - [anon_sym_delete] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1079), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1079), - [sym_number] = ACTIONS(1079), - [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(1081), - [sym_true] = ACTIONS(1081), - [sym_false] = ACTIONS(1081), - [sym_null] = ACTIONS(1081), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1079), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_abstract] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_interface] = ACTIONS(1081), - [anon_sym_enum] = ACTIONS(1081), - [sym_readonly] = ACTIONS(1081), - [anon_sym_PIPE_RBRACE] = ACTIONS(1079), - [sym__automatic_semicolon] = ACTIONS(1079), - }, - [548] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_await] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_debugger] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_throw] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_catch] = ACTIONS(1177), - [anon_sym_finally] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_async] = ACTIONS(1177), - [anon_sym_function] = ACTIONS(1177), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_delete] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1175), - [sym_number] = ACTIONS(1175), - [sym_this] = ACTIONS(1177), - [sym_super] = ACTIONS(1177), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_get] = ACTIONS(1177), - [anon_sym_set] = ACTIONS(1177), - [anon_sym_declare] = ACTIONS(1177), - [anon_sym_public] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(1177), - [anon_sym_any] = ACTIONS(1177), - [anon_sym_number] = ACTIONS(1177), - [anon_sym_boolean] = ACTIONS(1177), - [anon_sym_string] = ACTIONS(1177), - [anon_sym_symbol] = ACTIONS(1177), - [anon_sym_interface] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [sym_readonly] = ACTIONS(1177), - }, - [549] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1109), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_default] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_COMMA] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_typeof] = ACTIONS(1109), - [anon_sym_import] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_switch] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_with] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_debugger] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_throw] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_finally] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_class] = ACTIONS(1109), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1109), - [anon_sym_delete] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1107), - [sym_number] = ACTIONS(1107), - [sym_this] = ACTIONS(1109), - [sym_super] = ACTIONS(1109), - [sym_true] = ACTIONS(1109), - [sym_false] = ACTIONS(1109), - [sym_null] = ACTIONS(1109), - [sym_undefined] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1107), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_abstract] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_interface] = ACTIONS(1109), - [anon_sym_enum] = ACTIONS(1109), - [sym_readonly] = ACTIONS(1109), - }, - [550] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_identifier] = ACTIONS(1105), - [anon_sym_export] = ACTIONS(1105), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_namespace] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_type] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(1105), - [anon_sym_var] = ACTIONS(1105), - [anon_sym_let] = ACTIONS(1105), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_with] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_debugger] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_throw] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_case] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_async] = ACTIONS(1105), - [anon_sym_function] = ACTIONS(1105), - [anon_sym_new] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1103), - [sym_number] = ACTIONS(1103), - [sym_this] = ACTIONS(1105), - [sym_super] = ACTIONS(1105), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_null] = ACTIONS(1105), - [sym_undefined] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_abstract] = ACTIONS(1105), - [anon_sym_get] = ACTIONS(1105), - [anon_sym_set] = ACTIONS(1105), - [anon_sym_declare] = ACTIONS(1105), - [anon_sym_public] = ACTIONS(1105), - [anon_sym_private] = ACTIONS(1105), - [anon_sym_protected] = ACTIONS(1105), - [anon_sym_module] = ACTIONS(1105), - [anon_sym_any] = ACTIONS(1105), - [anon_sym_number] = ACTIONS(1105), - [anon_sym_boolean] = ACTIONS(1105), - [anon_sym_string] = ACTIONS(1105), - [anon_sym_symbol] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [sym_readonly] = ACTIONS(1105), - [anon_sym_PIPE_RBRACE] = ACTIONS(1103), - [sym__automatic_semicolon] = ACTIONS(1103), - }, - [551] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_namespace] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_var] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_debugger] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_void] = ACTIONS(1065), - [anon_sym_delete] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_get] = ACTIONS(1065), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_declare] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_any] = ACTIONS(1065), - [anon_sym_number] = ACTIONS(1065), - [anon_sym_boolean] = ACTIONS(1065), - [anon_sym_string] = ACTIONS(1065), - [anon_sym_symbol] = ACTIONS(1065), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [sym_readonly] = ACTIONS(1065), - [anon_sym_PIPE_RBRACE] = ACTIONS(1063), - [sym__automatic_semicolon] = ACTIONS(2006), + [483] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(1580), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [552] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_let] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_await] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_debugger] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_throw] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_async] = ACTIONS(1177), - [anon_sym_function] = ACTIONS(1177), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_delete] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1175), - [sym_number] = ACTIONS(1175), - [sym_this] = ACTIONS(1177), - [sym_super] = ACTIONS(1177), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_get] = ACTIONS(1177), - [anon_sym_set] = ACTIONS(1177), - [anon_sym_declare] = ACTIONS(1177), - [anon_sym_public] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(1177), - [anon_sym_any] = ACTIONS(1177), - [anon_sym_number] = ACTIONS(1177), - [anon_sym_boolean] = ACTIONS(1177), - [anon_sym_string] = ACTIONS(1177), - [anon_sym_symbol] = ACTIONS(1177), - [anon_sym_interface] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [sym_readonly] = ACTIONS(1177), - [anon_sym_PIPE_RBRACE] = ACTIONS(1175), - [sym__automatic_semicolon] = ACTIONS(1175), + [484] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(1973), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [553] = { - [sym_finally_clause] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(2010), - [anon_sym_default] = ACTIONS(2010), - [anon_sym_namespace] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2010), - [anon_sym_typeof] = ACTIONS(2010), - [anon_sym_import] = ACTIONS(2010), - [anon_sym_var] = ACTIONS(2010), - [anon_sym_let] = ACTIONS(2010), - [anon_sym_const] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_else] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_switch] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_await] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_do] = ACTIONS(2010), - [anon_sym_try] = ACTIONS(2010), - [anon_sym_with] = ACTIONS(2010), - [anon_sym_break] = ACTIONS(2010), - [anon_sym_continue] = ACTIONS(2010), - [anon_sym_debugger] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_throw] = ACTIONS(2010), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_case] = ACTIONS(2010), - [anon_sym_finally] = ACTIONS(1958), - [anon_sym_yield] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_LT] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2010), - [anon_sym_class] = ACTIONS(2010), - [anon_sym_async] = ACTIONS(2010), - [anon_sym_function] = ACTIONS(2010), - [anon_sym_new] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_void] = ACTIONS(2010), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2008), - [sym_number] = ACTIONS(2008), - [sym_this] = ACTIONS(2010), - [sym_super] = ACTIONS(2010), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_null] = ACTIONS(2010), - [sym_undefined] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_abstract] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(2010), - [anon_sym_set] = ACTIONS(2010), - [anon_sym_declare] = ACTIONS(2010), - [anon_sym_public] = ACTIONS(2010), - [anon_sym_private] = ACTIONS(2010), - [anon_sym_protected] = ACTIONS(2010), - [anon_sym_module] = ACTIONS(2010), - [anon_sym_any] = ACTIONS(2010), - [anon_sym_number] = ACTIONS(2010), - [anon_sym_boolean] = ACTIONS(2010), - [anon_sym_string] = ACTIONS(2010), - [anon_sym_symbol] = ACTIONS(2010), - [anon_sym_interface] = ACTIONS(2010), - [anon_sym_enum] = ACTIONS(2010), - [sym_readonly] = ACTIONS(2010), + [485] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2132), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [554] = { - [sym_identifier] = ACTIONS(1885), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_this] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_get] = ACTIONS(1885), - [anon_sym_set] = ACTIONS(1885), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1885), - [anon_sym_private] = ACTIONS(1885), - [anon_sym_protected] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_any] = ACTIONS(1885), - [anon_sym_number] = ACTIONS(1885), - [anon_sym_boolean] = ACTIONS(1885), - [anon_sym_string] = ACTIONS(1885), - [anon_sym_symbol] = ACTIONS(1885), - [sym_readonly] = ACTIONS(1885), + [486] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2175), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [555] = { - [sym_identifier] = ACTIONS(1885), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_in] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_this] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_get] = ACTIONS(1885), - [anon_sym_set] = ACTIONS(1885), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1885), - [anon_sym_private] = ACTIONS(1885), - [anon_sym_protected] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_any] = ACTIONS(1885), - [anon_sym_number] = ACTIONS(1885), - [anon_sym_boolean] = ACTIONS(1885), - [anon_sym_string] = ACTIONS(1885), - [anon_sym_symbol] = ACTIONS(1885), - [sym_readonly] = ACTIONS(1885), + [487] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(938), + [sym__expression] = STATE(2109), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1591), + [sym_array] = STATE(1592), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4100), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2514), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1361), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(463), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(870), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(878), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_void] = ACTIONS(870), + [anon_sym_delete] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [sym_readonly] = ACTIONS(864), }, - [556] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(2012), - [anon_sym_of] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [488] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2055), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [557] = { - [sym_statement_block] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_default] = ACTIONS(1059), - [anon_sym_namespace] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_type] = ACTIONS(1059), - [anon_sym_typeof] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1059), - [anon_sym_var] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_switch] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_await] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_with] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_debugger] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_throw] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_class] = ACTIONS(1059), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_function] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_void] = ACTIONS(1059), - [anon_sym_delete] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_number] = ACTIONS(1057), - [sym_this] = ACTIONS(1059), - [sym_super] = ACTIONS(1059), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_undefined] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_static] = ACTIONS(1059), - [anon_sym_abstract] = ACTIONS(1059), - [anon_sym_get] = ACTIONS(1059), - [anon_sym_set] = ACTIONS(1059), - [anon_sym_declare] = ACTIONS(1059), - [anon_sym_public] = ACTIONS(1059), - [anon_sym_private] = ACTIONS(1059), - [anon_sym_protected] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_any] = ACTIONS(1059), - [anon_sym_number] = ACTIONS(1059), - [anon_sym_boolean] = ACTIONS(1059), - [anon_sym_string] = ACTIONS(1059), - [anon_sym_symbol] = ACTIONS(1059), - [anon_sym_interface] = ACTIONS(1059), - [anon_sym_enum] = ACTIONS(1059), - [sym_readonly] = ACTIONS(1059), + [489] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(956), + [sym__expression] = STATE(2291), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1581), + [sym_array] = STATE(1577), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2512), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(483), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(980), + [anon_sym_export] = ACTIONS(982), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(988), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(982), + [anon_sym_get] = ACTIONS(982), + [anon_sym_set] = ACTIONS(982), + [anon_sym_declare] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_any] = ACTIONS(982), + [anon_sym_number] = ACTIONS(982), + [anon_sym_boolean] = ACTIONS(982), + [anon_sym_string] = ACTIONS(982), + [anon_sym_symbol] = ACTIONS(982), + [sym_readonly] = ACTIONS(982), }, - [558] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1909), - [anon_sym_of] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [490] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2057), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [559] = { - [sym_statement_block] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_default] = ACTIONS(1059), - [anon_sym_namespace] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_type] = ACTIONS(1059), - [anon_sym_typeof] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1059), - [anon_sym_var] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_switch] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_await] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_with] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_debugger] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_throw] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1059), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_function] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_void] = ACTIONS(1059), - [anon_sym_delete] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_number] = ACTIONS(1057), - [sym_this] = ACTIONS(1059), - [sym_super] = ACTIONS(1059), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_undefined] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_static] = ACTIONS(1059), - [anon_sym_abstract] = ACTIONS(1059), - [anon_sym_get] = ACTIONS(1059), - [anon_sym_set] = ACTIONS(1059), - [anon_sym_declare] = ACTIONS(1059), - [anon_sym_public] = ACTIONS(1059), - [anon_sym_private] = ACTIONS(1059), - [anon_sym_protected] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_any] = ACTIONS(1059), - [anon_sym_number] = ACTIONS(1059), - [anon_sym_boolean] = ACTIONS(1059), - [anon_sym_string] = ACTIONS(1059), - [anon_sym_symbol] = ACTIONS(1059), - [anon_sym_interface] = ACTIONS(1059), - [anon_sym_enum] = ACTIONS(1059), - [sym_readonly] = ACTIONS(1059), + [491] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1846), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [560] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_default] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_typeof] = ACTIONS(1121), - [anon_sym_import] = ACTIONS(1121), - [anon_sym_var] = ACTIONS(1121), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1121), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_try] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_break] = ACTIONS(1121), - [anon_sym_continue] = ACTIONS(1121), - [anon_sym_debugger] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1121), - [anon_sym_throw] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_case] = ACTIONS(1121), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_function] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_void] = ACTIONS(1121), - [anon_sym_delete] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1119), - [sym_this] = ACTIONS(1121), - [sym_super] = ACTIONS(1121), - [sym_true] = ACTIONS(1121), - [sym_false] = ACTIONS(1121), - [sym_null] = ACTIONS(1121), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_abstract] = ACTIONS(1121), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1121), - [anon_sym_private] = ACTIONS(1121), - [anon_sym_protected] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1121), - [anon_sym_number] = ACTIONS(1121), - [anon_sym_boolean] = ACTIONS(1121), - [anon_sym_string] = ACTIONS(1121), - [anon_sym_symbol] = ACTIONS(1121), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1121), - [sym_readonly] = ACTIONS(1121), - [sym__automatic_semicolon] = ACTIONS(1127), + [492] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1847), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), }, - [561] = { - [ts_builtin_sym_end] = ACTIONS(2021), - [sym_identifier] = ACTIONS(2023), - [anon_sym_export] = ACTIONS(2023), - [anon_sym_default] = ACTIONS(2023), - [anon_sym_namespace] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_type] = ACTIONS(2023), - [anon_sym_typeof] = ACTIONS(2023), - [anon_sym_import] = ACTIONS(2023), - [anon_sym_var] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_switch] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_await] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_with] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_debugger] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_throw] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_case] = ACTIONS(2023), - [anon_sym_finally] = ACTIONS(2023), - [anon_sym_yield] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_SLASH] = ACTIONS(2023), - [anon_sym_class] = ACTIONS(2023), - [anon_sym_async] = ACTIONS(2023), - [anon_sym_function] = ACTIONS(2023), - [anon_sym_new] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_void] = ACTIONS(2023), - [anon_sym_delete] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(2021), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2021), - [sym_number] = ACTIONS(2021), - [sym_this] = ACTIONS(2023), - [sym_super] = ACTIONS(2023), - [sym_true] = ACTIONS(2023), - [sym_false] = ACTIONS(2023), - [sym_null] = ACTIONS(2023), - [sym_undefined] = ACTIONS(2023), - [anon_sym_AT] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2023), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2023), - [anon_sym_enum] = ACTIONS(2023), - [sym_readonly] = ACTIONS(2023), + [493] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2086), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [562] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(2025), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [494] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2087), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [563] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(1976), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [495] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2088), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [564] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(2027), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [496] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1638), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [565] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1197), - [anon_sym_export] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1197), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym_import] = ACTIONS(1197), - [anon_sym_var] = ACTIONS(1197), - [anon_sym_let] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_await] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_try] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_debugger] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_throw] = ACTIONS(1197), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_yield] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1195), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_class] = ACTIONS(1197), - [anon_sym_async] = ACTIONS(1197), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_new] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1195), - [sym_number] = ACTIONS(1195), - [sym_this] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_undefined] = ACTIONS(1197), - [anon_sym_AT] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_abstract] = ACTIONS(1197), - [anon_sym_get] = ACTIONS(1197), - [anon_sym_set] = ACTIONS(1197), - [anon_sym_declare] = ACTIONS(1197), - [anon_sym_public] = ACTIONS(1197), - [anon_sym_private] = ACTIONS(1197), - [anon_sym_protected] = ACTIONS(1197), - [anon_sym_module] = ACTIONS(1197), - [anon_sym_any] = ACTIONS(1197), - [anon_sym_number] = ACTIONS(1197), - [anon_sym_boolean] = ACTIONS(1197), - [anon_sym_string] = ACTIONS(1197), - [anon_sym_symbol] = ACTIONS(1197), - [anon_sym_interface] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [sym_readonly] = ACTIONS(1197), - [sym__automatic_semicolon] = ACTIONS(1203), + [497] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2089), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [566] = { - [ts_builtin_sym_end] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2031), - [anon_sym_export] = ACTIONS(2031), - [anon_sym_default] = ACTIONS(2031), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_typeof] = ACTIONS(2031), - [anon_sym_import] = ACTIONS(2031), - [anon_sym_var] = ACTIONS(2031), - [anon_sym_let] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_switch] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_with] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_debugger] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_case] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_SLASH] = ACTIONS(2031), - [anon_sym_class] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_void] = ACTIONS(2031), - [anon_sym_delete] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2029), - [sym_number] = ACTIONS(2029), - [sym_this] = ACTIONS(2031), - [sym_super] = ACTIONS(2031), - [sym_true] = ACTIONS(2031), - [sym_false] = ACTIONS(2031), - [sym_null] = ACTIONS(2031), - [sym_undefined] = ACTIONS(2031), - [anon_sym_AT] = ACTIONS(2029), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_abstract] = ACTIONS(2031), - [anon_sym_get] = ACTIONS(2031), - [anon_sym_set] = ACTIONS(2031), - [anon_sym_declare] = ACTIONS(2031), - [anon_sym_public] = ACTIONS(2031), - [anon_sym_private] = ACTIONS(2031), - [anon_sym_protected] = ACTIONS(2031), - [anon_sym_module] = ACTIONS(2031), - [anon_sym_any] = ACTIONS(2031), - [anon_sym_number] = ACTIONS(2031), - [anon_sym_boolean] = ACTIONS(2031), - [anon_sym_string] = ACTIONS(2031), - [anon_sym_symbol] = ACTIONS(2031), - [anon_sym_interface] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [sym_readonly] = ACTIONS(2031), + [498] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1534), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [567] = { - [sym__call_signature] = STATE(3613), - [sym_formal_parameters] = STATE(2860), - [sym_type_parameters] = STATE(3333), - [sym_identifier] = ACTIONS(1933), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(2033), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1935), - [anon_sym_set] = ACTIONS(1935), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_private] = ACTIONS(1935), - [anon_sym_protected] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_any] = ACTIONS(1935), - [anon_sym_number] = ACTIONS(1935), - [anon_sym_boolean] = ACTIONS(1935), - [anon_sym_string] = ACTIONS(1935), - [anon_sym_symbol] = ACTIONS(1935), - [sym_readonly] = ACTIONS(1935), + [499] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2002), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [568] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_export] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_namespace] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_typeof] = ACTIONS(1167), - [anon_sym_import] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(1167), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_await] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_try] = ACTIONS(1167), - [anon_sym_with] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_debugger] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_SLASH] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_async] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_void] = ACTIONS(1167), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1165), - [sym_number] = ACTIONS(1165), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(1167), - [sym_true] = ACTIONS(1167), - [sym_false] = ACTIONS(1167), - [sym_null] = ACTIONS(1167), - [sym_undefined] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_abstract] = ACTIONS(1167), - [anon_sym_get] = ACTIONS(1167), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_declare] = ACTIONS(1167), - [anon_sym_public] = ACTIONS(1167), - [anon_sym_private] = ACTIONS(1167), - [anon_sym_protected] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_any] = ACTIONS(1167), - [anon_sym_number] = ACTIONS(1167), - [anon_sym_boolean] = ACTIONS(1167), - [anon_sym_string] = ACTIONS(1167), - [anon_sym_symbol] = ACTIONS(1167), - [anon_sym_interface] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [sym_readonly] = ACTIONS(1167), - [sym__automatic_semicolon] = ACTIONS(1173), + [500] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2090), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [569] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1229), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_typeof] = ACTIONS(1229), - [anon_sym_import] = ACTIONS(1229), - [anon_sym_var] = ACTIONS(1229), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_await] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_try] = ACTIONS(1229), - [anon_sym_with] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_debugger] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_throw] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_yield] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1229), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1229), - [anon_sym_new] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_void] = ACTIONS(1229), - [anon_sym_delete] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [sym_this] = ACTIONS(1229), - [sym_super] = ACTIONS(1229), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [sym_null] = ACTIONS(1229), - [sym_undefined] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_abstract] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_interface] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [sym_readonly] = ACTIONS(1229), - [sym__automatic_semicolon] = ACTIONS(1235), + [501] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2093), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [570] = { - [ts_builtin_sym_end] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2037), - [anon_sym_export] = ACTIONS(2037), - [anon_sym_default] = ACTIONS(2037), - [anon_sym_namespace] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2037), - [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_RPAREN] = 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_yield] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_SLASH] = ACTIONS(2037), - [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_TILDE] = ACTIONS(2035), - [anon_sym_void] = ACTIONS(2037), - [anon_sym_delete] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2035), - [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_abstract] = 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_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_interface] = ACTIONS(2037), - [anon_sym_enum] = ACTIONS(2037), - [sym_readonly] = ACTIONS(2037), + [502] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2225), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [571] = { - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(2041), - [anon_sym_import] = ACTIONS(2041), - [anon_sym_var] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2039), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_with] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_debugger] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_case] = ACTIONS(2041), - [anon_sym_finally] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2039), - [anon_sym_void] = ACTIONS(2041), - [anon_sym_delete] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_DQUOTE] = ACTIONS(2039), - [anon_sym_SQUOTE] = ACTIONS(2039), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2039), - [sym_number] = ACTIONS(2039), - [sym_this] = ACTIONS(2041), - [sym_super] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_null] = ACTIONS(2041), - [sym_undefined] = ACTIONS(2041), - [anon_sym_AT] = ACTIONS(2039), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_get] = ACTIONS(2041), - [anon_sym_set] = ACTIONS(2041), - [anon_sym_declare] = ACTIONS(2041), - [anon_sym_public] = ACTIONS(2041), - [anon_sym_private] = ACTIONS(2041), - [anon_sym_protected] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_any] = ACTIONS(2041), - [anon_sym_number] = ACTIONS(2041), - [anon_sym_boolean] = ACTIONS(2041), - [anon_sym_string] = ACTIONS(2041), - [anon_sym_symbol] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [sym_readonly] = ACTIONS(2041), + [503] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2094), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [572] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_namespace] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_type] = ACTIONS(1151), - [anon_sym_typeof] = ACTIONS(1151), - [anon_sym_import] = ACTIONS(1151), - [anon_sym_var] = ACTIONS(1151), - [anon_sym_let] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_await] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_try] = ACTIONS(1151), - [anon_sym_with] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_debugger] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_throw] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_yield] = ACTIONS(1151), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_SLASH] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1151), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(1151), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_void] = ACTIONS(1151), - [anon_sym_delete] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1149), - [sym_this] = ACTIONS(1151), - [sym_super] = ACTIONS(1151), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1151), - [anon_sym_AT] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_abstract] = ACTIONS(1151), - [anon_sym_get] = ACTIONS(1151), - [anon_sym_set] = ACTIONS(1151), - [anon_sym_declare] = ACTIONS(1151), - [anon_sym_public] = ACTIONS(1151), - [anon_sym_private] = ACTIONS(1151), - [anon_sym_protected] = ACTIONS(1151), - [anon_sym_module] = ACTIONS(1151), - [anon_sym_any] = ACTIONS(1151), - [anon_sym_number] = ACTIONS(1151), - [anon_sym_boolean] = ACTIONS(1151), - [anon_sym_string] = ACTIONS(1151), - [anon_sym_symbol] = ACTIONS(1151), - [anon_sym_interface] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [sym_readonly] = ACTIONS(1151), - [sym__automatic_semicolon] = ACTIONS(1157), + [504] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2096), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [573] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_typeof] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(1131), - [anon_sym_let] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_try] = ACTIONS(1131), - [anon_sym_with] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_debugger] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_throw] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_yield] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_class] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(1131), - [anon_sym_new] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1131), - [anon_sym_delete] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1129), - [sym_number] = ACTIONS(1129), - [sym_this] = ACTIONS(1131), - [sym_super] = ACTIONS(1131), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [sym_null] = ACTIONS(1131), - [sym_undefined] = ACTIONS(1131), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_abstract] = ACTIONS(1131), - [anon_sym_get] = ACTIONS(1131), - [anon_sym_set] = ACTIONS(1131), - [anon_sym_declare] = ACTIONS(1131), - [anon_sym_public] = ACTIONS(1131), - [anon_sym_private] = ACTIONS(1131), - [anon_sym_protected] = ACTIONS(1131), - [anon_sym_module] = ACTIONS(1131), - [anon_sym_any] = ACTIONS(1131), - [anon_sym_number] = ACTIONS(1131), - [anon_sym_boolean] = ACTIONS(1131), - [anon_sym_string] = ACTIONS(1131), - [anon_sym_symbol] = ACTIONS(1131), - [anon_sym_interface] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [sym_readonly] = ACTIONS(1131), - [sym__automatic_semicolon] = ACTIONS(1137), + [505] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2244), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_typeof] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_var] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_with] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_debugger] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_throw] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_number] = ACTIONS(1093), - [sym_this] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_true] = ACTIONS(1095), - [sym_false] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_abstract] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [sym_readonly] = ACTIONS(1095), - [sym__automatic_semicolon] = ACTIONS(1101), + [506] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2098), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [575] = { - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_default] = ACTIONS(1085), - [anon_sym_namespace] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1083), - [anon_sym_type] = ACTIONS(1085), - [anon_sym_typeof] = ACTIONS(1085), - [anon_sym_import] = ACTIONS(1085), - [anon_sym_var] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_with] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_debugger] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1085), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_async] = ACTIONS(1085), - [anon_sym_function] = ACTIONS(1085), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_void] = ACTIONS(1085), - [anon_sym_delete] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1083), - [anon_sym_SQUOTE] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1083), - [sym_number] = ACTIONS(1083), - [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(1085), - [sym_true] = ACTIONS(1085), - [sym_false] = ACTIONS(1085), - [sym_null] = ACTIONS(1085), - [sym_undefined] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [anon_sym_declare] = ACTIONS(1085), - [anon_sym_public] = ACTIONS(1085), - [anon_sym_private] = ACTIONS(1085), - [anon_sym_protected] = ACTIONS(1085), - [anon_sym_module] = ACTIONS(1085), - [anon_sym_any] = ACTIONS(1085), - [anon_sym_number] = ACTIONS(1085), - [anon_sym_boolean] = ACTIONS(1085), - [anon_sym_string] = ACTIONS(1085), - [anon_sym_symbol] = ACTIONS(1085), - [anon_sym_interface] = ACTIONS(1085), - [anon_sym_enum] = ACTIONS(1085), - [sym_readonly] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(1091), + [507] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2099), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_else] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_await] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(901), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), + [508] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2115), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [577] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_export] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_debugger] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_async] = ACTIONS(1183), - [anon_sym_function] = ACTIONS(1183), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1183), - [anon_sym_delete] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1181), - [sym_number] = ACTIONS(1181), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_null] = ACTIONS(1183), - [sym_undefined] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_get] = ACTIONS(1183), - [anon_sym_set] = ACTIONS(1183), - [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_any] = ACTIONS(1183), - [anon_sym_number] = ACTIONS(1183), - [anon_sym_boolean] = ACTIONS(1183), - [anon_sym_string] = ACTIONS(1183), - [anon_sym_symbol] = ACTIONS(1183), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [sym_readonly] = ACTIONS(1183), - [sym__automatic_semicolon] = ACTIONS(1189), + [509] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(1329), + [sym__expression] = STATE(2400), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1692), + [sym_array] = STATE(1726), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(1329), + [sym_subscript_expression] = STATE(1329), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1377), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(1744), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(1660), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1656), + [anon_sym_set] = ACTIONS(1656), + [anon_sym_declare] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_protected] = 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), + [sym_readonly] = ACTIONS(1656), }, - [578] = { - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), - [anon_sym_export] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_namespace] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_type] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(1219), - [anon_sym_import] = ACTIONS(1219), - [anon_sym_var] = ACTIONS(1219), - [anon_sym_let] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1217), - [anon_sym_await] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_try] = ACTIONS(1219), - [anon_sym_with] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_debugger] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_throw] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_LT] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_class] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(1219), - [anon_sym_new] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_void] = ACTIONS(1219), - [anon_sym_delete] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1217), - [sym_number] = ACTIONS(1217), - [sym_this] = ACTIONS(1219), - [sym_super] = ACTIONS(1219), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [sym_null] = ACTIONS(1219), - [sym_undefined] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_abstract] = ACTIONS(1219), - [anon_sym_get] = ACTIONS(1219), - [anon_sym_set] = ACTIONS(1219), - [anon_sym_declare] = ACTIONS(1219), - [anon_sym_public] = ACTIONS(1219), - [anon_sym_private] = ACTIONS(1219), - [anon_sym_protected] = ACTIONS(1219), - [anon_sym_module] = ACTIONS(1219), - [anon_sym_any] = ACTIONS(1219), - [anon_sym_number] = ACTIONS(1219), - [anon_sym_boolean] = ACTIONS(1219), - [anon_sym_string] = ACTIONS(1219), - [anon_sym_symbol] = ACTIONS(1219), - [anon_sym_interface] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [sym_readonly] = ACTIONS(1219), - [sym__automatic_semicolon] = ACTIONS(1225), + [510] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(2185), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(810), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [579] = { - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1141), - [anon_sym_export] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_namespace] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_type] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_var] = ACTIONS(1141), - [anon_sym_let] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_with] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_debugger] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_function] = ACTIONS(1141), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_void] = ACTIONS(1141), - [anon_sym_delete] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1139), - [sym_this] = ACTIONS(1141), - [sym_super] = ACTIONS(1141), - [sym_true] = ACTIONS(1141), - [sym_false] = ACTIONS(1141), - [sym_null] = ACTIONS(1141), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1141), - [anon_sym_declare] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_protected] = ACTIONS(1141), - [anon_sym_module] = ACTIONS(1141), - [anon_sym_any] = ACTIONS(1141), - [anon_sym_number] = ACTIONS(1141), - [anon_sym_boolean] = ACTIONS(1141), - [anon_sym_string] = ACTIONS(1141), - [anon_sym_symbol] = ACTIONS(1141), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [sym_readonly] = ACTIONS(1141), - [sym__automatic_semicolon] = ACTIONS(1147), + [511] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2122), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [580] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1243), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_namespace] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_type] = ACTIONS(1243), - [anon_sym_typeof] = ACTIONS(1243), - [anon_sym_import] = ACTIONS(1243), - [anon_sym_var] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1241), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_with] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_debugger] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_throw] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_class] = ACTIONS(1243), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_void] = ACTIONS(1243), - [anon_sym_delete] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1241), - [sym_number] = ACTIONS(1241), - [sym_this] = ACTIONS(1243), - [sym_super] = ACTIONS(1243), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [sym_null] = ACTIONS(1243), - [sym_undefined] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_abstract] = ACTIONS(1243), - [anon_sym_get] = ACTIONS(1243), - [anon_sym_set] = ACTIONS(1243), - [anon_sym_declare] = ACTIONS(1243), - [anon_sym_public] = ACTIONS(1243), - [anon_sym_private] = ACTIONS(1243), - [anon_sym_protected] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_any] = ACTIONS(1243), - [anon_sym_number] = ACTIONS(1243), - [anon_sym_boolean] = ACTIONS(1243), - [anon_sym_string] = ACTIONS(1243), - [anon_sym_symbol] = ACTIONS(1243), - [anon_sym_interface] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [sym_readonly] = ACTIONS(1243), - [sym__automatic_semicolon] = ACTIONS(1249), + [512] = { + [sym_import] = STATE(1653), + [sym_parenthesized_expression] = STATE(967), + [sym__expression] = STATE(2055), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1600), + [sym_array] = STATE(1597), + [sym_class] = STATE(1653), + [sym_function] = STATE(1653), + [sym_generator_function] = STATE(1653), + [sym_arrow_function] = STATE(1653), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1653), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(967), + [sym_subscript_expression] = STATE(967), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2518), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1653), + [sym_template_string] = STATE(1653), + [sym_regex] = STATE(1653), + [sym_meta_property] = STATE(1653), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1354), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(512), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_namespace] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(932), + [anon_sym_typeof] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(958), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(940), + [anon_sym_delete] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(976), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_undefined] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [anon_sym_declare] = ACTIONS(932), + [anon_sym_public] = ACTIONS(932), + [anon_sym_private] = ACTIONS(932), + [anon_sym_protected] = ACTIONS(932), + [anon_sym_module] = ACTIONS(932), + [anon_sym_any] = ACTIONS(932), + [anon_sym_number] = ACTIONS(932), + [anon_sym_boolean] = ACTIONS(932), + [anon_sym_string] = ACTIONS(932), + [anon_sym_symbol] = ACTIONS(932), + [sym_readonly] = ACTIONS(932), }, - [581] = { - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2045), - [anon_sym_export] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_typeof] = ACTIONS(2045), - [anon_sym_import] = ACTIONS(2045), - [anon_sym_var] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_with] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_debugger] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_case] = ACTIONS(2045), - [anon_sym_finally] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_SLASH] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_void] = ACTIONS(2045), - [anon_sym_delete] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2043), - [sym_number] = ACTIONS(2043), - [sym_this] = ACTIONS(2045), - [sym_super] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_null] = ACTIONS(2045), - [sym_undefined] = ACTIONS(2045), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [sym_readonly] = ACTIONS(2045), + [513] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2195), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [582] = { - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2049), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_typeof] = ACTIONS(2049), - [anon_sym_import] = ACTIONS(2049), - [anon_sym_var] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_with] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_debugger] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_finally] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_void] = ACTIONS(2049), - [anon_sym_delete] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2047), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2047), - [sym_number] = ACTIONS(2047), - [sym_this] = ACTIONS(2049), - [sym_super] = ACTIONS(2049), - [sym_true] = ACTIONS(2049), - [sym_false] = ACTIONS(2049), - [sym_null] = ACTIONS(2049), - [sym_undefined] = ACTIONS(2049), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [sym_readonly] = ACTIONS(2049), + [514] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(1580), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [583] = { - [sym_else_clause] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2053), - [anon_sym_export] = ACTIONS(2053), - [anon_sym_default] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2053), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_typeof] = ACTIONS(2053), - [anon_sym_import] = ACTIONS(2053), - [anon_sym_var] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_switch] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_do] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [anon_sym_with] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_debugger] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_throw] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_case] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_SLASH] = ACTIONS(2053), - [anon_sym_class] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2053), - [anon_sym_new] = ACTIONS(2053), - [anon_sym_PLUS] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_void] = ACTIONS(2053), - [anon_sym_delete] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2051), - [anon_sym_SQUOTE] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2051), - [sym_number] = ACTIONS(2051), - [sym_this] = ACTIONS(2053), - [sym_super] = ACTIONS(2053), - [sym_true] = ACTIONS(2053), - [sym_false] = ACTIONS(2053), - [sym_null] = ACTIONS(2053), - [sym_undefined] = ACTIONS(2053), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [sym_readonly] = ACTIONS(2053), + [515] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2269), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), }, - [584] = { - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_default] = ACTIONS(2059), - [anon_sym_namespace] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(2059), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_switch] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_with] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_debugger] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_throw] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2059), - [anon_sym_yield] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2059), - [anon_sym_class] = ACTIONS(2059), - [anon_sym_async] = ACTIONS(2059), - [anon_sym_function] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2059), - [anon_sym_delete] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_this] = ACTIONS(2059), - [sym_super] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_null] = ACTIONS(2059), - [sym_undefined] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2059), - [anon_sym_abstract] = ACTIONS(2059), - [anon_sym_get] = ACTIONS(2059), - [anon_sym_set] = ACTIONS(2059), - [anon_sym_declare] = ACTIONS(2059), - [anon_sym_public] = ACTIONS(2059), - [anon_sym_private] = ACTIONS(2059), - [anon_sym_protected] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_any] = ACTIONS(2059), - [anon_sym_number] = ACTIONS(2059), - [anon_sym_boolean] = ACTIONS(2059), - [anon_sym_string] = ACTIONS(2059), - [anon_sym_symbol] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [sym_readonly] = ACTIONS(2059), + [516] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(2136), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [585] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2063), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_default] = ACTIONS(2063), - [anon_sym_namespace] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_type] = ACTIONS(2063), - [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_yield] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2061), - [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(2061), - [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_abstract] = 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_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_interface] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2063), - [sym_readonly] = ACTIONS(2063), + [517] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(970), + [sym__expression] = STATE(2050), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1548), + [sym_array] = STATE(1539), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4201), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(970), + [sym_subscript_expression] = STATE(970), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2520), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(514), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(906), + [anon_sym_typeof] = ACTIONS(912), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_void] = ACTIONS(912), + [anon_sym_delete] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = 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_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_readonly] = ACTIONS(906), }, - [586] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_var] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_await] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_debugger] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_throw] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_delete] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1161), - [sym_this] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), - [anon_sym_declare] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(1163), - [anon_sym_private] = ACTIONS(1163), - [anon_sym_protected] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [sym_readonly] = ACTIONS(1163), + [518] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(1953), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), }, - [587] = { - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_type] = ACTIONS(2067), - [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_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [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(2065), - [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_abstract] = 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_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_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym_readonly] = ACTIONS(2067), + [519] = { + [ts_builtin_sym_end] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1748), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_namespace] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym_import] = ACTIONS(1748), + [anon_sym_var] = ACTIONS(1748), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_switch] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_await] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_do] = ACTIONS(1748), + [anon_sym_try] = ACTIONS(1748), + [anon_sym_with] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_throw] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_case] = ACTIONS(1748), + [anon_sym_yield] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_GT] = ACTIONS(1746), + [anon_sym_SLASH] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(1748), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1748), + [anon_sym_EQ_GT] = ACTIONS(1746), + [anon_sym_new] = ACTIONS(1748), + [anon_sym_QMARK] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_void] = ACTIONS(1748), + [anon_sym_delete] = ACTIONS(1748), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_number] = ACTIONS(1746), + [sym_this] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_true] = ACTIONS(1748), + [sym_false] = ACTIONS(1748), + [sym_null] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_declare] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_protected] = ACTIONS(1748), + [anon_sym_module] = ACTIONS(1748), + [anon_sym_any] = ACTIONS(1748), + [anon_sym_number] = ACTIONS(1748), + [anon_sym_boolean] = ACTIONS(1748), + [anon_sym_string] = ACTIONS(1748), + [anon_sym_symbol] = ACTIONS(1748), + [anon_sym_implements] = ACTIONS(1748), + [anon_sym_interface] = ACTIONS(1748), + [anon_sym_extends] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [sym_readonly] = ACTIONS(1748), }, - [588] = { - [ts_builtin_sym_end] = ACTIONS(2069), - [sym_identifier] = ACTIONS(2071), - [anon_sym_export] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2071), - [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_yield] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2069), - [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(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), + [520] = { + [sym_import] = STATE(1432), + [sym_parenthesized_expression] = STATE(884), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1526), + [sym_array] = STATE(1510), + [sym_class] = STATE(1432), + [sym_function] = STATE(1432), + [sym_generator_function] = STATE(1432), + [sym_arrow_function] = STATE(1432), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1432), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2519), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1432), + [sym_template_string] = STATE(1432), + [sym_regex] = STATE(1432), + [sym_meta_property] = STATE(1432), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1368), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(437), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(425), + [anon_sym_typeof] = ACTIONS(473), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(455), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_void] = ACTIONS(473), + [anon_sym_delete] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), [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_abstract] = 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_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_interface] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [sym_readonly] = ACTIONS(2071), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(1738), + [sym_this] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(425), + [anon_sym_get] = ACTIONS(425), + [anon_sym_set] = ACTIONS(425), + [anon_sym_declare] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_module] = ACTIONS(425), + [anon_sym_any] = ACTIONS(425), + [anon_sym_number] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_string] = ACTIONS(425), + [anon_sym_symbol] = ACTIONS(425), + [sym_readonly] = ACTIONS(425), }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2075), - [anon_sym_export] = ACTIONS(2075), - [anon_sym_default] = ACTIONS(2075), - [anon_sym_namespace] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2075), - [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_yield] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [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(2073), - [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_abstract] = 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_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_interface] = ACTIONS(2075), - [anon_sym_enum] = ACTIONS(2075), - [sym_readonly] = ACTIONS(2075), + [521] = { + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym_import] = ACTIONS(1752), + [anon_sym_var] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_await] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_with] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_debugger] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_COLON] = ACTIONS(1750), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_class] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_function] = ACTIONS(1752), + [anon_sym_EQ_GT] = ACTIONS(1750), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_undefined] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_abstract] = 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_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_implements] = ACTIONS(1752), + [anon_sym_interface] = ACTIONS(1752), + [anon_sym_extends] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [sym_readonly] = ACTIONS(1752), + }, + [522] = { + [sym_import] = STATE(1434), + [sym_parenthesized_expression] = STATE(904), + [sym__expression] = STATE(1619), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1499), + [sym_array] = STATE(1501), + [sym_class] = STATE(1434), + [sym_function] = STATE(1434), + [sym_generator_function] = STATE(1434), + [sym_arrow_function] = STATE(1434), + [sym__call_signature] = STATE(4129), + [sym_call_expression] = STATE(1434), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_assignment_expression] = STATE(1559), + [sym__augmented_assignment_lhs] = STATE(2516), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1434), + [sym_template_string] = STATE(1434), + [sym_regex] = STATE(1434), + [sym_meta_property] = STATE(1434), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1306), + [sym_type_assertion] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_arguments] = STATE(453), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3503), + [sym_identifier] = ACTIONS(758), + [anon_sym_export] = ACTIONS(760), + [anon_sym_namespace] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_type] = ACTIONS(760), + [anon_sym_typeof] = ACTIONS(772), + [anon_sym_import] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_await] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_class] = ACTIONS(453), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(457), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_number] = ACTIONS(796), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(760), + [anon_sym_get] = ACTIONS(760), + [anon_sym_set] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_any] = ACTIONS(760), + [anon_sym_number] = ACTIONS(760), + [anon_sym_boolean] = ACTIONS(760), + [anon_sym_string] = ACTIONS(760), + [anon_sym_symbol] = ACTIONS(760), + [sym_readonly] = ACTIONS(760), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_export] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_namespace] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym_import] = ACTIONS(1756), + [anon_sym_var] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_await] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1756), + [anon_sym_with] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_debugger] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_throw] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1754), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(1756), + [anon_sym_EQ_GT] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_QMARK] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_void] = ACTIONS(1756), + [anon_sym_delete] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_number] = ACTIONS(1754), + [sym_this] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_abstract] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1756), + [anon_sym_declare] = ACTIONS(1756), + [anon_sym_public] = ACTIONS(1756), + [anon_sym_private] = ACTIONS(1756), + [anon_sym_protected] = ACTIONS(1756), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_any] = ACTIONS(1756), + [anon_sym_number] = ACTIONS(1756), + [anon_sym_boolean] = ACTIONS(1756), + [anon_sym_string] = ACTIONS(1756), + [anon_sym_symbol] = ACTIONS(1756), + [anon_sym_implements] = ACTIONS(1756), + [anon_sym_interface] = ACTIONS(1756), + [anon_sym_extends] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [sym_readonly] = ACTIONS(1756), + }, + [524] = { + [sym_import] = STATE(1608), + [sym_parenthesized_expression] = STATE(891), + [sym__expression] = STATE(1864), + [sym_yield_expression] = STATE(1823), + [sym_object] = STATE(1491), + [sym_array] = STATE(1490), + [sym_class] = STATE(1608), + [sym_function] = STATE(1608), + [sym_generator_function] = STATE(1608), + [sym_arrow_function] = STATE(1608), + [sym__call_signature] = STATE(4080), + [sym_call_expression] = STATE(1608), + [sym_new_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_member_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_assignment_expression] = STATE(1823), + [sym__augmented_assignment_lhs] = STATE(2513), + [sym_augmented_assignment_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_binary_expression] = STATE(1823), + [sym_unary_expression] = STATE(1823), + [sym_update_expression] = STATE(1823), + [sym_string] = STATE(1608), + [sym_template_string] = STATE(1608), + [sym_regex] = STATE(1608), + [sym_meta_property] = STATE(1608), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1372), + [sym_type_assertion] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_internal_module] = STATE(1823), + [sym_type_arguments] = STATE(429), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_identifier] = ACTIONS(812), + [anon_sym_export] = ACTIONS(814), + [anon_sym_namespace] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_type] = ACTIONS(814), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(822), + [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_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(826), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(830), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = 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(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [sym_readonly] = ACTIONS(814), + }, + [525] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2278), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [526] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2277), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [527] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2276), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [528] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2275), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [529] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2002), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [530] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2274), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [531] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2273), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [532] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2272), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [533] = { + [sym_import] = STATE(1649), + [sym_parenthesized_expression] = STATE(971), + [sym__expression] = STATE(2271), + [sym_yield_expression] = STATE(2110), + [sym_object] = STATE(1640), + [sym_array] = STATE(1637), + [sym_class] = STATE(1649), + [sym_function] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_member_expression] = STATE(971), + [sym_subscript_expression] = STATE(971), + [sym_assignment_expression] = STATE(2110), + [sym__augmented_assignment_lhs] = STATE(2517), + [sym_augmented_assignment_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_binary_expression] = STATE(2110), + [sym_unary_expression] = STATE(2110), + [sym_update_expression] = STATE(2110), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(3283), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_internal_module] = STATE(2110), + [sym_type_arguments] = STATE(488), + [sym_type_parameters] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_typeof] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_class] = ACTIONS(956), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_function] = ACTIONS(960), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_number] = ACTIONS(1030), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [sym_readonly] = ACTIONS(1006), + }, + [534] = { + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_namespace] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym_import] = ACTIONS(1760), + [anon_sym_var] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1758), + [anon_sym_await] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_with] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_debugger] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_COLON] = ACTIONS(1758), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_class] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_function] = ACTIONS(1760), + [anon_sym_EQ_GT] = ACTIONS(1758), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(1760), + [anon_sym_delete] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1758), + [sym_this] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_undefined] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_abstract] = 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_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), + [anon_sym_interface] = ACTIONS(1760), + [anon_sym_extends] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [sym_readonly] = ACTIONS(1760), + }, + [535] = { + [ts_builtin_sym_end] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1764), + [anon_sym_export] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_namespace] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_type] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1764), + [anon_sym_import] = ACTIONS(1764), + [anon_sym_var] = ACTIONS(1764), + [anon_sym_let] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_switch] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_do] = ACTIONS(1764), + [anon_sym_try] = ACTIONS(1764), + [anon_sym_with] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_debugger] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_throw] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_case] = ACTIONS(1764), + [anon_sym_yield] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_class] = ACTIONS(1764), + [anon_sym_async] = ACTIONS(1764), + [anon_sym_function] = ACTIONS(1764), + [anon_sym_EQ_GT] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1764), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_TILDE] = ACTIONS(1762), + [anon_sym_void] = ACTIONS(1764), + [anon_sym_delete] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1762), + [sym_number] = ACTIONS(1762), + [sym_this] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_true] = ACTIONS(1764), + [sym_false] = ACTIONS(1764), + [sym_null] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_abstract] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1764), + [anon_sym_set] = ACTIONS(1764), + [anon_sym_declare] = ACTIONS(1764), + [anon_sym_public] = ACTIONS(1764), + [anon_sym_private] = ACTIONS(1764), + [anon_sym_protected] = ACTIONS(1764), + [anon_sym_module] = ACTIONS(1764), + [anon_sym_any] = ACTIONS(1764), + [anon_sym_number] = ACTIONS(1764), + [anon_sym_boolean] = ACTIONS(1764), + [anon_sym_string] = ACTIONS(1764), + [anon_sym_symbol] = ACTIONS(1764), + [anon_sym_interface] = ACTIONS(1764), + [anon_sym_extends] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [sym_readonly] = ACTIONS(1764), + }, + [536] = { + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1768), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_namespace] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_typeof] = ACTIONS(1768), + [anon_sym_import] = ACTIONS(1768), + [anon_sym_var] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_switch] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_await] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_with] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_debugger] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_COLON] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1768), + [anon_sym_yield] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_class] = ACTIONS(1768), + [anon_sym_async] = ACTIONS(1768), + [anon_sym_function] = ACTIONS(1768), + [anon_sym_EQ_GT] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1768), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_void] = ACTIONS(1768), + [anon_sym_delete] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1766), + [sym_number] = ACTIONS(1766), + [sym_this] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_true] = ACTIONS(1768), + [sym_false] = ACTIONS(1768), + [sym_null] = ACTIONS(1768), + [sym_undefined] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_abstract] = 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_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), + [anon_sym_interface] = ACTIONS(1768), + [anon_sym_extends] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [sym_readonly] = ACTIONS(1768), + }, + [537] = { + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_namespace] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym_import] = ACTIONS(1772), + [anon_sym_var] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_await] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_with] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_debugger] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_throw] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1770), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(1772), + [anon_sym_EQ_GT] = ACTIONS(1770), + [anon_sym_new] = ACTIONS(1772), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_void] = ACTIONS(1772), + [anon_sym_delete] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1770), + [sym_number] = ACTIONS(1770), + [sym_this] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_abstract] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1772), + [anon_sym_set] = ACTIONS(1772), + [anon_sym_declare] = ACTIONS(1772), + [anon_sym_public] = ACTIONS(1772), + [anon_sym_private] = ACTIONS(1772), + [anon_sym_protected] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_any] = ACTIONS(1772), + [anon_sym_number] = ACTIONS(1772), + [anon_sym_boolean] = ACTIONS(1772), + [anon_sym_string] = ACTIONS(1772), + [anon_sym_symbol] = ACTIONS(1772), + [anon_sym_interface] = ACTIONS(1772), + [anon_sym_extends] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [sym_readonly] = ACTIONS(1772), + }, + [538] = { + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_export] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_namespace] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(1776), + [anon_sym_import] = ACTIONS(1776), + [anon_sym_var] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_switch] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_await] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_with] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_debugger] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_throw] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1774), + [anon_sym_case] = ACTIONS(1776), + [anon_sym_yield] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_class] = ACTIONS(1776), + [anon_sym_async] = ACTIONS(1776), + [anon_sym_function] = ACTIONS(1776), + [anon_sym_EQ_GT] = ACTIONS(1774), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_void] = ACTIONS(1776), + [anon_sym_delete] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1774), + [sym_number] = ACTIONS(1774), + [sym_this] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_true] = ACTIONS(1776), + [sym_false] = ACTIONS(1776), + [sym_null] = ACTIONS(1776), + [sym_undefined] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_abstract] = 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_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_interface] = ACTIONS(1776), + [anon_sym_extends] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [sym_readonly] = ACTIONS(1776), + }, + [539] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_namespace] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_RPAREN] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_with] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_debugger] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_number] = ACTIONS(1206), + [sym_this] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1208), + [anon_sym_set] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_protected] = ACTIONS(1208), + [anon_sym_module] = ACTIONS(1208), + [anon_sym_any] = ACTIONS(1208), + [anon_sym_number] = ACTIONS(1208), + [anon_sym_boolean] = ACTIONS(1208), + [anon_sym_string] = ACTIONS(1208), + [anon_sym_symbol] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_extends] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [sym_readonly] = ACTIONS(1208), + }, + [540] = { + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_export] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_namespace] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1780), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_var] = ACTIONS(1780), + [anon_sym_let] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_await] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_with] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_debugger] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_yield] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_class] = ACTIONS(1780), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_EQ_GT] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_void] = ACTIONS(1780), + [anon_sym_delete] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1778), + [sym_number] = ACTIONS(1778), + [sym_this] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_null] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_abstract] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_declare] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_module] = ACTIONS(1780), + [anon_sym_any] = ACTIONS(1780), + [anon_sym_number] = ACTIONS(1780), + [anon_sym_boolean] = ACTIONS(1780), + [anon_sym_string] = ACTIONS(1780), + [anon_sym_symbol] = ACTIONS(1780), + [anon_sym_interface] = ACTIONS(1780), + [anon_sym_extends] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [sym_readonly] = ACTIONS(1780), + }, + [541] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_export] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_var] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_await] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_with] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_debugger] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_class] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_function] = ACTIONS(1784), + [anon_sym_EQ_GT] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_void] = ACTIONS(1784), + [anon_sym_delete] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1782), + [sym_number] = ACTIONS(1782), + [sym_this] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_undefined] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_abstract] = 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_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_interface] = ACTIONS(1784), + [anon_sym_extends] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [sym_readonly] = ACTIONS(1784), + }, + [542] = { + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(1788), + [anon_sym_namespace] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1788), + [anon_sym_var] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_await] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_with] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_debugger] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_throw] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_GT] = ACTIONS(1786), + [anon_sym_SLASH] = ACTIONS(1788), + [anon_sym_class] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_function] = ACTIONS(1788), + [anon_sym_EQ_GT] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_void] = ACTIONS(1788), + [anon_sym_delete] = ACTIONS(1788), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1786), + [sym_number] = ACTIONS(1786), + [sym_this] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_abstract] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1788), + [anon_sym_set] = ACTIONS(1788), + [anon_sym_declare] = ACTIONS(1788), + [anon_sym_public] = ACTIONS(1788), + [anon_sym_private] = ACTIONS(1788), + [anon_sym_protected] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_any] = ACTIONS(1788), + [anon_sym_number] = ACTIONS(1788), + [anon_sym_boolean] = ACTIONS(1788), + [anon_sym_string] = ACTIONS(1788), + [anon_sym_symbol] = ACTIONS(1788), + [anon_sym_interface] = ACTIONS(1788), + [anon_sym_extends] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [sym_readonly] = ACTIONS(1788), + }, + [543] = { + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(1792), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_await] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_with] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_debugger] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_class] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_function] = ACTIONS(1792), + [anon_sym_EQ_GT] = ACTIONS(1790), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_QMARK] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_delete] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_number] = ACTIONS(1790), + [sym_this] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_undefined] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_abstract] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1792), + [anon_sym_set] = ACTIONS(1792), + [anon_sym_declare] = ACTIONS(1792), + [anon_sym_public] = ACTIONS(1792), + [anon_sym_private] = ACTIONS(1792), + [anon_sym_protected] = ACTIONS(1792), + [anon_sym_module] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_number] = ACTIONS(1792), + [anon_sym_boolean] = ACTIONS(1792), + [anon_sym_string] = ACTIONS(1792), + [anon_sym_symbol] = ACTIONS(1792), + [anon_sym_interface] = ACTIONS(1792), + [anon_sym_extends] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1792), + [sym_readonly] = ACTIONS(1792), + }, + [544] = { + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1796), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_namespace] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_COMMA] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1796), + [anon_sym_typeof] = ACTIONS(1796), + [anon_sym_import] = ACTIONS(1796), + [anon_sym_var] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_switch] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_await] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_with] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_debugger] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_COLON] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_yield] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_GT] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_class] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(1796), + [anon_sym_function] = ACTIONS(1796), + [anon_sym_EQ_GT] = ACTIONS(1794), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_QMARK] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_void] = ACTIONS(1796), + [anon_sym_delete] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1794), + [sym_number] = ACTIONS(1794), + [sym_this] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_true] = ACTIONS(1796), + [sym_false] = ACTIONS(1796), + [sym_null] = ACTIONS(1796), + [sym_undefined] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_declare] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_any] = ACTIONS(1796), + [anon_sym_number] = ACTIONS(1796), + [anon_sym_boolean] = ACTIONS(1796), + [anon_sym_string] = ACTIONS(1796), + [anon_sym_symbol] = ACTIONS(1796), + [anon_sym_interface] = ACTIONS(1796), + [anon_sym_extends] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [sym_readonly] = ACTIONS(1796), + }, + [545] = { + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_EQ] = ACTIONS(1800), + [anon_sym_namespace] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym_import] = ACTIONS(1800), + [anon_sym_var] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_await] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1800), + [anon_sym_with] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_debugger] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_throw] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(1798), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1800), + [anon_sym_class] = ACTIONS(1800), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_function] = ACTIONS(1800), + [anon_sym_EQ_GT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_QMARK] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_void] = ACTIONS(1800), + [anon_sym_delete] = ACTIONS(1800), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1798), + [sym_number] = ACTIONS(1798), + [sym_this] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_undefined] = ACTIONS(1800), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_abstract] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1800), + [anon_sym_declare] = ACTIONS(1800), + [anon_sym_public] = ACTIONS(1800), + [anon_sym_private] = ACTIONS(1800), + [anon_sym_protected] = ACTIONS(1800), + [anon_sym_module] = ACTIONS(1800), + [anon_sym_any] = ACTIONS(1800), + [anon_sym_number] = ACTIONS(1800), + [anon_sym_boolean] = ACTIONS(1800), + [anon_sym_string] = ACTIONS(1800), + [anon_sym_symbol] = ACTIONS(1800), + [anon_sym_interface] = ACTIONS(1800), + [anon_sym_extends] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [sym_readonly] = ACTIONS(1800), + }, + [546] = { + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(1804), + [anon_sym_namespace] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1804), + [anon_sym_typeof] = ACTIONS(1804), + [anon_sym_import] = ACTIONS(1804), + [anon_sym_var] = ACTIONS(1804), + [anon_sym_let] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_await] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_try] = ACTIONS(1804), + [anon_sym_with] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_debugger] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_throw] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_COLON] = ACTIONS(1802), + [anon_sym_case] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_RBRACK] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_function] = ACTIONS(1804), + [anon_sym_EQ_GT] = ACTIONS(1802), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_void] = ACTIONS(1804), + [anon_sym_delete] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1802), + [sym_number] = ACTIONS(1802), + [sym_this] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_true] = ACTIONS(1804), + [sym_false] = ACTIONS(1804), + [sym_null] = ACTIONS(1804), + [sym_undefined] = ACTIONS(1804), + [anon_sym_AT] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_abstract] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1804), + [anon_sym_set] = ACTIONS(1804), + [anon_sym_declare] = ACTIONS(1804), + [anon_sym_public] = ACTIONS(1804), + [anon_sym_private] = ACTIONS(1804), + [anon_sym_protected] = ACTIONS(1804), + [anon_sym_module] = ACTIONS(1804), + [anon_sym_any] = ACTIONS(1804), + [anon_sym_number] = ACTIONS(1804), + [anon_sym_boolean] = ACTIONS(1804), + [anon_sym_string] = ACTIONS(1804), + [anon_sym_symbol] = ACTIONS(1804), + [anon_sym_interface] = ACTIONS(1804), + [anon_sym_extends] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [sym_readonly] = ACTIONS(1804), + }, + [547] = { + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_export] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_typeof] = ACTIONS(1808), + [anon_sym_import] = ACTIONS(1808), + [anon_sym_var] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_with] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_debugger] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(1806), + [anon_sym_case] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_class] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1806), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_QMARK] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_void] = ACTIONS(1808), + [anon_sym_delete] = ACTIONS(1808), + [anon_sym_PLUS_PLUS] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1806), + [sym_number] = ACTIONS(1806), + [sym_this] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_null] = ACTIONS(1808), + [sym_undefined] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_declare] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_module] = ACTIONS(1808), + [anon_sym_any] = ACTIONS(1808), + [anon_sym_number] = ACTIONS(1808), + [anon_sym_boolean] = ACTIONS(1808), + [anon_sym_string] = ACTIONS(1808), + [anon_sym_symbol] = ACTIONS(1808), + [anon_sym_interface] = ACTIONS(1808), + [anon_sym_extends] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [sym_readonly] = ACTIONS(1808), + }, + [548] = { + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_namespace] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_typeof] = ACTIONS(1814), + [anon_sym_import] = ACTIONS(1814), + [anon_sym_var] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_switch] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_RPAREN] = ACTIONS(1812), + [anon_sym_await] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_do] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_with] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_debugger] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1814), + [anon_sym_yield] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_RBRACK] = ACTIONS(1812), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1812), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_function] = ACTIONS(1814), + [anon_sym_EQ_GT] = ACTIONS(1812), + [anon_sym_new] = ACTIONS(1814), + [anon_sym_QMARK] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1812), + [anon_sym_void] = ACTIONS(1814), + [anon_sym_delete] = ACTIONS(1814), + [anon_sym_PLUS_PLUS] = ACTIONS(1812), + [anon_sym_DASH_DASH] = ACTIONS(1812), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_SQUOTE] = ACTIONS(1812), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1812), + [sym_number] = ACTIONS(1812), + [sym_this] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_true] = ACTIONS(1814), + [sym_false] = ACTIONS(1814), + [sym_null] = ACTIONS(1814), + [sym_undefined] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_abstract] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_module] = ACTIONS(1814), + [anon_sym_any] = ACTIONS(1814), + [anon_sym_number] = ACTIONS(1814), + [anon_sym_boolean] = ACTIONS(1814), + [anon_sym_string] = ACTIONS(1814), + [anon_sym_symbol] = ACTIONS(1814), + [anon_sym_interface] = ACTIONS(1814), + [anon_sym_extends] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [sym_readonly] = ACTIONS(1814), + }, + [549] = { + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_namespace] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_typeof] = ACTIONS(1818), + [anon_sym_import] = ACTIONS(1818), + [anon_sym_var] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_switch] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_await] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_with] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_debugger] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_throw] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_COLON] = ACTIONS(1816), + [anon_sym_case] = ACTIONS(1818), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1816), + [anon_sym_SLASH] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_function] = ACTIONS(1818), + [anon_sym_EQ_GT] = ACTIONS(1816), + [anon_sym_new] = ACTIONS(1818), + [anon_sym_QMARK] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1816), + [anon_sym_void] = ACTIONS(1818), + [anon_sym_delete] = ACTIONS(1818), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1816), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1816), + [sym_number] = ACTIONS(1816), + [sym_this] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_true] = ACTIONS(1818), + [sym_false] = ACTIONS(1818), + [sym_null] = ACTIONS(1818), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_abstract] = ACTIONS(1818), + [anon_sym_get] = ACTIONS(1818), + [anon_sym_set] = ACTIONS(1818), + [anon_sym_declare] = ACTIONS(1818), + [anon_sym_public] = ACTIONS(1818), + [anon_sym_private] = ACTIONS(1818), + [anon_sym_protected] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_any] = ACTIONS(1818), + [anon_sym_number] = ACTIONS(1818), + [anon_sym_boolean] = ACTIONS(1818), + [anon_sym_string] = ACTIONS(1818), + [anon_sym_symbol] = ACTIONS(1818), + [anon_sym_interface] = ACTIONS(1818), + [anon_sym_extends] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [sym_readonly] = ACTIONS(1818), + }, + [550] = { + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_COMMA] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_typeof] = ACTIONS(1822), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_switch] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_await] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_debugger] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_COLON] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_class] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_function] = ACTIONS(1822), + [anon_sym_EQ_GT] = ACTIONS(1820), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_void] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_number] = ACTIONS(1820), + [sym_this] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_true] = ACTIONS(1822), + [sym_false] = ACTIONS(1822), + [sym_null] = ACTIONS(1822), + [sym_undefined] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_declare] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_any] = ACTIONS(1822), + [anon_sym_number] = ACTIONS(1822), + [anon_sym_boolean] = ACTIONS(1822), + [anon_sym_string] = ACTIONS(1822), + [anon_sym_symbol] = ACTIONS(1822), + [anon_sym_interface] = ACTIONS(1822), + [anon_sym_extends] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [sym_readonly] = ACTIONS(1822), + }, + [551] = { + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_export] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_COMMA] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_typeof] = ACTIONS(1142), + [anon_sym_import] = ACTIONS(1142), + [anon_sym_var] = ACTIONS(1142), + [anon_sym_let] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_await] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_with] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_debugger] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_throw] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_RBRACK] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_class] = ACTIONS(1142), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1142), + [anon_sym_EQ_GT] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_QMARK] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_void] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1140), + [sym_number] = ACTIONS(1140), + [sym_this] = ACTIONS(1142), + [sym_super] = ACTIONS(1142), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_abstract] = ACTIONS(1142), + [anon_sym_get] = ACTIONS(1142), + [anon_sym_set] = ACTIONS(1142), + [anon_sym_declare] = ACTIONS(1142), + [anon_sym_public] = ACTIONS(1142), + [anon_sym_private] = ACTIONS(1142), + [anon_sym_protected] = ACTIONS(1142), + [anon_sym_module] = ACTIONS(1142), + [anon_sym_any] = ACTIONS(1142), + [anon_sym_number] = ACTIONS(1142), + [anon_sym_boolean] = ACTIONS(1142), + [anon_sym_string] = ACTIONS(1142), + [anon_sym_symbol] = ACTIONS(1142), + [anon_sym_interface] = ACTIONS(1142), + [anon_sym_extends] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [sym_readonly] = ACTIONS(1142), + }, + [552] = { + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_type] = ACTIONS(1395), + [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_RPAREN] = 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_COLON] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_class] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_function] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1395), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = 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(1393), + [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_abstract] = 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_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_interface] = ACTIONS(1395), + [anon_sym_extends] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [sym_readonly] = ACTIONS(1395), + }, + [553] = { + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_namespace] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_typeof] = ACTIONS(1826), + [anon_sym_import] = ACTIONS(1826), + [anon_sym_var] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_await] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_with] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_debugger] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_COLON] = ACTIONS(1824), + [anon_sym_case] = ACTIONS(1826), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_GT] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_class] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_function] = ACTIONS(1826), + [anon_sym_EQ_GT] = ACTIONS(1824), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_QMARK] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1824), + [anon_sym_void] = ACTIONS(1826), + [anon_sym_delete] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1824), + [sym_number] = ACTIONS(1824), + [sym_this] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_true] = ACTIONS(1826), + [sym_false] = ACTIONS(1826), + [sym_null] = ACTIONS(1826), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1824), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_abstract] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(1826), + [anon_sym_set] = ACTIONS(1826), + [anon_sym_declare] = ACTIONS(1826), + [anon_sym_public] = ACTIONS(1826), + [anon_sym_private] = ACTIONS(1826), + [anon_sym_protected] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_any] = ACTIONS(1826), + [anon_sym_number] = ACTIONS(1826), + [anon_sym_boolean] = ACTIONS(1826), + [anon_sym_string] = ACTIONS(1826), + [anon_sym_symbol] = ACTIONS(1826), + [anon_sym_interface] = ACTIONS(1826), + [anon_sym_extends] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [sym_readonly] = ACTIONS(1826), + }, + [554] = { + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1830), + [anon_sym_import] = ACTIONS(1830), + [anon_sym_var] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_await] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_with] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_debugger] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_RBRACK] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_GT] = ACTIONS(1828), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_class] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_function] = ACTIONS(1830), + [anon_sym_EQ_GT] = ACTIONS(1828), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_void] = ACTIONS(1830), + [anon_sym_delete] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [anon_sym_SQUOTE] = ACTIONS(1828), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1828), + [sym_number] = ACTIONS(1828), + [sym_this] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_true] = ACTIONS(1830), + [sym_false] = ACTIONS(1830), + [sym_null] = ACTIONS(1830), + [sym_undefined] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_abstract] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(1830), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_declare] = ACTIONS(1830), + [anon_sym_public] = ACTIONS(1830), + [anon_sym_private] = ACTIONS(1830), + [anon_sym_protected] = ACTIONS(1830), + [anon_sym_module] = ACTIONS(1830), + [anon_sym_any] = ACTIONS(1830), + [anon_sym_number] = ACTIONS(1830), + [anon_sym_boolean] = ACTIONS(1830), + [anon_sym_string] = ACTIONS(1830), + [anon_sym_symbol] = ACTIONS(1830), + [anon_sym_interface] = ACTIONS(1830), + [anon_sym_extends] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [sym_readonly] = ACTIONS(1830), + }, + [555] = { + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_export] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_namespace] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_COMMA] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_typeof] = ACTIONS(1834), + [anon_sym_import] = ACTIONS(1834), + [anon_sym_var] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_else] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_try] = ACTIONS(1834), + [anon_sym_with] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_debugger] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_throw] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_COLON] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_yield] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_RBRACK] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1834), + [anon_sym_class] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1834), + [anon_sym_function] = ACTIONS(1834), + [anon_sym_EQ_GT] = ACTIONS(1832), + [anon_sym_new] = ACTIONS(1834), + [anon_sym_QMARK] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1832), + [anon_sym_void] = ACTIONS(1834), + [anon_sym_delete] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_SQUOTE] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1832), + [sym_number] = ACTIONS(1832), + [sym_this] = ACTIONS(1834), + [sym_super] = ACTIONS(1834), + [sym_true] = ACTIONS(1834), + [sym_false] = ACTIONS(1834), + [sym_null] = ACTIONS(1834), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_abstract] = ACTIONS(1834), + [anon_sym_get] = ACTIONS(1834), + [anon_sym_set] = ACTIONS(1834), + [anon_sym_declare] = ACTIONS(1834), + [anon_sym_public] = ACTIONS(1834), + [anon_sym_private] = ACTIONS(1834), + [anon_sym_protected] = ACTIONS(1834), + [anon_sym_module] = ACTIONS(1834), + [anon_sym_any] = ACTIONS(1834), + [anon_sym_number] = ACTIONS(1834), + [anon_sym_boolean] = ACTIONS(1834), + [anon_sym_string] = ACTIONS(1834), + [anon_sym_symbol] = ACTIONS(1834), + [anon_sym_interface] = ACTIONS(1834), + [anon_sym_extends] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [sym_readonly] = ACTIONS(1834), + }, + [556] = { + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_EQ] = ACTIONS(1838), + [anon_sym_namespace] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1838), + [anon_sym_import] = ACTIONS(1838), + [anon_sym_var] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_else] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_with] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_debugger] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_throw] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_COLON] = ACTIONS(1836), + [anon_sym_case] = ACTIONS(1838), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1838), + [anon_sym_class] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_function] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1836), + [anon_sym_new] = ACTIONS(1838), + [anon_sym_QMARK] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_void] = ACTIONS(1838), + [anon_sym_delete] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1836), + [sym_number] = ACTIONS(1836), + [sym_this] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_true] = ACTIONS(1838), + [sym_false] = ACTIONS(1838), + [sym_null] = ACTIONS(1838), + [sym_undefined] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_abstract] = ACTIONS(1838), + [anon_sym_get] = ACTIONS(1838), + [anon_sym_set] = ACTIONS(1838), + [anon_sym_declare] = ACTIONS(1838), + [anon_sym_public] = ACTIONS(1838), + [anon_sym_private] = ACTIONS(1838), + [anon_sym_protected] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_any] = ACTIONS(1838), + [anon_sym_number] = ACTIONS(1838), + [anon_sym_boolean] = ACTIONS(1838), + [anon_sym_string] = ACTIONS(1838), + [anon_sym_symbol] = ACTIONS(1838), + [anon_sym_interface] = ACTIONS(1838), + [anon_sym_extends] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [sym_readonly] = ACTIONS(1838), + }, + [557] = { + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_export] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_namespace] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_type] = ACTIONS(597), + [anon_sym_typeof] = ACTIONS(597), + [anon_sym_import] = ACTIONS(597), + [anon_sym_var] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_else] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_await] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_debugger] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_function] = ACTIONS(597), + [anon_sym_EQ_GT] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_null] = ACTIONS(597), + [sym_undefined] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_static] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_get] = ACTIONS(597), + [anon_sym_set] = ACTIONS(597), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(597), + [anon_sym_private] = ACTIONS(597), + [anon_sym_protected] = ACTIONS(597), + [anon_sym_module] = ACTIONS(597), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_extends] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [sym_readonly] = ACTIONS(597), + }, + [558] = { + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_export] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_namespace] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_COMMA] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_typeof] = ACTIONS(1842), + [anon_sym_import] = ACTIONS(1842), + [anon_sym_var] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_switch] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_await] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_do] = ACTIONS(1842), + [anon_sym_try] = ACTIONS(1842), + [anon_sym_with] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_debugger] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_throw] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_COLON] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1842), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_SLASH] = ACTIONS(1842), + [anon_sym_class] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_function] = ACTIONS(1842), + [anon_sym_EQ_GT] = ACTIONS(1840), + [anon_sym_new] = ACTIONS(1842), + [anon_sym_QMARK] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1840), + [anon_sym_void] = ACTIONS(1842), + [anon_sym_delete] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1840), + [sym_number] = ACTIONS(1840), + [sym_this] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_true] = ACTIONS(1842), + [sym_false] = ACTIONS(1842), + [sym_null] = ACTIONS(1842), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1840), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_abstract] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_declare] = ACTIONS(1842), + [anon_sym_public] = ACTIONS(1842), + [anon_sym_private] = ACTIONS(1842), + [anon_sym_protected] = ACTIONS(1842), + [anon_sym_module] = ACTIONS(1842), + [anon_sym_any] = ACTIONS(1842), + [anon_sym_number] = ACTIONS(1842), + [anon_sym_boolean] = ACTIONS(1842), + [anon_sym_string] = ACTIONS(1842), + [anon_sym_symbol] = ACTIONS(1842), + [anon_sym_interface] = ACTIONS(1842), + [anon_sym_extends] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [sym_readonly] = ACTIONS(1842), + }, + [559] = { + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1846), + [anon_sym_namespace] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_typeof] = ACTIONS(1846), + [anon_sym_import] = ACTIONS(1846), + [anon_sym_var] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_else] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_switch] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_await] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_try] = ACTIONS(1846), + [anon_sym_with] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_debugger] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_COLON] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_class] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_function] = ACTIONS(1846), + [anon_sym_EQ_GT] = ACTIONS(1844), + [anon_sym_new] = ACTIONS(1846), + [anon_sym_QMARK] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_void] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1844), + [sym_number] = ACTIONS(1844), + [sym_this] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_true] = ACTIONS(1846), + [sym_false] = ACTIONS(1846), + [sym_null] = ACTIONS(1846), + [sym_undefined] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_abstract] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(1846), + [anon_sym_set] = ACTIONS(1846), + [anon_sym_declare] = ACTIONS(1846), + [anon_sym_public] = ACTIONS(1846), + [anon_sym_private] = ACTIONS(1846), + [anon_sym_protected] = ACTIONS(1846), + [anon_sym_module] = ACTIONS(1846), + [anon_sym_any] = ACTIONS(1846), + [anon_sym_number] = ACTIONS(1846), + [anon_sym_boolean] = ACTIONS(1846), + [anon_sym_string] = ACTIONS(1846), + [anon_sym_symbol] = ACTIONS(1846), + [anon_sym_interface] = ACTIONS(1846), + [anon_sym_extends] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [sym_readonly] = ACTIONS(1846), + }, + [560] = { + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_export] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_namespace] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_typeof] = ACTIONS(1850), + [anon_sym_import] = ACTIONS(1850), + [anon_sym_var] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_await] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1850), + [anon_sym_with] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_debugger] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_throw] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_class] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_function] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1850), + [anon_sym_QMARK] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_void] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1848), + [sym_number] = ACTIONS(1848), + [sym_this] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_true] = ACTIONS(1850), + [sym_false] = ACTIONS(1850), + [sym_null] = ACTIONS(1850), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_abstract] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(1850), + [anon_sym_set] = ACTIONS(1850), + [anon_sym_declare] = ACTIONS(1850), + [anon_sym_public] = ACTIONS(1850), + [anon_sym_private] = ACTIONS(1850), + [anon_sym_protected] = ACTIONS(1850), + [anon_sym_module] = ACTIONS(1850), + [anon_sym_any] = ACTIONS(1850), + [anon_sym_number] = ACTIONS(1850), + [anon_sym_boolean] = ACTIONS(1850), + [anon_sym_string] = ACTIONS(1850), + [anon_sym_symbol] = ACTIONS(1850), + [anon_sym_interface] = ACTIONS(1850), + [anon_sym_extends] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [sym_readonly] = ACTIONS(1850), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(1854), + [anon_sym_namespace] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(1854), + [anon_sym_var] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_await] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_with] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_debugger] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_COLON] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_RBRACK] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_class] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_function] = ACTIONS(1854), + [anon_sym_EQ_GT] = ACTIONS(1852), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_QMARK] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_void] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1852), + [sym_number] = ACTIONS(1852), + [sym_this] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_undefined] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(1854), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_declare] = ACTIONS(1854), + [anon_sym_public] = ACTIONS(1854), + [anon_sym_private] = ACTIONS(1854), + [anon_sym_protected] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_any] = ACTIONS(1854), + [anon_sym_number] = ACTIONS(1854), + [anon_sym_boolean] = ACTIONS(1854), + [anon_sym_string] = ACTIONS(1854), + [anon_sym_symbol] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1854), + [anon_sym_extends] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [sym_readonly] = ACTIONS(1854), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_EQ] = ACTIONS(1858), + [anon_sym_namespace] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_COMMA] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_import] = ACTIONS(1858), + [anon_sym_var] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_else] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_await] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [anon_sym_with] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_debugger] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_throw] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_COLON] = ACTIONS(1856), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_GT] = ACTIONS(1856), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1858), + [anon_sym_EQ_GT] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_QMARK] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_void] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1856), + [sym_number] = ACTIONS(1856), + [sym_this] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_true] = ACTIONS(1858), + [sym_false] = ACTIONS(1858), + [sym_null] = ACTIONS(1858), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_declare] = ACTIONS(1858), + [anon_sym_public] = ACTIONS(1858), + [anon_sym_private] = ACTIONS(1858), + [anon_sym_protected] = ACTIONS(1858), + [anon_sym_module] = ACTIONS(1858), + [anon_sym_any] = ACTIONS(1858), + [anon_sym_number] = ACTIONS(1858), + [anon_sym_boolean] = ACTIONS(1858), + [anon_sym_string] = ACTIONS(1858), + [anon_sym_symbol] = ACTIONS(1858), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_extends] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [sym_readonly] = ACTIONS(1858), + }, + [563] = { + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_namespace] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_COMMA] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1862), + [anon_sym_import] = ACTIONS(1862), + [anon_sym_var] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_await] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(1862), + [anon_sym_with] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_debugger] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_throw] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_COLON] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_class] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_function] = ACTIONS(1862), + [anon_sym_EQ_GT] = ACTIONS(1860), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1860), + [anon_sym_void] = ACTIONS(1862), + [anon_sym_delete] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1860), + [sym_number] = ACTIONS(1860), + [sym_this] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_true] = ACTIONS(1862), + [sym_false] = ACTIONS(1862), + [sym_null] = ACTIONS(1862), + [sym_undefined] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_abstract] = ACTIONS(1862), + [anon_sym_get] = ACTIONS(1862), + [anon_sym_set] = ACTIONS(1862), + [anon_sym_declare] = ACTIONS(1862), + [anon_sym_public] = ACTIONS(1862), + [anon_sym_private] = ACTIONS(1862), + [anon_sym_protected] = ACTIONS(1862), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_any] = ACTIONS(1862), + [anon_sym_number] = ACTIONS(1862), + [anon_sym_boolean] = ACTIONS(1862), + [anon_sym_string] = ACTIONS(1862), + [anon_sym_symbol] = ACTIONS(1862), + [anon_sym_interface] = ACTIONS(1862), + [anon_sym_extends] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [sym_readonly] = ACTIONS(1862), + }, + [564] = { + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_namespace] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1866), + [anon_sym_import] = ACTIONS(1866), + [anon_sym_var] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_await] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_with] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_debugger] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_throw] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_COLON] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_function] = ACTIONS(1866), + [anon_sym_EQ_GT] = ACTIONS(1864), + [anon_sym_new] = ACTIONS(1866), + [anon_sym_QMARK] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1864), + [anon_sym_void] = ACTIONS(1866), + [anon_sym_delete] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1864), + [sym_number] = ACTIONS(1864), + [sym_this] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_true] = ACTIONS(1866), + [sym_false] = ACTIONS(1866), + [sym_null] = ACTIONS(1866), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1864), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1866), + [anon_sym_set] = ACTIONS(1866), + [anon_sym_declare] = ACTIONS(1866), + [anon_sym_public] = ACTIONS(1866), + [anon_sym_private] = ACTIONS(1866), + [anon_sym_protected] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_any] = ACTIONS(1866), + [anon_sym_number] = ACTIONS(1866), + [anon_sym_boolean] = ACTIONS(1866), + [anon_sym_string] = ACTIONS(1866), + [anon_sym_symbol] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1866), + [anon_sym_extends] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [sym_readonly] = ACTIONS(1866), + }, + [565] = { + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [sym_readonly] = ACTIONS(1868), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [566] = { + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3666), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [sym_readonly] = ACTIONS(1868), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [567] = { + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [sym_readonly] = ACTIONS(1868), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [568] = { + [sym__call_signature] = STATE(4107), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1878), + [anon_sym_of] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [569] = { + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), + }, + [570] = { + [sym__call_signature] = STATE(4107), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [571] = { + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), + }, + [572] = { + [sym__call_signature] = STATE(4107), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [573] = { + [sym__call_signature] = STATE(4107), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1913), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [574] = { + [sym__call_signature] = STATE(4107), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1916), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [575] = { + [sym_object] = STATE(3142), + [sym_array] = STATE(3141), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(4123), + [sym_rest_parameter] = STATE(3736), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3380), + [sym_constructor_type] = STATE(3380), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3380), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3380), + [sym_intersection_type] = STATE(3380), + [sym_function_type] = STATE(3380), + [aux_sym_export_statement_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(1918), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_declare] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [sym_readonly] = ACTIONS(1938), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [576] = { + [sym_object] = STATE(3142), + [sym_array] = STATE(3141), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(4123), + [sym_rest_parameter] = STATE(3736), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3374), + [sym_constructor_type] = STATE(3374), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3374), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3374), + [sym_intersection_type] = STATE(3374), + [sym_function_type] = STATE(3374), + [aux_sym_export_statement_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(1918), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_declare] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [sym_readonly] = ACTIONS(1938), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [577] = { + [sym_object] = STATE(3142), + [sym_array] = STATE(3141), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(4123), + [sym_rest_parameter] = STATE(3736), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3408), + [sym_constructor_type] = STATE(3408), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3408), + [sym_intersection_type] = STATE(3408), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(1918), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_declare] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [sym_readonly] = ACTIONS(1938), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [578] = { + [sym__call_signature] = STATE(4204), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1940), + [anon_sym_export] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1944), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_get] = ACTIONS(1942), + [anon_sym_set] = ACTIONS(1942), + [anon_sym_declare] = ACTIONS(1942), + [anon_sym_public] = ACTIONS(1942), + [anon_sym_private] = ACTIONS(1942), + [anon_sym_protected] = ACTIONS(1942), + [anon_sym_module] = ACTIONS(1942), + [anon_sym_any] = ACTIONS(1942), + [anon_sym_number] = ACTIONS(1942), + [anon_sym_boolean] = ACTIONS(1942), + [anon_sym_string] = ACTIONS(1942), + [anon_sym_symbol] = ACTIONS(1942), + [anon_sym_implements] = ACTIONS(622), + [sym_readonly] = ACTIONS(1942), + }, + [579] = { + [sym_object] = STATE(3142), + [sym_array] = STATE(3141), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(4123), + [sym_rest_parameter] = STATE(3736), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3514), + [sym_constructor_type] = STATE(3514), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3514), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3514), + [sym_intersection_type] = STATE(3514), + [sym_function_type] = STATE(3514), + [aux_sym_export_statement_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(1918), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_declare] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [sym_readonly] = ACTIONS(1938), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [580] = { + [sym__call_signature] = STATE(4049), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1948), + [anon_sym_export] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1950), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1950), + [anon_sym_declare] = ACTIONS(1950), + [anon_sym_public] = ACTIONS(1950), + [anon_sym_private] = ACTIONS(1950), + [anon_sym_protected] = ACTIONS(1950), + [anon_sym_module] = ACTIONS(1950), + [anon_sym_any] = ACTIONS(1950), + [anon_sym_number] = ACTIONS(1950), + [anon_sym_boolean] = ACTIONS(1950), + [anon_sym_string] = ACTIONS(1950), + [anon_sym_symbol] = ACTIONS(1950), + [sym_readonly] = ACTIONS(1950), + }, + [581] = { + [sym_object] = STATE(3142), + [sym_array] = STATE(3141), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(4123), + [sym_rest_parameter] = STATE(3736), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3399), + [sym_constructor_type] = STATE(3399), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3399), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3399), + [sym_intersection_type] = STATE(3399), + [sym_function_type] = STATE(3399), + [aux_sym_export_statement_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(1918), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_declare] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [sym_readonly] = ACTIONS(1938), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [582] = { + [sym_object] = STATE(3171), + [sym_array] = STATE(3169), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(1957), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(615), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_this] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [anon_sym_declare] = ACTIONS(615), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(615), + [anon_sym_any] = ACTIONS(615), + [anon_sym_number] = ACTIONS(615), + [anon_sym_boolean] = ACTIONS(615), + [anon_sym_string] = ACTIONS(615), + [anon_sym_symbol] = ACTIONS(615), + [sym_readonly] = ACTIONS(615), + }, + [583] = { + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), + }, + [584] = { + [sym_object] = STATE(3171), + [sym_array] = STATE(3169), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(1957), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(615), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_this] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [anon_sym_declare] = ACTIONS(615), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(615), + [anon_sym_any] = ACTIONS(615), + [anon_sym_number] = ACTIONS(615), + [anon_sym_boolean] = ACTIONS(615), + [anon_sym_string] = ACTIONS(615), + [anon_sym_symbol] = ACTIONS(615), + [sym_readonly] = ACTIONS(615), + }, + [585] = { + [sym__call_signature] = STATE(4186), + [sym_template_string] = STATE(1774), + [sym_arguments] = STATE(1774), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3484), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1972), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_function] = ACTIONS(1984), + [anon_sym_EQ_GT] = ACTIONS(1986), + [anon_sym_QMARK_DOT] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [sym_readonly] = ACTIONS(1974), + [anon_sym_LBRACE_PIPE] = ACTIONS(655), + }, + [586] = { + [sym_object] = STATE(3142), + [sym_array] = STATE(3141), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(4123), + [sym_rest_parameter] = STATE(3736), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3336), + [sym_constructor_type] = STATE(3336), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3336), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3336), + [sym_intersection_type] = STATE(3336), + [sym_function_type] = STATE(3336), + [aux_sym_export_statement_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(1918), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_declare] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [sym_readonly] = ACTIONS(1938), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [587] = { + [sym__call_signature] = STATE(4049), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1948), + [anon_sym_export] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1950), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1950), + [anon_sym_declare] = ACTIONS(1950), + [anon_sym_public] = ACTIONS(1950), + [anon_sym_private] = ACTIONS(1950), + [anon_sym_protected] = ACTIONS(1950), + [anon_sym_module] = ACTIONS(1950), + [anon_sym_any] = ACTIONS(1950), + [anon_sym_number] = ACTIONS(1950), + [anon_sym_boolean] = ACTIONS(1950), + [anon_sym_string] = ACTIONS(1950), + [anon_sym_symbol] = ACTIONS(1950), + [sym_readonly] = ACTIONS(1950), + }, + [588] = { + [sym_object] = STATE(3142), + [sym_array] = STATE(3141), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_decorator] = STATE(2501), + [sym_formal_parameters] = STATE(4123), + [sym_rest_parameter] = STATE(3736), + [sym_nested_type_identifier] = STATE(2506), + [sym_accessibility_modifier] = STATE(2502), + [sym_required_parameter] = STATE(3736), + [sym_optional_parameter] = STATE(3736), + [sym__parameter_name] = STATE(2883), + [sym__rest_identifier] = STATE(3308), + [sym__type] = STATE(3417), + [sym_constructor_type] = STATE(3417), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(3417), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(3417), + [sym_intersection_type] = STATE(3417), + [sym_function_type] = STATE(3417), + [aux_sym_export_statement_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(1918), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_namespace] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_declare] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [sym_readonly] = ACTIONS(1938), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [589] = { + [sym__call_signature] = STATE(4049), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1948), + [anon_sym_export] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1950), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1950), + [anon_sym_declare] = ACTIONS(1950), + [anon_sym_public] = ACTIONS(1950), + [anon_sym_private] = ACTIONS(1950), + [anon_sym_protected] = ACTIONS(1950), + [anon_sym_module] = ACTIONS(1950), + [anon_sym_any] = ACTIONS(1950), + [anon_sym_number] = ACTIONS(1950), + [anon_sym_boolean] = ACTIONS(1950), + [anon_sym_string] = ACTIONS(1950), + [anon_sym_symbol] = ACTIONS(1950), + [sym_readonly] = ACTIONS(1950), }, [590] = { - [ts_builtin_sym_end] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2079), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2079), - [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_yield] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [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_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2079), - [anon_sym_delete] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [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_abstract] = 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_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_interface] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [sym_readonly] = ACTIONS(2079), + [sym__call_signature] = STATE(4186), + [sym_template_string] = STATE(1774), + [sym_arguments] = STATE(1774), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3484), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1972), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_function] = ACTIONS(1984), + [anon_sym_EQ_GT] = ACTIONS(1986), + [anon_sym_QMARK_DOT] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [sym_readonly] = ACTIONS(1974), + [anon_sym_LBRACE_PIPE] = ACTIONS(655), }, [591] = { - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2083), - [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(2083), - [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_LT] = ACTIONS(2081), - [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_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [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_abstract] = 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_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_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym_readonly] = ACTIONS(2083), + [sym__call_signature] = STATE(4204), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1940), + [anon_sym_export] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_get] = ACTIONS(1942), + [anon_sym_set] = ACTIONS(1942), + [anon_sym_declare] = ACTIONS(1942), + [anon_sym_public] = ACTIONS(1942), + [anon_sym_private] = ACTIONS(1942), + [anon_sym_protected] = ACTIONS(1942), + [anon_sym_module] = ACTIONS(1942), + [anon_sym_any] = ACTIONS(1942), + [anon_sym_number] = ACTIONS(1942), + [anon_sym_boolean] = ACTIONS(1942), + [anon_sym_string] = ACTIONS(1942), + [anon_sym_symbol] = ACTIONS(1942), + [anon_sym_implements] = ACTIONS(622), + [sym_readonly] = ACTIONS(1942), }, [592] = { - [ts_builtin_sym_end] = ACTIONS(2085), - [sym_identifier] = ACTIONS(2087), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2087), - [anon_sym_namespace] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_typeof] = ACTIONS(2087), - [anon_sym_import] = ACTIONS(2087), - [anon_sym_var] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_switch] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_with] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_debugger] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_throw] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2087), - [anon_sym_yield] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [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_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2087), - [anon_sym_delete] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_this] = ACTIONS(2087), - [sym_super] = ACTIONS(2087), - [sym_true] = ACTIONS(2087), - [sym_false] = ACTIONS(2087), - [sym_null] = ACTIONS(2087), - [sym_undefined] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_abstract] = ACTIONS(2087), - [anon_sym_get] = ACTIONS(2087), - [anon_sym_set] = ACTIONS(2087), - [anon_sym_declare] = ACTIONS(2087), - [anon_sym_public] = ACTIONS(2087), - [anon_sym_private] = ACTIONS(2087), - [anon_sym_protected] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_any] = ACTIONS(2087), - [anon_sym_number] = ACTIONS(2087), - [anon_sym_boolean] = ACTIONS(2087), - [anon_sym_string] = ACTIONS(2087), - [anon_sym_symbol] = ACTIONS(2087), - [anon_sym_interface] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [sym_readonly] = ACTIONS(2087), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [593] = { - [ts_builtin_sym_end] = ACTIONS(2089), - [sym_identifier] = ACTIONS(2091), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_typeof] = ACTIONS(2091), - [anon_sym_import] = ACTIONS(2091), - [anon_sym_var] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_switch] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_do] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2091), - [anon_sym_with] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_debugger] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_throw] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_case] = ACTIONS(2091), - [anon_sym_yield] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [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_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2091), - [anon_sym_delete] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_this] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_true] = ACTIONS(2091), - [sym_false] = ACTIONS(2091), - [sym_null] = ACTIONS(2091), - [sym_undefined] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_abstract] = ACTIONS(2091), - [anon_sym_get] = ACTIONS(2091), - [anon_sym_set] = ACTIONS(2091), - [anon_sym_declare] = ACTIONS(2091), - [anon_sym_public] = ACTIONS(2091), - [anon_sym_private] = ACTIONS(2091), - [anon_sym_protected] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_any] = ACTIONS(2091), - [anon_sym_number] = ACTIONS(2091), - [anon_sym_boolean] = ACTIONS(2091), - [anon_sym_string] = ACTIONS(2091), - [anon_sym_symbol] = ACTIONS(2091), - [anon_sym_interface] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [sym_readonly] = ACTIONS(2091), + [sym__call_signature] = STATE(4107), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(655), }, [594] = { - [ts_builtin_sym_end] = ACTIONS(2093), - [sym_identifier] = ACTIONS(2095), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_namespace] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2095), - [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(2095), - [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_LT] = ACTIONS(2093), - [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(2093), - [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_abstract] = 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_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_interface] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [sym_readonly] = ACTIONS(2095), + [sym__call_signature] = STATE(4107), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(2006), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [sym_readonly] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(655), }, [595] = { - [ts_builtin_sym_end] = ACTIONS(2097), - [sym_identifier] = ACTIONS(2099), - [anon_sym_export] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_namespace] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(2099), - [anon_sym_import] = ACTIONS(2099), - [anon_sym_var] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_switch] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2099), - [anon_sym_try] = ACTIONS(2099), - [anon_sym_with] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_debugger] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_throw] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2099), - [anon_sym_yield] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_class] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_function] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2099), - [anon_sym_delete] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_this] = ACTIONS(2099), - [sym_super] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [sym_null] = ACTIONS(2099), - [sym_undefined] = ACTIONS(2099), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_abstract] = ACTIONS(2099), - [anon_sym_get] = ACTIONS(2099), - [anon_sym_set] = ACTIONS(2099), - [anon_sym_declare] = ACTIONS(2099), - [anon_sym_public] = ACTIONS(2099), - [anon_sym_private] = ACTIONS(2099), - [anon_sym_protected] = ACTIONS(2099), - [anon_sym_module] = ACTIONS(2099), - [anon_sym_any] = ACTIONS(2099), - [anon_sym_number] = ACTIONS(2099), - [anon_sym_boolean] = ACTIONS(2099), - [anon_sym_string] = ACTIONS(2099), - [anon_sym_symbol] = ACTIONS(2099), - [anon_sym_interface] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [sym_readonly] = ACTIONS(2099), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [596] = { - [ts_builtin_sym_end] = ACTIONS(2101), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_else] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_case] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2101), - [sym_number] = ACTIONS(2101), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym_readonly] = ACTIONS(2103), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3386), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2010), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [597] = { - [ts_builtin_sym_end] = ACTIONS(2105), - [sym_identifier] = ACTIONS(2107), - [anon_sym_export] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(2107), - [anon_sym_namespace] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_typeof] = ACTIONS(2107), - [anon_sym_import] = ACTIONS(2107), - [anon_sym_var] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_switch] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [anon_sym_do] = ACTIONS(2107), - [anon_sym_try] = ACTIONS(2107), - [anon_sym_with] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_debugger] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_throw] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2107), - [anon_sym_yield] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_class] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_function] = ACTIONS(2107), - [anon_sym_new] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2107), - [anon_sym_delete] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_this] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_true] = ACTIONS(2107), - [sym_false] = ACTIONS(2107), - [sym_null] = ACTIONS(2107), - [sym_undefined] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_abstract] = ACTIONS(2107), - [anon_sym_get] = ACTIONS(2107), - [anon_sym_set] = ACTIONS(2107), - [anon_sym_declare] = ACTIONS(2107), - [anon_sym_public] = ACTIONS(2107), - [anon_sym_private] = ACTIONS(2107), - [anon_sym_protected] = ACTIONS(2107), - [anon_sym_module] = ACTIONS(2107), - [anon_sym_any] = ACTIONS(2107), - [anon_sym_number] = ACTIONS(2107), - [anon_sym_boolean] = ACTIONS(2107), - [anon_sym_string] = ACTIONS(2107), - [anon_sym_symbol] = ACTIONS(2107), - [anon_sym_interface] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [sym_readonly] = ACTIONS(2107), + [sym_type_arguments] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2014), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_namespace] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2014), + [anon_sym_typeof] = ACTIONS(2014), + [anon_sym_import] = ACTIONS(2014), + [anon_sym_var] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_switch] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_await] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_with] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_debugger] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_throw] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2014), + [anon_sym_yield] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_SLASH] = ACTIONS(2014), + [anon_sym_DOT] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_async] = ACTIONS(2014), + [anon_sym_function] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2012), + [anon_sym_void] = ACTIONS(2014), + [anon_sym_delete] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_SQUOTE] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2012), + [sym_number] = ACTIONS(2012), + [sym_this] = ACTIONS(2014), + [sym_super] = ACTIONS(2014), + [sym_true] = ACTIONS(2014), + [sym_false] = ACTIONS(2014), + [sym_null] = ACTIONS(2014), + [sym_undefined] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_abstract] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(2014), + [anon_sym_set] = ACTIONS(2014), + [anon_sym_declare] = ACTIONS(2014), + [anon_sym_public] = ACTIONS(2014), + [anon_sym_private] = ACTIONS(2014), + [anon_sym_protected] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_any] = ACTIONS(2014), + [anon_sym_number] = ACTIONS(2014), + [anon_sym_boolean] = ACTIONS(2014), + [anon_sym_string] = ACTIONS(2014), + [anon_sym_symbol] = ACTIONS(2014), + [anon_sym_interface] = ACTIONS(2014), + [anon_sym_extends] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [sym_readonly] = ACTIONS(2014), }, [598] = { - [ts_builtin_sym_end] = ACTIONS(2109), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym_readonly] = ACTIONS(2111), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_this] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [sym_readonly] = ACTIONS(1868), }, [599] = { - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2115), - [anon_sym_export] = ACTIONS(2115), - [anon_sym_default] = ACTIONS(2115), - [anon_sym_namespace] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_typeof] = ACTIONS(2115), - [anon_sym_import] = ACTIONS(2115), - [anon_sym_var] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_else] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_switch] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_await] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [anon_sym_do] = ACTIONS(2115), - [anon_sym_try] = ACTIONS(2115), - [anon_sym_with] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_debugger] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_throw] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_case] = ACTIONS(2115), - [anon_sym_yield] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_class] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_function] = ACTIONS(2115), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2113), - [anon_sym_void] = ACTIONS(2115), - [anon_sym_delete] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2113), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2113), - [sym_number] = ACTIONS(2113), - [sym_this] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_null] = ACTIONS(2115), - [sym_undefined] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_abstract] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(2115), - [anon_sym_set] = ACTIONS(2115), - [anon_sym_declare] = ACTIONS(2115), - [anon_sym_public] = ACTIONS(2115), - [anon_sym_private] = ACTIONS(2115), - [anon_sym_protected] = ACTIONS(2115), - [anon_sym_module] = ACTIONS(2115), - [anon_sym_any] = ACTIONS(2115), - [anon_sym_number] = ACTIONS(2115), - [anon_sym_boolean] = ACTIONS(2115), - [anon_sym_string] = ACTIONS(2115), - [anon_sym_symbol] = ACTIONS(2115), - [anon_sym_interface] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [sym_readonly] = ACTIONS(2115), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(1878), + [anon_sym_of] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [600] = { - [ts_builtin_sym_end] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2119), - [anon_sym_export] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2119), - [anon_sym_namespace] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2119), - [anon_sym_import] = ACTIONS(2119), - [anon_sym_var] = ACTIONS(2119), - [anon_sym_let] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_switch] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2119), - [anon_sym_do] = ACTIONS(2119), - [anon_sym_try] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_debugger] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_throw] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_case] = ACTIONS(2119), - [anon_sym_yield] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_class] = ACTIONS(2119), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_function] = ACTIONS(2119), - [anon_sym_new] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2119), - [anon_sym_delete] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_this] = ACTIONS(2119), - [sym_super] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_null] = ACTIONS(2119), - [sym_undefined] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2119), - [anon_sym_abstract] = ACTIONS(2119), - [anon_sym_get] = ACTIONS(2119), - [anon_sym_set] = ACTIONS(2119), - [anon_sym_declare] = ACTIONS(2119), - [anon_sym_public] = ACTIONS(2119), - [anon_sym_private] = ACTIONS(2119), - [anon_sym_protected] = ACTIONS(2119), - [anon_sym_module] = ACTIONS(2119), - [anon_sym_any] = ACTIONS(2119), - [anon_sym_number] = ACTIONS(2119), - [anon_sym_boolean] = ACTIONS(2119), - [anon_sym_string] = ACTIONS(2119), - [anon_sym_symbol] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [sym_readonly] = ACTIONS(2119), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [sym_this] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [sym_readonly] = ACTIONS(1868), }, [601] = { - [ts_builtin_sym_end] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2123), - [anon_sym_export] = ACTIONS(2123), - [anon_sym_default] = ACTIONS(2123), - [anon_sym_namespace] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2123), - [anon_sym_import] = ACTIONS(2123), - [anon_sym_var] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_else] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_switch] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_do] = ACTIONS(2123), - [anon_sym_try] = ACTIONS(2123), - [anon_sym_with] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_debugger] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_throw] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_case] = ACTIONS(2123), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2123), - [anon_sym_class] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_function] = ACTIONS(2123), - [anon_sym_new] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2121), - [anon_sym_void] = ACTIONS(2123), - [anon_sym_delete] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2121), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2121), - [sym_number] = ACTIONS(2121), - [sym_this] = ACTIONS(2123), - [sym_super] = ACTIONS(2123), - [sym_true] = ACTIONS(2123), - [sym_false] = ACTIONS(2123), - [sym_null] = ACTIONS(2123), - [sym_undefined] = ACTIONS(2123), - [anon_sym_AT] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2123), - [anon_sym_abstract] = ACTIONS(2123), - [anon_sym_get] = ACTIONS(2123), - [anon_sym_set] = ACTIONS(2123), - [anon_sym_declare] = ACTIONS(2123), - [anon_sym_public] = ACTIONS(2123), - [anon_sym_private] = ACTIONS(2123), - [anon_sym_protected] = ACTIONS(2123), - [anon_sym_module] = ACTIONS(2123), - [anon_sym_any] = ACTIONS(2123), - [anon_sym_number] = ACTIONS(2123), - [anon_sym_boolean] = ACTIONS(2123), - [anon_sym_string] = ACTIONS(2123), - [anon_sym_symbol] = ACTIONS(2123), - [anon_sym_interface] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [sym_readonly] = ACTIONS(2123), + [sym_type_arguments] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2020), + [anon_sym_export] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_namespace] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2020), + [anon_sym_import] = ACTIONS(2020), + [anon_sym_var] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_await] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_with] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_debugger] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_throw] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_yield] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_SLASH] = ACTIONS(2020), + [anon_sym_DOT] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(2020), + [anon_sym_function] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_void] = ACTIONS(2020), + [anon_sym_delete] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2018), + [sym_number] = ACTIONS(2018), + [sym_this] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [sym_null] = ACTIONS(2020), + [sym_undefined] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_abstract] = 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_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_interface] = ACTIONS(2020), + [anon_sym_extends] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [sym_readonly] = ACTIONS(2020), }, [602] = { - [ts_builtin_sym_end] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym_readonly] = ACTIONS(2127), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(2025), + [anon_sym_of] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [603] = { - [ts_builtin_sym_end] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2131), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2131), - [anon_sym_namespace] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_typeof] = ACTIONS(2131), - [anon_sym_import] = ACTIONS(2131), - [anon_sym_var] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_switch] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_with] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_debugger] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_throw] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_case] = ACTIONS(2131), - [anon_sym_yield] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2131), - [anon_sym_class] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_function] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2131), - [anon_sym_PLUS] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2131), - [anon_sym_delete] = ACTIONS(2131), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_this] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_true] = ACTIONS(2131), - [sym_false] = ACTIONS(2131), - [sym_null] = ACTIONS(2131), - [sym_undefined] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_abstract] = ACTIONS(2131), - [anon_sym_get] = ACTIONS(2131), - [anon_sym_set] = ACTIONS(2131), - [anon_sym_declare] = ACTIONS(2131), - [anon_sym_public] = ACTIONS(2131), - [anon_sym_private] = ACTIONS(2131), - [anon_sym_protected] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_any] = ACTIONS(2131), - [anon_sym_number] = ACTIONS(2131), - [anon_sym_boolean] = ACTIONS(2131), - [anon_sym_string] = ACTIONS(2131), - [anon_sym_symbol] = ACTIONS(2131), - [anon_sym_interface] = ACTIONS(2131), - [anon_sym_enum] = ACTIONS(2131), - [sym_readonly] = ACTIONS(2131), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1618), + [sym_arguments] = STATE(1618), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3493), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2030), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [604] = { - [ts_builtin_sym_end] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_case] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2133), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2133), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2133), - [sym_number] = ACTIONS(2133), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym_readonly] = ACTIONS(2135), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(1068), + [anon_sym_var] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_await] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_with] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_throw] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_finally] = ACTIONS(1068), + [anon_sym_yield] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_class] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(1068), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1068), + [anon_sym_delete] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_number] = ACTIONS(1066), + [sym_this] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_undefined] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_abstract] = 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_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_interface] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [sym_readonly] = ACTIONS(1068), + [sym__automatic_semicolon] = ACTIONS(1074), }, [605] = { - [ts_builtin_sym_end] = ACTIONS(2137), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_case] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_abstract] = ACTIONS(2139), - [anon_sym_get] = ACTIONS(2139), - [anon_sym_set] = ACTIONS(2139), - [anon_sym_declare] = ACTIONS(2139), - [anon_sym_public] = ACTIONS(2139), - [anon_sym_private] = ACTIONS(2139), - [anon_sym_protected] = ACTIONS(2139), - [anon_sym_module] = ACTIONS(2139), - [anon_sym_any] = ACTIONS(2139), - [anon_sym_number] = ACTIONS(2139), - [anon_sym_boolean] = ACTIONS(2139), - [anon_sym_string] = ACTIONS(2139), - [anon_sym_symbol] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym_readonly] = ACTIONS(2139), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [606] = { - [ts_builtin_sym_end] = ACTIONS(2141), - [sym_identifier] = ACTIONS(2143), - [anon_sym_export] = ACTIONS(2143), - [anon_sym_default] = ACTIONS(2143), - [anon_sym_namespace] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2143), - [anon_sym_typeof] = ACTIONS(2143), - [anon_sym_import] = ACTIONS(2143), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_switch] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_while] = ACTIONS(2143), - [anon_sym_do] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2143), - [anon_sym_with] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_debugger] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_throw] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2141), - [anon_sym_case] = ACTIONS(2143), - [anon_sym_yield] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_SLASH] = ACTIONS(2143), - [anon_sym_class] = ACTIONS(2143), - [anon_sym_async] = ACTIONS(2143), - [anon_sym_function] = ACTIONS(2143), - [anon_sym_new] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2141), - [anon_sym_void] = ACTIONS(2143), - [anon_sym_delete] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2141), - [anon_sym_DASH_DASH] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2141), - [sym_number] = ACTIONS(2141), - [sym_this] = ACTIONS(2143), - [sym_super] = ACTIONS(2143), - [sym_true] = ACTIONS(2143), - [sym_false] = ACTIONS(2143), - [sym_null] = ACTIONS(2143), - [sym_undefined] = ACTIONS(2143), - [anon_sym_AT] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2143), - [anon_sym_abstract] = ACTIONS(2143), - [anon_sym_get] = ACTIONS(2143), - [anon_sym_set] = ACTIONS(2143), - [anon_sym_declare] = ACTIONS(2143), - [anon_sym_public] = ACTIONS(2143), - [anon_sym_private] = ACTIONS(2143), - [anon_sym_protected] = ACTIONS(2143), - [anon_sym_module] = ACTIONS(2143), - [anon_sym_any] = ACTIONS(2143), - [anon_sym_number] = ACTIONS(2143), - [anon_sym_boolean] = ACTIONS(2143), - [anon_sym_string] = ACTIONS(2143), - [anon_sym_symbol] = ACTIONS(2143), - [anon_sym_interface] = ACTIONS(2143), - [anon_sym_enum] = ACTIONS(2143), - [sym_readonly] = ACTIONS(2143), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1567), + [sym_arguments] = STATE(1567), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3381), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2034), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [607] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_default] = ACTIONS(1113), - [anon_sym_namespace] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_var] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_switch] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_debugger] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_throw] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_case] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_class] = ACTIONS(1113), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_delete] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1111), - [sym_this] = ACTIONS(1113), - [sym_super] = ACTIONS(1113), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_null] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1111), - [anon_sym_static] = ACTIONS(1113), - [anon_sym_abstract] = ACTIONS(1113), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1113), - [anon_sym_declare] = ACTIONS(1113), - [anon_sym_public] = ACTIONS(1113), - [anon_sym_private] = ACTIONS(1113), - [anon_sym_protected] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_any] = ACTIONS(1113), - [anon_sym_number] = ACTIONS(1113), - [anon_sym_boolean] = ACTIONS(1113), - [anon_sym_string] = ACTIONS(1113), - [anon_sym_symbol] = ACTIONS(1113), - [anon_sym_interface] = ACTIONS(1113), - [anon_sym_enum] = ACTIONS(1113), - [sym_readonly] = ACTIONS(1113), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1774), + [sym_arguments] = STATE(1774), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3484), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2036), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(2145), - [sym_identifier] = ACTIONS(2147), - [anon_sym_export] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_namespace] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_typeof] = ACTIONS(2147), - [anon_sym_import] = ACTIONS(2147), - [anon_sym_var] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_switch] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_with] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_debugger] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_throw] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2147), - [anon_sym_yield] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2147), - [anon_sym_class] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_function] = ACTIONS(2147), - [anon_sym_new] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2147), - [anon_sym_delete] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_this] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_true] = ACTIONS(2147), - [sym_false] = ACTIONS(2147), - [sym_null] = ACTIONS(2147), - [sym_undefined] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_abstract] = ACTIONS(2147), - [anon_sym_get] = ACTIONS(2147), - [anon_sym_set] = ACTIONS(2147), - [anon_sym_declare] = ACTIONS(2147), - [anon_sym_public] = ACTIONS(2147), - [anon_sym_private] = ACTIONS(2147), - [anon_sym_protected] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_any] = ACTIONS(2147), - [anon_sym_number] = ACTIONS(2147), - [anon_sym_boolean] = ACTIONS(2147), - [anon_sym_string] = ACTIONS(2147), - [anon_sym_symbol] = ACTIONS(2147), - [anon_sym_interface] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [sym_readonly] = ACTIONS(2147), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(2107), + [sym_arguments] = STATE(2107), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3318), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2040), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [609] = { - [ts_builtin_sym_end] = ACTIONS(2149), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [sym_readonly] = ACTIONS(2151), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1998), + [sym_arguments] = STATE(1998), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3365), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2044), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [610] = { - [sym_object] = STATE(2679), - [sym_array] = STATE(2688), - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3748), - [sym_nested_type_identifier] = STATE(2180), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2995), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2995), - [sym_generic_type] = STATE(2995), - [sym_type_query] = STATE(2995), - [sym_index_type_query] = STATE(2995), - [sym_lookup_type] = STATE(2995), - [sym_literal_type] = STATE(2995), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(2995), - [sym_flow_maybe_type] = STATE(2995), - [sym_parenthesized_type] = STATE(2995), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2995), - [sym_type_parameters] = STATE(3424), - [sym_array_type] = STATE(2995), - [sym__tuple_type_body] = STATE(469), - [sym_tuple_type] = STATE(2995), - [sym_union_type] = STATE(3042), - [sym_intersection_type] = STATE(3042), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_EQ] = ACTIONS(1950), - [anon_sym_namespace] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(921), - [anon_sym_typeof] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_COLON] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(921), - [anon_sym_new] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(971), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [anon_sym_declare] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_any] = ACTIONS(975), - [anon_sym_number] = ACTIONS(975), - [anon_sym_boolean] = ACTIONS(975), - [anon_sym_string] = ACTIONS(975), - [anon_sym_symbol] = ACTIONS(975), - [sym_readonly] = ACTIONS(977), - [anon_sym_infer] = ACTIONS(495), - [anon_sym_keyof] = ACTIONS(565), - [anon_sym_LBRACE_PIPE] = ACTIONS(499), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1724), + [sym_arguments] = STATE(1724), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3443), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2046), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2048), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(2153), - [sym_identifier] = ACTIONS(2155), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_default] = ACTIONS(2155), - [anon_sym_namespace] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_typeof] = ACTIONS(2155), - [anon_sym_import] = ACTIONS(2155), - [anon_sym_var] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_switch] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_with] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_debugger] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_throw] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_class] = ACTIONS(2155), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_function] = ACTIONS(2155), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2153), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_delete] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [anon_sym_SQUOTE] = ACTIONS(2153), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2153), - [sym_number] = ACTIONS(2153), - [sym_this] = ACTIONS(2155), - [sym_super] = ACTIONS(2155), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_null] = ACTIONS(2155), - [sym_undefined] = ACTIONS(2155), - [anon_sym_AT] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2155), - [anon_sym_abstract] = ACTIONS(2155), - [anon_sym_get] = ACTIONS(2155), - [anon_sym_set] = ACTIONS(2155), - [anon_sym_declare] = ACTIONS(2155), - [anon_sym_public] = ACTIONS(2155), - [anon_sym_private] = ACTIONS(2155), - [anon_sym_protected] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_any] = ACTIONS(2155), - [anon_sym_number] = ACTIONS(2155), - [anon_sym_boolean] = ACTIONS(2155), - [anon_sym_string] = ACTIONS(2155), - [anon_sym_symbol] = ACTIONS(2155), - [anon_sym_interface] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [sym_readonly] = ACTIONS(2155), + [sym_type_arguments] = STATE(521), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2054), + [anon_sym_export] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_namespace] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_typeof] = ACTIONS(2054), + [anon_sym_import] = ACTIONS(2054), + [anon_sym_var] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_else] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_switch] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_await] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [anon_sym_with] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_debugger] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_throw] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2054), + [anon_sym_yield] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_SLASH] = ACTIONS(2054), + [anon_sym_class] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_function] = ACTIONS(2054), + [anon_sym_new] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_void] = ACTIONS(2054), + [anon_sym_delete] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2052), + [sym_number] = ACTIONS(2052), + [sym_this] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_true] = ACTIONS(2054), + [sym_false] = ACTIONS(2054), + [sym_null] = ACTIONS(2054), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_abstract] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(2054), + [anon_sym_set] = ACTIONS(2054), + [anon_sym_declare] = ACTIONS(2054), + [anon_sym_public] = ACTIONS(2054), + [anon_sym_private] = ACTIONS(2054), + [anon_sym_protected] = ACTIONS(2054), + [anon_sym_module] = ACTIONS(2054), + [anon_sym_any] = ACTIONS(2054), + [anon_sym_number] = ACTIONS(2054), + [anon_sym_boolean] = ACTIONS(2054), + [anon_sym_string] = ACTIONS(2054), + [anon_sym_symbol] = ACTIONS(2054), + [anon_sym_interface] = ACTIONS(2054), + [anon_sym_extends] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [sym_readonly] = ACTIONS(2054), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2157), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2157), - [sym_number] = ACTIONS(2157), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym_readonly] = ACTIONS(2159), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1912), + [sym_arguments] = STATE(1912), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3403), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2059), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [613] = { - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_else] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2161), - [anon_sym_case] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2161), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2161), - [anon_sym_DASH_DASH] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2161), - [sym_number] = ACTIONS(2161), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym_readonly] = ACTIONS(2163), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1618), + [sym_arguments] = STATE(1618), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3493), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2030), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [614] = { - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2165), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2165), - [sym_number] = ACTIONS(2165), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_readonly] = ACTIONS(2167), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(2104), + [sym_arguments] = STATE(2104), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3347), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2061), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2171), - [anon_sym_export] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(2171), - [anon_sym_namespace] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_typeof] = ACTIONS(2171), - [anon_sym_import] = ACTIONS(2171), - [anon_sym_var] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_else] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_switch] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_await] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_do] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2171), - [anon_sym_with] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_debugger] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_throw] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_case] = ACTIONS(2171), - [anon_sym_yield] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_class] = ACTIONS(2171), - [anon_sym_async] = ACTIONS(2171), - [anon_sym_function] = ACTIONS(2171), - [anon_sym_new] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_void] = ACTIONS(2171), - [anon_sym_delete] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2169), - [sym_number] = ACTIONS(2169), - [sym_this] = ACTIONS(2171), - [sym_super] = ACTIONS(2171), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_null] = ACTIONS(2171), - [sym_undefined] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_abstract] = ACTIONS(2171), - [anon_sym_get] = ACTIONS(2171), - [anon_sym_set] = ACTIONS(2171), - [anon_sym_declare] = ACTIONS(2171), - [anon_sym_public] = ACTIONS(2171), - [anon_sym_private] = ACTIONS(2171), - [anon_sym_protected] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2171), - [anon_sym_any] = ACTIONS(2171), - [anon_sym_number] = ACTIONS(2171), - [anon_sym_boolean] = ACTIONS(2171), - [anon_sym_string] = ACTIONS(2171), - [anon_sym_symbol] = ACTIONS(2171), - [anon_sym_interface] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [sym_readonly] = ACTIONS(2171), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1905), + [sym_arguments] = STATE(1905), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3441), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2063), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [616] = { - [ts_builtin_sym_end] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym_readonly] = ACTIONS(2175), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(109), + [sym_arguments] = STATE(109), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3315), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [617] = { - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2179), - [anon_sym_export] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2179), - [anon_sym_namespace] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_typeof] = ACTIONS(2179), - [anon_sym_import] = ACTIONS(2179), - [anon_sym_var] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_else] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_switch] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [anon_sym_do] = ACTIONS(2179), - [anon_sym_try] = ACTIONS(2179), - [anon_sym_with] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_debugger] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_throw] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2177), - [anon_sym_case] = ACTIONS(2179), - [anon_sym_yield] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2179), - [anon_sym_class] = ACTIONS(2179), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_function] = ACTIONS(2179), - [anon_sym_new] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_void] = ACTIONS(2179), - [anon_sym_delete] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_DQUOTE] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2177), - [sym_number] = ACTIONS(2177), - [sym_this] = ACTIONS(2179), - [sym_super] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_null] = ACTIONS(2179), - [sym_undefined] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2179), - [anon_sym_abstract] = ACTIONS(2179), - [anon_sym_get] = ACTIONS(2179), - [anon_sym_set] = ACTIONS(2179), - [anon_sym_declare] = ACTIONS(2179), - [anon_sym_public] = ACTIONS(2179), - [anon_sym_private] = ACTIONS(2179), - [anon_sym_protected] = ACTIONS(2179), - [anon_sym_module] = ACTIONS(2179), - [anon_sym_any] = ACTIONS(2179), - [anon_sym_number] = ACTIONS(2179), - [anon_sym_boolean] = ACTIONS(2179), - [anon_sym_string] = ACTIONS(2179), - [anon_sym_symbol] = ACTIONS(2179), - [anon_sym_interface] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [sym_readonly] = ACTIONS(2179), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1567), + [sym_arguments] = STATE(1567), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3381), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(2034), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(2181), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym_readonly] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_namespace] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_with] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_debugger] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_finally] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_delete] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1076), + [sym_number] = ACTIONS(1076), + [sym_this] = ACTIONS(1078), + [sym_super] = ACTIONS(1078), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_protected] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_any] = ACTIONS(1078), + [anon_sym_number] = ACTIONS(1078), + [anon_sym_boolean] = ACTIONS(1078), + [anon_sym_string] = ACTIONS(1078), + [anon_sym_symbol] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [sym_readonly] = ACTIONS(1078), + [sym__automatic_semicolon] = ACTIONS(2071), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2187), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_typeof] = ACTIONS(2187), - [anon_sym_import] = ACTIONS(2187), - [anon_sym_var] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_else] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_switch] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_with] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_debugger] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_throw] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_case] = ACTIONS(2187), - [anon_sym_yield] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2187), - [anon_sym_class] = ACTIONS(2187), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_function] = ACTIONS(2187), - [anon_sym_new] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_void] = ACTIONS(2187), - [anon_sym_delete] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2185), - [sym_number] = ACTIONS(2185), - [sym_this] = ACTIONS(2187), - [sym_super] = ACTIONS(2187), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [sym_null] = ACTIONS(2187), - [sym_undefined] = ACTIONS(2187), - [anon_sym_AT] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_abstract] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(2187), - [anon_sym_set] = ACTIONS(2187), - [anon_sym_declare] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_private] = ACTIONS(2187), - [anon_sym_protected] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_any] = ACTIONS(2187), - [anon_sym_number] = ACTIONS(2187), - [anon_sym_boolean] = ACTIONS(2187), - [anon_sym_string] = ACTIONS(2187), - [anon_sym_symbol] = ACTIONS(2187), - [anon_sym_interface] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [sym_readonly] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(740), + [sym_identifier] = ACTIONS(742), + [anon_sym_export] = ACTIONS(742), + [anon_sym_default] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_type] = ACTIONS(742), + [anon_sym_typeof] = ACTIONS(742), + [anon_sym_import] = ACTIONS(742), + [anon_sym_var] = ACTIONS(742), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_else] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_switch] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_await] = ACTIONS(742), + [anon_sym_while] = ACTIONS(742), + [anon_sym_do] = ACTIONS(742), + [anon_sym_try] = ACTIONS(742), + [anon_sym_with] = ACTIONS(742), + [anon_sym_break] = ACTIONS(742), + [anon_sym_continue] = ACTIONS(742), + [anon_sym_debugger] = ACTIONS(742), + [anon_sym_return] = ACTIONS(742), + [anon_sym_throw] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_case] = ACTIONS(742), + [anon_sym_yield] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_class] = ACTIONS(742), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(742), + [anon_sym_new] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_void] = ACTIONS(742), + [anon_sym_delete] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(740), + [sym_number] = ACTIONS(740), + [sym_this] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_undefined] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_static] = ACTIONS(742), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_get] = ACTIONS(742), + [anon_sym_set] = ACTIONS(742), + [anon_sym_declare] = ACTIONS(742), + [anon_sym_public] = ACTIONS(742), + [anon_sym_private] = ACTIONS(742), + [anon_sym_protected] = ACTIONS(742), + [anon_sym_module] = ACTIONS(742), + [anon_sym_any] = ACTIONS(742), + [anon_sym_number] = ACTIONS(742), + [anon_sym_boolean] = ACTIONS(742), + [anon_sym_string] = ACTIONS(742), + [anon_sym_symbol] = ACTIONS(742), + [anon_sym_interface] = ACTIONS(742), + [anon_sym_extends] = ACTIONS(742), + [anon_sym_enum] = ACTIONS(742), + [sym_readonly] = ACTIONS(742), }, [620] = { - [ts_builtin_sym_end] = ACTIONS(2189), - [sym_identifier] = ACTIONS(2191), - [anon_sym_export] = ACTIONS(2191), - [anon_sym_default] = ACTIONS(2191), - [anon_sym_namespace] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_typeof] = ACTIONS(2191), - [anon_sym_import] = ACTIONS(2191), - [anon_sym_var] = ACTIONS(2191), - [anon_sym_let] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_switch] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2191), - [anon_sym_do] = ACTIONS(2191), - [anon_sym_try] = ACTIONS(2191), - [anon_sym_with] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_debugger] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_throw] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2191), - [anon_sym_yield] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2191), - [anon_sym_class] = ACTIONS(2191), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_function] = ACTIONS(2191), - [anon_sym_new] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2191), - [anon_sym_delete] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_this] = ACTIONS(2191), - [sym_super] = ACTIONS(2191), - [sym_true] = ACTIONS(2191), - [sym_false] = ACTIONS(2191), - [sym_null] = ACTIONS(2191), - [sym_undefined] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2191), - [anon_sym_abstract] = ACTIONS(2191), - [anon_sym_get] = ACTIONS(2191), - [anon_sym_set] = ACTIONS(2191), - [anon_sym_declare] = ACTIONS(2191), - [anon_sym_public] = ACTIONS(2191), - [anon_sym_private] = ACTIONS(2191), - [anon_sym_protected] = ACTIONS(2191), - [anon_sym_module] = ACTIONS(2191), - [anon_sym_any] = ACTIONS(2191), - [anon_sym_number] = ACTIONS(2191), - [anon_sym_boolean] = ACTIONS(2191), - [anon_sym_string] = ACTIONS(2191), - [anon_sym_symbol] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [sym_readonly] = ACTIONS(2191), + [sym_catch_clause] = STATE(637), + [sym_finally_clause] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2078), + [anon_sym_export] = ACTIONS(2078), + [anon_sym_default] = ACTIONS(2078), + [anon_sym_namespace] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_type] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2078), + [anon_sym_import] = ACTIONS(2078), + [anon_sym_var] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_else] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_switch] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_await] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [anon_sym_with] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_debugger] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_throw] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_case] = ACTIONS(2078), + [anon_sym_catch] = ACTIONS(2080), + [anon_sym_finally] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2076), + [anon_sym_SLASH] = ACTIONS(2078), + [anon_sym_class] = ACTIONS(2078), + [anon_sym_async] = ACTIONS(2078), + [anon_sym_function] = ACTIONS(2078), + [anon_sym_new] = ACTIONS(2078), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2076), + [anon_sym_void] = ACTIONS(2078), + [anon_sym_delete] = ACTIONS(2078), + [anon_sym_PLUS_PLUS] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2076), + [sym_number] = ACTIONS(2076), + [sym_this] = ACTIONS(2078), + [sym_super] = ACTIONS(2078), + [sym_true] = ACTIONS(2078), + [sym_false] = ACTIONS(2078), + [sym_null] = ACTIONS(2078), + [sym_undefined] = ACTIONS(2078), + [anon_sym_AT] = ACTIONS(2076), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_abstract] = ACTIONS(2078), + [anon_sym_get] = ACTIONS(2078), + [anon_sym_set] = ACTIONS(2078), + [anon_sym_declare] = ACTIONS(2078), + [anon_sym_public] = ACTIONS(2078), + [anon_sym_private] = ACTIONS(2078), + [anon_sym_protected] = ACTIONS(2078), + [anon_sym_module] = ACTIONS(2078), + [anon_sym_any] = ACTIONS(2078), + [anon_sym_number] = ACTIONS(2078), + [anon_sym_boolean] = ACTIONS(2078), + [anon_sym_string] = ACTIONS(2078), + [anon_sym_symbol] = ACTIONS(2078), + [anon_sym_interface] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [sym_readonly] = ACTIONS(2078), }, [621] = { - [ts_builtin_sym_end] = ACTIONS(2193), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym_readonly] = ACTIONS(2195), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_export] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_namespace] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_type] = ACTIONS(597), + [anon_sym_typeof] = ACTIONS(597), + [anon_sym_import] = ACTIONS(597), + [anon_sym_var] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_else] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_await] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_debugger] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(2084), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_function] = ACTIONS(597), + [anon_sym_new] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_null] = ACTIONS(597), + [sym_undefined] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_static] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_get] = ACTIONS(597), + [anon_sym_set] = ACTIONS(597), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(597), + [anon_sym_private] = ACTIONS(597), + [anon_sym_protected] = ACTIONS(597), + [anon_sym_module] = ACTIONS(597), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_extends] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [sym_readonly] = ACTIONS(597), }, [622] = { - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [sym_readonly] = ACTIONS(2199), + [sym_type_arguments] = STATE(521), + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_namespace] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym_import] = ACTIONS(1800), + [anon_sym_var] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_await] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1800), + [anon_sym_with] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_debugger] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_throw] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1800), + [anon_sym_class] = ACTIONS(1800), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_function] = ACTIONS(1800), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_void] = ACTIONS(1800), + [anon_sym_delete] = ACTIONS(1800), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1798), + [sym_number] = ACTIONS(1798), + [sym_this] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_undefined] = ACTIONS(1800), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_abstract] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1800), + [anon_sym_declare] = ACTIONS(1800), + [anon_sym_public] = ACTIONS(1800), + [anon_sym_private] = ACTIONS(1800), + [anon_sym_protected] = ACTIONS(1800), + [anon_sym_module] = ACTIONS(1800), + [anon_sym_any] = ACTIONS(1800), + [anon_sym_number] = ACTIONS(1800), + [anon_sym_boolean] = ACTIONS(1800), + [anon_sym_string] = ACTIONS(1800), + [anon_sym_symbol] = ACTIONS(1800), + [anon_sym_interface] = ACTIONS(1800), + [anon_sym_extends] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [sym_readonly] = ACTIONS(1800), }, [623] = { - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_case] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2201), - [sym_number] = ACTIONS(2201), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym_readonly] = ACTIONS(2203), + [sym__call_signature] = STATE(4135), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym_formal_parameters] = STATE(3283), + [sym_call_type_arguments] = STATE(3522), + [sym_type_parameters] = STATE(3987), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym_readonly] = ACTIONS(1890), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(2205), - [sym_identifier] = ACTIONS(2207), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_default] = ACTIONS(2207), - [anon_sym_namespace] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_typeof] = ACTIONS(2207), - [anon_sym_import] = ACTIONS(2207), - [anon_sym_var] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_do] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_with] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_debugger] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_throw] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2207), - [anon_sym_yield] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2207), - [anon_sym_class] = ACTIONS(2207), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_function] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2207), - [anon_sym_delete] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_this] = ACTIONS(2207), - [sym_super] = ACTIONS(2207), - [sym_true] = ACTIONS(2207), - [sym_false] = ACTIONS(2207), - [sym_null] = ACTIONS(2207), - [sym_undefined] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2207), - [anon_sym_abstract] = ACTIONS(2207), - [anon_sym_get] = ACTIONS(2207), - [anon_sym_set] = ACTIONS(2207), - [anon_sym_declare] = ACTIONS(2207), - [anon_sym_public] = ACTIONS(2207), - [anon_sym_private] = ACTIONS(2207), - [anon_sym_protected] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_any] = ACTIONS(2207), - [anon_sym_number] = ACTIONS(2207), - [anon_sym_boolean] = ACTIONS(2207), - [anon_sym_string] = ACTIONS(2207), - [anon_sym_symbol] = ACTIONS(2207), - [anon_sym_interface] = ACTIONS(2207), - [anon_sym_enum] = ACTIONS(2207), - [sym_readonly] = ACTIONS(2207), + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2088), + [anon_sym_export] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_namespace] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_type] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym_import] = ACTIONS(2088), + [anon_sym_var] = ACTIONS(2088), + [anon_sym_let] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_else] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_await] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2088), + [anon_sym_with] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_debugger] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_throw] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_yield] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_SLASH] = ACTIONS(2088), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_function] = ACTIONS(2088), + [anon_sym_new] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_void] = ACTIONS(2088), + [anon_sym_delete] = ACTIONS(2088), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2086), + [sym_number] = ACTIONS(2086), + [sym_this] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_undefined] = ACTIONS(2088), + [anon_sym_AT] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_abstract] = ACTIONS(2088), + [anon_sym_get] = ACTIONS(2088), + [anon_sym_set] = ACTIONS(2088), + [anon_sym_declare] = ACTIONS(2088), + [anon_sym_public] = ACTIONS(2088), + [anon_sym_private] = ACTIONS(2088), + [anon_sym_protected] = ACTIONS(2088), + [anon_sym_module] = ACTIONS(2088), + [anon_sym_any] = ACTIONS(2088), + [anon_sym_number] = ACTIONS(2088), + [anon_sym_boolean] = ACTIONS(2088), + [anon_sym_string] = ACTIONS(2088), + [anon_sym_symbol] = ACTIONS(2088), + [anon_sym_interface] = ACTIONS(2088), + [anon_sym_extends] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2088), + [sym_readonly] = ACTIONS(2088), }, [625] = { - [ts_builtin_sym_end] = ACTIONS(2209), - [sym_identifier] = ACTIONS(2211), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_typeof] = ACTIONS(2211), - [anon_sym_import] = ACTIONS(2211), - [anon_sym_var] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_else] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_switch] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_await] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_do] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_with] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_debugger] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_throw] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2209), - [anon_sym_case] = ACTIONS(2211), - [anon_sym_yield] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2211), - [anon_sym_class] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2211), - [anon_sym_new] = ACTIONS(2211), - [anon_sym_PLUS] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_void] = ACTIONS(2211), - [anon_sym_delete] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2209), - [sym_number] = ACTIONS(2209), - [sym_this] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_true] = ACTIONS(2211), - [sym_false] = ACTIONS(2211), - [sym_null] = ACTIONS(2211), - [sym_undefined] = ACTIONS(2211), - [anon_sym_AT] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_abstract] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_interface] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [sym_readonly] = ACTIONS(2211), + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_namespace] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_type] = ACTIONS(1082), + [anon_sym_typeof] = ACTIONS(1082), + [anon_sym_import] = ACTIONS(1082), + [anon_sym_var] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_with] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_debugger] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_throw] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_class] = ACTIONS(1082), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_void] = ACTIONS(1082), + [anon_sym_delete] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1080), + [sym_number] = ACTIONS(1080), + [sym_this] = ACTIONS(1082), + [sym_super] = ACTIONS(1082), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_undefined] = ACTIONS(1082), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_abstract] = ACTIONS(1082), + [anon_sym_get] = ACTIONS(1082), + [anon_sym_set] = ACTIONS(1082), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_public] = ACTIONS(1082), + [anon_sym_private] = ACTIONS(1082), + [anon_sym_protected] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_any] = ACTIONS(1082), + [anon_sym_number] = ACTIONS(1082), + [anon_sym_boolean] = ACTIONS(1082), + [anon_sym_string] = ACTIONS(1082), + [anon_sym_symbol] = ACTIONS(1082), + [anon_sym_interface] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [sym_readonly] = ACTIONS(1082), + [anon_sym_PIPE_RBRACE] = ACTIONS(1080), + [sym__automatic_semicolon] = ACTIONS(1080), }, [626] = { - [ts_builtin_sym_end] = ACTIONS(2213), - [sym_identifier] = ACTIONS(2215), - [anon_sym_export] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_typeof] = ACTIONS(2215), - [anon_sym_import] = ACTIONS(2215), - [anon_sym_var] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_switch] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_do] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_with] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_debugger] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_throw] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2215), - [anon_sym_yield] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2215), - [anon_sym_class] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_function] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2215), - [anon_sym_delete] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_this] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_true] = ACTIONS(2215), - [sym_false] = ACTIONS(2215), - [sym_null] = ACTIONS(2215), - [sym_undefined] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_abstract] = ACTIONS(2215), - [anon_sym_get] = ACTIONS(2215), - [anon_sym_set] = ACTIONS(2215), - [anon_sym_declare] = ACTIONS(2215), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_private] = ACTIONS(2215), - [anon_sym_protected] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_any] = ACTIONS(2215), - [anon_sym_number] = ACTIONS(2215), - [anon_sym_boolean] = ACTIONS(2215), - [anon_sym_string] = ACTIONS(2215), - [anon_sym_symbol] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [sym_readonly] = ACTIONS(2215), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_export] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_await] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_debugger] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_function] = ACTIONS(1108), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_void] = ACTIONS(1108), + [anon_sym_delete] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1106), + [sym_number] = ACTIONS(1106), + [sym_this] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_get] = ACTIONS(1108), + [anon_sym_set] = ACTIONS(1108), + [anon_sym_declare] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_protected] = ACTIONS(1108), + [anon_sym_module] = ACTIONS(1108), + [anon_sym_any] = ACTIONS(1108), + [anon_sym_number] = ACTIONS(1108), + [anon_sym_boolean] = ACTIONS(1108), + [anon_sym_string] = ACTIONS(1108), + [anon_sym_symbol] = ACTIONS(1108), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [sym_readonly] = ACTIONS(1108), + [anon_sym_PIPE_RBRACE] = ACTIONS(1106), + [sym__automatic_semicolon] = ACTIONS(1106), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(2217), - [sym_identifier] = ACTIONS(2219), - [anon_sym_export] = ACTIONS(2219), - [anon_sym_default] = ACTIONS(2219), - [anon_sym_namespace] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_typeof] = ACTIONS(2219), - [anon_sym_import] = ACTIONS(2219), - [anon_sym_var] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_else] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_switch] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_await] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [anon_sym_do] = ACTIONS(2219), - [anon_sym_try] = ACTIONS(2219), - [anon_sym_with] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_debugger] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_throw] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2217), - [anon_sym_case] = ACTIONS(2219), - [anon_sym_yield] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_class] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_function] = ACTIONS(2219), - [anon_sym_new] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_void] = ACTIONS(2219), - [anon_sym_delete] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2217), - [sym_number] = ACTIONS(2217), - [sym_this] = ACTIONS(2219), - [sym_super] = ACTIONS(2219), - [sym_true] = ACTIONS(2219), - [sym_false] = ACTIONS(2219), - [sym_null] = ACTIONS(2219), - [sym_undefined] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_abstract] = ACTIONS(2219), - [anon_sym_get] = ACTIONS(2219), - [anon_sym_set] = ACTIONS(2219), - [anon_sym_declare] = ACTIONS(2219), - [anon_sym_public] = ACTIONS(2219), - [anon_sym_private] = ACTIONS(2219), - [anon_sym_protected] = ACTIONS(2219), - [anon_sym_module] = ACTIONS(2219), - [anon_sym_any] = ACTIONS(2219), - [anon_sym_number] = ACTIONS(2219), - [anon_sym_boolean] = ACTIONS(2219), - [anon_sym_string] = ACTIONS(2219), - [anon_sym_symbol] = ACTIONS(2219), - [anon_sym_interface] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [sym_readonly] = ACTIONS(2219), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_namespace] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_with] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_debugger] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_finally] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_delete] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1076), + [sym_number] = ACTIONS(1076), + [sym_this] = ACTIONS(1078), + [sym_super] = ACTIONS(1078), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_protected] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_any] = ACTIONS(1078), + [anon_sym_number] = ACTIONS(1078), + [anon_sym_boolean] = ACTIONS(1078), + [anon_sym_string] = ACTIONS(1078), + [anon_sym_symbol] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [sym_readonly] = ACTIONS(1078), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(2221), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [sym_readonly] = ACTIONS(2223), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(1068), + [anon_sym_var] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_await] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_with] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_throw] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_yield] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_class] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(1068), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1068), + [anon_sym_delete] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_number] = ACTIONS(1066), + [sym_this] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_undefined] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_abstract] = 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_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_interface] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [sym_readonly] = ACTIONS(1068), + [anon_sym_PIPE_RBRACE] = ACTIONS(1066), + [sym__automatic_semicolon] = ACTIONS(2096), }, [629] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [sym_readonly] = ACTIONS(2227), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_typeof] = ACTIONS(1146), + [anon_sym_import] = ACTIONS(1146), + [anon_sym_var] = ACTIONS(1146), + [anon_sym_let] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_await] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1146), + [anon_sym_with] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_debugger] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(1146), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(1146), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_void] = ACTIONS(1146), + [anon_sym_delete] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1144), + [sym_this] = ACTIONS(1146), + [sym_super] = ACTIONS(1146), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_abstract] = ACTIONS(1146), + [anon_sym_get] = ACTIONS(1146), + [anon_sym_set] = ACTIONS(1146), + [anon_sym_declare] = ACTIONS(1146), + [anon_sym_public] = ACTIONS(1146), + [anon_sym_private] = ACTIONS(1146), + [anon_sym_protected] = ACTIONS(1146), + [anon_sym_module] = ACTIONS(1146), + [anon_sym_any] = ACTIONS(1146), + [anon_sym_number] = ACTIONS(1146), + [anon_sym_boolean] = ACTIONS(1146), + [anon_sym_string] = ACTIONS(1146), + [anon_sym_symbol] = ACTIONS(1146), + [anon_sym_interface] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [sym_readonly] = ACTIONS(1146), + [anon_sym_PIPE_RBRACE] = ACTIONS(1144), + [sym__automatic_semicolon] = ACTIONS(1144), }, [630] = { - [ts_builtin_sym_end] = ACTIONS(2229), - [sym_identifier] = ACTIONS(2231), - [anon_sym_export] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_namespace] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2231), - [anon_sym_typeof] = ACTIONS(2231), - [anon_sym_import] = ACTIONS(2231), - [anon_sym_var] = ACTIONS(2231), - [anon_sym_let] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_switch] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [anon_sym_do] = ACTIONS(2231), - [anon_sym_try] = ACTIONS(2231), - [anon_sym_with] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_debugger] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_throw] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_case] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2231), - [anon_sym_class] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(2231), - [anon_sym_function] = ACTIONS(2231), - [anon_sym_new] = ACTIONS(2231), - [anon_sym_PLUS] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2231), - [anon_sym_delete] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_this] = ACTIONS(2231), - [sym_super] = ACTIONS(2231), - [sym_true] = ACTIONS(2231), - [sym_false] = ACTIONS(2231), - [sym_null] = ACTIONS(2231), - [sym_undefined] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2231), - [anon_sym_abstract] = ACTIONS(2231), - [anon_sym_get] = ACTIONS(2231), - [anon_sym_set] = ACTIONS(2231), - [anon_sym_declare] = ACTIONS(2231), - [anon_sym_public] = ACTIONS(2231), - [anon_sym_private] = ACTIONS(2231), - [anon_sym_protected] = ACTIONS(2231), - [anon_sym_module] = ACTIONS(2231), - [anon_sym_any] = ACTIONS(2231), - [anon_sym_number] = ACTIONS(2231), - [anon_sym_boolean] = ACTIONS(2231), - [anon_sym_string] = ACTIONS(2231), - [anon_sym_symbol] = ACTIONS(2231), - [anon_sym_interface] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [sym_readonly] = ACTIONS(2231), + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2100), + [anon_sym_export] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(2100), + [anon_sym_import] = ACTIONS(2100), + [anon_sym_var] = ACTIONS(2100), + [anon_sym_let] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [anon_sym_with] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_debugger] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_throw] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_yield] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_SLASH] = ACTIONS(2100), + [anon_sym_class] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(2100), + [anon_sym_function] = ACTIONS(2100), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_void] = ACTIONS(2100), + [anon_sym_delete] = ACTIONS(2100), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2098), + [sym_number] = ACTIONS(2098), + [sym_this] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [sym_null] = ACTIONS(2100), + [sym_undefined] = ACTIONS(2100), + [anon_sym_AT] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_abstract] = ACTIONS(2100), + [anon_sym_get] = ACTIONS(2100), + [anon_sym_set] = ACTIONS(2100), + [anon_sym_declare] = ACTIONS(2100), + [anon_sym_public] = ACTIONS(2100), + [anon_sym_private] = ACTIONS(2100), + [anon_sym_protected] = ACTIONS(2100), + [anon_sym_module] = ACTIONS(2100), + [anon_sym_any] = ACTIONS(2100), + [anon_sym_number] = ACTIONS(2100), + [anon_sym_boolean] = ACTIONS(2100), + [anon_sym_string] = ACTIONS(2100), + [anon_sym_symbol] = ACTIONS(2100), + [anon_sym_interface] = ACTIONS(2100), + [anon_sym_extends] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2100), + [sym_readonly] = ACTIONS(2100), }, [631] = { - [ts_builtin_sym_end] = ACTIONS(2233), - [sym_identifier] = ACTIONS(2235), - [anon_sym_export] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_namespace] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_typeof] = ACTIONS(2235), - [anon_sym_import] = ACTIONS(2235), - [anon_sym_var] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_switch] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [anon_sym_do] = ACTIONS(2235), - [anon_sym_try] = ACTIONS(2235), - [anon_sym_with] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_debugger] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_throw] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_case] = ACTIONS(2235), - [anon_sym_yield] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2235), - [anon_sym_class] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(2235), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_PLUS] = ACTIONS(2235), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2235), - [anon_sym_delete] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_this] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_true] = ACTIONS(2235), - [sym_false] = ACTIONS(2235), - [sym_null] = ACTIONS(2235), - [sym_undefined] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_abstract] = ACTIONS(2235), - [anon_sym_get] = ACTIONS(2235), - [anon_sym_set] = ACTIONS(2235), - [anon_sym_declare] = ACTIONS(2235), - [anon_sym_public] = ACTIONS(2235), - [anon_sym_private] = ACTIONS(2235), - [anon_sym_protected] = ACTIONS(2235), - [anon_sym_module] = ACTIONS(2235), - [anon_sym_any] = ACTIONS(2235), - [anon_sym_number] = ACTIONS(2235), - [anon_sym_boolean] = ACTIONS(2235), - [anon_sym_string] = ACTIONS(2235), - [anon_sym_symbol] = ACTIONS(2235), - [anon_sym_interface] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [sym_readonly] = ACTIONS(2235), + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2104), + [anon_sym_export] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_namespace] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym_import] = ACTIONS(2104), + [anon_sym_var] = ACTIONS(2104), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_else] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_await] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [anon_sym_with] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_debugger] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_throw] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_yield] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_SLASH] = ACTIONS(2104), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_async] = ACTIONS(2104), + [anon_sym_function] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_void] = ACTIONS(2104), + [anon_sym_delete] = ACTIONS(2104), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2102), + [sym_number] = ACTIONS(2102), + [sym_this] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_undefined] = ACTIONS(2104), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_abstract] = ACTIONS(2104), + [anon_sym_get] = ACTIONS(2104), + [anon_sym_set] = ACTIONS(2104), + [anon_sym_declare] = ACTIONS(2104), + [anon_sym_public] = ACTIONS(2104), + [anon_sym_private] = ACTIONS(2104), + [anon_sym_protected] = ACTIONS(2104), + [anon_sym_module] = ACTIONS(2104), + [anon_sym_any] = ACTIONS(2104), + [anon_sym_number] = ACTIONS(2104), + [anon_sym_boolean] = ACTIONS(2104), + [anon_sym_string] = ACTIONS(2104), + [anon_sym_symbol] = ACTIONS(2104), + [anon_sym_interface] = ACTIONS(2104), + [anon_sym_extends] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2104), + [sym_readonly] = ACTIONS(2104), }, [632] = { - [ts_builtin_sym_end] = ACTIONS(2237), - [sym_identifier] = ACTIONS(2239), - [anon_sym_export] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_typeof] = ACTIONS(2239), - [anon_sym_import] = ACTIONS(2239), - [anon_sym_var] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_switch] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [anon_sym_do] = ACTIONS(2239), - [anon_sym_try] = ACTIONS(2239), - [anon_sym_with] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_debugger] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_throw] = ACTIONS(2239), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2239), - [anon_sym_yield] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2239), - [anon_sym_class] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_function] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2239), - [anon_sym_delete] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_this] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_true] = ACTIONS(2239), - [sym_false] = ACTIONS(2239), - [sym_null] = ACTIONS(2239), - [sym_undefined] = ACTIONS(2239), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_abstract] = ACTIONS(2239), - [anon_sym_get] = ACTIONS(2239), - [anon_sym_set] = ACTIONS(2239), - [anon_sym_declare] = ACTIONS(2239), - [anon_sym_public] = ACTIONS(2239), - [anon_sym_private] = ACTIONS(2239), - [anon_sym_protected] = ACTIONS(2239), - [anon_sym_module] = ACTIONS(2239), - [anon_sym_any] = ACTIONS(2239), - [anon_sym_number] = ACTIONS(2239), - [anon_sym_boolean] = ACTIONS(2239), - [anon_sym_string] = ACTIONS(2239), - [anon_sym_symbol] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [sym_readonly] = ACTIONS(2239), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_typeof] = ACTIONS(1146), + [anon_sym_import] = ACTIONS(1146), + [anon_sym_var] = ACTIONS(1146), + [anon_sym_let] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_await] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1146), + [anon_sym_with] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_debugger] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_catch] = ACTIONS(1146), + [anon_sym_finally] = ACTIONS(1146), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(1146), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(1146), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_void] = ACTIONS(1146), + [anon_sym_delete] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1144), + [sym_this] = ACTIONS(1146), + [sym_super] = ACTIONS(1146), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_abstract] = ACTIONS(1146), + [anon_sym_get] = ACTIONS(1146), + [anon_sym_set] = ACTIONS(1146), + [anon_sym_declare] = ACTIONS(1146), + [anon_sym_public] = ACTIONS(1146), + [anon_sym_private] = ACTIONS(1146), + [anon_sym_protected] = ACTIONS(1146), + [anon_sym_module] = ACTIONS(1146), + [anon_sym_any] = ACTIONS(1146), + [anon_sym_number] = ACTIONS(1146), + [anon_sym_boolean] = ACTIONS(1146), + [anon_sym_string] = ACTIONS(1146), + [anon_sym_symbol] = ACTIONS(1146), + [anon_sym_interface] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [sym_readonly] = ACTIONS(1146), }, [633] = { - [ts_builtin_sym_end] = ACTIONS(2241), - [sym_identifier] = ACTIONS(2243), - [anon_sym_export] = ACTIONS(2243), - [anon_sym_default] = ACTIONS(2243), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2243), - [anon_sym_typeof] = ACTIONS(2243), - [anon_sym_import] = ACTIONS(2243), - [anon_sym_var] = ACTIONS(2243), - [anon_sym_let] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [anon_sym_do] = ACTIONS(2243), - [anon_sym_try] = ACTIONS(2243), - [anon_sym_with] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_debugger] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_throw] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_case] = ACTIONS(2243), - [anon_sym_yield] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2243), - [anon_sym_class] = ACTIONS(2243), - [anon_sym_async] = ACTIONS(2243), - [anon_sym_function] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2243), - [anon_sym_delete] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_this] = ACTIONS(2243), - [sym_super] = ACTIONS(2243), - [sym_true] = ACTIONS(2243), - [sym_false] = ACTIONS(2243), - [sym_null] = ACTIONS(2243), - [sym_undefined] = ACTIONS(2243), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2243), - [anon_sym_abstract] = ACTIONS(2243), - [anon_sym_get] = ACTIONS(2243), - [anon_sym_set] = ACTIONS(2243), - [anon_sym_declare] = ACTIONS(2243), - [anon_sym_public] = ACTIONS(2243), - [anon_sym_private] = ACTIONS(2243), - [anon_sym_protected] = ACTIONS(2243), - [anon_sym_module] = ACTIONS(2243), - [anon_sym_any] = ACTIONS(2243), - [anon_sym_number] = ACTIONS(2243), - [anon_sym_boolean] = ACTIONS(2243), - [anon_sym_string] = ACTIONS(2243), - [anon_sym_symbol] = ACTIONS(2243), - [anon_sym_interface] = ACTIONS(2243), - [anon_sym_enum] = ACTIONS(2243), - [sym_readonly] = ACTIONS(2243), + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_namespace] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym_import] = ACTIONS(2108), + [anon_sym_var] = ACTIONS(2108), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_await] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_with] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_debugger] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_throw] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_yield] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_SLASH] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_async] = ACTIONS(2108), + [anon_sym_function] = ACTIONS(2108), + [anon_sym_new] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_void] = ACTIONS(2108), + [anon_sym_delete] = ACTIONS(2108), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2106), + [sym_number] = ACTIONS(2106), + [sym_this] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_undefined] = ACTIONS(2108), + [anon_sym_AT] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_abstract] = ACTIONS(2108), + [anon_sym_get] = ACTIONS(2108), + [anon_sym_set] = ACTIONS(2108), + [anon_sym_declare] = ACTIONS(2108), + [anon_sym_public] = ACTIONS(2108), + [anon_sym_private] = ACTIONS(2108), + [anon_sym_protected] = ACTIONS(2108), + [anon_sym_module] = ACTIONS(2108), + [anon_sym_any] = ACTIONS(2108), + [anon_sym_number] = ACTIONS(2108), + [anon_sym_boolean] = ACTIONS(2108), + [anon_sym_string] = ACTIONS(2108), + [anon_sym_symbol] = ACTIONS(2108), + [anon_sym_interface] = ACTIONS(2108), + [anon_sym_extends] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [sym_readonly] = ACTIONS(2108), }, [634] = { - [ts_builtin_sym_end] = ACTIONS(2245), - [sym_identifier] = ACTIONS(2247), - [anon_sym_export] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_namespace] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2247), - [anon_sym_typeof] = ACTIONS(2247), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2247), - [anon_sym_let] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_switch] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [anon_sym_do] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2247), - [anon_sym_with] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_debugger] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_throw] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_case] = ACTIONS(2247), - [anon_sym_yield] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2247), - [anon_sym_class] = ACTIONS(2247), - [anon_sym_async] = ACTIONS(2247), - [anon_sym_function] = ACTIONS(2247), - [anon_sym_new] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2247), - [anon_sym_delete] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_this] = ACTIONS(2247), - [sym_super] = ACTIONS(2247), - [sym_true] = ACTIONS(2247), - [sym_false] = ACTIONS(2247), - [sym_null] = ACTIONS(2247), - [sym_undefined] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2247), - [anon_sym_abstract] = ACTIONS(2247), - [anon_sym_get] = ACTIONS(2247), - [anon_sym_set] = ACTIONS(2247), - [anon_sym_declare] = ACTIONS(2247), - [anon_sym_public] = ACTIONS(2247), - [anon_sym_private] = ACTIONS(2247), - [anon_sym_protected] = ACTIONS(2247), - [anon_sym_module] = ACTIONS(2247), - [anon_sym_any] = ACTIONS(2247), - [anon_sym_number] = ACTIONS(2247), - [anon_sym_boolean] = ACTIONS(2247), - [anon_sym_string] = ACTIONS(2247), - [anon_sym_symbol] = ACTIONS(2247), - [anon_sym_interface] = ACTIONS(2247), - [anon_sym_enum] = ACTIONS(2247), - [sym_readonly] = ACTIONS(2247), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_namespace] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_with] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_debugger] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_delete] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1076), + [sym_number] = ACTIONS(1076), + [sym_this] = ACTIONS(1078), + [sym_super] = ACTIONS(1078), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_protected] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_any] = ACTIONS(1078), + [anon_sym_number] = ACTIONS(1078), + [anon_sym_boolean] = ACTIONS(1078), + [anon_sym_string] = ACTIONS(1078), + [anon_sym_symbol] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [sym_readonly] = ACTIONS(1078), + [anon_sym_PIPE_RBRACE] = ACTIONS(1076), + [sym__automatic_semicolon] = ACTIONS(1076), }, [635] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_identifier] = ACTIONS(1105), - [anon_sym_export] = ACTIONS(1105), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_namespace] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_type] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(1105), - [anon_sym_var] = ACTIONS(1105), - [anon_sym_let] = ACTIONS(1105), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_with] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_debugger] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_throw] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_case] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_async] = ACTIONS(1105), - [anon_sym_function] = ACTIONS(1105), - [anon_sym_new] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1103), - [sym_number] = ACTIONS(1103), - [sym_this] = ACTIONS(1105), - [sym_super] = ACTIONS(1105), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_null] = ACTIONS(1105), - [sym_undefined] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_abstract] = ACTIONS(1105), - [anon_sym_get] = ACTIONS(1105), - [anon_sym_set] = ACTIONS(1105), - [anon_sym_declare] = ACTIONS(1105), - [anon_sym_public] = ACTIONS(1105), - [anon_sym_private] = ACTIONS(1105), - [anon_sym_protected] = ACTIONS(1105), - [anon_sym_module] = ACTIONS(1105), - [anon_sym_any] = ACTIONS(1105), - [anon_sym_number] = ACTIONS(1105), - [anon_sym_boolean] = ACTIONS(1105), - [anon_sym_string] = ACTIONS(1105), - [anon_sym_symbol] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [sym_readonly] = ACTIONS(1105), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_namespace] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_with] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_debugger] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_delete] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1076), + [sym_number] = ACTIONS(1076), + [sym_this] = ACTIONS(1078), + [sym_super] = ACTIONS(1078), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [anon_sym_declare] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_protected] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_any] = ACTIONS(1078), + [anon_sym_number] = ACTIONS(1078), + [anon_sym_boolean] = ACTIONS(1078), + [anon_sym_string] = ACTIONS(1078), + [anon_sym_symbol] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [sym_readonly] = ACTIONS(1078), + [anon_sym_PIPE_RBRACE] = ACTIONS(1076), + [sym__automatic_semicolon] = ACTIONS(2110), }, [636] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [anon_sym_export] = ACTIONS(1215), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_type] = ACTIONS(1215), - [anon_sym_typeof] = ACTIONS(1215), - [anon_sym_import] = ACTIONS(1215), - [anon_sym_var] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_switch] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_await] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_debugger] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_throw] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_class] = ACTIONS(1215), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_function] = ACTIONS(1215), - [anon_sym_new] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_void] = ACTIONS(1215), - [anon_sym_delete] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1213), - [sym_number] = ACTIONS(1213), - [sym_this] = ACTIONS(1215), - [sym_super] = ACTIONS(1215), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [sym_null] = ACTIONS(1215), - [sym_undefined] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_abstract] = ACTIONS(1215), - [anon_sym_get] = ACTIONS(1215), - [anon_sym_set] = ACTIONS(1215), - [anon_sym_declare] = ACTIONS(1215), - [anon_sym_public] = ACTIONS(1215), - [anon_sym_private] = ACTIONS(1215), - [anon_sym_protected] = ACTIONS(1215), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_any] = ACTIONS(1215), - [anon_sym_number] = ACTIONS(1215), - [anon_sym_boolean] = ACTIONS(1215), - [anon_sym_string] = ACTIONS(1215), - [anon_sym_symbol] = ACTIONS(1215), - [anon_sym_interface] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [sym_readonly] = ACTIONS(1215), + [sym_statement_block] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1060), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_namespace] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1060), + [anon_sym_typeof] = ACTIONS(1060), + [anon_sym_import] = ACTIONS(1060), + [anon_sym_var] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_with] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_debugger] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_throw] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_yield] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(2114), + [anon_sym_class] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_void] = ACTIONS(1060), + [anon_sym_delete] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1058), + [sym_number] = ACTIONS(1058), + [sym_this] = ACTIONS(1060), + [sym_super] = ACTIONS(1060), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_abstract] = ACTIONS(1060), + [anon_sym_get] = ACTIONS(1060), + [anon_sym_set] = ACTIONS(1060), + [anon_sym_declare] = ACTIONS(1060), + [anon_sym_public] = ACTIONS(1060), + [anon_sym_private] = ACTIONS(1060), + [anon_sym_protected] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_any] = ACTIONS(1060), + [anon_sym_number] = ACTIONS(1060), + [anon_sym_boolean] = ACTIONS(1060), + [anon_sym_string] = ACTIONS(1060), + [anon_sym_symbol] = ACTIONS(1060), + [anon_sym_interface] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [sym_readonly] = ACTIONS(1060), }, [637] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym_readonly] = ACTIONS(2251), + [sym_finally_clause] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(2116), + [sym_identifier] = ACTIONS(2118), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_default] = ACTIONS(2118), + [anon_sym_namespace] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2118), + [anon_sym_typeof] = ACTIONS(2118), + [anon_sym_import] = ACTIONS(2118), + [anon_sym_var] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2116), + [anon_sym_else] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_switch] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2116), + [anon_sym_await] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_with] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_debugger] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_throw] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2118), + [anon_sym_finally] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_class] = ACTIONS(2118), + [anon_sym_async] = ACTIONS(2118), + [anon_sym_function] = ACTIONS(2118), + [anon_sym_new] = ACTIONS(2118), + [anon_sym_PLUS] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2116), + [anon_sym_void] = ACTIONS(2118), + [anon_sym_delete] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_SQUOTE] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2116), + [sym_number] = ACTIONS(2116), + [sym_this] = ACTIONS(2118), + [sym_super] = ACTIONS(2118), + [sym_true] = ACTIONS(2118), + [sym_false] = ACTIONS(2118), + [sym_null] = ACTIONS(2118), + [sym_undefined] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_abstract] = ACTIONS(2118), + [anon_sym_get] = ACTIONS(2118), + [anon_sym_set] = ACTIONS(2118), + [anon_sym_declare] = ACTIONS(2118), + [anon_sym_public] = ACTIONS(2118), + [anon_sym_private] = ACTIONS(2118), + [anon_sym_protected] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_any] = ACTIONS(2118), + [anon_sym_number] = ACTIONS(2118), + [anon_sym_boolean] = ACTIONS(2118), + [anon_sym_string] = ACTIONS(2118), + [anon_sym_symbol] = ACTIONS(2118), + [anon_sym_interface] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [sym_readonly] = ACTIONS(2118), }, [638] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [anon_sym_export] = ACTIONS(1215), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_type] = ACTIONS(1215), - [anon_sym_typeof] = ACTIONS(1215), - [anon_sym_import] = ACTIONS(1215), - [anon_sym_var] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_switch] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_await] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_debugger] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_throw] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_class] = ACTIONS(1215), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_function] = ACTIONS(1215), - [anon_sym_new] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_void] = ACTIONS(1215), - [anon_sym_delete] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1213), - [sym_number] = ACTIONS(1213), - [sym_this] = ACTIONS(1215), - [sym_super] = ACTIONS(1215), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [sym_null] = ACTIONS(1215), - [sym_undefined] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_abstract] = ACTIONS(1215), - [anon_sym_get] = ACTIONS(1215), - [anon_sym_set] = ACTIONS(1215), - [anon_sym_declare] = ACTIONS(1215), - [anon_sym_public] = ACTIONS(1215), - [anon_sym_private] = ACTIONS(1215), - [anon_sym_protected] = ACTIONS(1215), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_any] = ACTIONS(1215), - [anon_sym_number] = ACTIONS(1215), - [anon_sym_boolean] = ACTIONS(1215), - [anon_sym_string] = ACTIONS(1215), - [anon_sym_symbol] = ACTIONS(1215), - [anon_sym_interface] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [sym_readonly] = ACTIONS(1215), + [ts_builtin_sym_end] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_readonly] = ACTIONS(2122), }, [639] = { - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_case] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2253), - [sym_number] = ACTIONS(2253), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym_readonly] = ACTIONS(2255), + [ts_builtin_sym_end] = ACTIONS(2124), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_finally] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym_readonly] = ACTIONS(2126), }, [640] = { - [ts_builtin_sym_end] = ACTIONS(2257), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym_readonly] = ACTIONS(2259), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2130), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_default] = ACTIONS(2130), + [anon_sym_namespace] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_type] = ACTIONS(2130), + [anon_sym_typeof] = ACTIONS(2130), + [anon_sym_import] = ACTIONS(2130), + [anon_sym_var] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2128), + [anon_sym_else] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_switch] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_await] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_with] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_debugger] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_throw] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_case] = ACTIONS(2130), + [anon_sym_finally] = ACTIONS(2130), + [anon_sym_yield] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2128), + [anon_sym_SLASH] = ACTIONS(2130), + [anon_sym_class] = ACTIONS(2130), + [anon_sym_async] = ACTIONS(2130), + [anon_sym_function] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_PLUS] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_TILDE] = ACTIONS(2128), + [anon_sym_void] = ACTIONS(2130), + [anon_sym_delete] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2128), + [anon_sym_SQUOTE] = ACTIONS(2128), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2128), + [sym_number] = ACTIONS(2128), + [sym_this] = ACTIONS(2130), + [sym_super] = ACTIONS(2130), + [sym_true] = ACTIONS(2130), + [sym_false] = ACTIONS(2130), + [sym_null] = ACTIONS(2130), + [sym_undefined] = ACTIONS(2130), + [anon_sym_AT] = ACTIONS(2128), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_abstract] = ACTIONS(2130), + [anon_sym_get] = ACTIONS(2130), + [anon_sym_set] = ACTIONS(2130), + [anon_sym_declare] = ACTIONS(2130), + [anon_sym_public] = ACTIONS(2130), + [anon_sym_private] = ACTIONS(2130), + [anon_sym_protected] = ACTIONS(2130), + [anon_sym_module] = ACTIONS(2130), + [anon_sym_any] = ACTIONS(2130), + [anon_sym_number] = ACTIONS(2130), + [anon_sym_boolean] = ACTIONS(2130), + [anon_sym_string] = ACTIONS(2130), + [anon_sym_symbol] = ACTIONS(2130), + [anon_sym_interface] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [sym_readonly] = ACTIONS(2130), }, [641] = { - [ts_builtin_sym_end] = ACTIONS(2261), - [sym_identifier] = ACTIONS(2263), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_default] = ACTIONS(2263), - [anon_sym_namespace] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2263), - [anon_sym_typeof] = ACTIONS(2263), - [anon_sym_import] = ACTIONS(2263), - [anon_sym_var] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_switch] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_await] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_with] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_debugger] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_throw] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2261), - [anon_sym_case] = ACTIONS(2263), - [anon_sym_yield] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_SLASH] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(2263), - [anon_sym_async] = ACTIONS(2263), - [anon_sym_function] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2261), - [anon_sym_void] = ACTIONS(2263), - [anon_sym_delete] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2261), - [anon_sym_DASH_DASH] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2261), - [sym_number] = ACTIONS(2261), - [sym_this] = ACTIONS(2263), - [sym_super] = ACTIONS(2263), - [sym_true] = ACTIONS(2263), - [sym_false] = ACTIONS(2263), - [sym_null] = ACTIONS(2263), - [sym_undefined] = ACTIONS(2263), - [anon_sym_AT] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_abstract] = ACTIONS(2263), - [anon_sym_get] = ACTIONS(2263), - [anon_sym_set] = ACTIONS(2263), - [anon_sym_declare] = ACTIONS(2263), - [anon_sym_public] = ACTIONS(2263), - [anon_sym_private] = ACTIONS(2263), - [anon_sym_protected] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_any] = ACTIONS(2263), - [anon_sym_number] = ACTIONS(2263), - [anon_sym_boolean] = ACTIONS(2263), - [anon_sym_string] = ACTIONS(2263), - [anon_sym_symbol] = ACTIONS(2263), - [anon_sym_interface] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [sym_readonly] = ACTIONS(2263), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_finally] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2132), + [sym_number] = ACTIONS(2132), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym_readonly] = ACTIONS(2134), }, [642] = { - [ts_builtin_sym_end] = ACTIONS(2265), - [sym_identifier] = ACTIONS(2267), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_typeof] = ACTIONS(2267), - [anon_sym_import] = ACTIONS(2267), - [anon_sym_var] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_else] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_switch] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_await] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_with] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_debugger] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_throw] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_case] = ACTIONS(2267), - [anon_sym_yield] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(2267), - [anon_sym_class] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_function] = ACTIONS(2267), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_void] = ACTIONS(2267), - [anon_sym_delete] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2265), - [sym_number] = ACTIONS(2265), - [sym_this] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_true] = ACTIONS(2267), - [sym_false] = ACTIONS(2267), - [sym_null] = ACTIONS(2267), - [sym_undefined] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_abstract] = ACTIONS(2267), - [anon_sym_get] = ACTIONS(2267), - [anon_sym_set] = ACTIONS(2267), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_private] = ACTIONS(2267), - [anon_sym_protected] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_any] = ACTIONS(2267), - [anon_sym_number] = ACTIONS(2267), - [anon_sym_boolean] = ACTIONS(2267), - [anon_sym_string] = ACTIONS(2267), - [anon_sym_symbol] = ACTIONS(2267), - [anon_sym_interface] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [sym_readonly] = ACTIONS(2267), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1096), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_namespace] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_type] = ACTIONS(1096), + [anon_sym_typeof] = ACTIONS(1096), + [anon_sym_import] = ACTIONS(1096), + [anon_sym_var] = ACTIONS(1096), + [anon_sym_let] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_else] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [anon_sym_await] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_try] = ACTIONS(1096), + [anon_sym_with] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_debugger] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_yield] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(1096), + [anon_sym_async] = ACTIONS(1096), + [anon_sym_function] = ACTIONS(1096), + [anon_sym_new] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_void] = ACTIONS(1096), + [anon_sym_delete] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1094), + [sym_number] = ACTIONS(1094), + [sym_this] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), + [sym_undefined] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_abstract] = ACTIONS(1096), + [anon_sym_get] = ACTIONS(1096), + [anon_sym_set] = ACTIONS(1096), + [anon_sym_declare] = ACTIONS(1096), + [anon_sym_public] = ACTIONS(1096), + [anon_sym_private] = ACTIONS(1096), + [anon_sym_protected] = ACTIONS(1096), + [anon_sym_module] = ACTIONS(1096), + [anon_sym_any] = ACTIONS(1096), + [anon_sym_number] = ACTIONS(1096), + [anon_sym_boolean] = ACTIONS(1096), + [anon_sym_string] = ACTIONS(1096), + [anon_sym_symbol] = ACTIONS(1096), + [anon_sym_interface] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [sym_readonly] = ACTIONS(1096), + [sym__automatic_semicolon] = ACTIONS(1102), }, [643] = { - [ts_builtin_sym_end] = ACTIONS(2269), - [sym_identifier] = ACTIONS(2271), - [anon_sym_export] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_namespace] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_typeof] = ACTIONS(2271), - [anon_sym_import] = ACTIONS(2271), - [anon_sym_var] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_else] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_switch] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_do] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_with] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_debugger] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_throw] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_case] = ACTIONS(2271), - [anon_sym_yield] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2271), - [anon_sym_class] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_function] = ACTIONS(2271), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_void] = ACTIONS(2271), - [anon_sym_delete] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2269), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2269), - [sym_number] = ACTIONS(2269), - [sym_this] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_true] = ACTIONS(2271), - [sym_false] = ACTIONS(2271), - [sym_null] = ACTIONS(2271), - [sym_undefined] = ACTIONS(2271), - [anon_sym_AT] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_get] = ACTIONS(2271), - [anon_sym_set] = ACTIONS(2271), - [anon_sym_declare] = ACTIONS(2271), - [anon_sym_public] = ACTIONS(2271), - [anon_sym_private] = ACTIONS(2271), - [anon_sym_protected] = ACTIONS(2271), - [anon_sym_module] = ACTIONS(2271), - [anon_sym_any] = ACTIONS(2271), - [anon_sym_number] = ACTIONS(2271), - [anon_sym_boolean] = ACTIONS(2271), - [anon_sym_string] = ACTIONS(2271), - [anon_sym_symbol] = ACTIONS(2271), - [anon_sym_interface] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [sym_readonly] = ACTIONS(2271), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_namespace] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_type] = ACTIONS(1122), + [anon_sym_typeof] = ACTIONS(1122), + [anon_sym_import] = ACTIONS(1122), + [anon_sym_var] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_try] = ACTIONS(1122), + [anon_sym_with] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_debugger] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_throw] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(1122), + [anon_sym_async] = ACTIONS(1122), + [anon_sym_function] = ACTIONS(1122), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1122), + [anon_sym_delete] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [sym_this] = ACTIONS(1122), + [sym_super] = ACTIONS(1122), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_abstract] = ACTIONS(1122), + [anon_sym_get] = ACTIONS(1122), + [anon_sym_set] = ACTIONS(1122), + [anon_sym_declare] = ACTIONS(1122), + [anon_sym_public] = ACTIONS(1122), + [anon_sym_private] = ACTIONS(1122), + [anon_sym_protected] = ACTIONS(1122), + [anon_sym_module] = ACTIONS(1122), + [anon_sym_any] = ACTIONS(1122), + [anon_sym_number] = ACTIONS(1122), + [anon_sym_boolean] = ACTIONS(1122), + [anon_sym_string] = ACTIONS(1122), + [anon_sym_symbol] = ACTIONS(1122), + [anon_sym_interface] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [sym_readonly] = ACTIONS(1122), + [sym__automatic_semicolon] = ACTIONS(1128), }, [644] = { - [ts_builtin_sym_end] = ACTIONS(2273), - [sym_identifier] = ACTIONS(2275), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_default] = ACTIONS(2275), - [anon_sym_namespace] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2275), - [anon_sym_typeof] = ACTIONS(2275), - [anon_sym_import] = ACTIONS(2275), - [anon_sym_var] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_switch] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_with] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_debugger] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_throw] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_case] = ACTIONS(2275), - [anon_sym_yield] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2275), - [anon_sym_class] = ACTIONS(2275), - [anon_sym_async] = ACTIONS(2275), - [anon_sym_function] = ACTIONS(2275), - [anon_sym_new] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_void] = ACTIONS(2275), - [anon_sym_delete] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2273), - [sym_number] = ACTIONS(2273), - [sym_this] = ACTIONS(2275), - [sym_super] = ACTIONS(2275), - [sym_true] = ACTIONS(2275), - [sym_false] = ACTIONS(2275), - [sym_null] = ACTIONS(2275), - [sym_undefined] = ACTIONS(2275), - [anon_sym_AT] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2275), - [anon_sym_abstract] = ACTIONS(2275), - [anon_sym_get] = ACTIONS(2275), - [anon_sym_set] = ACTIONS(2275), - [anon_sym_declare] = ACTIONS(2275), - [anon_sym_public] = ACTIONS(2275), - [anon_sym_private] = ACTIONS(2275), - [anon_sym_protected] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_any] = ACTIONS(2275), - [anon_sym_number] = ACTIONS(2275), - [anon_sym_boolean] = ACTIONS(2275), - [anon_sym_string] = ACTIONS(2275), - [anon_sym_symbol] = ACTIONS(2275), - [anon_sym_interface] = ACTIONS(2275), - [anon_sym_enum] = ACTIONS(2275), - [sym_readonly] = ACTIONS(2275), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_typeof] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(1112), + [anon_sym_var] = ACTIONS(1112), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_await] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_with] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_debugger] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_throw] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_class] = ACTIONS(1112), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1112), + [anon_sym_new] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_void] = ACTIONS(1112), + [anon_sym_delete] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1110), + [sym_number] = ACTIONS(1110), + [sym_this] = ACTIONS(1112), + [sym_super] = ACTIONS(1112), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_abstract] = ACTIONS(1112), + [anon_sym_get] = ACTIONS(1112), + [anon_sym_set] = ACTIONS(1112), + [anon_sym_declare] = ACTIONS(1112), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_private] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), + [anon_sym_module] = ACTIONS(1112), + [anon_sym_any] = ACTIONS(1112), + [anon_sym_number] = ACTIONS(1112), + [anon_sym_boolean] = ACTIONS(1112), + [anon_sym_string] = ACTIONS(1112), + [anon_sym_symbol] = ACTIONS(1112), + [anon_sym_interface] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [sym_readonly] = ACTIONS(1112), + [sym__automatic_semicolon] = ACTIONS(1118), }, [645] = { - [ts_builtin_sym_end] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2279), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_typeof] = ACTIONS(2279), - [anon_sym_import] = ACTIONS(2279), - [anon_sym_var] = ACTIONS(2279), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_switch] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_do] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2279), - [anon_sym_with] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_debugger] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_throw] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_case] = ACTIONS(2279), - [anon_sym_yield] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2277), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_class] = ACTIONS(2279), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_function] = ACTIONS(2279), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_TILDE] = ACTIONS(2277), - [anon_sym_void] = ACTIONS(2279), - [anon_sym_delete] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2277), - [anon_sym_DASH_DASH] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2277), - [sym_this] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_AT] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_abstract] = ACTIONS(2279), - [anon_sym_get] = ACTIONS(2279), - [anon_sym_set] = ACTIONS(2279), - [anon_sym_declare] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_private] = ACTIONS(2279), - [anon_sym_protected] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_any] = ACTIONS(2279), - [anon_sym_number] = ACTIONS(2279), - [anon_sym_boolean] = ACTIONS(2279), - [anon_sym_string] = ACTIONS(2279), - [anon_sym_symbol] = ACTIONS(2279), - [anon_sym_interface] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [sym_readonly] = ACTIONS(2279), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_export] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_namespace] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_typeof] = ACTIONS(1150), + [anon_sym_import] = ACTIONS(1150), + [anon_sym_var] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1150), + [anon_sym_with] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_debugger] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_throw] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_SLASH] = ACTIONS(1150), + [anon_sym_class] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1150), + [anon_sym_delete] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1148), + [sym_number] = ACTIONS(1148), + [sym_this] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_abstract] = ACTIONS(1150), + [anon_sym_get] = ACTIONS(1150), + [anon_sym_set] = ACTIONS(1150), + [anon_sym_declare] = ACTIONS(1150), + [anon_sym_public] = ACTIONS(1150), + [anon_sym_private] = ACTIONS(1150), + [anon_sym_protected] = ACTIONS(1150), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1150), + [anon_sym_number] = ACTIONS(1150), + [anon_sym_boolean] = ACTIONS(1150), + [anon_sym_string] = ACTIONS(1150), + [anon_sym_symbol] = ACTIONS(1150), + [anon_sym_interface] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [sym_readonly] = ACTIONS(1150), + [sym__automatic_semicolon] = ACTIONS(1156), }, [646] = { - [ts_builtin_sym_end] = ACTIONS(2281), - [sym_identifier] = ACTIONS(2283), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_namespace] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_typeof] = ACTIONS(2283), - [anon_sym_import] = ACTIONS(2283), - [anon_sym_var] = ACTIONS(2283), - [anon_sym_let] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_switch] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_await] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [anon_sym_do] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2283), - [anon_sym_with] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_debugger] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_throw] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_case] = ACTIONS(2283), - [anon_sym_yield] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2283), - [anon_sym_class] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_function] = ACTIONS(2283), - [anon_sym_new] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2281), - [anon_sym_void] = ACTIONS(2283), - [anon_sym_delete] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2281), - [anon_sym_SQUOTE] = ACTIONS(2281), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2281), - [sym_number] = ACTIONS(2281), - [sym_this] = ACTIONS(2283), - [sym_super] = ACTIONS(2283), - [sym_true] = ACTIONS(2283), - [sym_false] = ACTIONS(2283), - [sym_null] = ACTIONS(2283), - [sym_undefined] = ACTIONS(2283), - [anon_sym_AT] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_abstract] = ACTIONS(2283), - [anon_sym_get] = ACTIONS(2283), - [anon_sym_set] = ACTIONS(2283), - [anon_sym_declare] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_any] = ACTIONS(2283), - [anon_sym_number] = ACTIONS(2283), - [anon_sym_boolean] = ACTIONS(2283), - [anon_sym_string] = ACTIONS(2283), - [anon_sym_symbol] = ACTIONS(2283), - [anon_sym_interface] = ACTIONS(2283), - [anon_sym_enum] = ACTIONS(2283), - [sym_readonly] = ACTIONS(2283), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), + [anon_sym_export] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_namespace] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(1170), + [anon_sym_var] = ACTIONS(1170), + [anon_sym_let] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_try] = ACTIONS(1170), + [anon_sym_with] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_debugger] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_throw] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1170), + [anon_sym_class] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1168), + [sym_number] = ACTIONS(1168), + [sym_this] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_abstract] = ACTIONS(1170), + [anon_sym_get] = ACTIONS(1170), + [anon_sym_set] = ACTIONS(1170), + [anon_sym_declare] = ACTIONS(1170), + [anon_sym_public] = ACTIONS(1170), + [anon_sym_private] = ACTIONS(1170), + [anon_sym_protected] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(1170), + [anon_sym_any] = ACTIONS(1170), + [anon_sym_number] = ACTIONS(1170), + [anon_sym_boolean] = ACTIONS(1170), + [anon_sym_string] = ACTIONS(1170), + [anon_sym_symbol] = ACTIONS(1170), + [anon_sym_interface] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [sym_readonly] = ACTIONS(1170), + [sym__automatic_semicolon] = ACTIONS(1176), }, [647] = { - [ts_builtin_sym_end] = ACTIONS(1079), - [sym_identifier] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_typeof] = ACTIONS(1081), - [anon_sym_import] = ACTIONS(1081), - [anon_sym_var] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_const] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_if] = ACTIONS(1081), - [anon_sym_switch] = ACTIONS(1081), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_with] = ACTIONS(1081), - [anon_sym_break] = ACTIONS(1081), - [anon_sym_continue] = ACTIONS(1081), - [anon_sym_debugger] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(1081), - [anon_sym_throw] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1079), - [anon_sym_case] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_SLASH] = ACTIONS(1081), - [anon_sym_class] = ACTIONS(1081), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(1081), - [anon_sym_new] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_void] = ACTIONS(1081), - [anon_sym_delete] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1079), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1079), - [sym_number] = ACTIONS(1079), - [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(1081), - [sym_true] = ACTIONS(1081), - [sym_false] = ACTIONS(1081), - [sym_null] = ACTIONS(1081), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1079), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_abstract] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_interface] = ACTIONS(1081), - [anon_sym_enum] = ACTIONS(1081), - [sym_readonly] = ACTIONS(1081), + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_export] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_namespace] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_typeof] = ACTIONS(1212), + [anon_sym_import] = ACTIONS(1212), + [anon_sym_var] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_try] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_debugger] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_throw] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_class] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_function] = ACTIONS(1212), + [anon_sym_new] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1212), + [anon_sym_delete] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1210), + [sym_number] = ACTIONS(1210), + [sym_this] = ACTIONS(1212), + [sym_super] = ACTIONS(1212), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [sym_null] = ACTIONS(1212), + [sym_undefined] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_abstract] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_interface] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [sym_readonly] = ACTIONS(1212), + [sym__automatic_semicolon] = ACTIONS(1218), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(2285), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2285), - [anon_sym_DASH_DASH] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(2285), - [anon_sym_SQUOTE] = ACTIONS(2285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2285), - [sym_number] = ACTIONS(2285), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym_readonly] = ACTIONS(2287), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1180), + [anon_sym_var] = ACTIONS(1180), + [anon_sym_let] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_switch] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_await] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_do] = ACTIONS(1180), + [anon_sym_try] = ACTIONS(1180), + [anon_sym_with] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_debugger] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_throw] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_SLASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1180), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1178), + [sym_number] = ACTIONS(1178), + [sym_this] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_true] = ACTIONS(1180), + [sym_false] = ACTIONS(1180), + [sym_null] = ACTIONS(1180), + [sym_undefined] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_abstract] = ACTIONS(1180), + [anon_sym_get] = ACTIONS(1180), + [anon_sym_set] = ACTIONS(1180), + [anon_sym_declare] = ACTIONS(1180), + [anon_sym_public] = ACTIONS(1180), + [anon_sym_private] = ACTIONS(1180), + [anon_sym_protected] = ACTIONS(1180), + [anon_sym_module] = ACTIONS(1180), + [anon_sym_any] = ACTIONS(1180), + [anon_sym_number] = ACTIONS(1180), + [anon_sym_boolean] = ACTIONS(1180), + [anon_sym_string] = ACTIONS(1180), + [anon_sym_symbol] = ACTIONS(1180), + [anon_sym_interface] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [sym_readonly] = ACTIONS(1180), + [sym__automatic_semicolon] = ACTIONS(1186), }, [649] = { - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2291), - [anon_sym_export] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_namespace] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2291), - [anon_sym_typeof] = ACTIONS(2291), - [anon_sym_import] = ACTIONS(2291), - [anon_sym_var] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_switch] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_with] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_debugger] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_case] = ACTIONS(2291), - [anon_sym_yield] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2291), - [anon_sym_class] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_function] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_void] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2289), - [sym_number] = ACTIONS(2289), - [sym_this] = ACTIONS(2291), - [sym_super] = ACTIONS(2291), - [sym_true] = ACTIONS(2291), - [sym_false] = ACTIONS(2291), - [sym_null] = ACTIONS(2291), - [sym_undefined] = ACTIONS(2291), - [anon_sym_AT] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_abstract] = ACTIONS(2291), - [anon_sym_get] = ACTIONS(2291), - [anon_sym_set] = ACTIONS(2291), - [anon_sym_declare] = ACTIONS(2291), - [anon_sym_public] = ACTIONS(2291), - [anon_sym_private] = ACTIONS(2291), - [anon_sym_protected] = ACTIONS(2291), - [anon_sym_module] = ACTIONS(2291), - [anon_sym_any] = ACTIONS(2291), - [anon_sym_number] = ACTIONS(2291), - [anon_sym_boolean] = ACTIONS(2291), - [anon_sym_string] = ACTIONS(2291), - [anon_sym_symbol] = ACTIONS(2291), - [anon_sym_interface] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [sym_readonly] = ACTIONS(2291), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1198), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_typeof] = ACTIONS(1198), + [anon_sym_import] = ACTIONS(1198), + [anon_sym_var] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_await] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1198), + [anon_sym_with] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_debugger] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_SLASH] = ACTIONS(1198), + [anon_sym_class] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1198), + [anon_sym_function] = ACTIONS(1198), + [anon_sym_new] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_void] = ACTIONS(1198), + [anon_sym_delete] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1196), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(1198), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [sym_null] = ACTIONS(1198), + [sym_undefined] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_abstract] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_interface] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [sym_readonly] = ACTIONS(1198), + [sym__automatic_semicolon] = ACTIONS(1204), }, [650] = { - [ts_builtin_sym_end] = ACTIONS(2293), - [sym_identifier] = ACTIONS(2295), - [anon_sym_export] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_namespace] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_typeof] = ACTIONS(2295), - [anon_sym_import] = ACTIONS(2295), - [anon_sym_var] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_switch] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_do] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2295), - [anon_sym_with] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_debugger] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_throw] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_case] = ACTIONS(2295), - [anon_sym_yield] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_new] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_void] = ACTIONS(2295), - [anon_sym_delete] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2293), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2293), - [sym_number] = ACTIONS(2293), - [sym_this] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_true] = ACTIONS(2295), - [sym_false] = ACTIONS(2295), - [sym_null] = ACTIONS(2295), - [sym_undefined] = ACTIONS(2295), - [anon_sym_AT] = ACTIONS(2293), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_abstract] = ACTIONS(2295), - [anon_sym_get] = ACTIONS(2295), - [anon_sym_set] = ACTIONS(2295), - [anon_sym_declare] = ACTIONS(2295), - [anon_sym_public] = ACTIONS(2295), - [anon_sym_private] = ACTIONS(2295), - [anon_sym_protected] = ACTIONS(2295), - [anon_sym_module] = ACTIONS(2295), - [anon_sym_any] = ACTIONS(2295), - [anon_sym_number] = ACTIONS(2295), - [anon_sym_boolean] = ACTIONS(2295), - [anon_sym_string] = ACTIONS(2295), - [anon_sym_symbol] = ACTIONS(2295), - [anon_sym_interface] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [sym_readonly] = ACTIONS(2295), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_namespace] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_type] = ACTIONS(1086), + [anon_sym_typeof] = ACTIONS(1086), + [anon_sym_import] = ACTIONS(1086), + [anon_sym_var] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_await] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_with] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_debugger] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_throw] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_class] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_void] = ACTIONS(1086), + [anon_sym_delete] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1084), + [sym_number] = ACTIONS(1084), + [sym_this] = ACTIONS(1086), + [sym_super] = ACTIONS(1086), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_abstract] = ACTIONS(1086), + [anon_sym_get] = ACTIONS(1086), + [anon_sym_set] = ACTIONS(1086), + [anon_sym_declare] = ACTIONS(1086), + [anon_sym_public] = ACTIONS(1086), + [anon_sym_private] = ACTIONS(1086), + [anon_sym_protected] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1086), + [anon_sym_number] = ACTIONS(1086), + [anon_sym_boolean] = ACTIONS(1086), + [anon_sym_string] = ACTIONS(1086), + [anon_sym_symbol] = ACTIONS(1086), + [anon_sym_interface] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [sym_readonly] = ACTIONS(1086), + [sym__automatic_semicolon] = ACTIONS(1092), }, [651] = { - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2299), - [anon_sym_export] = ACTIONS(2299), - [anon_sym_default] = ACTIONS(2299), - [anon_sym_namespace] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_typeof] = ACTIONS(2299), - [anon_sym_import] = ACTIONS(2299), - [anon_sym_var] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_switch] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_do] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_with] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_debugger] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_throw] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2299), - [anon_sym_yield] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2299), - [anon_sym_class] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_new] = ACTIONS(2299), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2299), - [anon_sym_delete] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_this] = ACTIONS(2299), - [sym_super] = ACTIONS(2299), - [sym_true] = ACTIONS(2299), - [sym_false] = ACTIONS(2299), - [sym_null] = ACTIONS(2299), - [sym_undefined] = ACTIONS(2299), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_abstract] = ACTIONS(2299), - [anon_sym_get] = ACTIONS(2299), - [anon_sym_set] = ACTIONS(2299), - [anon_sym_declare] = ACTIONS(2299), - [anon_sym_public] = ACTIONS(2299), - [anon_sym_private] = ACTIONS(2299), - [anon_sym_protected] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_any] = ACTIONS(2299), - [anon_sym_number] = ACTIONS(2299), - [anon_sym_boolean] = ACTIONS(2299), - [anon_sym_string] = ACTIONS(2299), - [anon_sym_symbol] = ACTIONS(2299), - [anon_sym_interface] = ACTIONS(2299), - [anon_sym_enum] = ACTIONS(2299), - [sym_readonly] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(740), + [sym_identifier] = ACTIONS(742), + [anon_sym_export] = ACTIONS(742), + [anon_sym_default] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_type] = ACTIONS(742), + [anon_sym_typeof] = ACTIONS(742), + [anon_sym_import] = ACTIONS(742), + [anon_sym_var] = ACTIONS(742), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_else] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_switch] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_await] = ACTIONS(742), + [anon_sym_while] = ACTIONS(742), + [anon_sym_do] = ACTIONS(742), + [anon_sym_try] = ACTIONS(742), + [anon_sym_with] = ACTIONS(742), + [anon_sym_break] = ACTIONS(742), + [anon_sym_continue] = ACTIONS(742), + [anon_sym_debugger] = ACTIONS(742), + [anon_sym_return] = ACTIONS(742), + [anon_sym_throw] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_case] = ACTIONS(742), + [anon_sym_yield] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_class] = ACTIONS(742), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(742), + [anon_sym_new] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_void] = ACTIONS(742), + [anon_sym_delete] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(740), + [sym_number] = ACTIONS(740), + [sym_this] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_undefined] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_static] = ACTIONS(742), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_get] = ACTIONS(742), + [anon_sym_set] = ACTIONS(742), + [anon_sym_declare] = ACTIONS(742), + [anon_sym_public] = ACTIONS(742), + [anon_sym_private] = ACTIONS(742), + [anon_sym_protected] = ACTIONS(742), + [anon_sym_module] = ACTIONS(742), + [anon_sym_any] = ACTIONS(742), + [anon_sym_number] = ACTIONS(742), + [anon_sym_boolean] = ACTIONS(742), + [anon_sym_string] = ACTIONS(742), + [anon_sym_symbol] = ACTIONS(742), + [anon_sym_interface] = ACTIONS(742), + [anon_sym_enum] = ACTIONS(742), + [sym_readonly] = ACTIONS(742), }, [652] = { - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2303), - [anon_sym_export] = ACTIONS(2303), - [anon_sym_default] = ACTIONS(2303), - [anon_sym_namespace] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_typeof] = ACTIONS(2303), - [anon_sym_import] = ACTIONS(2303), - [anon_sym_var] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_else] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_switch] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_await] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_do] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_with] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_debugger] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_throw] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_case] = ACTIONS(2303), - [anon_sym_yield] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_SLASH] = ACTIONS(2303), - [anon_sym_class] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(2303), - [anon_sym_function] = ACTIONS(2303), - [anon_sym_new] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_void] = ACTIONS(2303), - [anon_sym_delete] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2301), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2301), - [sym_number] = ACTIONS(2301), - [sym_this] = ACTIONS(2303), - [sym_super] = ACTIONS(2303), - [sym_true] = ACTIONS(2303), - [sym_false] = ACTIONS(2303), - [sym_null] = ACTIONS(2303), - [sym_undefined] = ACTIONS(2303), - [anon_sym_AT] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2303), - [anon_sym_abstract] = ACTIONS(2303), - [anon_sym_get] = ACTIONS(2303), - [anon_sym_set] = ACTIONS(2303), - [anon_sym_declare] = ACTIONS(2303), - [anon_sym_public] = ACTIONS(2303), - [anon_sym_private] = ACTIONS(2303), - [anon_sym_protected] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2303), - [anon_sym_any] = ACTIONS(2303), - [anon_sym_number] = ACTIONS(2303), - [anon_sym_boolean] = ACTIONS(2303), - [anon_sym_string] = ACTIONS(2303), - [anon_sym_symbol] = ACTIONS(2303), - [anon_sym_interface] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [sym_readonly] = ACTIONS(2303), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2136), + [sym_number] = ACTIONS(2136), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_get] = ACTIONS(2138), + [anon_sym_set] = ACTIONS(2138), + [anon_sym_declare] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_any] = ACTIONS(2138), + [anon_sym_number] = ACTIONS(2138), + [anon_sym_boolean] = ACTIONS(2138), + [anon_sym_string] = ACTIONS(2138), + [anon_sym_symbol] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym_readonly] = ACTIONS(2138), }, [653] = { - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(2307), - [anon_sym_export] = ACTIONS(2307), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_namespace] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_typeof] = ACTIONS(2307), - [anon_sym_import] = ACTIONS(2307), - [anon_sym_var] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_switch] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_debugger] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_throw] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_case] = ACTIONS(2307), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2307), - [anon_sym_class] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [anon_sym_void] = ACTIONS(2307), - [anon_sym_delete] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2305), - [sym_number] = ACTIONS(2305), - [sym_this] = ACTIONS(2307), - [sym_super] = ACTIONS(2307), - [sym_true] = ACTIONS(2307), - [sym_false] = ACTIONS(2307), - [sym_null] = ACTIONS(2307), - [sym_undefined] = ACTIONS(2307), - [anon_sym_AT] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2307), - [anon_sym_set] = ACTIONS(2307), - [anon_sym_declare] = ACTIONS(2307), - [anon_sym_public] = ACTIONS(2307), - [anon_sym_private] = ACTIONS(2307), - [anon_sym_protected] = ACTIONS(2307), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_any] = ACTIONS(2307), - [anon_sym_number] = ACTIONS(2307), - [anon_sym_boolean] = ACTIONS(2307), - [anon_sym_string] = ACTIONS(2307), - [anon_sym_symbol] = ACTIONS(2307), - [anon_sym_interface] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2307), - [sym_readonly] = ACTIONS(2307), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_import] = ACTIONS(1160), + [anon_sym_var] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_await] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_with] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_debugger] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1158), + [anon_sym_void] = ACTIONS(1160), + [anon_sym_delete] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_number] = ACTIONS(1158), + [sym_this] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), + [sym_true] = ACTIONS(1160), + [sym_false] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_interface] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [sym_readonly] = ACTIONS(1160), + [sym__automatic_semicolon] = ACTIONS(1166), }, [654] = { - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_identifier] = ACTIONS(2311), - [anon_sym_export] = ACTIONS(2311), - [anon_sym_default] = ACTIONS(2311), - [anon_sym_namespace] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2311), - [anon_sym_typeof] = ACTIONS(2311), - [anon_sym_import] = ACTIONS(2311), - [anon_sym_var] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_switch] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_await] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_do] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_with] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_debugger] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_throw] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_case] = ACTIONS(2311), - [anon_sym_yield] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_SLASH] = ACTIONS(2311), - [anon_sym_class] = ACTIONS(2311), - [anon_sym_async] = ACTIONS(2311), - [anon_sym_function] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_void] = ACTIONS(2311), - [anon_sym_delete] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2309), - [anon_sym_DASH_DASH] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2309), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2309), - [sym_number] = ACTIONS(2309), - [sym_this] = ACTIONS(2311), - [sym_super] = ACTIONS(2311), - [sym_true] = ACTIONS(2311), - [sym_false] = ACTIONS(2311), - [sym_null] = ACTIONS(2311), - [sym_undefined] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2311), - [anon_sym_abstract] = ACTIONS(2311), - [anon_sym_get] = ACTIONS(2311), - [anon_sym_set] = ACTIONS(2311), - [anon_sym_declare] = ACTIONS(2311), - [anon_sym_public] = ACTIONS(2311), - [anon_sym_private] = ACTIONS(2311), - [anon_sym_protected] = ACTIONS(2311), - [anon_sym_module] = ACTIONS(2311), - [anon_sym_any] = ACTIONS(2311), - [anon_sym_number] = ACTIONS(2311), - [anon_sym_boolean] = ACTIONS(2311), - [anon_sym_string] = ACTIONS(2311), - [anon_sym_symbol] = ACTIONS(2311), - [anon_sym_interface] = ACTIONS(2311), - [anon_sym_enum] = ACTIONS(2311), - [sym_readonly] = ACTIONS(2311), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(2140), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2140), + [sym_number] = ACTIONS(2140), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2140), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym_readonly] = ACTIONS(2142), }, [655] = { - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2315), - [anon_sym_export] = ACTIONS(2315), - [anon_sym_default] = ACTIONS(2315), - [anon_sym_namespace] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2315), - [anon_sym_import] = ACTIONS(2315), - [anon_sym_var] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_switch] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_await] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_do] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2315), - [anon_sym_with] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_debugger] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_throw] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_case] = ACTIONS(2315), - [anon_sym_yield] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_class] = ACTIONS(2315), - [anon_sym_async] = ACTIONS(2315), - [anon_sym_function] = ACTIONS(2315), - [anon_sym_new] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2313), - [anon_sym_void] = ACTIONS(2315), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2313), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2313), - [sym_number] = ACTIONS(2313), - [sym_this] = ACTIONS(2315), - [sym_super] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_null] = ACTIONS(2315), - [sym_undefined] = ACTIONS(2315), - [anon_sym_AT] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2315), - [anon_sym_abstract] = ACTIONS(2315), - [anon_sym_get] = ACTIONS(2315), - [anon_sym_set] = ACTIONS(2315), - [anon_sym_declare] = ACTIONS(2315), - [anon_sym_public] = ACTIONS(2315), - [anon_sym_private] = ACTIONS(2315), - [anon_sym_protected] = ACTIONS(2315), - [anon_sym_module] = ACTIONS(2315), - [anon_sym_any] = ACTIONS(2315), - [anon_sym_number] = ACTIONS(2315), - [anon_sym_boolean] = ACTIONS(2315), - [anon_sym_string] = ACTIONS(2315), - [anon_sym_symbol] = ACTIONS(2315), - [anon_sym_interface] = ACTIONS(2315), - [anon_sym_enum] = ACTIONS(2315), - [sym_readonly] = ACTIONS(2315), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(1228), + [anon_sym_var] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_await] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(1228), + [anon_sym_with] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_debugger] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_throw] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_function] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1226), + [sym_number] = ACTIONS(1226), + [sym_this] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), + [sym_undefined] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_abstract] = ACTIONS(1228), + [anon_sym_get] = ACTIONS(1228), + [anon_sym_set] = ACTIONS(1228), + [anon_sym_declare] = ACTIONS(1228), + [anon_sym_public] = ACTIONS(1228), + [anon_sym_private] = ACTIONS(1228), + [anon_sym_protected] = ACTIONS(1228), + [anon_sym_module] = ACTIONS(1228), + [anon_sym_any] = ACTIONS(1228), + [anon_sym_number] = ACTIONS(1228), + [anon_sym_boolean] = ACTIONS(1228), + [anon_sym_string] = ACTIONS(1228), + [anon_sym_symbol] = ACTIONS(1228), + [anon_sym_interface] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [sym_readonly] = ACTIONS(1228), + [sym__automatic_semicolon] = ACTIONS(1234), }, [656] = { - [ts_builtin_sym_end] = ACTIONS(2317), - [sym_identifier] = ACTIONS(2319), - [anon_sym_export] = ACTIONS(2319), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_namespace] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_type] = ACTIONS(2319), - [anon_sym_typeof] = ACTIONS(2319), - [anon_sym_import] = ACTIONS(2319), - [anon_sym_var] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [anon_sym_BANG] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_switch] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_do] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_with] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_debugger] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_throw] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2317), - [anon_sym_case] = ACTIONS(2319), - [anon_sym_yield] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_class] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_function] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2317), - [anon_sym_void] = ACTIONS(2319), - [anon_sym_delete] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2317), - [sym_number] = ACTIONS(2317), - [sym_this] = ACTIONS(2319), - [sym_super] = ACTIONS(2319), - [sym_true] = ACTIONS(2319), - [sym_false] = ACTIONS(2319), - [sym_null] = ACTIONS(2319), - [sym_undefined] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_abstract] = ACTIONS(2319), - [anon_sym_get] = ACTIONS(2319), - [anon_sym_set] = ACTIONS(2319), - [anon_sym_declare] = ACTIONS(2319), - [anon_sym_public] = ACTIONS(2319), - [anon_sym_private] = ACTIONS(2319), - [anon_sym_protected] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2319), - [anon_sym_any] = ACTIONS(2319), - [anon_sym_number] = ACTIONS(2319), - [anon_sym_boolean] = ACTIONS(2319), - [anon_sym_string] = ACTIONS(2319), - [anon_sym_symbol] = ACTIONS(2319), - [anon_sym_interface] = ACTIONS(2319), - [anon_sym_enum] = ACTIONS(2319), - [sym_readonly] = ACTIONS(2319), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1132), + [anon_sym_typeof] = ACTIONS(1132), + [anon_sym_import] = ACTIONS(1132), + [anon_sym_var] = ACTIONS(1132), + [anon_sym_let] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_await] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_try] = ACTIONS(1132), + [anon_sym_with] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_throw] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_class] = ACTIONS(1132), + [anon_sym_async] = ACTIONS(1132), + [anon_sym_function] = ACTIONS(1132), + [anon_sym_new] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [sym_this] = ACTIONS(1132), + [sym_super] = ACTIONS(1132), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [sym_undefined] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_abstract] = ACTIONS(1132), + [anon_sym_get] = ACTIONS(1132), + [anon_sym_set] = ACTIONS(1132), + [anon_sym_declare] = ACTIONS(1132), + [anon_sym_public] = ACTIONS(1132), + [anon_sym_private] = ACTIONS(1132), + [anon_sym_protected] = ACTIONS(1132), + [anon_sym_module] = ACTIONS(1132), + [anon_sym_any] = ACTIONS(1132), + [anon_sym_number] = ACTIONS(1132), + [anon_sym_boolean] = ACTIONS(1132), + [anon_sym_string] = ACTIONS(1132), + [anon_sym_symbol] = ACTIONS(1132), + [anon_sym_interface] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [sym_readonly] = ACTIONS(1132), + [sym__automatic_semicolon] = ACTIONS(1138), }, [657] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_default] = ACTIONS(2323), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2323), - [anon_sym_import] = ACTIONS(2323), - [anon_sym_var] = ACTIONS(2323), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_const] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2323), - [anon_sym_if] = ACTIONS(2323), - [anon_sym_switch] = ACTIONS(2323), - [anon_sym_for] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_while] = ACTIONS(2323), - [anon_sym_do] = ACTIONS(2323), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_with] = ACTIONS(2323), - [anon_sym_break] = ACTIONS(2323), - [anon_sym_continue] = ACTIONS(2323), - [anon_sym_debugger] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_case] = ACTIONS(2323), - [anon_sym_yield] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_SLASH] = ACTIONS(2323), - [anon_sym_class] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_function] = ACTIONS(2323), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_void] = ACTIONS(2323), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2321), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2321), - [sym_number] = ACTIONS(2321), - [sym_this] = ACTIONS(2323), - [sym_super] = ACTIONS(2323), - [sym_true] = ACTIONS(2323), - [sym_false] = ACTIONS(2323), - [sym_null] = ACTIONS(2323), - [sym_undefined] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_abstract] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_interface] = ACTIONS(2323), - [anon_sym_enum] = ACTIONS(2323), - [sym_readonly] = ACTIONS(2323), + [sym_statement_block] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1060), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_namespace] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1060), + [anon_sym_typeof] = ACTIONS(1060), + [anon_sym_import] = ACTIONS(1060), + [anon_sym_var] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_with] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_debugger] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_throw] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_yield] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_void] = ACTIONS(1060), + [anon_sym_delete] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1058), + [sym_number] = ACTIONS(1058), + [sym_this] = ACTIONS(1060), + [sym_super] = ACTIONS(1060), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_abstract] = ACTIONS(1060), + [anon_sym_get] = ACTIONS(1060), + [anon_sym_set] = ACTIONS(1060), + [anon_sym_declare] = ACTIONS(1060), + [anon_sym_public] = ACTIONS(1060), + [anon_sym_private] = ACTIONS(1060), + [anon_sym_protected] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_any] = ACTIONS(1060), + [anon_sym_number] = ACTIONS(1060), + [anon_sym_boolean] = ACTIONS(1060), + [anon_sym_string] = ACTIONS(1060), + [anon_sym_symbol] = ACTIONS(1060), + [anon_sym_interface] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [sym_readonly] = ACTIONS(1060), }, [658] = { - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2327), - [anon_sym_export] = ACTIONS(2327), - [anon_sym_default] = ACTIONS(2327), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_typeof] = ACTIONS(2327), - [anon_sym_import] = ACTIONS(2327), - [anon_sym_var] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2325), - [anon_sym_else] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_switch] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_await] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_do] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2327), - [anon_sym_with] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_debugger] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_throw] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_case] = ACTIONS(2327), - [anon_sym_yield] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_class] = ACTIONS(2327), - [anon_sym_async] = ACTIONS(2327), - [anon_sym_function] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2327), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_void] = ACTIONS(2327), - [anon_sym_delete] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2325), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2325), - [sym_number] = ACTIONS(2325), - [sym_this] = ACTIONS(2327), - [sym_super] = ACTIONS(2327), - [sym_true] = ACTIONS(2327), - [sym_false] = ACTIONS(2327), - [sym_null] = ACTIONS(2327), - [sym_undefined] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2327), - [anon_sym_abstract] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2327), - [anon_sym_set] = ACTIONS(2327), - [anon_sym_declare] = ACTIONS(2327), - [anon_sym_public] = ACTIONS(2327), - [anon_sym_private] = ACTIONS(2327), - [anon_sym_protected] = ACTIONS(2327), - [anon_sym_module] = ACTIONS(2327), - [anon_sym_any] = ACTIONS(2327), - [anon_sym_number] = ACTIONS(2327), - [anon_sym_boolean] = ACTIONS(2327), - [anon_sym_string] = ACTIONS(2327), - [anon_sym_symbol] = ACTIONS(2327), - [anon_sym_interface] = ACTIONS(2327), - [anon_sym_enum] = ACTIONS(2327), - [sym_readonly] = ACTIONS(2327), + [sym_else_clause] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_namespace] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_typeof] = ACTIONS(2146), + [anon_sym_import] = ACTIONS(2146), + [anon_sym_var] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_switch] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_await] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_with] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_debugger] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_throw] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_class] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_function] = ACTIONS(2146), + [anon_sym_new] = ACTIONS(2146), + [anon_sym_PLUS] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_void] = ACTIONS(2146), + [anon_sym_delete] = ACTIONS(2146), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2144), + [sym_number] = ACTIONS(2144), + [sym_this] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_true] = ACTIONS(2146), + [sym_false] = ACTIONS(2146), + [sym_null] = ACTIONS(2146), + [sym_undefined] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_abstract] = ACTIONS(2146), + [anon_sym_get] = ACTIONS(2146), + [anon_sym_set] = ACTIONS(2146), + [anon_sym_declare] = ACTIONS(2146), + [anon_sym_public] = ACTIONS(2146), + [anon_sym_private] = ACTIONS(2146), + [anon_sym_protected] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_any] = ACTIONS(2146), + [anon_sym_number] = ACTIONS(2146), + [anon_sym_boolean] = ACTIONS(2146), + [anon_sym_string] = ACTIONS(2146), + [anon_sym_symbol] = ACTIONS(2146), + [anon_sym_interface] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [sym_readonly] = ACTIONS(2146), }, [659] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2331), - [anon_sym_export] = ACTIONS(2331), - [anon_sym_default] = ACTIONS(2331), - [anon_sym_namespace] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_type] = ACTIONS(2331), - [anon_sym_typeof] = ACTIONS(2331), - [anon_sym_import] = ACTIONS(2331), - [anon_sym_var] = ACTIONS(2331), - [anon_sym_let] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_switch] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_await] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_do] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2331), - [anon_sym_with] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_debugger] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_throw] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2329), - [anon_sym_case] = ACTIONS(2331), - [anon_sym_yield] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_class] = ACTIONS(2331), - [anon_sym_async] = ACTIONS(2331), - [anon_sym_function] = ACTIONS(2331), - [anon_sym_new] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_void] = ACTIONS(2331), - [anon_sym_delete] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2329), - [sym_number] = ACTIONS(2329), - [sym_this] = ACTIONS(2331), - [sym_super] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_null] = ACTIONS(2331), - [sym_undefined] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2331), - [anon_sym_abstract] = ACTIONS(2331), - [anon_sym_get] = ACTIONS(2331), - [anon_sym_set] = ACTIONS(2331), - [anon_sym_declare] = ACTIONS(2331), - [anon_sym_public] = ACTIONS(2331), - [anon_sym_private] = ACTIONS(2331), - [anon_sym_protected] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2331), - [anon_sym_any] = ACTIONS(2331), - [anon_sym_number] = ACTIONS(2331), - [anon_sym_boolean] = ACTIONS(2331), - [anon_sym_string] = ACTIONS(2331), - [anon_sym_symbol] = ACTIONS(2331), - [anon_sym_interface] = ACTIONS(2331), - [anon_sym_enum] = ACTIONS(2331), - [sym_readonly] = ACTIONS(2331), + [ts_builtin_sym_end] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2150), + [sym_number] = ACTIONS(2150), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym_readonly] = ACTIONS(2152), }, [660] = { - [ts_builtin_sym_end] = ACTIONS(2333), - [sym_identifier] = ACTIONS(2335), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_default] = ACTIONS(2335), - [anon_sym_namespace] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_typeof] = ACTIONS(2335), - [anon_sym_import] = ACTIONS(2335), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_switch] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_await] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_do] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_with] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_debugger] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_throw] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_case] = ACTIONS(2335), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_class] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_function] = ACTIONS(2335), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_void] = ACTIONS(2335), - [anon_sym_delete] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2333), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2333), - [sym_number] = ACTIONS(2333), - [sym_this] = ACTIONS(2335), - [sym_super] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_null] = ACTIONS(2335), - [sym_undefined] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_abstract] = ACTIONS(2335), - [anon_sym_get] = ACTIONS(2335), - [anon_sym_set] = ACTIONS(2335), - [anon_sym_declare] = ACTIONS(2335), - [anon_sym_public] = ACTIONS(2335), - [anon_sym_private] = ACTIONS(2335), - [anon_sym_protected] = ACTIONS(2335), - [anon_sym_module] = ACTIONS(2335), - [anon_sym_any] = ACTIONS(2335), - [anon_sym_number] = ACTIONS(2335), - [anon_sym_boolean] = ACTIONS(2335), - [anon_sym_string] = ACTIONS(2335), - [anon_sym_symbol] = ACTIONS(2335), - [anon_sym_interface] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [sym_readonly] = ACTIONS(2335), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2154), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2154), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2154), + [sym_number] = ACTIONS(2154), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym_readonly] = ACTIONS(2156), }, [661] = { - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2339), - [anon_sym_export] = ACTIONS(2339), - [anon_sym_default] = ACTIONS(2339), - [anon_sym_namespace] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_typeof] = ACTIONS(2339), - [anon_sym_import] = ACTIONS(2339), - [anon_sym_var] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_switch] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_do] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2339), - [anon_sym_with] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_debugger] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_throw] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2339), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2339), - [anon_sym_class] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_function] = ACTIONS(2339), - [anon_sym_new] = ACTIONS(2339), - [anon_sym_PLUS] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2337), - [anon_sym_void] = ACTIONS(2339), - [anon_sym_delete] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [anon_sym_SQUOTE] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2337), - [sym_number] = ACTIONS(2337), - [sym_this] = ACTIONS(2339), - [sym_super] = ACTIONS(2339), - [sym_true] = ACTIONS(2339), - [sym_false] = ACTIONS(2339), - [sym_null] = ACTIONS(2339), - [sym_undefined] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2339), - [anon_sym_abstract] = ACTIONS(2339), - [anon_sym_get] = ACTIONS(2339), - [anon_sym_set] = ACTIONS(2339), - [anon_sym_declare] = ACTIONS(2339), - [anon_sym_public] = ACTIONS(2339), - [anon_sym_private] = ACTIONS(2339), - [anon_sym_protected] = ACTIONS(2339), - [anon_sym_module] = ACTIONS(2339), - [anon_sym_any] = ACTIONS(2339), - [anon_sym_number] = ACTIONS(2339), - [anon_sym_boolean] = ACTIONS(2339), - [anon_sym_string] = ACTIONS(2339), - [anon_sym_symbol] = ACTIONS(2339), - [anon_sym_interface] = ACTIONS(2339), - [anon_sym_enum] = ACTIONS(2339), - [sym_readonly] = ACTIONS(2339), + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2158), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2158), + [sym_number] = ACTIONS(2158), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym_readonly] = ACTIONS(2160), }, [662] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2343), - [anon_sym_export] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_namespace] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_typeof] = ACTIONS(2343), - [anon_sym_import] = ACTIONS(2343), - [anon_sym_var] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [anon_sym_BANG] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_switch] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_debugger] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_throw] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_case] = ACTIONS(2343), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_SLASH] = ACTIONS(2343), - [anon_sym_class] = ACTIONS(2343), - [anon_sym_async] = ACTIONS(2343), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2341), - [anon_sym_void] = ACTIONS(2343), - [anon_sym_delete] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2341), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2341), - [sym_number] = ACTIONS(2341), - [sym_this] = ACTIONS(2343), - [sym_super] = ACTIONS(2343), - [sym_true] = ACTIONS(2343), - [sym_false] = ACTIONS(2343), - [sym_null] = ACTIONS(2343), - [sym_undefined] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2343), - [anon_sym_get] = ACTIONS(2343), - [anon_sym_set] = ACTIONS(2343), - [anon_sym_declare] = ACTIONS(2343), - [anon_sym_public] = ACTIONS(2343), - [anon_sym_private] = ACTIONS(2343), - [anon_sym_protected] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_any] = ACTIONS(2343), - [anon_sym_number] = ACTIONS(2343), - [anon_sym_boolean] = ACTIONS(2343), - [anon_sym_string] = ACTIONS(2343), - [anon_sym_symbol] = ACTIONS(2343), - [anon_sym_interface] = ACTIONS(2343), - [anon_sym_enum] = ACTIONS(2343), - [sym_readonly] = ACTIONS(2343), + [ts_builtin_sym_end] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_await] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2162), + [sym_number] = ACTIONS(2162), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_abstract] = ACTIONS(2164), + [anon_sym_get] = ACTIONS(2164), + [anon_sym_set] = ACTIONS(2164), + [anon_sym_declare] = ACTIONS(2164), + [anon_sym_public] = ACTIONS(2164), + [anon_sym_private] = ACTIONS(2164), + [anon_sym_protected] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_any] = ACTIONS(2164), + [anon_sym_number] = ACTIONS(2164), + [anon_sym_boolean] = ACTIONS(2164), + [anon_sym_string] = ACTIONS(2164), + [anon_sym_symbol] = ACTIONS(2164), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym_readonly] = ACTIONS(2164), }, [663] = { - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2347), - [anon_sym_export] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2347), - [anon_sym_typeof] = ACTIONS(2347), - [anon_sym_import] = ACTIONS(2347), - [anon_sym_var] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_BANG] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_with] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_debugger] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2345), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_yield] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_function] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_TILDE] = ACTIONS(2345), - [anon_sym_void] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2345), - [anon_sym_DASH_DASH] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2345), - [sym_number] = ACTIONS(2345), - [sym_this] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_undefined] = ACTIONS(2347), - [anon_sym_AT] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_abstract] = ACTIONS(2347), - [anon_sym_get] = ACTIONS(2347), - [anon_sym_set] = ACTIONS(2347), - [anon_sym_declare] = ACTIONS(2347), - [anon_sym_public] = ACTIONS(2347), - [anon_sym_private] = ACTIONS(2347), - [anon_sym_protected] = ACTIONS(2347), - [anon_sym_module] = ACTIONS(2347), - [anon_sym_any] = ACTIONS(2347), - [anon_sym_number] = ACTIONS(2347), - [anon_sym_boolean] = ACTIONS(2347), - [anon_sym_string] = ACTIONS(2347), - [anon_sym_symbol] = ACTIONS(2347), - [anon_sym_interface] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [sym_readonly] = ACTIONS(2347), + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_namespace] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_type] = ACTIONS(1082), + [anon_sym_typeof] = ACTIONS(1082), + [anon_sym_import] = ACTIONS(1082), + [anon_sym_var] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_with] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_debugger] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_throw] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_class] = ACTIONS(1082), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_void] = ACTIONS(1082), + [anon_sym_delete] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1080), + [sym_number] = ACTIONS(1080), + [sym_this] = ACTIONS(1082), + [sym_super] = ACTIONS(1082), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_undefined] = ACTIONS(1082), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_abstract] = ACTIONS(1082), + [anon_sym_get] = ACTIONS(1082), + [anon_sym_set] = ACTIONS(1082), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_public] = ACTIONS(1082), + [anon_sym_private] = ACTIONS(1082), + [anon_sym_protected] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_any] = ACTIONS(1082), + [anon_sym_number] = ACTIONS(1082), + [anon_sym_boolean] = ACTIONS(1082), + [anon_sym_string] = ACTIONS(1082), + [anon_sym_symbol] = ACTIONS(1082), + [anon_sym_interface] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [sym_readonly] = ACTIONS(1082), }, [664] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2351), - [anon_sym_export] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2351), - [anon_sym_typeof] = ACTIONS(2351), - [anon_sym_import] = ACTIONS(2351), - [anon_sym_var] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_await] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_with] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_debugger] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_yield] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_SLASH] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_async] = ACTIONS(2351), - [anon_sym_function] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_void] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2349), - [sym_number] = ACTIONS(2349), - [sym_this] = ACTIONS(2351), - [sym_super] = ACTIONS(2351), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_undefined] = ACTIONS(2351), - [anon_sym_AT] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_abstract] = ACTIONS(2351), - [anon_sym_get] = ACTIONS(2351), - [anon_sym_set] = ACTIONS(2351), - [anon_sym_declare] = ACTIONS(2351), - [anon_sym_public] = ACTIONS(2351), - [anon_sym_private] = ACTIONS(2351), - [anon_sym_protected] = ACTIONS(2351), - [anon_sym_module] = ACTIONS(2351), - [anon_sym_any] = ACTIONS(2351), - [anon_sym_number] = ACTIONS(2351), - [anon_sym_boolean] = ACTIONS(2351), - [anon_sym_string] = ACTIONS(2351), - [anon_sym_symbol] = ACTIONS(2351), - [anon_sym_interface] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [sym_readonly] = ACTIONS(2351), + [sym_object] = STATE(3171), + [sym_array] = STATE(3169), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4123), + [sym_nested_type_identifier] = STATE(2506), + [sym__type] = STATE(3729), + [sym_constructor_type] = STATE(3729), + [sym__primary_type] = STATE(3454), + [sym_infer_type] = STATE(3729), + [sym_conditional_type] = STATE(3454), + [sym_generic_type] = STATE(3454), + [sym_type_query] = STATE(3454), + [sym_index_type_query] = STATE(3454), + [sym_lookup_type] = STATE(3454), + [sym_literal_type] = STATE(3454), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(3454), + [sym_flow_maybe_type] = STATE(3454), + [sym_parenthesized_type] = STATE(3454), + [sym_predefined_type] = STATE(3454), + [sym_object_type] = STATE(3454), + [sym_type_parameters] = STATE(3960), + [sym_array_type] = STATE(3454), + [sym__tuple_type_body] = STATE(541), + [sym_tuple_type] = STATE(3454), + [sym_union_type] = STATE(3729), + [sym_intersection_type] = STATE(3729), + [sym_function_type] = STATE(3729), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(676), + [anon_sym_namespace] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_type] = ACTIONS(615), + [anon_sym_typeof] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(615), + [anon_sym_new] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(665), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [anon_sym_declare] = ACTIONS(615), + [anon_sym_public] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_protected] = ACTIONS(615), + [anon_sym_module] = ACTIONS(615), + [anon_sym_any] = ACTIONS(669), + [anon_sym_number] = ACTIONS(669), + [anon_sym_boolean] = ACTIONS(669), + [anon_sym_string] = ACTIONS(669), + [anon_sym_symbol] = ACTIONS(669), + [sym_readonly] = ACTIONS(671), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(553), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, [665] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2355), - [anon_sym_export] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_typeof] = ACTIONS(2355), - [anon_sym_import] = ACTIONS(2355), - [anon_sym_var] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_with] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_debugger] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_void] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2353), - [sym_number] = ACTIONS(2353), - [sym_this] = ACTIONS(2355), - [sym_super] = ACTIONS(2355), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), - [sym_undefined] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_abstract] = ACTIONS(2355), - [anon_sym_get] = ACTIONS(2355), - [anon_sym_set] = ACTIONS(2355), - [anon_sym_declare] = ACTIONS(2355), - [anon_sym_public] = ACTIONS(2355), - [anon_sym_private] = ACTIONS(2355), - [anon_sym_protected] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_any] = ACTIONS(2355), - [anon_sym_number] = ACTIONS(2355), - [anon_sym_boolean] = ACTIONS(2355), - [anon_sym_string] = ACTIONS(2355), - [anon_sym_symbol] = ACTIONS(2355), - [anon_sym_interface] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [sym_readonly] = ACTIONS(2355), + [ts_builtin_sym_end] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2168), + [anon_sym_export] = ACTIONS(2168), + [anon_sym_default] = ACTIONS(2168), + [anon_sym_namespace] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2168), + [anon_sym_typeof] = ACTIONS(2168), + [anon_sym_import] = ACTIONS(2168), + [anon_sym_var] = ACTIONS(2168), + [anon_sym_let] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_with] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_debugger] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_throw] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_case] = ACTIONS(2168), + [anon_sym_yield] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2168), + [anon_sym_class] = ACTIONS(2168), + [anon_sym_async] = ACTIONS(2168), + [anon_sym_function] = ACTIONS(2168), + [anon_sym_new] = ACTIONS(2168), + [anon_sym_PLUS] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2168), + [anon_sym_delete] = ACTIONS(2168), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_this] = ACTIONS(2168), + [sym_super] = ACTIONS(2168), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [sym_null] = ACTIONS(2168), + [sym_undefined] = ACTIONS(2168), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_abstract] = ACTIONS(2168), + [anon_sym_get] = ACTIONS(2168), + [anon_sym_set] = ACTIONS(2168), + [anon_sym_declare] = ACTIONS(2168), + [anon_sym_public] = ACTIONS(2168), + [anon_sym_private] = ACTIONS(2168), + [anon_sym_protected] = ACTIONS(2168), + [anon_sym_module] = ACTIONS(2168), + [anon_sym_any] = ACTIONS(2168), + [anon_sym_number] = ACTIONS(2168), + [anon_sym_boolean] = ACTIONS(2168), + [anon_sym_string] = ACTIONS(2168), + [anon_sym_symbol] = ACTIONS(2168), + [anon_sym_interface] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [sym_readonly] = ACTIONS(2168), }, [666] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_namespace] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_typeof] = ACTIONS(2359), - [anon_sym_import] = ACTIONS(2359), - [anon_sym_var] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_switch] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_await] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_debugger] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_throw] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_case] = ACTIONS(2359), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2359), - [anon_sym_class] = ACTIONS(2359), - [anon_sym_async] = ACTIONS(2359), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_void] = ACTIONS(2359), - [anon_sym_delete] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2357), - [sym_number] = ACTIONS(2357), - [sym_this] = ACTIONS(2359), - [sym_super] = ACTIONS(2359), - [sym_true] = ACTIONS(2359), - [sym_false] = ACTIONS(2359), - [sym_null] = ACTIONS(2359), - [sym_undefined] = ACTIONS(2359), - [anon_sym_AT] = ACTIONS(2357), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_abstract] = ACTIONS(2359), - [anon_sym_get] = ACTIONS(2359), - [anon_sym_set] = ACTIONS(2359), - [anon_sym_declare] = ACTIONS(2359), - [anon_sym_public] = ACTIONS(2359), - [anon_sym_private] = ACTIONS(2359), - [anon_sym_protected] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_any] = ACTIONS(2359), - [anon_sym_number] = ACTIONS(2359), - [anon_sym_boolean] = ACTIONS(2359), - [anon_sym_string] = ACTIONS(2359), - [anon_sym_symbol] = ACTIONS(2359), - [anon_sym_interface] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [sym_readonly] = ACTIONS(2359), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [sym_readonly] = ACTIONS(2172), }, [667] = { - [ts_builtin_sym_end] = ACTIONS(2361), - [sym_identifier] = ACTIONS(2363), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_namespace] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_type] = ACTIONS(2363), - [anon_sym_typeof] = ACTIONS(2363), - [anon_sym_import] = ACTIONS(2363), - [anon_sym_var] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_switch] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_debugger] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_throw] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_case] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_SLASH] = ACTIONS(2363), - [anon_sym_class] = ACTIONS(2363), - [anon_sym_async] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2363), - [anon_sym_PLUS] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2361), - [anon_sym_void] = ACTIONS(2363), - [anon_sym_delete] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2361), - [anon_sym_DASH_DASH] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2361), - [sym_number] = ACTIONS(2361), - [sym_this] = ACTIONS(2363), - [sym_super] = ACTIONS(2363), - [sym_true] = ACTIONS(2363), - [sym_false] = ACTIONS(2363), - [sym_null] = ACTIONS(2363), - [sym_undefined] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2363), - [anon_sym_abstract] = ACTIONS(2363), - [anon_sym_get] = ACTIONS(2363), - [anon_sym_set] = ACTIONS(2363), - [anon_sym_declare] = ACTIONS(2363), - [anon_sym_public] = ACTIONS(2363), - [anon_sym_private] = ACTIONS(2363), - [anon_sym_protected] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_any] = ACTIONS(2363), - [anon_sym_number] = ACTIONS(2363), - [anon_sym_boolean] = ACTIONS(2363), - [anon_sym_string] = ACTIONS(2363), - [anon_sym_symbol] = ACTIONS(2363), - [anon_sym_interface] = ACTIONS(2363), - [anon_sym_enum] = ACTIONS(2363), - [sym_readonly] = ACTIONS(2363), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_export] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_namespace] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_var] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_with] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_debugger] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_throw] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_void] = ACTIONS(1190), + [anon_sym_delete] = ACTIONS(1190), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [sym_this] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_undefined] = ACTIONS(1190), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_abstract] = ACTIONS(1190), + [anon_sym_get] = ACTIONS(1190), + [anon_sym_set] = ACTIONS(1190), + [anon_sym_declare] = ACTIONS(1190), + [anon_sym_public] = ACTIONS(1190), + [anon_sym_private] = ACTIONS(1190), + [anon_sym_protected] = ACTIONS(1190), + [anon_sym_module] = ACTIONS(1190), + [anon_sym_any] = ACTIONS(1190), + [anon_sym_number] = ACTIONS(1190), + [anon_sym_boolean] = ACTIONS(1190), + [anon_sym_string] = ACTIONS(1190), + [anon_sym_symbol] = ACTIONS(1190), + [anon_sym_interface] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [sym_readonly] = ACTIONS(1190), }, [668] = { - [sym_identifier] = ACTIONS(2365), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2365), - [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(2367), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [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(2367), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2367), - [anon_sym_LT] = ACTIONS(2367), - [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(2367), - [anon_sym_void] = ACTIONS(2365), - [anon_sym_delete] = ACTIONS(2365), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2367), - [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(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(2367), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [sym_readonly] = ACTIONS(2365), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_case] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2176), + [anon_sym_abstract] = ACTIONS(2176), + [anon_sym_get] = ACTIONS(2176), + [anon_sym_set] = ACTIONS(2176), + [anon_sym_declare] = ACTIONS(2176), + [anon_sym_public] = ACTIONS(2176), + [anon_sym_private] = ACTIONS(2176), + [anon_sym_protected] = ACTIONS(2176), + [anon_sym_module] = ACTIONS(2176), + [anon_sym_any] = ACTIONS(2176), + [anon_sym_number] = ACTIONS(2176), + [anon_sym_boolean] = ACTIONS(2176), + [anon_sym_string] = ACTIONS(2176), + [anon_sym_symbol] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym_readonly] = ACTIONS(2176), }, [669] = { - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2369), - [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(2371), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_switch] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [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(2371), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(2371), - [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(2371), - [anon_sym_void] = ACTIONS(2369), - [anon_sym_delete] = ACTIONS(2369), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [anon_sym_SQUOTE] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2371), - [sym_number] = ACTIONS(2371), - [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(2371), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [sym_readonly] = ACTIONS(2369), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_export] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_namespace] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_typeof] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_var] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_await] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_debugger] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_throw] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1194), + [anon_sym_class] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_function] = ACTIONS(1194), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_delete] = ACTIONS(1194), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [sym_this] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [sym_null] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1194), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_abstract] = ACTIONS(1194), + [anon_sym_get] = ACTIONS(1194), + [anon_sym_set] = ACTIONS(1194), + [anon_sym_declare] = ACTIONS(1194), + [anon_sym_public] = ACTIONS(1194), + [anon_sym_private] = ACTIONS(1194), + [anon_sym_protected] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_any] = ACTIONS(1194), + [anon_sym_number] = ACTIONS(1194), + [anon_sym_boolean] = ACTIONS(1194), + [anon_sym_string] = ACTIONS(1194), + [anon_sym_symbol] = ACTIONS(1194), + [anon_sym_interface] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [sym_readonly] = ACTIONS(1194), }, [670] = { - [sym_identifier] = ACTIONS(2373), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2373), - [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(2375), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_switch] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [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(2375), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2375), - [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(2375), - [anon_sym_void] = ACTIONS(2373), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2375), - [sym_number] = ACTIONS(2375), - [sym_this] = ACTIONS(2373), - [sym_super] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_null] = ACTIONS(2373), - [sym_undefined] = ACTIONS(2373), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_abstract] = ACTIONS(2373), - [anon_sym_get] = ACTIONS(2373), - [anon_sym_set] = ACTIONS(2373), - [anon_sym_declare] = ACTIONS(2373), - [anon_sym_public] = ACTIONS(2373), - [anon_sym_private] = ACTIONS(2373), - [anon_sym_protected] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_any] = ACTIONS(2373), - [anon_sym_number] = ACTIONS(2373), - [anon_sym_boolean] = ACTIONS(2373), - [anon_sym_string] = ACTIONS(2373), - [anon_sym_symbol] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [sym_readonly] = ACTIONS(2373), + [ts_builtin_sym_end] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2180), + [anon_sym_export] = ACTIONS(2180), + [anon_sym_default] = ACTIONS(2180), + [anon_sym_namespace] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2180), + [anon_sym_typeof] = ACTIONS(2180), + [anon_sym_import] = ACTIONS(2180), + [anon_sym_var] = ACTIONS(2180), + [anon_sym_let] = ACTIONS(2180), + [anon_sym_const] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_switch] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_do] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2180), + [anon_sym_with] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_debugger] = ACTIONS(2180), + [anon_sym_return] = ACTIONS(2180), + [anon_sym_throw] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2180), + [anon_sym_yield] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2180), + [anon_sym_class] = ACTIONS(2180), + [anon_sym_async] = ACTIONS(2180), + [anon_sym_function] = ACTIONS(2180), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2180), + [anon_sym_delete] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_this] = ACTIONS(2180), + [sym_super] = ACTIONS(2180), + [sym_true] = ACTIONS(2180), + [sym_false] = ACTIONS(2180), + [sym_null] = ACTIONS(2180), + [sym_undefined] = ACTIONS(2180), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2180), + [anon_sym_abstract] = ACTIONS(2180), + [anon_sym_get] = ACTIONS(2180), + [anon_sym_set] = ACTIONS(2180), + [anon_sym_declare] = ACTIONS(2180), + [anon_sym_public] = ACTIONS(2180), + [anon_sym_private] = ACTIONS(2180), + [anon_sym_protected] = ACTIONS(2180), + [anon_sym_module] = ACTIONS(2180), + [anon_sym_any] = ACTIONS(2180), + [anon_sym_number] = ACTIONS(2180), + [anon_sym_boolean] = ACTIONS(2180), + [anon_sym_string] = ACTIONS(2180), + [anon_sym_symbol] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2180), + [anon_sym_enum] = ACTIONS(2180), + [sym_readonly] = ACTIONS(2180), }, [671] = { - [sym_identifier] = ACTIONS(2377), - [anon_sym_export] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2377), - [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(2379), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [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(2379), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2379), - [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(2379), - [anon_sym_void] = ACTIONS(2377), - [anon_sym_delete] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [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(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(2379), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [sym_readonly] = ACTIONS(2377), + [ts_builtin_sym_end] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym_readonly] = ACTIONS(2184), }, [672] = { - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2381), - [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(2383), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [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(2383), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LT] = ACTIONS(2383), - [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_TILDE] = ACTIONS(2383), - [anon_sym_void] = ACTIONS(2381), - [anon_sym_delete] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2383), - [sym_number] = ACTIONS(2383), - [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(2383), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [sym_readonly] = ACTIONS(2381), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2186), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [anon_sym_SQUOTE] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2186), + [sym_number] = ACTIONS(2186), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym_readonly] = ACTIONS(2188), }, [673] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_typeof] = ACTIONS(2385), - [anon_sym_import] = ACTIONS(2385), - [anon_sym_var] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_with] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_debugger] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [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_TILDE] = ACTIONS(2387), - [anon_sym_void] = ACTIONS(2385), - [anon_sym_delete] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2387), - [sym_number] = ACTIONS(2387), - [sym_this] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_true] = ACTIONS(2385), - [sym_false] = ACTIONS(2385), - [sym_null] = ACTIONS(2385), - [sym_undefined] = ACTIONS(2385), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_abstract] = ACTIONS(2385), - [anon_sym_get] = ACTIONS(2385), - [anon_sym_set] = ACTIONS(2385), - [anon_sym_declare] = ACTIONS(2385), - [anon_sym_public] = ACTIONS(2385), - [anon_sym_private] = ACTIONS(2385), - [anon_sym_protected] = ACTIONS(2385), - [anon_sym_module] = ACTIONS(2385), - [anon_sym_any] = ACTIONS(2385), - [anon_sym_number] = ACTIONS(2385), - [anon_sym_boolean] = ACTIONS(2385), - [anon_sym_string] = ACTIONS(2385), - [anon_sym_symbol] = ACTIONS(2385), - [anon_sym_interface] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [sym_readonly] = ACTIONS(2385), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_default] = ACTIONS(2192), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2190), + [anon_sym_else] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_case] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_SQUOTE] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2190), + [sym_number] = ACTIONS(2190), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2192), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_get] = ACTIONS(2192), + [anon_sym_set] = ACTIONS(2192), + [anon_sym_declare] = ACTIONS(2192), + [anon_sym_public] = ACTIONS(2192), + [anon_sym_private] = ACTIONS(2192), + [anon_sym_protected] = ACTIONS(2192), + [anon_sym_module] = ACTIONS(2192), + [anon_sym_any] = ACTIONS(2192), + [anon_sym_number] = ACTIONS(2192), + [anon_sym_boolean] = ACTIONS(2192), + [anon_sym_string] = ACTIONS(2192), + [anon_sym_symbol] = ACTIONS(2192), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym_readonly] = ACTIONS(2192), }, [674] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_export] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_typeof] = ACTIONS(2389), - [anon_sym_import] = ACTIONS(2389), - [anon_sym_var] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_with] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_debugger] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2391), - [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_TILDE] = ACTIONS(2391), - [anon_sym_void] = ACTIONS(2389), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [anon_sym_SQUOTE] = ACTIONS(2391), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2391), - [sym_number] = ACTIONS(2391), - [sym_this] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_true] = ACTIONS(2389), - [sym_false] = ACTIONS(2389), - [sym_null] = ACTIONS(2389), - [sym_undefined] = ACTIONS(2389), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_get] = ACTIONS(2389), - [anon_sym_set] = ACTIONS(2389), - [anon_sym_declare] = ACTIONS(2389), - [anon_sym_public] = ACTIONS(2389), - [anon_sym_private] = ACTIONS(2389), - [anon_sym_protected] = ACTIONS(2389), - [anon_sym_module] = ACTIONS(2389), - [anon_sym_any] = ACTIONS(2389), - [anon_sym_number] = ACTIONS(2389), - [anon_sym_boolean] = ACTIONS(2389), - [anon_sym_string] = ACTIONS(2389), - [anon_sym_symbol] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [sym_readonly] = ACTIONS(2389), + [ts_builtin_sym_end] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2194), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_case] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2194), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [anon_sym_SQUOTE] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2194), + [sym_number] = ACTIONS(2194), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [sym_readonly] = ACTIONS(2196), }, [675] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_export] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_typeof] = ACTIONS(2393), - [anon_sym_import] = ACTIONS(2393), - [anon_sym_var] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_with] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_debugger] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(2395), - [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_TILDE] = ACTIONS(2395), - [anon_sym_void] = ACTIONS(2393), - [anon_sym_delete] = ACTIONS(2393), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2395), - [sym_number] = ACTIONS(2395), - [sym_this] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_null] = ACTIONS(2393), - [sym_undefined] = ACTIONS(2393), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_any] = ACTIONS(2393), - [anon_sym_number] = ACTIONS(2393), - [anon_sym_boolean] = ACTIONS(2393), - [anon_sym_string] = ACTIONS(2393), - [anon_sym_symbol] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [sym_readonly] = ACTIONS(2393), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2200), + [anon_sym_abstract] = ACTIONS(2200), + [anon_sym_get] = ACTIONS(2200), + [anon_sym_set] = ACTIONS(2200), + [anon_sym_declare] = ACTIONS(2200), + [anon_sym_public] = ACTIONS(2200), + [anon_sym_private] = ACTIONS(2200), + [anon_sym_protected] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_any] = ACTIONS(2200), + [anon_sym_number] = ACTIONS(2200), + [anon_sym_boolean] = ACTIONS(2200), + [anon_sym_string] = ACTIONS(2200), + [anon_sym_symbol] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym_readonly] = ACTIONS(2200), }, [676] = { - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_typeof] = ACTIONS(2397), - [anon_sym_import] = ACTIONS(2397), - [anon_sym_var] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_with] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_debugger] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [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_TILDE] = ACTIONS(2399), - [anon_sym_void] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [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(2397), - [sym_super] = ACTIONS(2397), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_undefined] = ACTIONS(2397), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_abstract] = ACTIONS(2397), - [anon_sym_get] = ACTIONS(2397), - [anon_sym_set] = ACTIONS(2397), - [anon_sym_declare] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_private] = ACTIONS(2397), - [anon_sym_protected] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_any] = ACTIONS(2397), - [anon_sym_number] = ACTIONS(2397), - [anon_sym_boolean] = ACTIONS(2397), - [anon_sym_string] = ACTIONS(2397), - [anon_sym_symbol] = ACTIONS(2397), - [anon_sym_interface] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [sym_readonly] = ACTIONS(2397), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_else] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2202), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [anon_sym_SQUOTE] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2202), + [sym_number] = ACTIONS(2202), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym_readonly] = ACTIONS(2204), }, [677] = { - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2401), - [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(2403), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [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(2403), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(2403), - [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(2403), - [anon_sym_void] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2403), - [sym_number] = ACTIONS(2403), - [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(2403), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_abstract] = 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_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_interface] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [sym_readonly] = ACTIONS(2401), + [ts_builtin_sym_end] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2206), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2206), + [sym_number] = ACTIONS(2206), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym_readonly] = ACTIONS(2208), }, [678] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3577), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3177), - [sym_optional_type] = STATE(3177), - [sym_rest_type] = STATE(3177), - [sym__tuple_type_member] = STATE(3177), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3324), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2405), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2210), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2210), + [sym_number] = ACTIONS(2210), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym_readonly] = ACTIONS(2212), + }, + [679] = { + [ts_builtin_sym_end] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2216), + [anon_sym_export] = ACTIONS(2216), + [anon_sym_default] = ACTIONS(2216), + [anon_sym_namespace] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2216), + [anon_sym_typeof] = ACTIONS(2216), + [anon_sym_import] = ACTIONS(2216), + [anon_sym_var] = ACTIONS(2216), + [anon_sym_let] = ACTIONS(2216), + [anon_sym_const] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2216), + [anon_sym_switch] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2216), + [anon_sym_do] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2216), + [anon_sym_with] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2216), + [anon_sym_continue] = ACTIONS(2216), + [anon_sym_debugger] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_throw] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2216), + [anon_sym_yield] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2216), + [anon_sym_class] = ACTIONS(2216), + [anon_sym_async] = ACTIONS(2216), + [anon_sym_function] = ACTIONS(2216), + [anon_sym_new] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(2216), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_this] = ACTIONS(2216), + [sym_super] = ACTIONS(2216), + [sym_true] = ACTIONS(2216), + [sym_false] = ACTIONS(2216), + [sym_null] = ACTIONS(2216), + [sym_undefined] = ACTIONS(2216), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2216), + [anon_sym_abstract] = ACTIONS(2216), + [anon_sym_get] = ACTIONS(2216), + [anon_sym_set] = ACTIONS(2216), + [anon_sym_declare] = ACTIONS(2216), + [anon_sym_public] = ACTIONS(2216), + [anon_sym_private] = ACTIONS(2216), + [anon_sym_protected] = ACTIONS(2216), + [anon_sym_module] = ACTIONS(2216), + [anon_sym_any] = ACTIONS(2216), + [anon_sym_number] = ACTIONS(2216), + [anon_sym_boolean] = ACTIONS(2216), + [anon_sym_string] = ACTIONS(2216), + [anon_sym_symbol] = ACTIONS(2216), + [anon_sym_interface] = ACTIONS(2216), + [anon_sym_enum] = ACTIONS(2216), + [sym_readonly] = ACTIONS(2216), + }, + [680] = { + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_export] = ACTIONS(2220), + [anon_sym_default] = ACTIONS(2220), + [anon_sym_namespace] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_typeof] = ACTIONS(2220), + [anon_sym_import] = ACTIONS(2220), + [anon_sym_var] = ACTIONS(2220), + [anon_sym_let] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2220), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_await] = ACTIONS(2220), + [anon_sym_while] = ACTIONS(2220), + [anon_sym_do] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2220), + [anon_sym_with] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_debugger] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_throw] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2220), + [anon_sym_yield] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LT] = ACTIONS(2218), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_class] = ACTIONS(2220), + [anon_sym_async] = ACTIONS(2220), + [anon_sym_function] = ACTIONS(2220), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2218), + [anon_sym_void] = ACTIONS(2220), + [anon_sym_delete] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_SQUOTE] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2218), + [sym_number] = ACTIONS(2218), + [sym_this] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_null] = ACTIONS(2220), + [sym_undefined] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_abstract] = ACTIONS(2220), + [anon_sym_get] = ACTIONS(2220), + [anon_sym_set] = ACTIONS(2220), + [anon_sym_declare] = ACTIONS(2220), + [anon_sym_public] = ACTIONS(2220), + [anon_sym_private] = ACTIONS(2220), + [anon_sym_protected] = ACTIONS(2220), + [anon_sym_module] = ACTIONS(2220), + [anon_sym_any] = ACTIONS(2220), + [anon_sym_number] = ACTIONS(2220), + [anon_sym_boolean] = ACTIONS(2220), + [anon_sym_string] = ACTIONS(2220), + [anon_sym_symbol] = ACTIONS(2220), + [anon_sym_interface] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [sym_readonly] = ACTIONS(2220), + }, + [681] = { + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2224), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_typeof] = ACTIONS(2224), + [anon_sym_import] = ACTIONS(2224), + [anon_sym_var] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_switch] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_do] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_with] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_debugger] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_yield] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_class] = ACTIONS(2224), + [anon_sym_async] = ACTIONS(2224), + [anon_sym_function] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2224), + [anon_sym_delete] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_this] = ACTIONS(2224), + [sym_super] = ACTIONS(2224), + [sym_true] = ACTIONS(2224), + [sym_false] = ACTIONS(2224), + [sym_null] = ACTIONS(2224), + [sym_undefined] = ACTIONS(2224), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_abstract] = ACTIONS(2224), + [anon_sym_get] = ACTIONS(2224), + [anon_sym_set] = ACTIONS(2224), + [anon_sym_declare] = ACTIONS(2224), + [anon_sym_public] = ACTIONS(2224), + [anon_sym_private] = ACTIONS(2224), + [anon_sym_protected] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_any] = ACTIONS(2224), + [anon_sym_number] = ACTIONS(2224), + [anon_sym_boolean] = ACTIONS(2224), + [anon_sym_string] = ACTIONS(2224), + [anon_sym_symbol] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2224), + [anon_sym_enum] = ACTIONS(2224), + [sym_readonly] = ACTIONS(2224), + }, + [682] = { + [ts_builtin_sym_end] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2228), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2228), + [anon_sym_namespace] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2228), + [anon_sym_typeof] = ACTIONS(2228), + [anon_sym_import] = ACTIONS(2228), + [anon_sym_var] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_switch] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_do] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [anon_sym_with] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_debugger] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2228), + [anon_sym_yield] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_class] = ACTIONS(2228), + [anon_sym_async] = ACTIONS(2228), + [anon_sym_function] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2228), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_this] = ACTIONS(2228), + [sym_super] = ACTIONS(2228), + [sym_true] = ACTIONS(2228), + [sym_false] = ACTIONS(2228), + [sym_null] = ACTIONS(2228), + [sym_undefined] = ACTIONS(2228), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_abstract] = ACTIONS(2228), + [anon_sym_get] = ACTIONS(2228), + [anon_sym_set] = ACTIONS(2228), + [anon_sym_declare] = ACTIONS(2228), + [anon_sym_public] = ACTIONS(2228), + [anon_sym_private] = ACTIONS(2228), + [anon_sym_protected] = ACTIONS(2228), + [anon_sym_module] = ACTIONS(2228), + [anon_sym_any] = ACTIONS(2228), + [anon_sym_number] = ACTIONS(2228), + [anon_sym_boolean] = ACTIONS(2228), + [anon_sym_string] = ACTIONS(2228), + [anon_sym_symbol] = ACTIONS(2228), + [anon_sym_interface] = ACTIONS(2228), + [anon_sym_enum] = ACTIONS(2228), + [sym_readonly] = ACTIONS(2228), + }, + [683] = { + [ts_builtin_sym_end] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2232), + [anon_sym_export] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_typeof] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_var] = ACTIONS(2232), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_with] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_debugger] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_case] = ACTIONS(2232), + [anon_sym_yield] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_class] = ACTIONS(2232), + [anon_sym_async] = ACTIONS(2232), + [anon_sym_function] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2232), + [anon_sym_delete] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_this] = ACTIONS(2232), + [sym_super] = ACTIONS(2232), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [sym_null] = ACTIONS(2232), + [sym_undefined] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_abstract] = ACTIONS(2232), + [anon_sym_get] = ACTIONS(2232), + [anon_sym_set] = ACTIONS(2232), + [anon_sym_declare] = ACTIONS(2232), + [anon_sym_public] = ACTIONS(2232), + [anon_sym_private] = ACTIONS(2232), + [anon_sym_protected] = ACTIONS(2232), + [anon_sym_module] = ACTIONS(2232), + [anon_sym_any] = ACTIONS(2232), + [anon_sym_number] = ACTIONS(2232), + [anon_sym_boolean] = ACTIONS(2232), + [anon_sym_string] = ACTIONS(2232), + [anon_sym_symbol] = ACTIONS(2232), + [anon_sym_interface] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [sym_readonly] = ACTIONS(2232), + }, + [684] = { + [ts_builtin_sym_end] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym_readonly] = ACTIONS(2236), + }, + [685] = { + [ts_builtin_sym_end] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2240), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2240), + [anon_sym_typeof] = ACTIONS(2240), + [anon_sym_import] = ACTIONS(2240), + [anon_sym_var] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_with] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_debugger] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_throw] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2240), + [anon_sym_yield] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_class] = ACTIONS(2240), + [anon_sym_async] = ACTIONS(2240), + [anon_sym_function] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2240), + [anon_sym_delete] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_this] = ACTIONS(2240), + [sym_super] = ACTIONS(2240), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [sym_null] = ACTIONS(2240), + [sym_undefined] = ACTIONS(2240), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_abstract] = ACTIONS(2240), + [anon_sym_get] = ACTIONS(2240), + [anon_sym_set] = ACTIONS(2240), + [anon_sym_declare] = ACTIONS(2240), + [anon_sym_public] = ACTIONS(2240), + [anon_sym_private] = ACTIONS(2240), + [anon_sym_protected] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_any] = ACTIONS(2240), + [anon_sym_number] = ACTIONS(2240), + [anon_sym_boolean] = ACTIONS(2240), + [anon_sym_string] = ACTIONS(2240), + [anon_sym_symbol] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [sym_readonly] = ACTIONS(2240), + }, + [686] = { + [ts_builtin_sym_end] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym_readonly] = ACTIONS(2244), + }, + [687] = { + [ts_builtin_sym_end] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2248), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_default] = ACTIONS(2248), + [anon_sym_namespace] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2248), + [anon_sym_typeof] = ACTIONS(2248), + [anon_sym_import] = ACTIONS(2248), + [anon_sym_var] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_switch] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_await] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_debugger] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_throw] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_case] = ACTIONS(2248), + [anon_sym_yield] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_async] = ACTIONS(2248), + [anon_sym_function] = ACTIONS(2248), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_void] = ACTIONS(2248), + [anon_sym_delete] = ACTIONS(2248), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2246), + [sym_number] = ACTIONS(2246), + [sym_this] = ACTIONS(2248), + [sym_super] = ACTIONS(2248), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [sym_null] = ACTIONS(2248), + [sym_undefined] = ACTIONS(2248), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_abstract] = ACTIONS(2248), + [anon_sym_get] = ACTIONS(2248), + [anon_sym_set] = ACTIONS(2248), + [anon_sym_declare] = ACTIONS(2248), + [anon_sym_public] = ACTIONS(2248), + [anon_sym_private] = ACTIONS(2248), + [anon_sym_protected] = ACTIONS(2248), + [anon_sym_module] = ACTIONS(2248), + [anon_sym_any] = ACTIONS(2248), + [anon_sym_number] = ACTIONS(2248), + [anon_sym_boolean] = ACTIONS(2248), + [anon_sym_string] = ACTIONS(2248), + [anon_sym_symbol] = ACTIONS(2248), + [anon_sym_interface] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [sym_readonly] = ACTIONS(2248), + }, + [688] = { + [ts_builtin_sym_end] = ACTIONS(2250), + [sym_identifier] = ACTIONS(2252), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2252), + [anon_sym_namespace] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(2252), + [anon_sym_import] = ACTIONS(2252), + [anon_sym_var] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_switch] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_with] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_debugger] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_throw] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2252), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_class] = ACTIONS(2252), + [anon_sym_async] = ACTIONS(2252), + [anon_sym_function] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2252), + [anon_sym_delete] = ACTIONS(2252), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_this] = ACTIONS(2252), + [sym_super] = ACTIONS(2252), + [sym_true] = ACTIONS(2252), + [sym_false] = ACTIONS(2252), + [sym_null] = ACTIONS(2252), + [sym_undefined] = ACTIONS(2252), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_abstract] = ACTIONS(2252), + [anon_sym_get] = ACTIONS(2252), + [anon_sym_set] = ACTIONS(2252), + [anon_sym_declare] = ACTIONS(2252), + [anon_sym_public] = ACTIONS(2252), + [anon_sym_private] = ACTIONS(2252), + [anon_sym_protected] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_any] = ACTIONS(2252), + [anon_sym_number] = ACTIONS(2252), + [anon_sym_boolean] = ACTIONS(2252), + [anon_sym_string] = ACTIONS(2252), + [anon_sym_symbol] = ACTIONS(2252), + [anon_sym_interface] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), + [sym_readonly] = ACTIONS(2252), + }, + [689] = { + [ts_builtin_sym_end] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2256), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym_import] = ACTIONS(2256), + [anon_sym_var] = ACTIONS(2256), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_with] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_throw] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2256), + [anon_sym_yield] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_async] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2256), + [anon_sym_delete] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_this] = ACTIONS(2256), + [sym_super] = ACTIONS(2256), + [sym_true] = ACTIONS(2256), + [sym_false] = ACTIONS(2256), + [sym_null] = ACTIONS(2256), + [sym_undefined] = ACTIONS(2256), + [anon_sym_AT] = ACTIONS(2254), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_declare] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_protected] = ACTIONS(2256), + [anon_sym_module] = ACTIONS(2256), + [anon_sym_any] = ACTIONS(2256), + [anon_sym_number] = ACTIONS(2256), + [anon_sym_boolean] = ACTIONS(2256), + [anon_sym_string] = ACTIONS(2256), + [anon_sym_symbol] = ACTIONS(2256), + [anon_sym_interface] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [sym_readonly] = ACTIONS(2256), + }, + [690] = { + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LT] = ACTIONS(2258), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2258), + [anon_sym_DASH_DASH] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2258), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2258), + [sym_number] = ACTIONS(2258), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [sym_readonly] = ACTIONS(2260), + }, + [691] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2262), + [sym_number] = ACTIONS(2262), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym_readonly] = ACTIONS(2264), + }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1224), + [anon_sym_var] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_try] = ACTIONS(1224), + [anon_sym_with] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_debugger] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_throw] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(1224), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1224), + [anon_sym_delete] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_number] = ACTIONS(1222), + [sym_this] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [sym_null] = ACTIONS(1224), + [sym_undefined] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_abstract] = ACTIONS(1224), + [anon_sym_get] = ACTIONS(1224), + [anon_sym_set] = ACTIONS(1224), + [anon_sym_declare] = ACTIONS(1224), + [anon_sym_public] = ACTIONS(1224), + [anon_sym_private] = ACTIONS(1224), + [anon_sym_protected] = ACTIONS(1224), + [anon_sym_module] = ACTIONS(1224), + [anon_sym_any] = ACTIONS(1224), + [anon_sym_number] = ACTIONS(1224), + [anon_sym_boolean] = ACTIONS(1224), + [anon_sym_string] = ACTIONS(1224), + [anon_sym_symbol] = ACTIONS(1224), + [anon_sym_interface] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [sym_readonly] = ACTIONS(1224), + }, + [693] = { + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2266), + [sym_number] = ACTIONS(2266), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym_readonly] = ACTIONS(2268), + }, + [694] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_export] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_namespace] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_typeof] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_var] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_await] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_debugger] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_throw] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1194), + [anon_sym_class] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_function] = ACTIONS(1194), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_delete] = ACTIONS(1194), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [sym_this] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [sym_null] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1194), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_abstract] = ACTIONS(1194), + [anon_sym_get] = ACTIONS(1194), + [anon_sym_set] = ACTIONS(1194), + [anon_sym_declare] = ACTIONS(1194), + [anon_sym_public] = ACTIONS(1194), + [anon_sym_private] = ACTIONS(1194), + [anon_sym_protected] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_any] = ACTIONS(1194), + [anon_sym_number] = ACTIONS(1194), + [anon_sym_boolean] = ACTIONS(1194), + [anon_sym_string] = ACTIONS(1194), + [anon_sym_symbol] = ACTIONS(1194), + [anon_sym_interface] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [sym_readonly] = ACTIONS(1194), + }, + [695] = { + [ts_builtin_sym_end] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2270), + [sym_number] = ACTIONS(2270), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym_readonly] = ACTIONS(2272), + }, + [696] = { + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_number] = ACTIONS(2274), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym_readonly] = ACTIONS(2276), + }, + [697] = { + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_default] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_case] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2278), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2278), + [anon_sym_DASH_DASH] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2278), + [sym_number] = ACTIONS(2278), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2278), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [sym_readonly] = ACTIONS(2280), + }, + [698] = { + [ts_builtin_sym_end] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_case] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2282), + [anon_sym_DASH_DASH] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2282), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2282), + [sym_number] = ACTIONS(2282), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym_readonly] = ACTIONS(2284), + }, + [699] = { + [ts_builtin_sym_end] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_readonly] = ACTIONS(2288), + }, + [700] = { + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2290), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2290), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2290), + [anon_sym_SQUOTE] = ACTIONS(2290), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2290), + [sym_number] = ACTIONS(2290), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym_readonly] = ACTIONS(2292), + }, + [701] = { + [ts_builtin_sym_end] = ACTIONS(2294), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym_readonly] = ACTIONS(2296), + }, + [702] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_export] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_await] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_debugger] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_function] = ACTIONS(1108), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_void] = ACTIONS(1108), + [anon_sym_delete] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1106), + [sym_number] = ACTIONS(1106), + [sym_this] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_get] = ACTIONS(1108), + [anon_sym_set] = ACTIONS(1108), + [anon_sym_declare] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_protected] = ACTIONS(1108), + [anon_sym_module] = ACTIONS(1108), + [anon_sym_any] = ACTIONS(1108), + [anon_sym_number] = ACTIONS(1108), + [anon_sym_boolean] = ACTIONS(1108), + [anon_sym_string] = ACTIONS(1108), + [anon_sym_symbol] = ACTIONS(1108), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [sym_readonly] = ACTIONS(1108), + }, + [703] = { + [ts_builtin_sym_end] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym_readonly] = ACTIONS(2300), + }, + [704] = { + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym_readonly] = ACTIONS(2304), + }, + [705] = { + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2306), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2306), + [anon_sym_DASH_DASH] = ACTIONS(2306), + [anon_sym_DQUOTE] = ACTIONS(2306), + [anon_sym_SQUOTE] = ACTIONS(2306), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2306), + [sym_number] = ACTIONS(2306), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2306), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym_readonly] = ACTIONS(2308), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2312), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_default] = ACTIONS(2312), + [anon_sym_namespace] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2312), + [anon_sym_typeof] = ACTIONS(2312), + [anon_sym_import] = ACTIONS(2312), + [anon_sym_var] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_switch] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2312), + [anon_sym_with] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_debugger] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_throw] = ACTIONS(2312), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2312), + [anon_sym_yield] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2312), + [anon_sym_async] = ACTIONS(2312), + [anon_sym_function] = ACTIONS(2312), + [anon_sym_new] = ACTIONS(2312), + [anon_sym_PLUS] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2312), + [anon_sym_delete] = ACTIONS(2312), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_this] = ACTIONS(2312), + [sym_super] = ACTIONS(2312), + [sym_true] = ACTIONS(2312), + [sym_false] = ACTIONS(2312), + [sym_null] = ACTIONS(2312), + [sym_undefined] = ACTIONS(2312), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2312), + [anon_sym_abstract] = ACTIONS(2312), + [anon_sym_get] = ACTIONS(2312), + [anon_sym_set] = ACTIONS(2312), + [anon_sym_declare] = ACTIONS(2312), + [anon_sym_public] = ACTIONS(2312), + [anon_sym_private] = ACTIONS(2312), + [anon_sym_protected] = ACTIONS(2312), + [anon_sym_module] = ACTIONS(2312), + [anon_sym_any] = ACTIONS(2312), + [anon_sym_number] = ACTIONS(2312), + [anon_sym_boolean] = ACTIONS(2312), + [anon_sym_string] = ACTIONS(2312), + [anon_sym_symbol] = ACTIONS(2312), + [anon_sym_interface] = ACTIONS(2312), + [anon_sym_enum] = ACTIONS(2312), + [sym_readonly] = ACTIONS(2312), + }, + [707] = { + [ts_builtin_sym_end] = ACTIONS(2314), + [sym_identifier] = ACTIONS(2316), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_default] = ACTIONS(2316), + [anon_sym_namespace] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2316), + [anon_sym_typeof] = ACTIONS(2316), + [anon_sym_import] = ACTIONS(2316), + [anon_sym_var] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_switch] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_with] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_debugger] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_throw] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_case] = ACTIONS(2316), + [anon_sym_yield] = ACTIONS(2316), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2316), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_function] = ACTIONS(2316), + [anon_sym_new] = ACTIONS(2316), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2316), + [anon_sym_delete] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_this] = ACTIONS(2316), + [sym_super] = ACTIONS(2316), + [sym_true] = ACTIONS(2316), + [sym_false] = ACTIONS(2316), + [sym_null] = ACTIONS(2316), + [sym_undefined] = ACTIONS(2316), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2316), + [anon_sym_abstract] = ACTIONS(2316), + [anon_sym_get] = ACTIONS(2316), + [anon_sym_set] = ACTIONS(2316), + [anon_sym_declare] = ACTIONS(2316), + [anon_sym_public] = ACTIONS(2316), + [anon_sym_private] = ACTIONS(2316), + [anon_sym_protected] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_any] = ACTIONS(2316), + [anon_sym_number] = ACTIONS(2316), + [anon_sym_boolean] = ACTIONS(2316), + [anon_sym_string] = ACTIONS(2316), + [anon_sym_symbol] = ACTIONS(2316), + [anon_sym_interface] = ACTIONS(2316), + [anon_sym_enum] = ACTIONS(2316), + [sym_readonly] = ACTIONS(2316), + }, + [708] = { + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(2320), + [anon_sym_default] = ACTIONS(2320), + [anon_sym_namespace] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2320), + [anon_sym_typeof] = ACTIONS(2320), + [anon_sym_import] = ACTIONS(2320), + [anon_sym_var] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2320), + [anon_sym_const] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_switch] = ACTIONS(2320), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_do] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2320), + [anon_sym_with] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_debugger] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_throw] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2320), + [anon_sym_yield] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2320), + [anon_sym_class] = ACTIONS(2320), + [anon_sym_async] = ACTIONS(2320), + [anon_sym_function] = ACTIONS(2320), + [anon_sym_new] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2320), + [anon_sym_delete] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_this] = ACTIONS(2320), + [sym_super] = ACTIONS(2320), + [sym_true] = ACTIONS(2320), + [sym_false] = ACTIONS(2320), + [sym_null] = ACTIONS(2320), + [sym_undefined] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2320), + [anon_sym_abstract] = ACTIONS(2320), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_declare] = ACTIONS(2320), + [anon_sym_public] = ACTIONS(2320), + [anon_sym_private] = ACTIONS(2320), + [anon_sym_protected] = ACTIONS(2320), + [anon_sym_module] = ACTIONS(2320), + [anon_sym_any] = ACTIONS(2320), + [anon_sym_number] = ACTIONS(2320), + [anon_sym_boolean] = ACTIONS(2320), + [anon_sym_string] = ACTIONS(2320), + [anon_sym_symbol] = ACTIONS(2320), + [anon_sym_interface] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2320), + [sym_readonly] = ACTIONS(2320), + }, + [709] = { + [ts_builtin_sym_end] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2324), + [anon_sym_export] = ACTIONS(2324), + [anon_sym_default] = ACTIONS(2324), + [anon_sym_namespace] = ACTIONS(2324), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_type] = ACTIONS(2324), + [anon_sym_typeof] = ACTIONS(2324), + [anon_sym_import] = ACTIONS(2324), + [anon_sym_var] = ACTIONS(2324), + [anon_sym_let] = ACTIONS(2324), + [anon_sym_const] = ACTIONS(2324), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2324), + [anon_sym_if] = ACTIONS(2324), + [anon_sym_switch] = ACTIONS(2324), + [anon_sym_for] = ACTIONS(2324), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_await] = ACTIONS(2324), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_do] = ACTIONS(2324), + [anon_sym_try] = ACTIONS(2324), + [anon_sym_with] = ACTIONS(2324), + [anon_sym_break] = ACTIONS(2324), + [anon_sym_continue] = ACTIONS(2324), + [anon_sym_debugger] = ACTIONS(2324), + [anon_sym_return] = ACTIONS(2324), + [anon_sym_throw] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(2322), + [anon_sym_case] = ACTIONS(2324), + [anon_sym_yield] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_LT] = ACTIONS(2322), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_class] = ACTIONS(2324), + [anon_sym_async] = ACTIONS(2324), + [anon_sym_function] = ACTIONS(2324), + [anon_sym_new] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_TILDE] = ACTIONS(2322), + [anon_sym_void] = ACTIONS(2324), + [anon_sym_delete] = ACTIONS(2324), + [anon_sym_PLUS_PLUS] = ACTIONS(2322), + [anon_sym_DASH_DASH] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2322), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2322), + [sym_number] = ACTIONS(2322), + [sym_this] = ACTIONS(2324), + [sym_super] = ACTIONS(2324), + [sym_true] = ACTIONS(2324), + [sym_false] = ACTIONS(2324), + [sym_null] = ACTIONS(2324), + [sym_undefined] = ACTIONS(2324), + [anon_sym_AT] = ACTIONS(2322), + [anon_sym_static] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2324), + [anon_sym_get] = ACTIONS(2324), + [anon_sym_set] = ACTIONS(2324), + [anon_sym_declare] = ACTIONS(2324), + [anon_sym_public] = ACTIONS(2324), + [anon_sym_private] = ACTIONS(2324), + [anon_sym_protected] = ACTIONS(2324), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_any] = ACTIONS(2324), + [anon_sym_number] = ACTIONS(2324), + [anon_sym_boolean] = ACTIONS(2324), + [anon_sym_string] = ACTIONS(2324), + [anon_sym_symbol] = ACTIONS(2324), + [anon_sym_interface] = ACTIONS(2324), + [anon_sym_enum] = ACTIONS(2324), + [sym_readonly] = ACTIONS(2324), + }, + [710] = { + [ts_builtin_sym_end] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2326), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2326), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(2326), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2326), + [sym_number] = ACTIONS(2326), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2326), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym_readonly] = ACTIONS(2328), + }, + [711] = { + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2330), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2330), + [sym_number] = ACTIONS(2330), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym_readonly] = ACTIONS(2332), + }, + [712] = { + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_namespace] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_typeof] = ACTIONS(2336), + [anon_sym_import] = ACTIONS(2336), + [anon_sym_var] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_switch] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_await] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_with] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_debugger] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_throw] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_case] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_class] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_function] = ACTIONS(2336), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_void] = ACTIONS(2336), + [anon_sym_delete] = ACTIONS(2336), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2334), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2334), + [sym_number] = ACTIONS(2334), + [sym_this] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_true] = ACTIONS(2336), + [sym_false] = ACTIONS(2336), + [sym_null] = ACTIONS(2336), + [sym_undefined] = ACTIONS(2336), + [anon_sym_AT] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_abstract] = ACTIONS(2336), + [anon_sym_get] = ACTIONS(2336), + [anon_sym_set] = ACTIONS(2336), + [anon_sym_declare] = ACTIONS(2336), + [anon_sym_public] = ACTIONS(2336), + [anon_sym_private] = ACTIONS(2336), + [anon_sym_protected] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_any] = ACTIONS(2336), + [anon_sym_number] = ACTIONS(2336), + [anon_sym_boolean] = ACTIONS(2336), + [anon_sym_string] = ACTIONS(2336), + [anon_sym_symbol] = ACTIONS(2336), + [anon_sym_interface] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), + [sym_readonly] = ACTIONS(2336), + }, + [713] = { + [ts_builtin_sym_end] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2338), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2338), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2338), + [anon_sym_DASH_DASH] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [anon_sym_SQUOTE] = ACTIONS(2338), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2338), + [sym_number] = ACTIONS(2338), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym_readonly] = ACTIONS(2340), + }, + [714] = { + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2344), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2344), + [anon_sym_namespace] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2344), + [anon_sym_typeof] = ACTIONS(2344), + [anon_sym_import] = ACTIONS(2344), + [anon_sym_var] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_switch] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_await] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_with] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_debugger] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_throw] = ACTIONS(2344), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_case] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2344), + [anon_sym_class] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_function] = ACTIONS(2344), + [anon_sym_new] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_void] = ACTIONS(2344), + [anon_sym_delete] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2342), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2342), + [sym_number] = ACTIONS(2342), + [sym_this] = ACTIONS(2344), + [sym_super] = ACTIONS(2344), + [sym_true] = ACTIONS(2344), + [sym_false] = ACTIONS(2344), + [sym_null] = ACTIONS(2344), + [sym_undefined] = ACTIONS(2344), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_static] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2344), + [anon_sym_get] = ACTIONS(2344), + [anon_sym_set] = ACTIONS(2344), + [anon_sym_declare] = ACTIONS(2344), + [anon_sym_public] = ACTIONS(2344), + [anon_sym_private] = ACTIONS(2344), + [anon_sym_protected] = ACTIONS(2344), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_any] = ACTIONS(2344), + [anon_sym_number] = ACTIONS(2344), + [anon_sym_boolean] = ACTIONS(2344), + [anon_sym_string] = ACTIONS(2344), + [anon_sym_symbol] = ACTIONS(2344), + [anon_sym_interface] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), + [sym_readonly] = ACTIONS(2344), + }, + [715] = { + [ts_builtin_sym_end] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2346), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2346), + [sym_number] = ACTIONS(2346), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym_readonly] = ACTIONS(2348), + }, + [716] = { + [ts_builtin_sym_end] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2352), + [anon_sym_export] = ACTIONS(2352), + [anon_sym_default] = ACTIONS(2352), + [anon_sym_namespace] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2352), + [anon_sym_typeof] = ACTIONS(2352), + [anon_sym_import] = ACTIONS(2352), + [anon_sym_var] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_switch] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_await] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_debugger] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_throw] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2352), + [anon_sym_yield] = ACTIONS(2352), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2352), + [anon_sym_class] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2352), + [anon_sym_function] = ACTIONS(2352), + [anon_sym_new] = ACTIONS(2352), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2350), + [anon_sym_void] = ACTIONS(2352), + [anon_sym_delete] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2350), + [sym_number] = ACTIONS(2350), + [sym_this] = ACTIONS(2352), + [sym_super] = ACTIONS(2352), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [sym_null] = ACTIONS(2352), + [sym_undefined] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2352), + [anon_sym_abstract] = ACTIONS(2352), + [anon_sym_get] = ACTIONS(2352), + [anon_sym_set] = ACTIONS(2352), + [anon_sym_declare] = ACTIONS(2352), + [anon_sym_public] = ACTIONS(2352), + [anon_sym_private] = ACTIONS(2352), + [anon_sym_protected] = ACTIONS(2352), + [anon_sym_module] = ACTIONS(2352), + [anon_sym_any] = ACTIONS(2352), + [anon_sym_number] = ACTIONS(2352), + [anon_sym_boolean] = ACTIONS(2352), + [anon_sym_string] = ACTIONS(2352), + [anon_sym_symbol] = ACTIONS(2352), + [anon_sym_interface] = ACTIONS(2352), + [anon_sym_enum] = ACTIONS(2352), + [sym_readonly] = ACTIONS(2352), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2354), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2354), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2354), + [anon_sym_SQUOTE] = ACTIONS(2354), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2354), + [sym_number] = ACTIONS(2354), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_readonly] = ACTIONS(2356), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym_readonly] = ACTIONS(2360), + }, + [719] = { + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2364), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_namespace] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_import] = ACTIONS(2364), + [anon_sym_var] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_await] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_with] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_debugger] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_throw] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_yield] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_class] = ACTIONS(2364), + [anon_sym_async] = ACTIONS(2364), + [anon_sym_function] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_void] = ACTIONS(2364), + [anon_sym_delete] = ACTIONS(2364), + [anon_sym_PLUS_PLUS] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(2362), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2362), + [sym_number] = ACTIONS(2362), + [sym_this] = ACTIONS(2364), + [sym_super] = ACTIONS(2364), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [sym_null] = ACTIONS(2364), + [sym_undefined] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(2362), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2364), + [anon_sym_get] = ACTIONS(2364), + [anon_sym_set] = ACTIONS(2364), + [anon_sym_declare] = ACTIONS(2364), + [anon_sym_public] = ACTIONS(2364), + [anon_sym_private] = ACTIONS(2364), + [anon_sym_protected] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_any] = ACTIONS(2364), + [anon_sym_number] = ACTIONS(2364), + [anon_sym_boolean] = ACTIONS(2364), + [anon_sym_string] = ACTIONS(2364), + [anon_sym_symbol] = ACTIONS(2364), + [anon_sym_interface] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [sym_readonly] = ACTIONS(2364), + }, + [720] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_readonly] = ACTIONS(2368), + }, + [721] = { + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2372), + [anon_sym_export] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2372), + [anon_sym_typeof] = ACTIONS(2372), + [anon_sym_import] = ACTIONS(2372), + [anon_sym_var] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_debugger] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_yield] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_async] = ACTIONS(2372), + [anon_sym_function] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_this] = ACTIONS(2372), + [sym_super] = ACTIONS(2372), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_undefined] = ACTIONS(2372), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_abstract] = ACTIONS(2372), + [anon_sym_get] = ACTIONS(2372), + [anon_sym_set] = ACTIONS(2372), + [anon_sym_declare] = ACTIONS(2372), + [anon_sym_public] = ACTIONS(2372), + [anon_sym_private] = ACTIONS(2372), + [anon_sym_protected] = ACTIONS(2372), + [anon_sym_module] = ACTIONS(2372), + [anon_sym_any] = ACTIONS(2372), + [anon_sym_number] = ACTIONS(2372), + [anon_sym_boolean] = ACTIONS(2372), + [anon_sym_string] = ACTIONS(2372), + [anon_sym_symbol] = ACTIONS(2372), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [sym_readonly] = ACTIONS(2372), + }, + [722] = { + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2374), + [sym_number] = ACTIONS(2374), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2374), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym_readonly] = ACTIONS(2376), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2378), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2378), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2378), + [sym_number] = ACTIONS(2378), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2378), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym_readonly] = ACTIONS(2380), + }, + [724] = { + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2382), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2382), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2382), + [anon_sym_SQUOTE] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2382), + [sym_number] = ACTIONS(2382), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2382), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym_readonly] = ACTIONS(2384), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym_readonly] = ACTIONS(2388), + }, + [726] = { + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2392), + [anon_sym_default] = ACTIONS(2392), + [anon_sym_namespace] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_typeof] = ACTIONS(2392), + [anon_sym_import] = ACTIONS(2392), + [anon_sym_var] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_switch] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_await] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2392), + [anon_sym_with] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_debugger] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_throw] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_case] = ACTIONS(2392), + [anon_sym_yield] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_class] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(2392), + [anon_sym_function] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_void] = ACTIONS(2392), + [anon_sym_delete] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2390), + [sym_number] = ACTIONS(2390), + [sym_this] = ACTIONS(2392), + [sym_super] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_null] = ACTIONS(2392), + [sym_undefined] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_abstract] = ACTIONS(2392), + [anon_sym_get] = ACTIONS(2392), + [anon_sym_set] = ACTIONS(2392), + [anon_sym_declare] = ACTIONS(2392), + [anon_sym_public] = ACTIONS(2392), + [anon_sym_private] = ACTIONS(2392), + [anon_sym_protected] = ACTIONS(2392), + [anon_sym_module] = ACTIONS(2392), + [anon_sym_any] = ACTIONS(2392), + [anon_sym_number] = ACTIONS(2392), + [anon_sym_boolean] = ACTIONS(2392), + [anon_sym_string] = ACTIONS(2392), + [anon_sym_symbol] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [sym_readonly] = ACTIONS(2392), + }, + [727] = { + [ts_builtin_sym_end] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2394), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2394), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2394), + [sym_number] = ACTIONS(2394), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2394), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym_readonly] = ACTIONS(2396), + }, + [728] = { + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2400), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_typeof] = ACTIONS(2400), + [anon_sym_import] = ACTIONS(2400), + [anon_sym_var] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_await] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_with] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_debugger] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_yield] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_void] = ACTIONS(2400), + [anon_sym_delete] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2398), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2398), + [sym_number] = ACTIONS(2398), + [sym_this] = ACTIONS(2400), + [sym_super] = ACTIONS(2400), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [sym_null] = ACTIONS(2400), + [sym_undefined] = ACTIONS(2400), + [anon_sym_AT] = ACTIONS(2398), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_abstract] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_interface] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [sym_readonly] = ACTIONS(2400), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [sym_readonly] = ACTIONS(2404), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_namespace] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_type] = ACTIONS(2408), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_import] = ACTIONS(2408), + [anon_sym_var] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_await] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_with] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_debugger] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_yield] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_async] = ACTIONS(2408), + [anon_sym_function] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_void] = ACTIONS(2408), + [anon_sym_delete] = ACTIONS(2408), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2406), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2406), + [sym_number] = ACTIONS(2406), + [sym_this] = ACTIONS(2408), + [sym_super] = ACTIONS(2408), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_undefined] = ACTIONS(2408), + [anon_sym_AT] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_abstract] = ACTIONS(2408), + [anon_sym_get] = ACTIONS(2408), + [anon_sym_set] = ACTIONS(2408), + [anon_sym_declare] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_protected] = ACTIONS(2408), + [anon_sym_module] = ACTIONS(2408), + [anon_sym_any] = ACTIONS(2408), + [anon_sym_number] = ACTIONS(2408), + [anon_sym_boolean] = ACTIONS(2408), + [anon_sym_string] = ACTIONS(2408), + [anon_sym_symbol] = ACTIONS(2408), + [anon_sym_interface] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [sym_readonly] = ACTIONS(2408), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_import] = ACTIONS(2412), + [anon_sym_var] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_with] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_debugger] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_yield] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2412), + [anon_sym_function] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2412), + [anon_sym_delete] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_this] = ACTIONS(2412), + [sym_super] = ACTIONS(2412), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [sym_null] = ACTIONS(2412), + [sym_undefined] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2412), + [anon_sym_get] = ACTIONS(2412), + [anon_sym_set] = ACTIONS(2412), + [anon_sym_declare] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_protected] = ACTIONS(2412), + [anon_sym_module] = ACTIONS(2412), + [anon_sym_any] = ACTIONS(2412), + [anon_sym_number] = ACTIONS(2412), + [anon_sym_boolean] = ACTIONS(2412), + [anon_sym_string] = ACTIONS(2412), + [anon_sym_symbol] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [sym_readonly] = ACTIONS(2412), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2416), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_import] = ACTIONS(2416), + [anon_sym_var] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_debugger] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_yield] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_this] = ACTIONS(2416), + [sym_super] = ACTIONS(2416), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [sym_null] = ACTIONS(2416), + [sym_undefined] = ACTIONS(2416), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_abstract] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_interface] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [sym_readonly] = ACTIONS(2416), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_import] = ACTIONS(2420), + [anon_sym_var] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_with] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_debugger] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_yield] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_this] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_undefined] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_declare] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_any] = ACTIONS(2420), + [anon_sym_number] = ACTIONS(2420), + [anon_sym_boolean] = ACTIONS(2420), + [anon_sym_string] = ACTIONS(2420), + [anon_sym_symbol] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [sym_readonly] = ACTIONS(2420), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_import] = ACTIONS(2424), + [anon_sym_var] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_with] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_debugger] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_yield] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_this] = ACTIONS(2424), + [sym_super] = ACTIONS(2424), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_undefined] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_abstract] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_declare] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_any] = ACTIONS(2424), + [anon_sym_number] = ACTIONS(2424), + [anon_sym_boolean] = ACTIONS(2424), + [anon_sym_string] = ACTIONS(2424), + [anon_sym_symbol] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [sym_readonly] = ACTIONS(2424), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_import] = ACTIONS(2428), + [anon_sym_var] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_await] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_with] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_debugger] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_yield] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2428), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_void] = ACTIONS(2428), + [anon_sym_delete] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2426), + [sym_number] = ACTIONS(2426), + [sym_this] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [sym_null] = ACTIONS(2428), + [sym_undefined] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2426), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_abstract] = ACTIONS(2428), + [anon_sym_get] = ACTIONS(2428), + [anon_sym_set] = ACTIONS(2428), + [anon_sym_declare] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_module] = ACTIONS(2428), + [anon_sym_any] = ACTIONS(2428), + [anon_sym_number] = ACTIONS(2428), + [anon_sym_boolean] = ACTIONS(2428), + [anon_sym_string] = ACTIONS(2428), + [anon_sym_symbol] = ACTIONS(2428), + [anon_sym_interface] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [sym_readonly] = ACTIONS(2428), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_import] = ACTIONS(2432), + [anon_sym_var] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_with] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_debugger] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_yield] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_this] = ACTIONS(2432), + [sym_super] = ACTIONS(2432), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [sym_null] = ACTIONS(2432), + [sym_undefined] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_abstract] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [sym_readonly] = ACTIONS(2432), + }, + [737] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2436), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_import] = ACTIONS(2436), + [anon_sym_var] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_with] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_debugger] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_yield] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_this] = ACTIONS(2436), + [sym_super] = ACTIONS(2436), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [sym_null] = ACTIONS(2436), + [sym_undefined] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(2434), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_abstract] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_interface] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [sym_readonly] = ACTIONS(2436), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2438), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym_readonly] = ACTIONS(2440), + }, + [739] = { + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2444), + [anon_sym_export] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2444), + [anon_sym_typeof] = ACTIONS(2444), + [anon_sym_import] = ACTIONS(2444), + [anon_sym_var] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_with] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_debugger] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_yield] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_function] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2444), + [anon_sym_delete] = ACTIONS(2444), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_this] = ACTIONS(2444), + [sym_super] = ACTIONS(2444), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [sym_null] = ACTIONS(2444), + [sym_undefined] = ACTIONS(2444), + [anon_sym_AT] = ACTIONS(2442), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_abstract] = ACTIONS(2444), + [anon_sym_get] = ACTIONS(2444), + [anon_sym_set] = ACTIONS(2444), + [anon_sym_declare] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_any] = ACTIONS(2444), + [anon_sym_number] = ACTIONS(2444), + [anon_sym_boolean] = ACTIONS(2444), + [anon_sym_string] = ACTIONS(2444), + [anon_sym_symbol] = ACTIONS(2444), + [anon_sym_interface] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [sym_readonly] = ACTIONS(2444), + }, + [740] = { + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2446), + [sym_number] = ACTIONS(2446), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym_readonly] = ACTIONS(2448), + }, + [741] = { + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_with] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [sym_readonly] = ACTIONS(2452), + }, + [742] = { + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_readonly] = ACTIONS(2456), + }, + [743] = { + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2460), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2460), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2460), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2460), + [sym_number] = ACTIONS(2460), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym_readonly] = ACTIONS(2458), + }, + [744] = { + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2464), + [sym_number] = ACTIONS(2464), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym_readonly] = ACTIONS(2462), + }, + [745] = { + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_import] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_await] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_with] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_debugger] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_throw] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_class] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2468), + [anon_sym_void] = ACTIONS(2466), + [anon_sym_delete] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2468), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2468), + [sym_number] = ACTIONS(2468), + [sym_this] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [sym_null] = ACTIONS(2466), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_abstract] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_interface] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [sym_readonly] = ACTIONS(2466), + }, + [746] = { + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym_readonly] = ACTIONS(2470), + }, + [747] = { + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_import] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_await] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_with] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_debugger] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_throw] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_void] = ACTIONS(2474), + [anon_sym_delete] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2476), + [sym_number] = ACTIONS(2476), + [sym_this] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [sym_null] = ACTIONS(2474), + [sym_undefined] = ACTIONS(2474), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_abstract] = ACTIONS(2474), + [anon_sym_get] = ACTIONS(2474), + [anon_sym_set] = ACTIONS(2474), + [anon_sym_declare] = ACTIONS(2474), + [anon_sym_public] = ACTIONS(2474), + [anon_sym_private] = ACTIONS(2474), + [anon_sym_protected] = ACTIONS(2474), + [anon_sym_module] = ACTIONS(2474), + [anon_sym_any] = ACTIONS(2474), + [anon_sym_number] = ACTIONS(2474), + [anon_sym_boolean] = ACTIONS(2474), + [anon_sym_string] = ACTIONS(2474), + [anon_sym_symbol] = ACTIONS(2474), + [anon_sym_interface] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [sym_readonly] = ACTIONS(2474), + }, + [748] = { + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2480), + [sym_number] = ACTIONS(2480), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2480), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym_readonly] = ACTIONS(2478), + }, + [749] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2484), + [sym_number] = ACTIONS(2484), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym_readonly] = ACTIONS(2482), + }, + [750] = { + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_namespace] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_import] = ACTIONS(2486), + [anon_sym_var] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_await] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2486), + [anon_sym_with] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_debugger] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_throw] = ACTIONS(2486), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym_yield] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2486), + [anon_sym_class] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_function] = ACTIONS(2486), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_TILDE] = ACTIONS(2488), + [anon_sym_void] = ACTIONS(2486), + [anon_sym_delete] = ACTIONS(2486), + [anon_sym_PLUS_PLUS] = ACTIONS(2488), + [anon_sym_DASH_DASH] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2488), + [sym_number] = ACTIONS(2488), + [sym_this] = ACTIONS(2486), + [sym_super] = ACTIONS(2486), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [sym_null] = ACTIONS(2486), + [sym_undefined] = ACTIONS(2486), + [anon_sym_AT] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_abstract] = ACTIONS(2486), + [anon_sym_get] = ACTIONS(2486), + [anon_sym_set] = ACTIONS(2486), + [anon_sym_declare] = ACTIONS(2486), + [anon_sym_public] = ACTIONS(2486), + [anon_sym_private] = ACTIONS(2486), + [anon_sym_protected] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_any] = ACTIONS(2486), + [anon_sym_number] = ACTIONS(2486), + [anon_sym_boolean] = ACTIONS(2486), + [anon_sym_string] = ACTIONS(2486), + [anon_sym_symbol] = ACTIONS(2486), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [sym_readonly] = ACTIONS(2486), + }, + [751] = { + [sym_identifier] = ACTIONS(2490), + [anon_sym_export] = ACTIONS(2490), + [anon_sym_namespace] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_import] = ACTIONS(2490), + [anon_sym_var] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_await] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_with] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_debugger] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_throw] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_yield] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_async] = ACTIONS(2490), + [anon_sym_function] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_void] = ACTIONS(2490), + [anon_sym_delete] = ACTIONS(2490), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2492), + [sym_number] = ACTIONS(2492), + [sym_this] = ACTIONS(2490), + [sym_super] = ACTIONS(2490), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [sym_null] = ACTIONS(2490), + [sym_undefined] = ACTIONS(2490), + [anon_sym_AT] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_abstract] = ACTIONS(2490), + [anon_sym_get] = ACTIONS(2490), + [anon_sym_set] = ACTIONS(2490), + [anon_sym_declare] = ACTIONS(2490), + [anon_sym_public] = ACTIONS(2490), + [anon_sym_private] = ACTIONS(2490), + [anon_sym_protected] = ACTIONS(2490), + [anon_sym_module] = ACTIONS(2490), + [anon_sym_any] = ACTIONS(2490), + [anon_sym_number] = ACTIONS(2490), + [anon_sym_boolean] = ACTIONS(2490), + [anon_sym_string] = ACTIONS(2490), + [anon_sym_symbol] = ACTIONS(2490), + [anon_sym_interface] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [sym_readonly] = ACTIONS(2490), + }, + [752] = { + [sym_identifier] = ACTIONS(2494), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_namespace] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_type] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_import] = ACTIONS(2494), + [anon_sym_var] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_await] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_with] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_debugger] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_throw] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2494), + [anon_sym_class] = ACTIONS(2494), + [anon_sym_async] = ACTIONS(2494), + [anon_sym_function] = ACTIONS(2494), + [anon_sym_new] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_void] = ACTIONS(2494), + [anon_sym_delete] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2496), + [sym_number] = ACTIONS(2496), + [sym_this] = ACTIONS(2494), + [sym_super] = ACTIONS(2494), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [sym_null] = ACTIONS(2494), + [sym_undefined] = ACTIONS(2494), + [anon_sym_AT] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_abstract] = ACTIONS(2494), + [anon_sym_get] = ACTIONS(2494), + [anon_sym_set] = ACTIONS(2494), + [anon_sym_declare] = ACTIONS(2494), + [anon_sym_public] = ACTIONS(2494), + [anon_sym_private] = ACTIONS(2494), + [anon_sym_protected] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_any] = ACTIONS(2494), + [anon_sym_number] = ACTIONS(2494), + [anon_sym_boolean] = ACTIONS(2494), + [anon_sym_string] = ACTIONS(2494), + [anon_sym_symbol] = ACTIONS(2494), + [anon_sym_interface] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [sym_readonly] = ACTIONS(2494), + }, + [753] = { + [sym_nested_identifier] = STATE(636), + [sym_string] = STATE(657), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(672), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3666), + [sym_identifier] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [754] = { + [sym_nested_identifier] = STATE(80), + [sym_string] = STATE(82), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(99), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [755] = { + [sym_nested_identifier] = STATE(80), + [sym_string] = STATE(82), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(99), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [756] = { + [sym_nested_identifier] = STATE(636), + [sym_string] = STATE(657), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(672), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [757] = { + [sym_nested_identifier] = STATE(636), + [sym_string] = STATE(657), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(672), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [758] = { + [sym_nested_identifier] = STATE(80), + [sym_string] = STATE(82), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(99), + [sym_call_type_arguments] = STATE(3386), + [aux_sym_object_repeat1] = STATE(3666), + [sym_identifier] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [759] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3647), + [sym_optional_type] = STATE(3647), + [sym_rest_type] = STATE(3647), + [sym__tuple_type_member] = STATE(3647), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2411), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(2415), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), [anon_sym_keyof] = ACTIONS(497), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [679] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3577), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3074), - [sym_optional_type] = STATE(3074), - [sym_rest_type] = STATE(3074), - [sym__tuple_type_member] = STATE(3074), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3324), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2405), + [760] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3650), + [sym_optional_type] = STATE(3650), + [sym_rest_type] = STATE(3650), + [sym__tuple_type_member] = STATE(3650), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(2415), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), [anon_sym_keyof] = ACTIONS(497), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [680] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3577), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3039), - [sym_optional_type] = STATE(3039), - [sym_rest_type] = STATE(3039), - [sym__tuple_type_member] = STATE(3039), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3324), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2405), + [761] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3624), + [sym_optional_type] = STATE(3624), + [sym_rest_type] = STATE(3624), + [sym__tuple_type_member] = STATE(3624), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(2415), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), [anon_sym_keyof] = ACTIONS(497), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [681] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3577), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3126), - [sym_optional_type] = STATE(3126), - [sym_rest_type] = STATE(3126), - [sym__tuple_type_member] = STATE(3126), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3324), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2405), + [762] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3634), + [sym_optional_type] = STATE(3634), + [sym_rest_type] = STATE(3634), + [sym__tuple_type_member] = STATE(3634), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(2415), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), [anon_sym_keyof] = ACTIONS(497), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [682] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3577), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3199), - [sym_optional_type] = STATE(3199), - [sym_rest_type] = STATE(3199), - [sym__tuple_type_member] = STATE(3199), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3324), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2405), + [763] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3632), + [sym_optional_type] = STATE(3632), + [sym_rest_type] = STATE(3632), + [sym__tuple_type_member] = STATE(3632), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(2415), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), [anon_sym_keyof] = ACTIONS(497), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [683] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3577), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3053), - [sym_optional_type] = STATE(3053), - [sym_rest_type] = STATE(3053), - [sym__tuple_type_member] = STATE(3053), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3324), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2405), + [764] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3718), + [sym_optional_type] = STATE(3718), + [sym_rest_type] = STATE(3718), + [sym__tuple_type_member] = STATE(3718), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(2415), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), [anon_sym_keyof] = ACTIONS(497), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [684] = { - [sym_nested_identifier] = STATE(3486), - [sym_string] = STATE(460), - [sym_formal_parameters] = STATE(3577), - [sym_nested_type_identifier] = STATE(2180), - [sym__rest_identifier] = STATE(3749), - [sym_rest_identifier] = STATE(3235), - [sym__type] = STATE(2612), - [sym_optional_identifier] = STATE(3235), - [sym__tuple_type_identifier] = STATE(3235), - [sym_labeled_tuple_type_member] = STATE(3317), - [sym_optional_type] = STATE(3317), - [sym_rest_type] = STATE(3317), - [sym__tuple_type_member] = STATE(3317), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(461), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(461), - [sym_generic_type] = STATE(461), - [sym_type_query] = STATE(461), - [sym_index_type_query] = STATE(461), - [sym_lookup_type] = STATE(461), - [sym_literal_type] = STATE(461), - [sym__number] = STATE(460), - [sym_existential_type] = STATE(461), - [sym_flow_maybe_type] = STATE(461), - [sym_parenthesized_type] = STATE(461), - [sym_predefined_type] = STATE(461), - [sym_object_type] = STATE(461), - [sym_type_parameters] = STATE(3324), - [sym_array_type] = STATE(461), - [sym__tuple_type_body] = STATE(462), - [sym_tuple_type] = STATE(461), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2405), + [765] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3557), + [sym_optional_type] = STATE(3557), + [sym_rest_type] = STATE(3557), + [sym__tuple_type_member] = STATE(3557), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), [anon_sym_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), [anon_sym_QMARK] = ACTIONS(463), [anon_sym_AMP] = ACTIONS(465), [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(969), - [sym_this] = ACTIONS(2415), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [anon_sym_any] = ACTIONS(963), - [anon_sym_number] = ACTIONS(963), - [anon_sym_boolean] = ACTIONS(963), - [anon_sym_string] = ACTIONS(963), - [anon_sym_symbol] = ACTIONS(963), - [sym_readonly] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), [anon_sym_infer] = ACTIONS(495), [anon_sym_keyof] = ACTIONS(497), [anon_sym_LBRACE_PIPE] = ACTIONS(499), }, - [685] = { - [sym_nested_identifier] = STATE(1293), - [sym_string] = STATE(1292), - [sym_arguments] = STATE(1411), - [sym__module] = STATE(1407), - [sym_type_arguments] = STATE(1283), - [sym_identifier] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(2427), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), + [766] = { + [sym_nested_identifier] = STATE(80), + [sym_string] = STATE(82), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(99), + [sym_call_type_arguments] = STATE(3386), + [sym_identifier] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [767] = { + [sym_nested_identifier] = STATE(1474), + [sym_string] = STATE(1472), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(1663), + [sym_call_type_arguments] = STATE(3386), + [sym_identifier] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1913), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [768] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - }, - [686] = { - [sym_nested_identifier] = STATE(88), - [sym_string] = STATE(86), - [sym__module] = STATE(95), - [aux_sym_object_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [687] = { - [sym_nested_identifier] = STATE(557), - [sym_string] = STATE(559), - [sym__module] = STATE(630), - [aux_sym_object_repeat1] = STATE(3178), - [sym_identifier] = ACTIONS(2435), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [688] = { - [sym_nested_identifier] = STATE(88), - [sym_string] = STATE(86), - [sym__module] = STATE(95), - [aux_sym_object_repeat1] = STATE(3195), - [sym_identifier] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [689] = { - [sym_nested_identifier] = STATE(88), - [sym_string] = STATE(86), - [sym__module] = STATE(95), - [aux_sym_object_repeat1] = STATE(3178), - [sym_identifier] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [690] = { - [sym_nested_identifier] = STATE(557), - [sym_string] = STATE(559), - [sym__module] = STATE(630), - [aux_sym_object_repeat1] = STATE(3195), - [sym_identifier] = ACTIONS(2435), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [691] = { - [sym_nested_identifier] = STATE(557), - [sym_string] = STATE(559), - [sym__module] = STATE(630), - [aux_sym_object_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(2435), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(961), - }, - [692] = { - [sym_nested_identifier] = STATE(1293), - [sym_string] = STATE(1292), - [sym_arguments] = STATE(1782), - [sym__module] = STATE(1407), - [sym_type_arguments] = STATE(1653), - [sym_identifier] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_EQ_GT] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_BQUOTE] = ACTIONS(1903), + }, + [769] = { + [sym_nested_identifier] = STATE(1474), + [sym_string] = STATE(1472), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(1663), + [sym_call_type_arguments] = STATE(3386), + [sym_identifier] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [770] = { + [sym_nested_identifier] = STATE(636), + [sym_string] = STATE(657), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(672), + [sym_call_type_arguments] = STATE(3386), + [sym_identifier] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [771] = { + [sym_nested_identifier] = STATE(1474), + [sym_string] = STATE(1472), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(1663), + [sym_call_type_arguments] = STATE(3386), + [sym_identifier] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(1878), + [anon_sym_of] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [772] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(534), + [sym_formal_parameters] = STATE(4224), + [sym_nested_type_identifier] = STATE(2506), + [sym__rest_identifier] = STATE(4250), + [sym_rest_identifier] = STATE(3777), + [sym__type] = STATE(2933), + [sym_optional_identifier] = STATE(3777), + [sym__tuple_type_identifier] = STATE(3777), + [sym_labeled_tuple_type_member] = STATE(3867), + [sym_optional_type] = STATE(3867), + [sym_rest_type] = STATE(3867), + [sym__tuple_type_member] = STATE(3867), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(562), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(562), + [sym_generic_type] = STATE(562), + [sym_type_query] = STATE(562), + [sym_index_type_query] = STATE(562), + [sym_lookup_type] = STATE(562), + [sym_literal_type] = STATE(562), + [sym__number] = STATE(534), + [sym_existential_type] = STATE(562), + [sym_flow_maybe_type] = STATE(562), + [sym_parenthesized_type] = STATE(562), + [sym_predefined_type] = STATE(562), + [sym_object_type] = STATE(562), + [sym_type_parameters] = STATE(3748), + [sym_array_type] = STATE(562), + [sym__tuple_type_body] = STATE(564), + [sym_tuple_type] = STATE(562), + [sym_union_type] = STATE(2933), + [sym_intersection_type] = STATE(2933), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), + [anon_sym_QMARK] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_void] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(663), + [sym_this] = ACTIONS(2516), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [anon_sym_any] = ACTIONS(657), + [anon_sym_number] = ACTIONS(657), + [anon_sym_boolean] = ACTIONS(657), + [anon_sym_string] = ACTIONS(657), + [anon_sym_symbol] = ACTIONS(657), + [sym_readonly] = ACTIONS(1044), + [anon_sym_infer] = ACTIONS(495), + [anon_sym_keyof] = ACTIONS(497), + [anon_sym_LBRACE_PIPE] = ACTIONS(499), + }, + [773] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + }, + [774] = { + [sym_nested_identifier] = STATE(1474), + [sym_string] = STATE(1472), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(1663), + [sym_call_type_arguments] = STATE(3386), + [sym_identifier] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [775] = { + [sym_nested_identifier] = STATE(636), + [sym_string] = STATE(657), + [sym_template_string] = STATE(1475), + [sym_arguments] = STATE(1475), + [sym__module] = STATE(672), + [sym_call_type_arguments] = STATE(3386), + [sym_identifier] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1348), + [anon_sym_QMARK_DOT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym__automatic_semicolon] = ACTIONS(655), + }, + [776] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + }, + [777] = { + [sym_template_string] = STATE(1389), + [sym_arguments] = STATE(1389), + [sym_type_arguments] = STATE(1523), + [sym_call_type_arguments] = STATE(3504), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_as] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_STAR_STAR_EQ] = ACTIONS(609), + [anon_sym_AMP_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(609), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_STAR_STAR] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_QMARK_QMARK] = ACTIONS(597), + [anon_sym_instanceof] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_implements] = ACTIONS(595), + [anon_sym_extends] = ACTIONS(595), + }, + [778] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + }, + [779] = { + [sym_template_string] = STATE(1389), + [sym_arguments] = STATE(1389), + [sym_type_arguments] = STATE(1523), + [sym_call_type_arguments] = STATE(3504), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_as] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_STAR_STAR_EQ] = ACTIONS(609), + [anon_sym_AMP_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(609), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_STAR_STAR] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_QMARK_QMARK] = ACTIONS(597), + [anon_sym_instanceof] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_implements] = ACTIONS(595), + [anon_sym_extends] = ACTIONS(595), + }, + [780] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + }, + [781] = { + [sym_nested_identifier] = STATE(1773), + [sym_string] = STATE(1758), + [sym_template_string] = STATE(1774), + [sym_arguments] = STATE(1774), + [sym__module] = STATE(2112), + [sym_call_type_arguments] = STATE(3484), + [sym_identifier] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1982), + [anon_sym_EQ_GT] = ACTIONS(1986), + [anon_sym_QMARK_DOT] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [anon_sym_LBRACE_PIPE] = ACTIONS(655), + }, + [782] = { + [sym_template_string] = STATE(1389), + [sym_arguments] = STATE(1389), + [sym_type_arguments] = STATE(519), + [sym_call_type_arguments] = STATE(3504), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_else] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_in] = ACTIONS(599), + [anon_sym_while] = ACTIONS(595), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(2544), + [anon_sym_EQ_GT] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(2546), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_STAR_STAR_EQ] = ACTIONS(609), + [anon_sym_AMP_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(609), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_STAR_STAR] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_QMARK_QMARK] = ACTIONS(599), + [anon_sym_instanceof] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_extends] = ACTIONS(595), + }, + [783] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1903), + }, + [784] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_as] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_in] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(481), + }, + [785] = { + [sym_nested_identifier] = STATE(1773), + [sym_string] = STATE(1758), + [sym_template_string] = STATE(1774), + [sym_arguments] = STATE(1774), + [sym__module] = STATE(2112), + [sym_call_type_arguments] = STATE(3484), + [sym_identifier] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1982), + [anon_sym_EQ_GT] = ACTIONS(1986), + [anon_sym_QMARK_DOT] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_LBRACE_PIPE] = ACTIONS(655), + }, + [786] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(1944), + [anon_sym_as] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1903), + [anon_sym_implements] = ACTIONS(622), + }, + [787] = { + [sym_nested_identifier] = STATE(1465), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1399), + [sym_arguments] = STATE(1399), + [sym__module] = STATE(1626), + [sym_call_type_arguments] = STATE(3522), + [sym_identifier] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_QMARK_DOT] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_CARET_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_STAR_STAR_EQ] = ACTIONS(645), + [anon_sym_AMP_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(645), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ_EQ] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_DQUOTE] = ACTIONS(477), [anon_sym_SQUOTE] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym__automatic_semicolon] = ACTIONS(1851), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_implements] = ACTIONS(622), }, }; static uint16_t ts_small_parse_table[] = { - [0] = 19, + [0] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(947), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1239), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2423), 1, - sym_identifier, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - STATE(1283), 1, - sym_type_arguments, - STATE(1292), 1, - sym_string, - STATE(1293), 1, + ACTIONS(2008), 1, + anon_sym_COLON, + ACTIONS(2531), 1, + sym_identifier, + STATE(1465), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - STATE(1411), 1, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, sym_arguments, - ACTIONS(1851), 9, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(655), 7, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74348,7 +82780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 24, + ACTIONS(622), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -74372,47 +82804,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [103] = 15, + [107] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1037), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + anon_sym_LT, + ACTIONS(2553), 1, anon_sym_DOT, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 13, + ACTIONS(2555), 1, + anon_sym_QMARK_DOT, + STATE(2581), 1, + sym_type_arguments, + STATE(3373), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74428,12 +82865,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -74442,9 +82877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -74452,51 +82885,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [198] = 19, + [204] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_QMARK_DOT, - ACTIONS(1893), 1, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2423), 1, + ACTIONS(2010), 1, + anon_sym_QMARK_DOT, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LT, - STATE(1292), 1, - sym_string, - STATE(1293), 1, + STATE(1465), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - STATE(1856), 1, - sym_type_arguments, - STATE(1905), 1, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, sym_arguments, - ACTIONS(1851), 9, + ACTIONS(655), 8, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74512,10 +82946,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 24, + ACTIONS(622), 23, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -74537,50 +82970,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [301] = 19, + [309] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1336), 1, + anon_sym_LT, + ACTIONS(1340), 1, anon_sym_DOT, - ACTIONS(2423), 1, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, + anon_sym_QMARK_DOT, + ACTIONS(1352), 1, + anon_sym_QMARK, + ACTIONS(1365), 1, + anon_sym_RBRACE, + ACTIONS(1387), 1, + anon_sym_EQ, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - STATE(1283), 1, - sym_type_arguments, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - STATE(1411), 1, + STATE(3386), 1, + sym_call_type_arguments, + STATE(3583), 1, + aux_sym_object_repeat1, + STATE(1475), 2, + sym_template_string, sym_arguments, - ACTIONS(1851), 9, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(655), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74596,14 +83030,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 23, + ACTIONS(622), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -74620,46 +83053,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [403] = 16, + [411] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1053), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1055), 1, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(1359), 1, + ACTIONS(2550), 1, + anon_sym_LT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(2564), 1, anon_sym_DOT, - ACTIONS(1428), 1, - anon_sym_COLON, - ACTIONS(2445), 1, - sym_identifier, - STATE(1312), 1, - sym_string, - STATE(1313), 1, - sym_nested_identifier, - STATE(1507), 1, - sym__module, - ACTIONS(961), 11, - sym__automatic_semicolon, + STATE(2581), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2559), 2, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(2566), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(2018), 4, + sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74675,12 +83115,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -74689,9 +83127,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -74699,46 +83135,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [499] = 15, + [511] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1055), 1, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(1359), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(2569), 1, + anon_sym_EQ, + ACTIONS(2573), 1, + anon_sym_BANG, + ACTIONS(2575), 1, + anon_sym_in, + ACTIONS(2578), 1, + anon_sym_of, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2445), 1, - sym_identifier, - STATE(1312), 1, - sym_string, - STATE(1313), 1, - sym_nested_identifier, - STATE(1507), 1, - sym__module, - ACTIONS(961), 12, + STATE(3177), 1, + sym_type_annotation, + STATE(3504), 1, + sym_call_type_arguments, + STATE(3670), 1, + sym__initializer, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(2571), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74754,12 +83200,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -74778,51 +83220,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [593] = 19, + [617] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1055), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(1077), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1191), 1, + ACTIONS(1036), 1, anon_sym_EQ, - ACTIONS(1359), 1, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2423), 1, - sym_identifier, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2439), 1, - anon_sym_LT, - STATE(1292), 1, - sym_string, - STATE(1293), 1, + ACTIONS(2025), 1, + anon_sym_in, + ACTIONS(2028), 1, + anon_sym_of, + ACTIONS(2531), 1, + sym_identifier, + STATE(1465), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - STATE(1653), 1, - sym_type_arguments, - STATE(1782), 1, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, sym_arguments, - ACTIONS(1851), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74838,11 +83283,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 23, + ACTIONS(622), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -74862,46 +83306,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [695] = 16, + [725] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1053), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1055), 1, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + anon_sym_LT, + ACTIONS(2555), 1, anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(2587), 1, anon_sym_DOT, - ACTIONS(1408), 1, - anon_sym_COLON, - ACTIONS(2429), 1, - sym_identifier, - ACTIONS(2431), 1, - anon_sym_DQUOTE, - ACTIONS(2433), 1, - anon_sym_SQUOTE, - STATE(86), 1, - sym_string, - STATE(88), 1, - sym_nested_identifier, - STATE(95), 1, - sym__module, - ACTIONS(961), 11, + STATE(2581), 1, + sym_type_arguments, + STATE(3373), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 7, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74917,12 +83366,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -74931,9 +83378,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -74941,38 +83386,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [791] = 16, + [821] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(1336), 1, + anon_sym_LT, + ACTIONS(1340), 1, anon_sym_DOT, - ACTIONS(1408), 1, - anon_sym_COLON, - ACTIONS(2435), 1, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, + anon_sym_QMARK_DOT, + ACTIONS(1352), 1, + anon_sym_QMARK, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(1387), 1, + anon_sym_EQ, + ACTIONS(2557), 1, sym_identifier, - STATE(557), 1, - sym_nested_identifier, - STATE(559), 1, - sym_string, - STATE(630), 1, - sym__module, - ACTIONS(961), 11, + STATE(3386), 1, + sym_call_type_arguments, + STATE(3727), 1, + aux_sym_object_repeat1, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 9, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -74980,8 +83430,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74997,15 +83446,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(622), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -75022,48 +83469,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [887] = 17, + [923] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1909), 1, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1878), 1, anon_sym_in, - ACTIONS(1912), 1, + ACTIONS(1881), 1, anon_sym_of, - ACTIONS(2445), 1, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2531), 1, sym_identifier, - STATE(1312), 1, - sym_string, - STATE(1313), 1, + STATE(1465), 1, sym_nested_identifier, - STATE(1507), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - ACTIONS(961), 11, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75079,11 +83532,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 23, + ACTIONS(622), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75103,37 +83555,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [985] = 16, + [1031] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1316), 1, + anon_sym_RBRACE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(1336), 1, + anon_sym_LT, + ACTIONS(1340), 1, anon_sym_DOT, - ACTIONS(1428), 1, - anon_sym_COLON, - ACTIONS(2435), 1, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, + anon_sym_QMARK_DOT, + ACTIONS(1352), 1, + anon_sym_QMARK, + ACTIONS(1387), 1, + anon_sym_EQ, + ACTIONS(2557), 1, sym_identifier, - STATE(557), 1, - sym_nested_identifier, - STATE(559), 1, - sym_string, - STATE(630), 1, - sym__module, - ACTIONS(961), 11, + STATE(3386), 1, + sym_call_type_arguments, + STATE(3666), 1, + aux_sym_object_repeat1, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 9, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -75141,8 +83599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75158,15 +83615,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(622), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -75183,48 +83638,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1081] = 18, + [1133] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(925), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(2589), 1, anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1853), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(2593), 1, + anon_sym_LT, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(1941), 1, + ACTIONS(2599), 1, + anon_sym_EQ_GT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(2603), 1, anon_sym_QMARK, - ACTIONS(1950), 1, - anon_sym_COLON, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(932), 2, + STATE(3373), 1, + sym_call_type_arguments, + STATE(3727), 1, + aux_sym_object_repeat1, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(961), 8, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75240,12 +83698,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 23, + ACTIONS(599), 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, @@ -75263,23 +83719,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1180] = 10, + [1232] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1036), 1, anon_sym_EQ, - ACTIONS(575), 1, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2447), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2449), 1, + ACTIONS(2061), 1, anon_sym_QMARK_DOT, - STATE(1269), 1, - sym_type_arguments, - ACTIONS(583), 15, + ACTIONS(2531), 1, + sym_identifier, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(1465), 1, + sym_nested_identifier, + STATE(1466), 1, + sym_string, + STATE(1626), 1, + sym__module, + STATE(3347), 1, + sym_call_type_arguments, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75295,30 +83778,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(567), 18, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - ACTIONS(569), 22, + ACTIONS(622), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75337,45 +83801,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1263] = 16, + anon_sym_instanceof, + [1335] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(945), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1334), 1, + anon_sym_LBRACK, + ACTIONS(1336), 1, + anon_sym_LT, + ACTIONS(1340), 1, + anon_sym_DOT, + ACTIONS(1348), 1, anon_sym_EQ_GT, - ACTIONS(947), 1, + ACTIONS(1350), 1, anon_sym_QMARK_DOT, - ACTIONS(1037), 1, + ACTIONS(1352), 1, + anon_sym_QMARK, + ACTIONS(1365), 1, + anon_sym_RBRACE, + ACTIONS(1387), 1, anon_sym_EQ, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1960), 1, - anon_sym_COLON, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 10, + STATE(3386), 1, + sym_call_type_arguments, + STATE(3583), 1, + aux_sym_object_repeat1, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75391,15 +83862,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(622), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -75415,44 +83883,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1358] = 15, + [1434] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1237), 1, - anon_sym_EQ, - ACTIONS(1239), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2423), 1, + ACTIONS(2067), 1, + anon_sym_QMARK_DOT, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2531), 1, sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(1465), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - ACTIONS(961), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + STATE(3315), 1, + sym_call_type_arguments, + STATE(109), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75468,12 +83942,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 25, + ACTIONS(622), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75493,48 +83966,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [1451] = 13, + [1537] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2454), 1, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(569), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(567), 8, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2059), 1, + anon_sym_QMARK_DOT, + ACTIONS(2531), 1, + sym_identifier, + STATE(1465), 1, + sym_nested_identifier, + STATE(1466), 1, + sym_string, + STATE(1626), 1, + sym__module, + STATE(3403), 1, + sym_call_type_arguments, + STATE(1912), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75550,8 +84025,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(622), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -75562,7 +84038,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -75570,43 +84048,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1540] = 15, + anon_sym_instanceof, + [1640] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, - anon_sym_DQUOTE, - ACTIONS(653), 1, - anon_sym_SQUOTE, - ACTIONS(1259), 1, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1267), 1, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(2610), 1, + anon_sym_LT, + ACTIONS(2613), 1, + anon_sym_DOT, + ACTIONS(2615), 1, anon_sym_QMARK_DOT, - ACTIONS(1893), 1, + STATE(2705), 1, + sym_type_arguments, + STATE(3410), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1688), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1895), 1, - anon_sym_DOT, - ACTIONS(2456), 1, - sym_identifier, - STATE(1851), 1, - sym_nested_identifier, - STATE(1852), 1, - sym_string, - STATE(1900), 1, - sym__module, - ACTIONS(961), 10, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_extends, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75622,13 +84108,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 25, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75637,9 +84120,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -75647,48 +84128,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1633] = 17, + [1735] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(1853), 1, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(1941), 1, - anon_sym_QMARK, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(932), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(961), 8, + ACTIONS(1961), 1, anon_sym_LPAREN, + STATE(3522), 1, + sym_call_type_arguments, + ACTIONS(2617), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2620), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(1393), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(655), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75704,22 +84188,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 23, + ACTIONS(622), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -75727,44 +84208,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1730] = 15, + [1832] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1193), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 10, - anon_sym_LPAREN, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + STATE(1711), 1, + sym_type_arguments, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75780,9 +84238,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, - anon_sym_STAR, + ACTIONS(595), 18, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(597), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -75804,27 +84280,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1822] = 12, + [1913] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - STATE(1296), 1, + STATE(1711), 1, sym_type_arguments, - STATE(1408), 1, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, sym_arguments, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75840,14 +84314,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2460), 16, + ACTIONS(595), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75855,12 +84330,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2458), 21, + anon_sym_extends, + ACTIONS(597), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75879,43 +84354,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1908] = 15, + [1998] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1075), 1, - anon_sym_EQ, - ACTIONS(1077), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1359), 1, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2445), 1, + ACTIONS(2063), 1, + anon_sym_QMARK_DOT, + ACTIONS(2531), 1, sym_identifier, - STATE(1312), 1, - sym_string, - STATE(1313), 1, + STATE(1465), 1, sym_nested_identifier, - STATE(1507), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - ACTIONS(961), 10, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3441), 1, + sym_call_type_arguments, + STATE(1905), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75931,12 +84413,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(622), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75956,140 +84437,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2000] = 32, + [2101] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1043), 1, - sym_this, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - STATE(469), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3424), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(2464), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3042), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2995), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [2126] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(2466), 1, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2469), 1, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - STATE(2261), 1, - sym_type_arguments, - ACTIONS(569), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(567), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(585), 10, - anon_sym_as, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_QMARK_DOT, + ACTIONS(2531), 1, + sym_identifier, + STATE(1465), 1, + sym_nested_identifier, + STATE(1466), 1, + sym_string, + STATE(1626), 1, + sym__module, + STATE(3493), 1, + sym_call_type_arguments, + STATE(1618), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76105,8 +84496,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(622), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -76117,7 +84509,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -76125,44 +84519,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2214] = 16, + anon_sym_instanceof, + [2204] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(1960), 1, - anon_sym_COLON, - ACTIONS(2423), 1, + ACTIONS(2044), 1, + anon_sym_QMARK_DOT, + ACTIONS(2531), 1, sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(1465), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - ACTIONS(961), 9, - anon_sym_LPAREN, - anon_sym_RBRACK, + STATE(3365), 1, + sym_call_type_arguments, + STATE(1998), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76178,12 +84579,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(622), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -76203,44 +84603,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2308] = 16, + [2307] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2004), 1, - anon_sym_COLON, - ACTIONS(2423), 1, + ACTIONS(2036), 1, + anon_sym_QMARK_DOT, + ACTIONS(2531), 1, sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(1465), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - ACTIONS(961), 9, - anon_sym_LPAREN, - anon_sym_RBRACK, + STATE(3484), 1, + sym_call_type_arguments, + STATE(1774), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76256,12 +84662,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(622), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -76281,30 +84686,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2402] = 7, + [2410] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(907), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(910), 2, + ACTIONS(1897), 1, anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(901), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(905), 20, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2034), 1, + anon_sym_QMARK_DOT, + ACTIONS(2531), 1, + sym_identifier, + STATE(1465), 1, + sym_nested_identifier, + STATE(1466), 1, + sym_string, + STATE(1626), 1, + sym__module, + STATE(3381), 1, + sym_call_type_arguments, + STATE(1567), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -76315,7 +84758,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -76323,70 +84768,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [2478] = 15, + [2513] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(1037), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1365), 1, + anon_sym_RBRACE, + ACTIONS(2589), 1, anon_sym_EQ, - ACTIONS(1853), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(2593), 1, + anon_sym_LT, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(1976), 1, + ACTIONS(2599), 1, + anon_sym_EQ_GT, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 10, + ACTIONS(2603), 1, + anon_sym_QMARK, + STATE(3373), 1, + sym_call_type_arguments, + STATE(3583), 1, + aux_sym_object_repeat1, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76402,15 +84829,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -76426,38 +84850,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2570] = 13, + [2612] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1316), 1, + anon_sym_RBRACE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(2589), 1, + anon_sym_EQ, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(2593), 1, anon_sym_LT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2478), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(2480), 1, + ACTIONS(2599), 1, anon_sym_EQ_GT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 14, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(2603), 1, + anon_sym_QMARK, + STATE(3373), 1, + sym_call_type_arguments, + STATE(3666), 1, + aux_sym_object_repeat1, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76465,8 +84894,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76482,18 +84910,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -76501,107 +84931,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2657] = 3, + [2711] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2484), 36, - 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(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1899), 1, anon_sym_DOT, + ACTIONS(2040), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(2042), 1, anon_sym_BQUOTE, - anon_sym_implements, - [2724] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(2531), 1, + sym_identifier, + ACTIONS(2623), 1, anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - STATE(1296), 1, - sym_type_arguments, - STATE(1408), 1, + STATE(1465), 1, + sym_nested_identifier, + STATE(1466), 1, + sym_string, + STATE(1626), 1, + sym__module, + STATE(3318), 1, + sym_call_type_arguments, + STATE(2107), 2, + sym_template_string, sym_arguments, - ACTIONS(2460), 14, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76617,8 +84990,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 21, + ACTIONS(622), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -76639,45 +85013,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2811] = 17, + anon_sym_instanceof, + [2814] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(1909), 1, - anon_sym_in, - ACTIONS(1912), 1, - anon_sym_of, - ACTIONS(2423), 1, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2531), 1, sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, + ACTIONS(2608), 1, + anon_sym_LPAREN, + STATE(1465), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1466), 1, + sym_string, + STATE(1626), 1, sym__module, - ACTIONS(961), 8, - anon_sym_LPAREN, + STATE(3443), 1, + sym_call_type_arguments, + STATE(1724), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 6, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76693,11 +85073,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 23, + ACTIONS(622), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -76717,44 +85097,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2906] = 15, + [2917] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1353), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1316), 1, + anon_sym_RBRACE, + ACTIONS(1328), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1359), 1, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(1336), 1, + anon_sym_LT, + ACTIONS(1340), 1, anon_sym_DOT, - ACTIONS(1384), 1, - anon_sym_RBRACE, - ACTIONS(1398), 1, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, + anon_sym_QMARK_DOT, + ACTIONS(1352), 1, + anon_sym_QMARK, + ACTIONS(1387), 1, anon_sym_EQ, - ACTIONS(2486), 1, - sym_identifier, - STATE(3178), 1, + STATE(3386), 1, + sym_call_type_arguments, + STATE(3666), 1, aux_sym_object_repeat1, - ACTIONS(1361), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(961), 10, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76770,9 +85157,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(622), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -76792,35 +85178,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2997] = 13, + [3016] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1334), 1, + anon_sym_LBRACK, + ACTIONS(1336), 1, + anon_sym_LT, + ACTIONS(1340), 1, + anon_sym_DOT, + ACTIONS(1348), 1, anon_sym_EQ_GT, - ACTIONS(947), 1, + ACTIONS(1350), 1, anon_sym_QMARK_DOT, - ACTIONS(1191), 1, + ACTIONS(1352), 1, + anon_sym_QMARK, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(1387), 1, anon_sym_EQ, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - STATE(1283), 1, - sym_type_arguments, - STATE(1411), 1, + STATE(3386), 1, + sym_call_type_arguments, + STATE(3727), 1, + aux_sym_object_repeat1, + STATE(1475), 2, + sym_template_string, sym_arguments, - ACTIONS(1851), 14, + ACTIONS(655), 11, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76828,8 +85222,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76845,13 +85238,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 21, + ACTIONS(622), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -76867,36 +85259,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3084] = 13, + [3115] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2466), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, anon_sym_LT, - ACTIONS(2471), 1, + ACTIONS(2555), 1, anon_sym_QMARK_DOT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(2488), 1, + ACTIONS(2625), 1, anon_sym_DOT, - STATE(2261), 1, + STATE(2581), 1, sym_type_arguments, - ACTIONS(569), 2, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, + anon_sym_EQ, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(567), 6, + ACTIONS(595), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(585), 10, + ACTIONS(611), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76904,8 +85300,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76921,7 +85316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(599), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -76941,44 +85336,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3171] = 15, + [3207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(1353), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, - anon_sym_COLON, - ACTIONS(1359), 1, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1398), 1, + ACTIONS(2627), 1, anon_sym_EQ, - ACTIONS(2486), 1, - sym_identifier, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(1361), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(961), 10, - sym__automatic_semicolon, + ACTIONS(2631), 1, anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(2633), 1, + anon_sym_DOT, + ACTIONS(2635), 1, + anon_sym_EQ_GT, + STATE(519), 1, + sym_type_arguments, + STATE(3472), 1, + aux_sym_extends_clause_repeat1, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2629), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76994,13 +85394,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(599), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -77016,16 +85416,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3262] = 3, + [3305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 23, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(746), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(740), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(744), 20, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77034,9 +85450,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77044,18 +85458,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2492), 36, + ACTIONS(756), 26, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - 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, @@ -77080,16 +85485,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [3329] = 3, + [3381] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 23, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1334), 1, + anon_sym_LBRACK, + ACTIONS(1340), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, + anon_sym_QMARK_DOT, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1406), 1, + anon_sym_COLON, + ACTIONS(1410), 1, anon_sym_EQ, + ACTIONS(2557), 1, + sym_identifier, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 23, + anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77108,19 +85562,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(917), 36, + anon_sym_instanceof, + [3475] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(1791), 1, + sym_type_arguments, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 14, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77136,21 +85612,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 23, + ACTIONS(597), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -77172,19 +85636,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2496), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [3559] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2018), 1, + anon_sym_extends, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2640), 1, + anon_sym_COLON, + ACTIONS(2642), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2644), 1, + anon_sym_QMARK, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2559), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2566), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77200,35 +85699,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 23, + ACTIONS(599), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -77236,75 +85718,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2367), 36, - anon_sym_as, + [3661] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1042), 1, + sym_this, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + STATE(541), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(2648), 4, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3530] = 14, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3729), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3454), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [3787] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(2476), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2650), 1, anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(2498), 1, + ACTIONS(2652), 1, + anon_sym_LBRACE, + ACTIONS(2654), 1, anon_sym_COMMA, - ACTIONS(2504), 1, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2658), 1, + anon_sym_LT, + ACTIONS(2661), 1, anon_sym_DOT, - STATE(320), 1, + ACTIONS(2663), 1, + anon_sym_EQ_GT, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + STATE(3406), 1, + aux_sym_extends_clause_repeat1, + STATE(3531), 1, + sym_call_type_arguments, + STATE(3582), 1, sym_type_arguments, - ACTIONS(2501), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 14, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77312,8 +85855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77329,10 +85871,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77340,7 +85883,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77348,26 +85893,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3619] = 7, + [3887] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(1638), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2018), 1, anon_sym_extends, - ACTIONS(2506), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2473), 4, + ACTIONS(2541), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2667), 1, + anon_sym_COLON, + ACTIONS(2669), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2559), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2566), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(905), 19, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77383,15 +85974,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(917), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, + [3987] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + STATE(1791), 1, + sym_type_arguments, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77407,6 +86004,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(595), 16, + 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, anon_sym_BANG_EQ_EQ, @@ -77415,13 +86019,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [3694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2389), 23, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(597), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -77443,19 +86045,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2391), 36, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [4067] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2018), 1, + anon_sym_extends, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_EQ, + ACTIONS(2674), 1, + anon_sym_COMMA, + ACTIONS(2677), 1, anon_sym_RPAREN, - anon_sym_of, + ACTIONS(2681), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2683), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2685), 1, + anon_sym_QMARK, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2566), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77471,6 +86109,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 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, + 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, + [4171] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2018), 1, + anon_sym_extends, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, + anon_sym_RPAREN, + ACTIONS(2683), 1, + anon_sym_DOT, + ACTIONS(2685), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_EQ, + ACTIONS(2691), 1, + anon_sym_EQ_GT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2566), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2674), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77478,39 +86175,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3761] = 14, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 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, + 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, + [4273] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(1340), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, anon_sym_QMARK_DOT, - ACTIONS(2466), 1, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_COLON, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2476), 1, + ACTIONS(1410), 1, anon_sym_EQ, - ACTIONS(2480), 1, + ACTIONS(2557), 1, + sym_identifier, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [4367] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2691), 1, anon_sym_EQ_GT, - ACTIONS(2509), 1, + ACTIONS(2693), 1, + anon_sym_EQ, + ACTIONS(2695), 1, anon_sym_DOT, - STATE(2261), 1, + STATE(519), 1, sym_type_arguments, - ACTIONS(2498), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2501), 2, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(597), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1924), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(585), 10, + ACTIONS(611), 10, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77518,8 +86330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77535,7 +86346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(599), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -77555,45 +86366,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3850] = 17, + [4461] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(619), 1, anon_sym_EQ, - ACTIONS(1193), 1, + ACTIONS(639), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(1393), 1, + anon_sym_extends, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2012), 1, - anon_sym_in, - ACTIONS(2015), 1, - anon_sym_of, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 8, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(1965), 1, + anon_sym_QMARK, + ACTIONS(2697), 1, + anon_sym_RPAREN, + STATE(3522), 1, + sym_call_type_arguments, + ACTIONS(626), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2620), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77609,22 +86427,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 23, + ACTIONS(622), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -77632,11 +86446,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3945] = 3, + [4560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 23, + ACTIONS(2701), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -77660,7 +86473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2513), 36, + ACTIONS(2703), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -77697,38 +86510,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [4012] = 16, + [4627] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(2449), 1, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2515), 1, - anon_sym_EQ, - ACTIONS(2519), 1, - anon_sym_BANG, - ACTIONS(2521), 1, - anon_sym_in, - ACTIONS(2524), 1, - anon_sym_of, - ACTIONS(2526), 1, - anon_sym_COLON, - STATE(2651), 1, - sym_type_annotation, - STATE(3227), 1, - sym__initializer, - ACTIONS(2517), 3, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2705), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(585), 10, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77736,8 +86548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77753,9 +86564,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 20, + ACTIONS(599), 21, anon_sym_STAR, - anon_sym_LT, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -77774,10 +86586,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4105] = 3, + [4718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 23, + ACTIONS(744), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -77801,7 +86613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2530), 36, + ACTIONS(756), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -77838,37 +86650,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [4172] = 7, + [4785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 1, + ACTIONS(2707), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(913), 1, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(901), 8, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2709), 36, + anon_sym_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_implements, - anon_sym_extends, - ACTIONS(910), 13, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(917), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77884,48 +86705,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(907), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [4247] = 7, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [4852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_extends, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(907), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(910), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(905), 19, + ACTIONS(2711), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77933,7 +86731,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77941,14 +86741,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(917), 32, + ACTIONS(2713), 36, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -77974,44 +86778,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [4322] = 15, + [4919] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1334), 1, + anon_sym_LBRACK, + ACTIONS(1340), 1, + anon_sym_DOT, + ACTIONS(1348), 1, anon_sym_EQ_GT, - ACTIONS(1055), 1, + ACTIONS(1350), 1, anon_sym_QMARK_DOT, - ACTIONS(1353), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, + ACTIONS(1401), 1, anon_sym_COLON, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1382), 1, - anon_sym_RBRACE, - ACTIONS(1398), 1, - anon_sym_EQ, - ACTIONS(2486), 1, - sym_identifier, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(1361), 2, + ACTIONS(1403), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(961), 10, + ACTIONS(1410), 1, + anon_sym_EQ, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78027,13 +86832,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(622), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -78049,11 +86854,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4413] = 3, + [5010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 23, + ACTIONS(2715), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -78077,7 +86881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2534), 36, + ACTIONS(2717), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -78114,35 +86918,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [4480] = 13, + [5077] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(680), 1, anon_sym_EQ_GT, - ACTIONS(2536), 1, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2539), 1, + ACTIONS(1892), 1, + anon_sym_EQ, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2541), 1, - anon_sym_QMARK_DOT, - STATE(2356), 1, - sym_type_arguments, - ACTIONS(569), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(567), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(585), 10, - anon_sym_as, + ACTIONS(1903), 1, + anon_sym_BQUOTE, + ACTIONS(2533), 1, anon_sym_LPAREN, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -78150,8 +86955,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78167,7 +86971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -78179,7 +86983,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78187,41 +86993,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4566] = 15, + [5166] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_COLON, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(2033), 1, + ACTIONS(2599), 1, + anon_sym_EQ_GT, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 8, - anon_sym_LPAREN, + ACTIONS(2719), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78237,12 +87047,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78261,129 +87069,176 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4656] = 33, + [5257] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2543), 1, - sym_identifier, - ACTIONS(2545), 1, - anon_sym_typeof, - ACTIONS(2547), 1, - anon_sym_new, - ACTIONS(2549), 1, - anon_sym_QMARK, - ACTIONS(2551), 1, - anon_sym_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2555), 1, - sym_this, - ACTIONS(2557), 1, - anon_sym_asserts, - ACTIONS(2559), 1, - anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3315), 1, - sym_type_parameters, - STATE(3425), 1, - sym_type_predicate, - STATE(3486), 1, - sym_nested_identifier, - STATE(3495), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2721), 1, + anon_sym_EQ, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3004), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [4782] = 14, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1353), 1, + ACTIONS(2729), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2731), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1356), 1, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - ACTIONS(1359), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [5413] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(1382), 1, - anon_sym_RBRACE, - ACTIONS(1398), 1, + ACTIONS(2599), 1, + anon_sym_EQ_GT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(2719), 1, anon_sym_EQ, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(1361), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(961), 12, + STATE(3373), 1, + sym_call_type_arguments, + ACTIONS(2733), 2, sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -78391,8 +87246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78408,12 +87262,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 20, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -78429,35 +87284,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4870] = 14, + [5504] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1353), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, - anon_sym_COLON, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1384), 1, - anon_sym_RBRACE, - ACTIONS(1398), 1, - anon_sym_EQ, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(1361), 2, + ACTIONS(2541), 1, anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2735), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, anon_sym_QMARK, - ACTIONS(961), 12, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(595), 4, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -78465,8 +87326,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78482,7 +87342,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 20, + ACTIONS(599), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -78493,9 +87353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78503,28 +87361,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4958] = 13, + [5597] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1359), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(1340), 1, anon_sym_DOT, - ACTIONS(2437), 1, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, + anon_sym_QMARK_DOT, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2439), 1, + ACTIONS(1403), 1, anon_sym_LT, - STATE(1653), 1, - sym_type_arguments, - STATE(1782), 1, + ACTIONS(1410), 1, + anon_sym_EQ, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, sym_arguments, - ACTIONS(1851), 13, + ACTIONS(655), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -78537,8 +87398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78554,7 +87414,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 21, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -78576,129 +87436,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5044] = 33, + [5686] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(481), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2561), 1, - sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - ACTIONS(2565), 1, - anon_sym_LBRACE, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, - anon_sym_LBRACK, - ACTIONS(2573), 1, - anon_sym_new, - ACTIONS(2575), 1, - anon_sym_QMARK, - ACTIONS(2577), 1, - anon_sym_AMP, - ACTIONS(2579), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - sym_number, - ACTIONS(2587), 1, - sym_this, - ACTIONS(2591), 1, - sym_readonly, - ACTIONS(2593), 1, - anon_sym_infer, - ACTIONS(2595), 1, - anon_sym_keyof, - ACTIONS(2597), 1, - anon_sym_LBRACE_PIPE, - STATE(1214), 1, - sym_nested_type_identifier, - STATE(1285), 1, - sym__tuple_type_body, - STATE(1399), 1, - sym_template_string, - STATE(3472), 1, - sym_type_parameters, - STATE(3505), 1, - sym_nested_identifier, - STATE(3698), 1, - sym_formal_parameters, - ACTIONS(2581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2589), 2, - sym_true, - sym_false, - STATE(1287), 2, - sym_string, - sym__number, - ACTIONS(2583), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1304), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(1286), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [5170] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 1, - anon_sym_extends, - ACTIONS(2451), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2498), 1, - anon_sym_COMMA, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(2605), 1, + ACTIONS(2599), 1, anon_sym_EQ_GT, - ACTIONS(2607), 1, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(2501), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 13, + ACTIONS(2719), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -78707,8 +87473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78724,10 +87489,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -78735,7 +87501,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78743,123 +87511,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5258] = 33, + [5775] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2609), 1, - sym_identifier, - ACTIONS(2611), 1, - anon_sym_STAR, - ACTIONS(2613), 1, - anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, - anon_sym_new, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2625), 1, - anon_sym_AMP, ACTIONS(2627), 1, - anon_sym_PIPE, + anon_sym_EQ, ACTIONS(2633), 1, - anon_sym_DQUOTE, + anon_sym_DOT, ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, - sym_number, - ACTIONS(2639), 1, - sym_this, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2645), 1, - anon_sym_asserts, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, - anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - STATE(2297), 1, - sym_nested_type_identifier, - STATE(2386), 1, - sym__tuple_type_body, - STATE(2968), 1, - sym_type_predicate, - STATE(3467), 1, - sym_type_parameters, - STATE(3509), 1, - sym_nested_identifier, - STATE(3681), 1, - sym_formal_parameters, - ACTIONS(2629), 2, + anon_sym_EQ_GT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(2737), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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), 2, - sym_true, - sym_false, - STATE(2380), 2, - sym_string, - sym__number, - ACTIONS(2631), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2465), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2383), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [5384] = 7, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(907), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(910), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(901), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(905), 20, + ACTIONS(2462), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78868,7 +87605,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78876,9 +87615,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(917), 26, + ACTIONS(2464), 36, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + 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, @@ -78903,41 +87651,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [5458] = 15, + anon_sym_implements, + [5935] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(1191), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1193), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2027), 1, - anon_sym_QMARK_DOT, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 8, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2695), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(611), 9, + anon_sym_as, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78953,12 +87709,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78967,9 +87721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78977,125 +87729,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [5548] = 33, + [6028] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2673), 1, - sym_number, - ACTIONS(2675), 1, - sym_this, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(2681), 1, - anon_sym_asserts, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, - sym__tuple_type_body, - STATE(2489), 1, - sym_type_predicate, - STATE(3414), 1, - sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3685), 1, - sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, - sym_true, - sym_false, - STATE(2255), 2, - sym_string, - sym__number, - ACTIONS(2667), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2307), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2258), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [5674] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 1, - anon_sym_COLON, - ACTIONS(1382), 1, - anon_sym_RBRACE, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(1340), 1, + anon_sym_DOT, + ACTIONS(1348), 1, anon_sym_EQ_GT, - ACTIONS(2607), 1, + ACTIONS(1350), 1, anon_sym_QMARK_DOT, - ACTIONS(2683), 1, - anon_sym_EQ, - ACTIONS(2685), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_DOT, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(2688), 2, + ACTIONS(1403), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(585), 12, + ACTIONS(1410), 1, + anon_sym_EQ, + ACTIONS(1878), 1, + anon_sym_in, + ACTIONS(2739), 1, + anon_sym_of, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -79107,8 +87769,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79124,12 +87785,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 20, + ACTIONS(622), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -79145,137 +87806,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5762] = 33, + [6121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2494), 23, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(547), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(549), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2693), 1, - sym_identifier, - ACTIONS(2695), 1, - sym_this, - ACTIONS(2697), 1, - anon_sym_asserts, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3424), 1, - sym_type_parameters, - STATE(3425), 1, - sym_type_predicate, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2397), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [5888] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 1, - anon_sym_COLON, - ACTIONS(1384), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2496), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_EQ_GT, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2683), 1, - anon_sym_EQ, - ACTIONS(2685), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(2688), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(585), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79291,54 +87861,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5976] = 12, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [6188] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2599), 1, anon_sym_EQ_GT, - ACTIONS(947), 1, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - ACTIONS(1037), 1, + ACTIONS(2741), 1, anon_sym_EQ, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2699), 2, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, + anon_sym_BQUOTE, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2702), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1325), 4, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79346,8 +87907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79363,11 +87923,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 20, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79376,7 +87935,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -79384,41 +87945,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6060] = 15, + [6277] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1340), 1, anon_sym_DOT, - ACTIONS(2025), 1, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + ACTIONS(1350), 1, anon_sym_QMARK_DOT, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 8, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1913), 1, + anon_sym_BQUOTE, + ACTIONS(2528), 1, anon_sym_LPAREN, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 12, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79434,12 +87998,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(622), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79458,35 +88020,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6150] = 12, + [6366] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(626), 1, + anon_sym_COMMA, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(1037), 1, + ACTIONS(673), 1, anon_sym_EQ, - ACTIONS(1325), 1, + ACTIONS(676), 1, + anon_sym_COLON, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1393), 1, anon_sym_extends, - ACTIONS(1853), 1, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2699), 1, - anon_sym_COMMA, - ACTIONS(2702), 3, - anon_sym_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(1965), 1, + anon_sym_QMARK, + ACTIONS(2697), 1, + anon_sym_RPAREN, + STATE(3522), 1, + sym_call_type_arguments, + ACTIONS(2620), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(961), 14, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79494,8 +88066,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79511,13 +88082,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 19, + ACTIONS(622), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -79531,27 +88101,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6234] = 10, + [6467] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2599), 1, anon_sym_EQ_GT, - ACTIONS(2471), 1, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - ACTIONS(2705), 1, - anon_sym_DOT, - STATE(1634), 1, - sym_type_arguments, - ACTIONS(567), 15, + ACTIONS(2719), 1, + anon_sym_EQ, + ACTIONS(2749), 1, + anon_sym_in, + ACTIONS(2752), 1, + anon_sym_of, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -79560,9 +88141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79578,11 +88157,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(569), 22, + ACTIONS(599), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79601,128 +88178,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6314] = 33, + [6560] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2709), 1, - anon_sym_STAR, - ACTIONS(2711), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, - anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_new, - ACTIONS(2721), 1, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2754), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, anon_sym_QMARK, - ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(2725), 1, anon_sym_PIPE, - ACTIONS(2731), 1, - sym_number, - ACTIONS(2733), 1, - sym_this, - ACTIONS(2737), 1, - sym_readonly, - ACTIONS(2739), 1, - anon_sym_infer, - ACTIONS(2741), 1, - anon_sym_keyof, - ACTIONS(2743), 1, - anon_sym_LBRACE_PIPE, - STATE(1440), 1, - sym_nested_type_identifier, - STATE(1693), 1, - sym__tuple_type_body, - STATE(1724), 1, - sym_template_string, - STATE(3238), 1, - sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, - sym_nested_identifier, - ACTIONS(2727), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2735), 2, - sym_true, - sym_false, - STATE(1679), 2, - sym_string, - sym__number, - ACTIONS(2729), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1707), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(1684), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [6440] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(1353), 1, - anon_sym_LPAREN, - ACTIONS(1356), 1, - anon_sym_COLON, - ACTIONS(1359), 1, + ACTIONS(595), 4, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1398), 1, - anon_sym_EQ, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(1361), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(961), 12, - sym__automatic_semicolon, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(611), 8, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79730,8 +88220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79747,7 +88236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 20, + ACTIONS(599), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -79758,9 +88247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -79768,41 +88255,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6528] = 15, + [6653] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(1191), 1, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1193), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2756), 1, + anon_sym_LT, + ACTIONS(2759), 1, anon_sym_DOT, - ACTIONS(1976), 1, + ACTIONS(2761), 1, anon_sym_QMARK_DOT, - ACTIONS(2423), 1, - sym_identifier, - STATE(1292), 1, - sym_string, - STATE(1293), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(961), 8, - anon_sym_LPAREN, + STATE(2857), 1, + sym_type_arguments, + STATE(3354), 1, + sym_call_type_arguments, + STATE(2077), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(595), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(611), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79818,13 +88313,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -79832,9 +88324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -79842,46 +88332,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6618] = 13, + [6746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(2599), 1, + ACTIONS(2763), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_EQ_GT, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2745), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 3, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_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(585), 13, - sym__automatic_semicolon, + 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, + ACTIONS(2765), 36, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79897,51 +88387,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [6704] = 13, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [6813] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2439), 1, + ACTIONS(1406), 1, + anon_sym_COLON, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2601), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2599), 1, anon_sym_EQ_GT, - ACTIONS(2607), 1, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - STATE(1659), 1, - sym_type_arguments, - STATE(1767), 1, + ACTIONS(2719), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, sym_arguments, - ACTIONS(2460), 13, + ACTIONS(611), 11, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -79950,8 +88434,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79967,7 +88450,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 21, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -79989,31 +88472,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6790] = 14, + [6904] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(1356), 1, - anon_sym_COLON, - ACTIONS(2601), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(1340), 1, + anon_sym_DOT, + ACTIONS(1348), 1, anon_sym_EQ_GT, - ACTIONS(2607), 1, + ACTIONS(1350), 1, anon_sym_QMARK_DOT, - ACTIONS(2683), 1, - anon_sym_EQ, - ACTIONS(2685), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_DOT, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(2688), 2, + ACTIONS(1403), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(585), 12, + ACTIONS(1406), 1, + anon_sym_COLON, + ACTIONS(1410), 1, + anon_sym_EQ, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -80025,8 +88510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80042,12 +88526,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 20, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -80063,221 +88548,173 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6878] = 33, + [6995] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, - anon_sym_DQUOTE, - ACTIONS(653), 1, - anon_sym_SQUOTE, - ACTIONS(655), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 1, - anon_sym_STAR, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2650), 1, + anon_sym_EQ, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_new, - ACTIONS(2761), 1, + ACTIONS(2658), 1, + anon_sym_LT, + ACTIONS(2661), 1, + anon_sym_DOT, + ACTIONS(2663), 1, + anon_sym_EQ_GT, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(2767), 1, + anon_sym_LBRACE, + STATE(3531), 1, + sym_call_type_arguments, + STATE(3582), 1, + sym_type_arguments, + ACTIONS(2737), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2763), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(2765), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(2771), 1, - sym_number, - ACTIONS(2773), 1, - sym_this, - ACTIONS(2777), 1, - sym_readonly, - ACTIONS(2779), 1, - anon_sym_infer, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, - anon_sym_LBRACE_PIPE, - STATE(1643), 1, - sym_nested_type_identifier, - STATE(1864), 1, - sym__tuple_type_body, - STATE(1913), 1, - sym_template_string, - STATE(3452), 1, - sym_type_parameters, - STATE(3527), 1, - sym_nested_identifier, - STATE(3626), 1, - sym_formal_parameters, - ACTIONS(2767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2775), 2, - sym_true, - sym_false, - STATE(1860), 2, - sym_string, - sym__number, - ACTIONS(2769), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1846), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(1863), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [7004] = 36, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7090] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, + ACTIONS(744), 1, + anon_sym_EQ, + ACTIONS(752), 1, anon_sym_LT, - ACTIONS(1946), 1, + ACTIONS(740), 8, anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2787), 1, - anon_sym_export, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(2793), 1, anon_sym_RBRACE, - ACTIONS(2795), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + anon_sym_extends, + ACTIONS(749), 13, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, anon_sym_LBRACK, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(756), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(746), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(2807), 1, - sym_number, - ACTIONS(2809), 1, - anon_sym_static, - ACTIONS(2815), 1, - sym_readonly, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3117), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2811), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2813), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3104), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2785), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [7135] = 13, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7165] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(2819), 1, + ACTIONS(744), 1, anon_sym_EQ, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2823), 1, - anon_sym_DOT, - ACTIONS(2825), 1, - anon_sym_EQ_GT, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, + ACTIONS(752), 1, + anon_sym_LT, + ACTIONS(740), 8, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, anon_sym_extends, - ACTIONS(569), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 11, + ACTIONS(749), 11, 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, @@ -80285,9 +88722,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(583), 15, + ACTIONS(756), 17, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80303,11 +88739,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + anon_sym_BQUOTE, + ACTIONS(746), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -80315,7 +88752,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -80323,36 +88762,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7220] = 11, + [7240] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(1053), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(1055), 1, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(1359), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(1408), 1, - anon_sym_COLON, - ACTIONS(2486), 1, - sym_identifier, - ACTIONS(961), 11, - sym__automatic_semicolon, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80368,12 +88815,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, + ACTIONS(599), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -80392,28 +88837,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7301] = 7, + [7329] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(2473), 3, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2756), 1, anon_sym_LT, + ACTIONS(2761), 1, + anon_sym_QMARK_DOT, + ACTIONS(2769), 1, + anon_sym_DOT, + STATE(2857), 1, + sym_type_arguments, + STATE(3354), 1, + sym_call_type_arguments, + ACTIONS(597), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2506), 3, + STATE(2077), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 4, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(1638), 4, - sym__automatic_semicolon, - anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(905), 20, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -80432,10 +88914,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(917), 26, - anon_sym_as, + [7422] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, + ACTIONS(2771), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80451,6 +88971,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + [7515] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -80458,175 +89028,199 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7374] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(547), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(549), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, + 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, + [7604] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, + ACTIONS(2541), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2773), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(595), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2829), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3424), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + anon_sym_extends, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3018), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [7497] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7695] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2787), 1, + anon_sym_GT, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2793), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2795), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2833), 1, - anon_sym_GT, - ACTIONS(2835), 1, - anon_sym_new, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -80641,129 +89235,37 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [7620] = 36, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, - anon_sym_LBRACK, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2839), 1, - anon_sym_export, - ACTIONS(2841), 1, - anon_sym_RBRACE, - ACTIONS(2843), 1, - anon_sym_async, - ACTIONS(2845), 1, - anon_sym_static, - ACTIONS(2851), 1, - sym_readonly, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3198), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2847), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2849), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3033), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2837), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [7751] = 13, + [7821] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(2449), 1, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2853), 1, + ACTIONS(2585), 1, anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 12, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2821), 1, + anon_sym_in, + ACTIONS(2823), 1, anon_sym_COLON, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -80772,8 +89274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80789,10 +89290,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -80800,7 +89301,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -80808,178 +89311,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7836] = 36, + [7913] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2789), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2803), 1, + ACTIONS(2837), 1, anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2857), 1, - anon_sym_export, - ACTIONS(2859), 1, - anon_sym_RBRACE, - ACTIONS(2861), 1, - anon_sym_async, - ACTIONS(2863), 1, - anon_sym_static, - ACTIONS(2869), 1, - sym_readonly, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3055), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2865), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2867), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3110), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2855), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [7967] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2839), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2841), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2843), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2849), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2851), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2871), 1, - anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(1681), 1, + sym__tuple_type_body, + STATE(1803), 1, + sym_template_string, + STATE(3791), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4226), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4291), 1, + sym_formal_parameters, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2847), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(2116), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1678), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -80994,83 +89404,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [8090] = 32, + [8039] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2873), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2863), 1, + anon_sym_GT, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2899), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81085,83 +89497,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [8213] = 32, + [8165] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2875), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2867), 1, + anon_sym_GT, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3021), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81176,83 +89590,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [8336] = 32, + [8291] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2793), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2795), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2877), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2869), 1, anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81267,115 +89683,42 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [8459] = 36, + [8417] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, - anon_sym_LBRACK, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2857), 1, - anon_sym_export, - ACTIONS(2861), 1, - anon_sym_async, - ACTIONS(2863), 1, - anon_sym_static, - ACTIONS(2869), 1, - sym_readonly, - ACTIONS(2879), 1, - anon_sym_RBRACE, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3055), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2865), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2867), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3110), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2855), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [8590] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1037), 1, + ACTIONS(1976), 1, anon_sym_EQ, - ACTIONS(1853), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1982), 1, anon_sym_DOT, - ACTIONS(951), 15, + ACTIONS(1986), 1, + anon_sym_EQ_GT, + ACTIONS(1988), 1, + anon_sym_QMARK_DOT, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(3484), 1, + sym_call_type_arguments, + STATE(1774), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81391,27 +89734,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(961), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(928), 22, + ACTIONS(622), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -81430,83 +89757,364 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8667] = 32, + [8505] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, + anon_sym_new, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(937), 1, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(1582), 1, + sym_template_string, + STATE(3974), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4234), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2166), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8631] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2909), 1, + anon_sym_GT, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3033), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8757] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(2881), 1, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2911), 1, anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, sym_true, sym_false, - ACTIONS(1869), 2, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3033), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [8883] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2935), 1, + sym_this, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(2941), 1, + anon_sym_asserts, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(2892), 1, + sym_type_predicate, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(2670), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81521,20 +90129,43 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [8790] = 9, + [9009] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, + ACTIONS(2635), 1, anon_sym_EQ_GT, - ACTIONS(583), 15, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(2943), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81550,27 +90181,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(571), 22, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -81589,28 +90203,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8867] = 13, + [9097] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - ACTIONS(2449), 1, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - ACTIONS(2883), 1, + ACTIONS(1903), 1, + anon_sym_BQUOTE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1946), 1, anon_sym_EQ_GT, - STATE(1296), 1, - sym_type_arguments, - STATE(1408), 1, + ACTIONS(2533), 1, + anon_sym_LPAREN, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, sym_arguments, - ACTIONS(2460), 12, + ACTIONS(655), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -81621,9 +90238,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81639,7 +90255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 21, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -81661,83 +90277,306 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8952] = 32, + [9185] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2885), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3424), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [9271] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(639), 1, + anon_sym_EQ_GT, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(1990), 1, + anon_sym_EQ, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [9359] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2691), 1, + anon_sym_EQ_GT, + ACTIONS(2693), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [9447] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2945), 1, + anon_sym_GT, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2899), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81752,83 +90591,159 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [9075] = 32, + [9573] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2663), 1, + anon_sym_EQ_GT, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(2947), 1, + anon_sym_EQ, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(2954), 1, + anon_sym_BQUOTE, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(639), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(641), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + 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, + [9661] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(2959), 1, anon_sym_new, - ACTIONS(2887), 1, - sym_identifier, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, sym_nested_type_identifier, - STATE(3155), 1, - sym_type_parameter, - STATE(3478), 1, + STATE(1681), 1, + sym__tuple_type_body, + STATE(1803), 1, + sym_template_string, + STATE(3989), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4226), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2847), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2513), 6, + STATE(1708), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1678), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -81843,178 +90758,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [9198] = 36, + [9787] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(972), 1, anon_sym_SQUOTE, - ACTIONS(2789), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2975), 1, + anon_sym_typeof, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2803), 1, + ACTIONS(2981), 1, anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2839), 1, - anon_sym_export, - ACTIONS(2843), 1, - anon_sym_async, - ACTIONS(2845), 1, - anon_sym_static, - ACTIONS(2851), 1, - sym_readonly, - ACTIONS(2889), 1, - anon_sym_RBRACE, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3198), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2847), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2849), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3033), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2837), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [9329] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2983), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2985), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2993), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2995), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2891), 1, - anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, + anon_sym_keyof, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(1911), 1, + sym__tuple_type_body, + STATE(1999), 1, + sym_template_string, + STATE(3980), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4256), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4261), 1, + sym_formal_parameters, + ACTIONS(2989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2991), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(2163), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82029,33 +90851,34 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [9452] = 12, + [9913] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2466), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(2893), 1, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, anon_sym_DOT, - STATE(2261), 1, - sym_type_arguments, - ACTIONS(569), 3, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(2719), 1, anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(567), 4, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -82063,8 +90886,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82080,7 +90902,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -82092,7 +90914,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82100,7 +90924,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9535] = 32, + [9999] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -82109,74 +90933,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3007), 1, + sym_identifier, + ACTIONS(3009), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2895), 1, - anon_sym_GT, - STATE(462), 1, + ACTIONS(3011), 1, + anon_sym_asserts, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3915), 1, + sym_type_predicate, + STATE(3960), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(2889), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82191,178 +91017,178 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [9658] = 36, + [10125] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2789), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2803), 1, + ACTIONS(2789), 1, anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, sym_number, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2899), 1, - anon_sym_export, - ACTIONS(2901), 1, - anon_sym_RBRACE, - ACTIONS(2903), 1, - anon_sym_async, - ACTIONS(2905), 1, - anon_sym_static, - ACTIONS(2911), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3229), 1, - aux_sym_object_repeat1, - STATE(3397), 1, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3013), 1, + anon_sym_GT, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2907), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2909), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3180), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2897), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [9789] = 32, + STATE(3033), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [10251] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2793), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2795), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2913), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3015), 1, anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82377,83 +91203,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [9912] = 32, + [10377] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2915), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3017), 1, + anon_sym_GT, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2899), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82468,83 +91296,233 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [10035] = 32, + [10503] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2627), 1, + anon_sym_EQ, + ACTIONS(2635), 1, + anon_sym_EQ_GT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [10591] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1980), 1, + anon_sym_LBRACK, + ACTIONS(1982), 1, + anon_sym_DOT, + ACTIONS(1986), 1, + anon_sym_EQ_GT, + ACTIONS(1988), 1, + anon_sym_QMARK_DOT, + ACTIONS(1994), 1, + anon_sym_EQ, + ACTIONS(1999), 1, + anon_sym_BQUOTE, + ACTIONS(2538), 1, + anon_sym_LPAREN, + STATE(3484), 1, + sym_call_type_arguments, + STATE(1774), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(547), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(549), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + 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, + [10679] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2917), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3019), 1, + anon_sym_GT, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2959), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82559,33 +91537,37 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [10158] = 14, + [10805] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2883), 1, - anon_sym_EQ_GT, - ACTIONS(2919), 1, - anon_sym_EQ, - ACTIONS(2923), 1, - anon_sym_COMMA, - ACTIONS(2925), 1, + ACTIONS(2585), 1, anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - STATE(2922), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(2921), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(585), 10, + ACTIONS(2667), 1, + anon_sym_COLON, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3021), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -82593,8 +91575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82610,7 +91591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -82632,34 +91613,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10245] = 13, + [10897] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2650), 1, + anon_sym_EQ, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2663), 1, + anon_sym_EQ_GT, + ACTIONS(2665), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(2478), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(2883), 1, - anon_sym_EQ_GT, - ACTIONS(2919), 1, - anon_sym_EQ, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 12, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -82667,9 +91647,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(583), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82685,10 +91664,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -82696,7 +91677,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82704,35 +91687,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10330] = 14, + [10985] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2541), 1, anon_sym_LT, - ACTIONS(2498), 1, - anon_sym_COMMA, - ACTIONS(2504), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(3024), 1, anon_sym_DOT, - ACTIONS(2883), 1, - anon_sym_EQ_GT, - ACTIONS(2919), 1, - anon_sym_EQ, - STATE(320), 1, + STATE(519), 1, sym_type_arguments, - ACTIONS(2501), 3, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(597), 4, + anon_sym_EQ, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(585), 12, + ACTIONS(611), 8, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -82740,9 +91727,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82758,7 +91743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -82777,83 +91762,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10417] = 32, + [11075] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, + anon_sym_typeof, + ACTIONS(3034), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, + anon_sym_new, + ACTIONS(3040), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(3042), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(3044), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3056), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2927), 1, - anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(3060), 1, + sym_readonly, + ACTIONS(3062), 1, + anon_sym_asserts, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3477), 1, + sym_type_predicate, + STATE(3995), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4296), 1, + sym_formal_parameters, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(2793), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -82868,339 +91855,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [10540] = 36, + [11201] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, - anon_sym_LBRACK, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2839), 1, - anon_sym_export, - ACTIONS(2843), 1, - anon_sym_async, - ACTIONS(2845), 1, - anon_sym_static, - ACTIONS(2851), 1, - sym_readonly, - ACTIONS(2929), 1, - anon_sym_RBRACE, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3198), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2847), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2849), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3033), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2837), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [10671] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1428), 1, - anon_sym_COLON, - ACTIONS(2486), 1, - sym_identifier, - ACTIONS(961), 11, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [10752] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2931), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3424), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2899), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [10875] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(499), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, + anon_sym_new, + ACTIONS(3074), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(3076), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(3078), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(3080), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2933), 1, - anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(1582), 1, + sym_template_string, + STATE(3983), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4112), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(1563), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83215,38 +91948,34 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [10998] = 16, + [11327] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_extends, - ACTIONS(2449), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(2935), 1, - anon_sym_COLON, - ACTIONS(2937), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2939), 1, - anon_sym_QMARK, - STATE(320), 1, - sym_type_arguments, - ACTIONS(2498), 2, + ACTIONS(2721), 1, + anon_sym_EQ, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(2501), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -83254,8 +91983,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83271,18 +91999,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -83290,120 +92021,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11089] = 36, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2799), 1, - anon_sym_LBRACK, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(2839), 1, - anon_sym_export, - ACTIONS(2843), 1, - anon_sym_async, - ACTIONS(2845), 1, - anon_sym_static, - ACTIONS(2851), 1, - sym_readonly, - ACTIONS(2943), 1, - anon_sym_COMMA, - ACTIONS(2945), 1, - anon_sym_RBRACE, - ACTIONS(2947), 1, - anon_sym_SEMI, - ACTIONS(2949), 1, - anon_sym_PIPE_RBRACE, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3198), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2847), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2849), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3033), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2569), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2837), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [11220] = 7, + [11413] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2637), 1, anon_sym_LT, - ACTIONS(907), 2, + ACTIONS(746), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(901), 4, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(740), 7, sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(910), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(905), 20, + ACTIONS(744), 20, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -83424,7 +92061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(917), 26, + ACTIONS(756), 26, anon_sym_as, anon_sym_LPAREN, anon_sym_QMARK_DOT, @@ -83451,34 +92088,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11293] = 15, + [11487] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, - anon_sym_EQ, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2825), 1, - anon_sym_EQ_GT, - ACTIONS(2827), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(2921), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2951), 1, - anon_sym_LBRACE, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2958), 1, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - STATE(2914), 1, - aux_sym_extends_clause_repeat1, - STATE(3061), 1, - sym_type_arguments, - ACTIONS(585), 10, - anon_sym_as, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(1968), 1, + anon_sym_COLON, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -83486,8 +92125,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83503,7 +92141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -83525,83 +92163,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11382] = 32, + [11577] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2960), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3082), 1, + anon_sym_GT, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2899), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83616,25 +92256,34 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11505] = 10, + [11703] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2962), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(2964), 1, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - STATE(1763), 1, - sym_type_arguments, - ACTIONS(567), 13, + ACTIONS(2741), 1, + anon_sym_EQ, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, + anon_sym_BQUOTE, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 12, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -83642,10 +92291,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83661,12 +92307,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(569), 23, + ACTIONS(599), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -83685,83 +92329,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11584] = 32, + [11789] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(673), 1, + anon_sym_EQ, + ACTIONS(676), 1, + anon_sym_COLON, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(1965), 1, anon_sym_QMARK, - ACTIONS(547), 1, + STATE(3522), 1, + sym_call_type_arguments, + ACTIONS(626), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 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, - ACTIONS(549), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + 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, + [11883] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, sym_this, - ACTIONS(2966), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3084), 1, + anon_sym_GT, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2940), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83776,83 +92499,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11707] = 32, + [12009] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2793), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2795), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2968), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3086), 1, anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -83867,126 +92592,39 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [11830] = 36, + [12135] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, - anon_sym_SEMI, - ACTIONS(2799), 1, - anon_sym_LBRACK, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(2817), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2839), 1, - anon_sym_export, - ACTIONS(2843), 1, - anon_sym_async, - ACTIONS(2845), 1, - anon_sym_static, - ACTIONS(2851), 1, - sym_readonly, - ACTIONS(2970), 1, - anon_sym_RBRACE, - STATE(2149), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3198), 1, - aux_sym_object_repeat1, - STATE(3397), 1, - sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(2847), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2849), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2213), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3033), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2837), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [11961] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(947), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1239), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, + ACTIONS(2582), 1, anon_sym_LT, - STATE(1283), 1, - sym_type_arguments, - STATE(1411), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2671), 1, + anon_sym_EQ, + ACTIONS(2681), 1, + anon_sym_COLON, + ACTIONS(2685), 1, + anon_sym_QMARK, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2674), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1389), 2, + sym_template_string, sym_arguments, - ACTIONS(1851), 12, + ACTIONS(611), 8, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -83994,9 +92632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(951), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84012,13 +92648,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 21, + ACTIONS(599), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -84034,36 +92669,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12046] = 15, + [12229] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(2476), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(2480), 1, + ACTIONS(605), 1, anon_sym_EQ_GT, - ACTIONS(2972), 1, - anon_sym_COLON, - ACTIONS(2974), 1, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2541), 1, + anon_sym_LT, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_DOT, - STATE(320), 1, + STATE(519), 1, sym_type_arguments, - ACTIONS(2498), 2, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 3, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2501), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(597), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(585), 10, + ACTIONS(611), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84071,8 +92710,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84088,11 +92726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(599), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -84108,102 +92745,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12135] = 13, + [12321] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_QMARK_DOT, - ACTIONS(1893), 1, - anon_sym_LBRACK, - ACTIONS(1895), 1, - anon_sym_DOT, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LT, - STATE(1856), 1, - sym_type_arguments, - STATE(1905), 1, - sym_arguments, - ACTIONS(1851), 11, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(85), 1, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 22, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [12220] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(2441), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2821), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2825), 1, - anon_sym_EQ_GT, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, + ACTIONS(2597), 1, anon_sym_DOT, - STATE(1862), 1, - sym_type_arguments, - STATE(1907), 1, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(2719), 1, + anon_sym_EQ, + ACTIONS(2749), 1, + anon_sym_in, + ACTIONS(2752), 1, + anon_sym_of, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, sym_arguments, - ACTIONS(2460), 11, + ACTIONS(611), 11, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84211,9 +92783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84229,11 +92799,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 22, + ACTIONS(599), 20, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -84252,7 +92820,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12305] = 32, + [12411] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -84261,165 +92829,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, + ACTIONS(3090), 1, + sym_identifier, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3094), 1, anon_sym_new, - ACTIONS(2978), 1, - anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3478), 1, - sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, - sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2873), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12428] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(3096), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(3098), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(3100), 1, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3102), 1, sym_this, - ACTIONS(2980), 1, - anon_sym_RBRACK, - STATE(462), 1, + ACTIONS(3104), 1, + anon_sym_asserts, + ACTIONS(3106), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(3915), 1, + sym_type_predicate, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2899), 6, + STATE(3389), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84434,33 +92913,109 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12551] = 12, + [12537] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(1325), 1, - anon_sym_extends, - ACTIONS(1359), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2699), 1, + ACTIONS(2691), 1, + anon_sym_EQ_GT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3108), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2702), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_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(961), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, + 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, + [12625] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(639), 1, + anon_sym_EQ_GT, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1903), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(2533), 1, anon_sym_LPAREN, - anon_sym_SEMI, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84468,8 +93023,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84485,11 +93039,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 19, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -84497,7 +93051,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84505,34 +93061,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12634] = 14, + [12713] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1393), 1, anon_sym_extends, - ACTIONS(2451), 1, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2498), 1, - anon_sym_COMMA, - ACTIONS(2819), 1, - anon_sym_EQ, - ACTIONS(2821), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(2825), 1, - anon_sym_EQ_GT, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2982), 1, + ACTIONS(1899), 1, anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(2501), 3, - anon_sym_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(3522), 1, + sym_call_type_arguments, + ACTIONS(2617), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(2620), 3, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(585), 11, + ACTIONS(655), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84540,9 +93103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84558,13 +93119,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(622), 18, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -84578,83 +93138,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12721] = 32, + [12807] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2984), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3110), 1, + anon_sym_GT, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2987), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84669,31 +93231,40 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [12844] = 12, + [12933] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, + ACTIONS(1393), 1, + anon_sym_extends, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2601), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(1899), 1, anon_sym_DOT, - STATE(1659), 1, - sym_type_arguments, - STATE(1767), 1, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(3522), 1, + sym_call_type_arguments, + ACTIONS(2617), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2620), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1399), 2, + sym_template_string, sym_arguments, - ACTIONS(2460), 13, - sym__automatic_semicolon, + ACTIONS(655), 8, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -84701,8 +93272,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84718,7 +93288,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 21, + ACTIONS(622), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -84730,9 +93300,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84740,83 +93308,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12927] = 32, + [13027] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(2793), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(2795), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2986), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3112), 1, anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(3033), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -84831,174 +93401,85 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13050] = 32, + [13153] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2988), 1, - anon_sym_RBRACK, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3424), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2899), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13173] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(499), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3116), 1, + anon_sym_new, + ACTIONS(3118), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(3120), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(3122), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(3124), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - ACTIONS(2990), 1, - anon_sym_GT, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(1582), 1, + sym_template_string, + STATE(3870), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4147), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(1705), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85013,35 +93494,38 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13296] = 13, + [13279] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(619), 1, anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(639), 1, anon_sym_EQ_GT, - ACTIONS(2449), 1, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2992), 1, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2501), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 12, - anon_sym_as, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(1965), 1, + anon_sym_QMARK, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(626), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(655), 8, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -85049,8 +93533,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85066,18 +93549,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(622), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_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, @@ -85085,38 +93570,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13381] = 16, + [13371] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_extends, - ACTIONS(2449), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_EQ, - ACTIONS(3000), 1, - anon_sym_RPAREN, - ACTIONS(3004), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3006), 1, + ACTIONS(2685), 1, anon_sym_QMARK, - STATE(320), 1, - sym_type_arguments, - ACTIONS(2501), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2997), 2, + ACTIONS(2688), 1, + anon_sym_EQ, + ACTIONS(2691), 1, + anon_sym_EQ_GT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(2674), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(585), 10, + ACTIONS(611), 8, anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -85124,8 +93609,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85141,7 +93625,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(599), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -85152,7 +93636,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85160,106 +93646,220 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13472] = 13, + [13463] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2601), 1, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(3009), 1, - anon_sym_EQ, - ACTIONS(3011), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_EQ_GT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2501), 3, - anon_sym_GT, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, + anon_sym_QMARK, + ACTIONS(3132), 1, anon_sym_AMP, + ACTIONS(3134), 1, anon_sym_PIPE, - ACTIONS(585), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(1999), 1, + sym_template_string, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1873), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [13589] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(1582), 1, + sym_template_string, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [13557] = 13, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1831), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [13715] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(1403), 1, anon_sym_LT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(3015), 1, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(569), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 12, + ACTIONS(1946), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_EQ, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 11, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -85267,8 +93867,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + anon_sym_implements, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85284,7 +93884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -85296,7 +93896,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85304,79 +93906,193 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13642] = 13, + [13803] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(3009), 1, - anon_sym_EQ, - ACTIONS(3013), 1, - anon_sym_EQ_GT, - ACTIONS(3017), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3152), 1, + anon_sym_export, + ACTIONS(3154), 1, + anon_sym_STAR, + ACTIONS(3156), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 12, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(3158), 1, + anon_sym_RBRACE, + ACTIONS(3160), 1, anon_sym_LPAREN, + ACTIONS(3162), 1, anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, + ACTIONS(3164), 1, + anon_sym_LBRACK, + ACTIONS(3166), 1, + anon_sym_async, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, + sym_number, + ACTIONS(3174), 1, + anon_sym_static, + ACTIONS(3180), 1, + sym_readonly, + ACTIONS(3182), 1, + anon_sym_PIPE_RBRACE, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3572), 1, + aux_sym_object_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3176), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3178), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3576), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2987), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3150), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [13934] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(2869), 1, + anon_sym_GT, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [13727] = 32, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3276), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14057] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85385,74 +94101,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(937), 1, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3196), 1, + anon_sym_RBRACK, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3361), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14180] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(2867), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3019), 1, - anon_sym_GT, - STATE(462), 1, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3480), 1, + STATE(4017), 1, sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85467,28 +94274,37 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13850] = 12, + [14303] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_EQ, - ACTIONS(2441), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(2541), 1, anon_sym_LT, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, + ACTIONS(2544), 1, anon_sym_DOT, - STATE(1862), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + STATE(519), 1, sym_type_arguments, - STATE(1907), 1, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, sym_arguments, - ACTIONS(2460), 11, + ACTIONS(595), 3, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(611), 8, anon_sym_as, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -85496,9 +94312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85514,9 +94328,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 22, + ACTIONS(599), 19, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -85527,9 +94340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85537,7 +94348,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13932] = 31, + [14392] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85546,72 +94357,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2545), 1, + ACTIONS(3017), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(2549), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(2551), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(2553), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(2559), 1, + ACTIONS(3194), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3495), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(466), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85626,72 +94439,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14052] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(907), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(910), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(901), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(905), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14124] = 31, + [14515] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85700,72 +94448,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3198), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2895), 6, + STATE(3398), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85780,7 +94530,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14244] = 31, + [14638] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85789,72 +94539,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3021), 1, - anon_sym_typeof, - ACTIONS(3023), 1, - anon_sym_new, - ACTIONS(3025), 1, - anon_sym_QMARK, - ACTIONS(3027), 1, - anon_sym_AMP, - ACTIONS(3029), 1, - anon_sym_PIPE, - ACTIONS(3031), 1, - anon_sym_keyof, - STATE(462), 1, + ACTIONS(3200), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3490), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(459), 6, + STATE(3398), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85869,7 +94621,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14364] = 31, + [14761] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85878,72 +94630,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(2787), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3186), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3480), 1, + STATE(4017), 1, sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2601), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -85958,7 +94712,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14484] = 31, + [14884] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -85967,72 +94721,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - STATE(462), 1, + ACTIONS(3202), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2577), 6, + STATE(3479), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86047,7 +94803,79 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14604] = 31, + [15007] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3108), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [15092] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -86056,72 +94884,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3021), 1, + ACTIONS(3112), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3194), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3490), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(475), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86136,81 +94966,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14724] = 31, + [15215] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2749), 1, - anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3082), 1, + anon_sym_GT, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(2761), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(2763), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(2765), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(2771), 1, - sym_number, - ACTIONS(2773), 1, - sym_this, - ACTIONS(2777), 1, - sym_readonly, - ACTIONS(2779), 1, - anon_sym_infer, - ACTIONS(2781), 1, + ACTIONS(3194), 1, anon_sym_keyof, - ACTIONS(2783), 1, - anon_sym_LBRACE_PIPE, - STATE(1643), 1, - sym_nested_type_identifier, - STATE(1864), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, sym_type_parameters, - STATE(3527), 1, - sym_nested_identifier, - STATE(3626), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(2767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2775), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1860), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1874), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86225,81 +95057,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14844] = 31, + [15338] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2749), 1, - anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3110), 1, + anon_sym_GT, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(2761), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(2763), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(2765), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(2771), 1, - sym_number, - ACTIONS(2773), 1, - sym_this, - ACTIONS(2777), 1, - sym_readonly, - ACTIONS(2779), 1, - anon_sym_infer, - ACTIONS(2781), 1, + ACTIONS(3194), 1, anon_sym_keyof, - ACTIONS(2783), 1, - anon_sym_LBRACE_PIPE, - STATE(1643), 1, - sym_nested_type_identifier, - STATE(1864), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, sym_type_parameters, - STATE(3527), 1, - sym_nested_identifier, - STATE(3626), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(2767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2775), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1860), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1873), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86314,81 +95148,174 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14964] = 31, + [15461] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(547), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(651), 1, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2749), 1, - anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2761), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3204), 1, + anon_sym_RBRACK, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3398), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15584] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(2771), 1, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, sym_number, - ACTIONS(2777), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3033), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(1643), 1, - sym_nested_type_identifier, - STATE(1864), 1, + ACTIONS(3206), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1860), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3043), 6, + STATE(3398), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1871), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86403,81 +95330,178 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15084] = 31, + [15707] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, - anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3154), 1, + anon_sym_STAR, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(3162), 1, + anon_sym_SEMI, + ACTIONS(3164), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(3168), 1, anon_sym_new, - ACTIONS(2623), 1, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, + sym_number, + ACTIONS(3182), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3210), 1, + anon_sym_export, + ACTIONS(3212), 1, + anon_sym_RBRACE, + ACTIONS(3214), 1, + anon_sym_async, + ACTIONS(3216), 1, + anon_sym_static, + ACTIONS(3222), 1, + sym_readonly, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3218), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3220), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3738), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2987), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3208), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15838] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(2627), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(2633), 1, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2637), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, - anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3037), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2297), 1, - sym_nested_type_identifier, - STATE(2386), 1, + ACTIONS(3224), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3509), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3681), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2380), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2337), 6, + STATE(3398), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86492,7 +95516,152 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15204] = 31, + [15961] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2693), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [16046] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2010), 1, + anon_sym_QMARK_DOT, + STATE(3386), 1, + sym_call_type_arguments, + STATE(1475), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [16133] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -86501,72 +95670,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3021), 1, + ACTIONS(3019), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3194), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3490), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(474), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86581,81 +95752,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15324] = 31, + [16256] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, - anon_sym_new, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2625), 1, - anon_sym_AMP, - ACTIONS(2627), 1, - anon_sym_PIPE, - ACTIONS(2633), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(2637), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(2643), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(2647), 1, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(2649), 1, - anon_sym_keyof, - ACTIONS(2651), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, + ACTIONS(2865), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, sym_nested_type_identifier, - STATE(2386), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(3886), 1, sym_type_parameters, - STATE(3509), 1, - sym_nested_identifier, - STATE(3681), 1, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(2629), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(2380), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2366), 6, + STATE(3155), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86670,7 +95843,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15444] = 31, + [16379] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -86679,72 +95852,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3021), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3015), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3025), 1, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(3031), 1, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, anon_sym_keyof, - ACTIONS(3039), 1, - sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3037), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(487), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86759,7 +95934,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15564] = 31, + [16502] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -86768,72 +95943,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2757), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3041), 1, + ACTIONS(2516), 1, sym_this, - STATE(1877), 1, + ACTIONS(3238), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3042), 6, + STATE(3398), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2949), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -86848,146 +96025,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15684] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(901), 1, - anon_sym_extends, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(907), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(910), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(917), 29, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15756] = 31, + [16625] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(2911), 1, + anon_sym_GT, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(2623), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(2627), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(2633), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, - sym_number, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, + ACTIONS(3194), 1, anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, - sym_nested_type_identifier, - STATE(2386), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, sym_type_parameters, - STATE(3509), 1, - sym_nested_identifier, - STATE(3681), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(2629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2641), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2380), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2370), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87002,170 +96116,178 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15876] = 31, + [16748] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, - anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3154), 1, + anon_sym_STAR, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(3162), 1, + anon_sym_SEMI, + ACTIONS(3164), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(3168), 1, anon_sym_new, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2625), 1, - anon_sym_AMP, - ACTIONS(2627), 1, - anon_sym_PIPE, - ACTIONS(2633), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, sym_number, - ACTIONS(2643), 1, + ACTIONS(3182), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3210), 1, + anon_sym_export, + ACTIONS(3214), 1, + anon_sym_async, + ACTIONS(3216), 1, + anon_sym_static, + ACTIONS(3222), 1, sym_readonly, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, - anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, - sym_nested_type_identifier, - STATE(2386), 1, - sym__tuple_type_body, - STATE(3467), 1, - sym_type_parameters, - STATE(3509), 1, - sym_nested_identifier, - STATE(3681), 1, + ACTIONS(3240), 1, + anon_sym_RBRACE, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, sym_formal_parameters, - ACTIONS(2629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2641), 2, - sym_true, - sym_false, - STATE(2380), 2, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3218), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3220), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, sym_string, - sym__number, - ACTIONS(2631), 6, - anon_sym_void, + sym__property_name, + sym_computed_property_name, + STATE(3738), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2987), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3208), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2378), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2383), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15996] = 31, + [16879] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3084), 1, + anon_sym_GT, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2891), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87180,7 +96302,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16116] = 31, + [17002] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -87189,72 +96311,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3043), 1, - sym_identifier, - STATE(462), 1, + ACTIONS(3242), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2858), 6, + STATE(3415), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87269,31 +96393,109 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16236] = 11, + [17125] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(1075), 1, - anon_sym_EQ, - ACTIONS(1077), 1, - anon_sym_EQ_GT, - ACTIONS(1359), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(1325), 2, + ACTIONS(2627), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2702), 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_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(961), 12, - sym__automatic_semicolon, - anon_sym_as, + 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, + [17210] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2821), 1, + anon_sym_in, + ACTIONS(3244), 1, + anon_sym_COLON, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 9, + anon_sym_as, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -87301,8 +96503,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [17301] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(951), 15, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, + anon_sym_COLON, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 9, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87318,11 +96592,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 19, + ACTIONS(622), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -87330,7 +96604,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -87338,7 +96614,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16316] = 31, + [17390] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -87347,72 +96623,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(2863), 1, + anon_sym_GT, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2927), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87427,7 +96705,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16436] = 31, + [17513] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -87436,72 +96714,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(2945), 1, + anon_sym_GT, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2926), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87516,80 +96796,29 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16556] = 7, + [17636] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(749), 1, + anon_sym_DOT, + ACTIONS(2637), 3, anon_sym_LT, - ACTIONS(901), 5, - sym__automatic_semicolon, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3246), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(1600), 4, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, - ACTIONS(910), 13, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(917), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(907), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [16628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(744), 20, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -87598,9 +96827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -87608,16 +96835,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2492), 33, - sym__automatic_semicolon, + ACTIONS(756), 26, anon_sym_as, - anon_sym_COMMA, - 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, @@ -87642,7 +96862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16692] = 31, + [17709] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -87651,72 +96871,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3021), 1, + ACTIONS(3013), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3194), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3490), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(466), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87731,81 +96953,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16812] = 31, + [17832] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, - anon_sym_new, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2625), 1, - anon_sym_AMP, - ACTIONS(2627), 1, - anon_sym_PIPE, - ACTIONS(2633), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(2637), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(2643), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(2647), 1, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(2649), 1, - anon_sym_keyof, - ACTIONS(2651), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + ACTIONS(3249), 1, sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(2386), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(3593), 1, + sym_type_parameter, + STATE(3886), 1, sym_type_parameters, - STATE(3509), 1, - sym_nested_identifier, - STATE(3681), 1, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(2629), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(2380), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2364), 6, + STATE(2967), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87820,81 +97044,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16932] = 31, + [17955] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(2623), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(2627), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(2633), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, - sym_number, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, + ACTIONS(3194), 1, anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, - sym_nested_type_identifier, - STATE(2386), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3593), 1, + sym_type_parameter, + STATE(3991), 1, sym_type_parameters, - STATE(3509), 1, - sym_nested_identifier, - STATE(3681), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(2629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2641), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2380), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2369), 6, + STATE(3035), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -87909,170 +97135,316 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17052] = 31, + [18078] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(2637), 1, anon_sym_LT, - ACTIONS(2611), 1, - anon_sym_STAR, - ACTIONS(2613), 1, - anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_LBRACK, - ACTIONS(2621), 1, - anon_sym_new, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(746), 2, anon_sym_AMP, - ACTIONS(2627), 1, anon_sym_PIPE, - ACTIONS(2633), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, - sym_number, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, - anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, - sym_nested_type_identifier, - STATE(2386), 1, - sym__tuple_type_body, - STATE(3467), 1, - sym_type_parameters, - STATE(3509), 1, - sym_nested_identifier, - STATE(3681), 1, - sym_formal_parameters, - ACTIONS(2629), 2, + ACTIONS(740), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(749), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(744), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 2, - sym_true, - sym_false, - STATE(2380), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18151] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3152), 1, + anon_sym_export, + ACTIONS(3154), 1, + anon_sym_STAR, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3162), 1, + anon_sym_SEMI, + ACTIONS(3164), 1, + anon_sym_LBRACK, + ACTIONS(3166), 1, + anon_sym_async, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, + sym_number, + ACTIONS(3174), 1, + anon_sym_static, + ACTIONS(3180), 1, + sym_readonly, + ACTIONS(3182), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3253), 1, + anon_sym_RBRACE, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3572), 1, + aux_sym_object_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3176), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3178), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, sym_string, - sym__number, - ACTIONS(2631), 6, - anon_sym_void, + sym__property_name, + sym_computed_property_name, + STATE(3576), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2987), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3150), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2384), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2383), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17172] = 31, + [18282] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(805), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(2947), 1, + anon_sym_EQ, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(2954), 1, + anon_sym_BQUOTE, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [18367] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3047), 1, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3226), 1, anon_sym_typeof, - ACTIONS(3049), 1, + ACTIONS(3228), 1, anon_sym_new, - ACTIONS(3051), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3232), 1, anon_sym_AMP, - ACTIONS(3055), 1, + ACTIONS(3234), 1, anon_sym_PIPE, - ACTIONS(3057), 1, - sym_this, - ACTIONS(3059), 1, + ACTIONS(3236), 1, anon_sym_keyof, - STATE(2210), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(3886), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3609), 1, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(2665), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2347), 6, + STATE(3155), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88087,81 +97459,322 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17292] = 31, + [18490] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3154), 1, anon_sym_STAR, - ACTIONS(463), 1, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3164), 1, + anon_sym_LBRACK, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, + sym_number, + ACTIONS(3210), 1, + anon_sym_export, + ACTIONS(3214), 1, + anon_sym_async, + ACTIONS(3216), 1, + anon_sym_static, + ACTIONS(3222), 1, + sym_readonly, + ACTIONS(3255), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(3259), 1, + anon_sym_SEMI, + ACTIONS(3261), 1, + anon_sym_PIPE_RBRACE, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3218), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3220), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3738), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3001), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3208), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18621] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(2943), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(465), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(467), 1, + 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, + [18706] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2650), 1, + anon_sym_EQ, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(2952), 1, + anon_sym_DOT, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [18791] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3263), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2893), 6, + STATE(3358), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88176,81 +97789,83 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17412] = 31, + [18914] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3047), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3086), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3049), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3051), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3055), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(3057), 1, - sym_this, - ACTIONS(3059), 1, + ACTIONS(3194), 1, anon_sym_keyof, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3609), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2253), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88265,170 +97880,178 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17532] = 31, + [19037] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(3154), 1, + anon_sym_STAR, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3162), 1, + anon_sym_SEMI, + ACTIONS(3164), 1, + anon_sym_LBRACK, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(3182), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3210), 1, + anon_sym_export, + ACTIONS(3214), 1, + anon_sym_async, + ACTIONS(3216), 1, + anon_sym_static, + ACTIONS(3222), 1, sym_readonly, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3047), 1, - anon_sym_typeof, - ACTIONS(3049), 1, - anon_sym_new, - ACTIONS(3051), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3055), 1, - anon_sym_PIPE, - ACTIONS(3057), 1, - sym_this, - ACTIONS(3059), 1, - anon_sym_keyof, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, - sym__tuple_type_body, - STATE(3470), 1, - sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3609), 1, + ACTIONS(3265), 1, + anon_sym_RBRACE, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, - sym_true, - sym_false, - STATE(2255), 2, - sym_string, - sym__number, - ACTIONS(2667), 6, - anon_sym_void, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3218), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3220), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3738), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2987), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3208), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2350), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2258), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17652] = 31, + [19168] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3047), 1, - anon_sym_typeof, - ACTIONS(3049), 1, - anon_sym_new, - ACTIONS(3051), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3055), 1, - anon_sym_PIPE, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - ACTIONS(3059), 1, - anon_sym_keyof, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3267), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3609), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2240), 6, + STATE(3398), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88443,7 +98066,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17772] = 31, + [19291] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88452,72 +98075,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(547), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, - anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - STATE(462), 1, + ACTIONS(3269), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3035), 6, + STATE(3334), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(487), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88532,7 +98157,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17892] = 31, + [19414] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88541,72 +98166,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3271), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2648), 6, + STATE(3398), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88621,7 +98248,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18012] = 31, + [19537] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88630,72 +98257,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, - anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, - anon_sym_new, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3071), 1, - anon_sym_PIPE, - STATE(462), 1, + ACTIONS(3273), 1, + anon_sym_RBRACK, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3510), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(474), 6, + STATE(3418), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88710,7 +98339,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18132] = 31, + [19660] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -88719,72 +98348,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, + ACTIONS(2909), 1, + anon_sym_GT, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3069), 1, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3071), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - STATE(462), 1, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3510), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(475), 6, + STATE(3276), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88799,81 +98430,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18252] = 31, + [19783] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(2623), 1, + ACTIONS(2791), 1, anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(2793), 1, anon_sym_AMP, - ACTIONS(2627), 1, + ACTIONS(2795), 1, anon_sym_PIPE, - ACTIONS(2633), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(2637), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(2643), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(2647), 1, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(2649), 1, + ACTIONS(2815), 1, anon_sym_keyof, - ACTIONS(2651), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(2386), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(4002), 1, sym_type_parameters, - STATE(3509), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3681), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(2629), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(2380), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2358), 6, + STATE(2816), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88888,81 +98519,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18372] = 31, + [19903] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, anon_sym_new, - ACTIONS(2623), 1, + ACTIONS(3142), 1, anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(3144), 1, anon_sym_AMP, - ACTIONS(2627), 1, + ACTIONS(3146), 1, anon_sym_PIPE, - ACTIONS(2633), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, - sym_number, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, + ACTIONS(3148), 1, anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(2386), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(3988), 1, sym_type_parameters, - STATE(3509), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3681), 1, + STATE(4257), 1, sym_formal_parameters, - ACTIONS(2629), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2380), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2368), 6, + STATE(1511), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -88977,81 +98608,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18492] = 31, + [20023] = 31, ACTIONS(3), 1, sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(547), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2611), 1, - anon_sym_STAR, - ACTIONS(2613), 1, - anon_sym_LBRACE, - ACTIONS(2615), 1, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_LBRACK, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2637), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2649), 1, - anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3073), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(3275), 1, sym_this, - STATE(2297), 1, - sym_nested_type_identifier, - STATE(2386), 1, + STATE(1524), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3509), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2380), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3046), 6, + STATE(3729), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2372), 14, + STATE(3414), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89066,81 +98697,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18612] = 31, + [20143] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(2575), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(2577), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(2579), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(2585), 1, - sym_number, - ACTIONS(2587), 1, - sym_this, - ACTIONS(2591), 1, - sym_readonly, - ACTIONS(2593), 1, - anon_sym_infer, - ACTIONS(2595), 1, + ACTIONS(3194), 1, anon_sym_keyof, - ACTIONS(2597), 1, - anon_sym_LBRACE_PIPE, - STATE(1214), 1, - sym_nested_type_identifier, - STATE(1285), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, sym_type_parameters, - STATE(3505), 1, - sym_nested_identifier, - STATE(3698), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(2581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2589), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1287), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1242), 6, + STATE(2925), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89155,81 +98786,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18732] = 31, + [20263] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2575), 1, - anon_sym_QMARK, - ACTIONS(2577), 1, - anon_sym_AMP, - ACTIONS(2579), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - sym_number, - ACTIONS(2587), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2591), 1, - sym_readonly, - ACTIONS(2593), 1, - anon_sym_infer, - ACTIONS(2595), 1, - anon_sym_keyof, - ACTIONS(2597), 1, - anon_sym_LBRACE_PIPE, - STATE(1214), 1, - sym_nested_type_identifier, - STATE(1285), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, sym_type_parameters, - STATE(3505), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3698), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(2581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2589), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1287), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1245), 6, + STATE(3382), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89244,81 +98875,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18852] = 31, + [20383] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(801), 1, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(805), 1, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2915), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(3045), 1, + ACTIONS(3277), 1, sym_identifier, - ACTIONS(3047), 1, - anon_sym_typeof, - ACTIONS(3049), 1, - anon_sym_new, - ACTIONS(3051), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3055), 1, - anon_sym_PIPE, - ACTIONS(3057), 1, + ACTIONS(3279), 1, sym_this, - ACTIONS(3059), 1, - anon_sym_keyof, - STATE(2210), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(2566), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(3918), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3609), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(2665), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2937), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2234), 6, + STATE(2669), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89333,81 +98964,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18972] = 31, + [20503] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3061), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3071), 1, - anon_sym_PIPE, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3510), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2471), 6, + STATE(3385), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89422,81 +99053,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19092] = 31, + [20623] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(801), 1, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(805), 1, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2915), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(3045), 1, + ACTIONS(3277), 1, sym_identifier, - ACTIONS(3047), 1, - anon_sym_typeof, - ACTIONS(3049), 1, - anon_sym_new, - ACTIONS(3051), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3055), 1, - anon_sym_PIPE, - ACTIONS(3057), 1, + ACTIONS(3279), 1, sym_this, - ACTIONS(3059), 1, - anon_sym_keyof, - STATE(2210), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(2566), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(3918), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3609), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(2665), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2937), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2242), 6, + STATE(2624), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89511,81 +99142,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19212] = 31, + [20743] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, anon_sym_new, - ACTIONS(2575), 1, + ACTIONS(3285), 1, anon_sym_QMARK, - ACTIONS(2577), 1, + ACTIONS(3287), 1, anon_sym_AMP, - ACTIONS(2579), 1, + ACTIONS(3289), 1, anon_sym_PIPE, - ACTIONS(2585), 1, - sym_number, - ACTIONS(2587), 1, - sym_this, - ACTIONS(2591), 1, - sym_readonly, - ACTIONS(2593), 1, - anon_sym_infer, - ACTIONS(2595), 1, + ACTIONS(3291), 1, anon_sym_keyof, - ACTIONS(2597), 1, - anon_sym_LBRACE_PIPE, - STATE(1214), 1, - sym_nested_type_identifier, - STATE(1285), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, sym_type_parameters, - STATE(3505), 1, - sym_nested_identifier, - STATE(3698), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(2581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2589), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1287), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1247), 6, + STATE(3488), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89600,81 +99231,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19332] = 31, + [20863] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2563), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2575), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2577), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2579), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2587), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2591), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2593), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2595), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2597), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1214), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1285), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(3974), 1, sym_type_parameters, - STATE(3505), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3698), 1, + STATE(4234), 1, sym_formal_parameters, - ACTIONS(2581), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2589), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1287), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1250), 6, + STATE(1521), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89689,81 +99320,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19452] = 31, + [20983] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3061), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3071), 1, - anon_sym_PIPE, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3510), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(459), 6, + STATE(3388), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89778,7 +99409,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19572] = 31, + [21103] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -89787,72 +99418,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3069), 1, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3071), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - STATE(462), 1, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3510), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(466), 6, + STATE(2948), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89867,7 +99498,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19692] = 31, + [21223] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -89876,72 +99507,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, + ACTIONS(3281), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(3283), 1, anon_sym_new, - ACTIONS(3069), 1, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, anon_sym_AMP, - ACTIONS(3071), 1, + ACTIONS(3289), 1, anon_sym_PIPE, - STATE(462), 1, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3797), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3510), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(483), 6, + STATE(3316), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -89956,150 +99587,259 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19812] = 11, + [21343] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1325), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2702), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(961), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 19, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [19892] = 31, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3422), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [21463] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(3045), 1, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2785), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [21583] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(3047), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(3049), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(3051), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(3055), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(3057), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(3059), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, anon_sym_keyof, - STATE(2210), 1, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1443), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(3974), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3609), 1, + STATE(4234), 1, sym_formal_parameters, - ACTIONS(2665), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2353), 6, + STATE(2173), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90114,7 +99854,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20012] = 31, + [21703] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -90123,72 +99863,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, + ACTIONS(3281), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(3283), 1, anon_sym_new, - ACTIONS(3069), 1, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, anon_sym_AMP, - ACTIONS(3071), 1, + ACTIONS(3289), 1, anon_sym_PIPE, - STATE(462), 1, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3797), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3510), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2469), 6, + STATE(3393), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90203,7 +99943,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20132] = 31, + [21823] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -90212,72 +99952,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3797), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2540), 6, + STATE(3527), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90292,7 +100032,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20252] = 31, + [21943] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -90301,72 +100041,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, + ACTIONS(3281), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(3283), 1, anon_sym_new, - ACTIONS(3069), 1, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, anon_sym_AMP, - ACTIONS(3071), 1, + ACTIONS(3289), 1, anon_sym_PIPE, - STATE(462), 1, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3797), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3510), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(484), 6, + STATE(3367), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90381,7 +100121,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20372] = 31, + [22063] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -90390,72 +100130,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, + ACTIONS(3281), 1, anon_sym_typeof, - ACTIONS(3063), 1, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, anon_sym_QMARK, - ACTIONS(3065), 1, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, anon_sym_keyof, - ACTIONS(3067), 1, - anon_sym_new, - ACTIONS(3069), 1, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3312), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [22183] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(3071), 1, + ACTIONS(467), 1, anon_sym_PIPE, - STATE(462), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3510), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2467), 6, + STATE(3394), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90470,103 +100299,121 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20492] = 13, + [22303] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(3075), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(569), 3, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, anon_sym_QMARK, + ACTIONS(3287), 1, anon_sym_AMP, + ACTIONS(3289), 1, anon_sym_PIPE, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [20576] = 12, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3317), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [22423] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2555), 1, anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3077), 1, + ACTIONS(2585), 1, anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(569), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 10, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 10, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -90574,8 +100421,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, + ACTIONS(609), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90591,7 +100437,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(599), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -90603,7 +100449,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -90611,210 +100459,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20658] = 3, + [22507] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 23, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3287), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3289), 1, anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - ACTIONS(2513), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20722] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_EQ_GT, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3079), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(585), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [20800] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2561), 1, - sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - ACTIONS(2565), 1, - anon_sym_LBRACE, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(2569), 1, - anon_sym_LPAREN, - ACTIONS(2571), 1, - anon_sym_LBRACK, - ACTIONS(2573), 1, - anon_sym_new, - ACTIONS(2575), 1, - anon_sym_QMARK, - ACTIONS(2577), 1, - anon_sym_AMP, - ACTIONS(2579), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - sym_number, - ACTIONS(2587), 1, - sym_this, - ACTIONS(2591), 1, - sym_readonly, - ACTIONS(2593), 1, - anon_sym_infer, - ACTIONS(2595), 1, - anon_sym_keyof, - ACTIONS(2597), 1, - anon_sym_LBRACE_PIPE, - STATE(1214), 1, - sym_nested_type_identifier, - STATE(1285), 1, - sym__tuple_type_body, - STATE(3472), 1, - sym_type_parameters, - STATE(3505), 1, - sym_nested_identifier, - STATE(3698), 1, - sym_formal_parameters, - ACTIONS(2581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2589), 2, - sym_true, - sym_false, - STATE(1287), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1254), 6, + STATE(3333), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90829,81 +100548,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20920] = 31, + [22627] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2563), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, - anon_sym_new, - ACTIONS(2575), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2577), 1, - anon_sym_AMP, - ACTIONS(2579), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2587), 1, - sym_this, - ACTIONS(2591), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2593), 1, - anon_sym_infer, - ACTIONS(2595), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2597), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1214), 1, + ACTIONS(3293), 1, + sym_this, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1285), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3505), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3698), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2581), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2589), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1287), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1255), 6, + STATE(3699), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(1519), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -90918,81 +100637,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21040] = 31, + [22747] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, anon_sym_DQUOTE, ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2563), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2575), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2577), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2579), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2587), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2591), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2593), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2595), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2597), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1214), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1285), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(3974), 1, sym_type_parameters, - STATE(3505), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3698), 1, + STATE(4234), 1, sym_formal_parameters, - ACTIONS(2581), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2589), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1287), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1256), 6, + STATE(1520), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91007,81 +100726,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21160] = 31, + [22867] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(3228), 1, anon_sym_new, - ACTIONS(2415), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2894), 6, + STATE(2967), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91096,81 +100815,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21280] = 31, + [22987] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(801), 1, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(805), 1, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2915), 1, anon_sym_LBRACE, - ACTIONS(2659), 1, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(3045), 1, + ACTIONS(3277), 1, sym_identifier, - ACTIONS(3047), 1, - anon_sym_typeof, - ACTIONS(3049), 1, - anon_sym_new, - ACTIONS(3051), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3055), 1, - anon_sym_PIPE, - ACTIONS(3057), 1, + ACTIONS(3279), 1, sym_this, - ACTIONS(3059), 1, - anon_sym_keyof, - STATE(2210), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(2566), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(3918), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3609), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(2665), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2937), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2278), 6, + STATE(2565), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91185,81 +100904,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21400] = 31, + [23107] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2944), 6, + STATE(3401), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91274,7 +100993,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21520] = 31, + [23227] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -91283,72 +101002,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3295), 1, + anon_sym_typeof, + ACTIONS(3297), 1, + anon_sym_new, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3799), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4025), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2945), 6, + STATE(2829), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91363,81 +101082,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21640] = 31, + [23347] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3047), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3295), 1, anon_sym_typeof, - ACTIONS(3049), 1, + ACTIONS(3297), 1, anon_sym_new, - ACTIONS(3051), 1, + ACTIONS(3299), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3301), 1, anon_sym_AMP, - ACTIONS(3055), 1, + ACTIONS(3303), 1, anon_sym_PIPE, - ACTIONS(3057), 1, - sym_this, - ACTIONS(3059), 1, + ACTIONS(3305), 1, anon_sym_keyof, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3799), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3609), 1, + STATE(4025), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2232), 6, + STATE(561), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91452,81 +101171,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21760] = 31, + [23467] = 31, ACTIONS(3), 1, sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3047), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3295), 1, anon_sym_typeof, - ACTIONS(3051), 1, + ACTIONS(3297), 1, + anon_sym_new, + ACTIONS(3299), 1, anon_sym_QMARK, - ACTIONS(3059), 1, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, anon_sym_keyof, - ACTIONS(3081), 1, - sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3799), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4025), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3050), 6, + STATE(2821), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2277), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91541,81 +101260,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21880] = 31, + [23587] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3295), 1, + anon_sym_typeof, + ACTIONS(3297), 1, + anon_sym_new, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3799), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4025), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2684), 6, + STATE(544), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91630,7 +101349,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22000] = 31, + [23707] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -91639,72 +101358,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3295), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3297), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3799), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4025), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2535), 6, + STATE(550), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91719,7 +101438,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22120] = 31, + [23827] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -91728,72 +101447,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3295), 1, + anon_sym_typeof, + ACTIONS(3297), 1, + anon_sym_new, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3799), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4025), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2976), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91808,7 +101527,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22240] = 31, + [23947] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -91817,72 +101536,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3295), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3297), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3799), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4025), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2871), 6, + STATE(2820), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91897,7 +101616,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22360] = 31, + [24067] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -91906,72 +101625,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3061), 1, + ACTIONS(3295), 1, anon_sym_typeof, - ACTIONS(3063), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_keyof, - ACTIONS(3067), 1, + ACTIONS(3297), 1, anon_sym_new, - ACTIONS(3069), 1, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, anon_sym_AMP, - ACTIONS(3071), 1, + ACTIONS(3303), 1, anon_sym_PIPE, - STATE(462), 1, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3297), 1, + STATE(3799), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3510), 1, + STATE(4025), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2578), 6, + STATE(536), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -91986,7 +101705,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22480] = 31, + [24187] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -91995,72 +101714,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3295), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3297), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3799), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4025), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2622), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92075,81 +101794,155 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22600] = 31, + [24307] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2575), 1, + anon_sym_in, + ACTIONS(2578), 1, + anon_sym_of, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [24397] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2619), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3083), 1, + ACTIONS(2516), 1, sym_this, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(2351), 1, + ACTIONS(3092), 1, + anon_sym_typeof, + ACTIONS(3094), 1, + anon_sym_new, + ACTIONS(3096), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_AMP, + ACTIONS(3100), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3042), 6, + STATE(3311), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2953), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92164,81 +101957,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22720] = 31, + [24517] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, - anon_sym_new, - ACTIONS(2575), 1, - anon_sym_QMARK, - ACTIONS(2577), 1, - anon_sym_AMP, - ACTIONS(2579), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - sym_number, - ACTIONS(2587), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2591), 1, - sym_readonly, - ACTIONS(2593), 1, - anon_sym_infer, - ACTIONS(2595), 1, - anon_sym_keyof, - ACTIONS(2597), 1, - anon_sym_LBRACE_PIPE, - STATE(1214), 1, - sym_nested_type_identifier, - STATE(1285), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3505), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3698), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2589), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1287), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1271), 6, + STATE(2630), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92253,214 +102046,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22840] = 14, + [24637] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1325), 1, - anon_sym_extends, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1941), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_RPAREN, - ACTIONS(932), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2702), 2, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(535), 1, anon_sym_AMP, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(961), 10, - anon_sym_as, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 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_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, - [22926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(3295), 1, + anon_sym_typeof, + ACTIONS(3299), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_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(3305), 1, + anon_sym_keyof, + ACTIONS(3307), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - ACTIONS(2496), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22990] = 31, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3737), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(547), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [24757] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(2775), 1, sym_identifier, - ACTIONS(2563), 1, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, + ACTIONS(2781), 1, anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2789), 1, anon_sym_new, - ACTIONS(2575), 1, + ACTIONS(2791), 1, anon_sym_QMARK, - ACTIONS(2577), 1, + ACTIONS(2793), 1, anon_sym_AMP, - ACTIONS(2579), 1, + ACTIONS(2795), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, sym_number, - ACTIONS(2587), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2591), 1, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(2593), 1, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(2595), 1, + ACTIONS(2815), 1, anon_sym_keyof, - ACTIONS(2597), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - STATE(1214), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(1285), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3472), 1, + STATE(4002), 1, sym_type_parameters, - STATE(3505), 1, + STATE(4125), 1, sym_nested_identifier, - STATE(3698), 1, + STATE(4217), 1, sym_formal_parameters, - ACTIONS(2581), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2589), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(1287), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1272), 6, + STATE(2891), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1286), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92475,81 +102224,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23110] = 31, + [24877] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - anon_sym_SQUOTE, + ACTIONS(427), 1, + anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2561), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - ACTIONS(2565), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(2569), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2571), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2575), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, anon_sym_QMARK, - ACTIONS(2585), 1, - sym_number, - ACTIONS(2591), 1, - sym_readonly, - ACTIONS(2595), 1, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, anon_sym_keyof, - ACTIONS(2597), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3089), 1, - sym_this, - STATE(1214), 1, - sym_nested_type_identifier, - STATE(1285), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, sym_type_parameters, - STATE(3505), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(2581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2589), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1287), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2583), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3049), 6, + STATE(3319), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1273), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92564,81 +102313,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23230] = 31, + [24997] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(3028), 1, + anon_sym_STAR, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(2659), 1, + ACTIONS(3034), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(3040), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, + anon_sym_AMP, + ACTIONS(3044), 1, + anon_sym_PIPE, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(2679), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(3045), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3311), 1, sym_this, - STATE(2210), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(2675), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(3995), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(2665), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(3058), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2341), 6, + STATE(2775), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92653,7 +102402,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23350] = 31, + [25117] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -92662,72 +102411,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3803), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3042), 6, + STATE(2817), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(487), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92742,81 +102491,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23470] = 31, + [25237] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3803), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2286), 6, + STATE(561), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92831,7 +102580,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23590] = 31, + [25357] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -92840,72 +102589,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3803), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(474), 6, + STATE(2813), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -92920,7 +102669,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23710] = 31, + [25477] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -92929,72 +102678,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2545), 1, + ACTIONS(3313), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(3315), 1, anon_sym_new, - ACTIONS(2549), 1, + ACTIONS(3317), 1, anon_sym_QMARK, - ACTIONS(2551), 1, + ACTIONS(3319), 1, anon_sym_AMP, - ACTIONS(2553), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(2559), 1, + ACTIONS(3323), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(3803), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2989), 6, + STATE(544), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93009,81 +102758,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23830] = 31, + [25597] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3803), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2362), 6, + STATE(550), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93098,81 +102847,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23950] = 31, + [25717] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3803), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2339), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93187,81 +102936,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24070] = 31, + [25837] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3803), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2253), 6, + STATE(2809), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93276,7 +103025,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24190] = 31, + [25957] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -93285,72 +103034,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1043), 1, - sym_this, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - STATE(469), 1, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3803), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3042), 6, + STATE(536), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2995), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93365,146 +103114,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24310] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(1638), 1, - anon_sym_extends, - ACTIONS(2506), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2473), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(917), 29, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24382] = 31, + [26077] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3803), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4062), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2896), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93519,81 +103203,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24502] = 31, + [26197] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(463), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, + anon_sym_typeof, + ACTIONS(3034), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, + anon_sym_new, + ACTIONS(3040), 1, anon_sym_QMARK, - ACTIONS(465), 1, + ACTIONS(3042), 1, anon_sym_AMP, - ACTIONS(467), 1, + ACTIONS(3044), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2904), 6, + STATE(2782), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93608,81 +103292,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24622] = 31, + [26317] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(3307), 1, sym_this, - STATE(462), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2906), 6, + STATE(3734), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(547), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93697,7 +103381,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24742] = 31, + [26437] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -93706,72 +103390,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3797), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2967), 6, + STATE(3465), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93786,81 +103470,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24862] = 31, + [26557] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(783), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(785), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2294), 6, + STATE(3368), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93875,81 +103559,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24982] = 31, + [26677] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(783), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(785), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2240), 6, + STATE(3377), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -93964,7 +103648,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25102] = 31, + [26797] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -93973,72 +103657,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(475), 6, + STATE(3369), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94053,81 +103737,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25222] = 31, + [26917] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(463), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(465), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(467), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(495), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(497), 1, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(499), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2907), 6, + STATE(3071), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94142,210 +103826,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25342] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [25416] = 5, + [27037] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(571), 22, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(463), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(465), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(467), 1, 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, - [25484] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2717), 1, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(1616), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3042), 6, + STATE(3413), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2990), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94360,81 +103915,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25604] = 31, + [27157] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, anon_sym_new, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3480), 1, + STATE(4072), 1, sym_formal_parameters, - STATE(3486), 1, + STATE(4099), 1, sym_nested_identifier, - ACTIONS(973), 2, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, sym_true, sym_false, - ACTIONS(1869), 2, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2620), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [27277] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_STAR, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, + anon_sym_typeof, + ACTIONS(3034), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3040), 1, + anon_sym_QMARK, + ACTIONS(3050), 1, + anon_sym_DQUOTE, + ACTIONS(3052), 1, + anon_sym_SQUOTE, + ACTIONS(3054), 1, + sym_number, + ACTIONS(3060), 1, + sym_readonly, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3325), 1, + sym_this, + STATE(2623), 1, + sym_nested_type_identifier, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3960), 1, + sym_type_parameters, + STATE(4013), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(475), 6, + STATE(3713), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2737), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94449,7 +104093,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25724] = 31, + [27397] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -94466,64 +104110,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2908), 6, + STATE(3419), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94538,152 +104182,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25844] = 13, + [27517] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(3093), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(569), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(567), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(3028), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [25928] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(463), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, + anon_sym_typeof, + ACTIONS(3034), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, + anon_sym_new, + ACTIONS(3040), 1, anon_sym_QMARK, - ACTIONS(465), 1, + ACTIONS(3042), 1, anon_sym_AMP, - ACTIONS(467), 1, + ACTIONS(3044), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2910), 6, + STATE(2723), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94698,7 +104271,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26048] = 31, + [27637] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -94707,72 +104280,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3021), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3094), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3096), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3098), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3100), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3106), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3490), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2607), 6, + STATE(3251), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94787,81 +104360,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26168] = 31, + [27757] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(463), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, + anon_sym_typeof, + ACTIONS(3034), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, + anon_sym_new, + ACTIONS(3040), 1, anon_sym_QMARK, - ACTIONS(465), 1, + ACTIONS(3042), 1, anon_sym_AMP, - ACTIONS(467), 1, + ACTIONS(3044), 1, anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2912), 6, + STATE(2716), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94876,7 +104449,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26288] = 31, + [27877] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -94885,72 +104458,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3094), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3096), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_AMP, + ACTIONS(3100), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4095), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(474), 6, + STATE(561), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -94965,7 +104538,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26408] = 31, + [27997] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -94974,72 +104547,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3094), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3096), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3098), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3100), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3106), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3732), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(475), 6, + STATE(3244), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95054,7 +104627,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26528] = 31, + [28117] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95063,72 +104636,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3094), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3096), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_AMP, + ACTIONS(3100), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4095), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2513), 6, + STATE(544), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95143,142 +104716,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26648] = 3, + [28237] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 23, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(463), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(465), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(467), 1, 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, - ACTIONS(2530), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26712] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(3103), 1, - anon_sym_AMP, - ACTIONS(3105), 1, - anon_sym_PIPE, - ACTIONS(3107), 1, - anon_sym_keyof, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3732), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(540), 6, + STATE(3420), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95293,7 +104805,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26832] = 31, + [28357] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95302,72 +104814,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3094), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3096), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_AMP, + ACTIONS(3100), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4095), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2521), 6, + STATE(550), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95382,7 +104894,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26952] = 31, + [28477] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95391,72 +104903,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(3039), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3092), 1, + anon_sym_typeof, + ACTIONS(3094), 1, + anon_sym_new, + ACTIONS(3096), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_AMP, + ACTIONS(3100), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3093), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(487), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95471,7 +104983,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27072] = 31, + [28597] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95488,64 +105000,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2915), 6, + STATE(3425), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95560,7 +105072,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27192] = 31, + [28717] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95569,72 +105081,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3094), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3096), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3098), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3100), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3106), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3732), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(474), 6, + STATE(3217), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95649,59 +105161,15 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27312] = 13, + [28837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - STATE(1283), 1, - sym_type_arguments, - STATE(1411), 1, - sym_arguments, - ACTIONS(1851), 11, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 21, + ACTIONS(2729), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -95720,7 +105188,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27396] = 31, + ACTIONS(2731), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [28901] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95729,72 +105231,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(3101), 1, + ACTIONS(3094), 1, + anon_sym_new, + ACTIONS(3096), 1, anon_sym_QMARK, - ACTIONS(3107), 1, + ACTIONS(3098), 1, + anon_sym_AMP, + ACTIONS(3100), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3044), 6, + STATE(536), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(487), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95809,7 +105311,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27516] = 31, + [29021] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95818,72 +105320,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3021), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3094), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3096), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3098), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3100), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3106), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3490), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2461), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95898,7 +105400,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27636] = 31, + [29141] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -95907,72 +105409,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, + ACTIONS(3092), 1, anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - STATE(462), 1, + ACTIONS(3096), 1, + anon_sym_QMARK, + ACTIONS(3106), 1, + anon_sym_keyof, + ACTIONS(3307), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2586), 6, + STATE(3732), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(547), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -95987,81 +105489,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27756] = 31, + [29261] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2256), 6, + STATE(2602), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96076,7 +105578,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27876] = 31, + [29381] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -96085,72 +105587,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3095), 1, + ACTIONS(3327), 1, sym_identifier, - ACTIONS(3097), 1, - anon_sym_typeof, - ACTIONS(3099), 1, - anon_sym_new, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(3103), 1, - anon_sym_AMP, - ACTIONS(3105), 1, - anon_sym_PIPE, - ACTIONS(3107), 1, - anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3732), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(459), 6, + STATE(3301), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96165,7 +105667,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27996] = 31, + [29501] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -96174,72 +105676,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3021), 1, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3194), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3490), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(483), 6, + STATE(544), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96254,81 +105756,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28116] = 31, + [29621] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3685), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2234), 6, + STATE(3300), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96343,81 +105845,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28236] = 31, + [29741] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(783), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(785), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(3329), 1, sym_this, - STATE(2210), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(2863), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2242), 6, + STATE(3729), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(3521), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96432,81 +105934,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28356] = 31, + [29861] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(459), 6, + STATE(3426), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96521,81 +106023,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28476] = 31, + [29981] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3057), 1, + ACTIONS(2807), 1, sym_this, - STATE(2210), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(3886), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3685), 1, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(2665), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2291), 6, + STATE(2784), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96610,152 +106112,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28596] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(569), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 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, - 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, - [28680] = 31, + [30101] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(466), 6, + STATE(2582), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96770,81 +106201,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28800] = 31, + [30221] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(937), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, sym_this, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(2835), 1, - anon_sym_new, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3480), 1, + STATE(4072), 1, sym_formal_parameters, - STATE(3486), 1, + STATE(4099), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2509), 6, + STATE(2600), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96859,7 +106290,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28920] = 31, + [30341] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -96868,72 +106299,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3095), 1, + ACTIONS(3331), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3333), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3335), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3337), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3339), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3343), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(611), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3789), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3732), 1, + STATE(4012), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(466), 6, + STATE(633), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -96948,7 +106379,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29040] = 31, + [30461] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -96957,72 +106388,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3335), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(611), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3789), 1, sym_type_parameters, - STATE(3480), 1, + STATE(4012), 1, sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(459), 6, + STATE(561), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97037,81 +106468,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29160] = 31, + [30581] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(499), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(3232), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(3234), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(3236), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, + sym_type_parameters, + STATE(4059), 1, + sym_formal_parameters, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2786), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [30701] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3070), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3072), 1, anon_sym_new, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(3074), 1, + anon_sym_QMARK, + ACTIONS(3076), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_PIPE, + ACTIONS(3080), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3983), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4112), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(466), 6, + STATE(1627), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97126,81 +106646,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29280] = 31, + [30821] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(463), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(465), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(467), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(495), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(497), 1, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(499), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2900), 6, + STATE(2609), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97215,81 +106735,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29400] = 31, + [30941] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(3034), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(3040), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, + anon_sym_AMP, + ACTIONS(3044), 1, + anon_sym_PIPE, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3022), 6, + STATE(2687), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97304,7 +106824,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29520] = 31, + [31061] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -97313,72 +106833,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1048), 1, + sym_this, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3021), 1, - anon_sym_typeof, - ACTIONS(3023), 1, - anon_sym_new, - ACTIONS(3025), 1, - anon_sym_QMARK, - ACTIONS(3027), 1, - anon_sym_AMP, - ACTIONS(3029), 1, - anon_sym_PIPE, - ACTIONS(3031), 1, - anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(2584), 1, + sym__tuple_type_body, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3490), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2464), 6, + STATE(3729), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(3400), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97393,81 +106913,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29640] = 31, + [31181] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2721), 1, - anon_sym_QMARK, - ACTIONS(2731), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2737), 1, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2741), 1, - anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3111), 1, - sym_this, - STATE(1440), 1, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, + anon_sym_new, + ACTIONS(3074), 1, + anon_sym_QMARK, + ACTIONS(3076), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_PIPE, + ACTIONS(3080), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(3983), 1, sym_type_parameters, - STATE(3748), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4063), 1, sym_nested_identifier, - ACTIONS(2727), 2, + STATE(4112), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3054), 6, + STATE(1486), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1697), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97482,81 +107002,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29760] = 31, + [31301] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_new, - ACTIONS(2721), 1, - anon_sym_QMARK, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2733), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2737), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2739), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2741), 1, - anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, + anon_sym_new, + ACTIONS(3074), 1, + anon_sym_QMARK, + ACTIONS(3076), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_PIPE, + ACTIONS(3080), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(3983), 1, sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4063), 1, sym_nested_identifier, - ACTIONS(2727), 2, + STATE(4112), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1681), 6, + STATE(1641), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97571,81 +107091,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29880] = 31, + [31421] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2709), 1, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(3034), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(2721), 1, + ACTIONS(3040), 1, anon_sym_QMARK, - ACTIONS(2723), 1, + ACTIONS(3042), 1, anon_sym_AMP, - ACTIONS(2725), 1, + ACTIONS(3044), 1, anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(3050), 1, + anon_sym_DQUOTE, + ACTIONS(3052), 1, + anon_sym_SQUOTE, + ACTIONS(3054), 1, sym_number, - ACTIONS(2733), 1, - sym_this, - ACTIONS(2737), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(2739), 1, + ACTIONS(3064), 1, anon_sym_infer, - ACTIONS(2741), 1, + ACTIONS(3066), 1, anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(3068), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, + sym_this, + STATE(2623), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(2675), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(3995), 1, sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4013), 1, sym_nested_identifier, - ACTIONS(2727), 2, + STATE(4296), 1, + sym_formal_parameters, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(3058), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1570), 6, + STATE(2693), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97660,151 +107180,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30000] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_EQ, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_QMARK_DOT, - ACTIONS(1325), 1, - anon_sym_extends, - ACTIONS(1893), 1, - anon_sym_LBRACK, - ACTIONS(1895), 1, - anon_sym_DOT, - ACTIONS(2699), 1, - anon_sym_COMMA, - ACTIONS(2702), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(961), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 20, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [30082] = 31, + [31541] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_new, - ACTIONS(2761), 1, - anon_sym_QMARK, - ACTIONS(2763), 1, - anon_sym_AMP, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2771), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2773), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2777), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2779), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1643), 1, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, + anon_sym_new, + ACTIONS(3074), 1, + anon_sym_QMARK, + ACTIONS(3076), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_PIPE, + ACTIONS(3080), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1864), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(3983), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3626), 1, + STATE(4112), 1, sym_formal_parameters, - ACTIONS(2767), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1860), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1755), 6, + STATE(1503), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97819,81 +107269,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30202] = 31, + [31661] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2545), 1, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(3034), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(2549), 1, + ACTIONS(3040), 1, anon_sym_QMARK, - ACTIONS(2551), 1, + ACTIONS(3042), 1, anon_sym_AMP, - ACTIONS(2553), 1, + ACTIONS(3044), 1, anon_sym_PIPE, - ACTIONS(2559), 1, + ACTIONS(3050), 1, + anon_sym_DQUOTE, + ACTIONS(3052), 1, + anon_sym_SQUOTE, + ACTIONS(3054), 1, + sym_number, + ACTIONS(3060), 1, + sym_readonly, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, + sym_this, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2824), 6, + STATE(2694), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97908,7 +107358,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30322] = 31, + [31781] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -97917,72 +107367,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2545), 1, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(3335), 1, anon_sym_new, - ACTIONS(2549), 1, + ACTIONS(3337), 1, anon_sym_QMARK, - ACTIONS(2551), 1, + ACTIONS(3339), 1, anon_sym_AMP, - ACTIONS(2553), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(2559), 1, + ACTIONS(3343), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(611), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(3789), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3495), 1, + STATE(4012), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(484), 6, + STATE(631), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -97997,81 +107447,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30442] = 31, + [31901] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(495), 1, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(499), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, + anon_sym_new, + ACTIONS(3074), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(3076), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(3078), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(3080), 1, anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3983), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4112), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3017), 6, + STATE(1511), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98086,81 +107536,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30562] = 31, + [32021] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_new, - ACTIONS(2761), 1, - anon_sym_QMARK, - ACTIONS(2763), 1, - anon_sym_AMP, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2771), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2773), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2777), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2779), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1643), 1, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, + anon_sym_new, + ACTIONS(3074), 1, + anon_sym_QMARK, + ACTIONS(3076), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_PIPE, + ACTIONS(3080), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1864), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(3983), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3626), 1, + STATE(4112), 1, sym_formal_parameters, - ACTIONS(2767), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1860), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1745), 6, + STATE(1512), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98175,81 +107625,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30682] = 31, + [32141] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, + anon_sym_new, + ACTIONS(3074), 1, + anon_sym_QMARK, + ACTIONS(3076), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_PIPE, + ACTIONS(3080), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3983), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4112), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(483), 6, + STATE(1538), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98264,81 +107714,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30802] = 31, + [32261] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2545), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3070), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(3072), 1, anon_sym_new, - ACTIONS(2549), 1, + ACTIONS(3074), 1, anon_sym_QMARK, - ACTIONS(2551), 1, + ACTIONS(3076), 1, anon_sym_AMP, - ACTIONS(2553), 1, + ACTIONS(3078), 1, anon_sym_PIPE, - ACTIONS(2559), 1, + ACTIONS(3080), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3983), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4112), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2828), 6, + STATE(1521), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98353,81 +107803,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30922] = 31, + [32381] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3072), 1, anon_sym_new, - ACTIONS(2761), 1, + ACTIONS(3074), 1, anon_sym_QMARK, - ACTIONS(2763), 1, + ACTIONS(3076), 1, anon_sym_AMP, - ACTIONS(2765), 1, + ACTIONS(3078), 1, anon_sym_PIPE, - ACTIONS(2771), 1, + ACTIONS(3080), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3983), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4112), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1520), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [32501] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, sym_number, - ACTIONS(2773), 1, - sym_this, - ACTIONS(2777), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2779), 1, - anon_sym_infer, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1643), 1, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(3074), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_keyof, + ACTIONS(3293), 1, + sym_this, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1864), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3626), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2767), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1860), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1789), 6, + STATE(3717), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(1519), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98442,7 +107981,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31042] = 31, + [32621] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -98459,64 +107998,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2935), 6, + STATE(3427), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98531,7 +108070,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31162] = 31, + [32741] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -98540,72 +108079,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3186), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3480), 1, + STATE(4017), 1, sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(483), 6, + STATE(561), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98620,142 +108159,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2484), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31346] = 31, + [32861] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3118), 1, + anon_sym_QMARK, + ACTIONS(3124), 1, + anon_sym_keyof, + ACTIONS(3293), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2263), 6, + STATE(3705), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1519), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98770,7 +108248,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31466] = 31, + [32981] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -98779,72 +108257,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, - anon_sym_QMARK, - ACTIONS(639), 1, - anon_sym_AMP, - ACTIONS(641), 1, - anon_sym_PIPE, - ACTIONS(669), 1, - anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2831), 1, + ACTIONS(3281), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(3283), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3797), 1, sym_type_parameters, - STATE(3480), 1, + STATE(4014), 1, sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2873), 6, + STATE(3395), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98859,81 +108337,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31586] = 31, + [33101] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3021), 1, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3034), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3040), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3042), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3044), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3050), 1, + anon_sym_DQUOTE, + ACTIONS(3052), 1, + anon_sym_SQUOTE, + ACTIONS(3054), 1, + sym_number, + ACTIONS(3060), 1, + sym_readonly, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, + sym_this, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3490), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(484), 6, + STATE(2706), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -98948,81 +108426,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31706] = 31, + [33221] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(3034), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(3040), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, + anon_sym_AMP, + ACTIONS(3044), 1, + anon_sym_PIPE, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2983), 6, + STATE(2710), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99037,81 +108515,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31826] = 31, + [33341] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3009), 6, + STATE(3428), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99126,7 +108604,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31946] = 31, + [33461] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -99135,72 +108613,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3345), 1, sym_this, - ACTIONS(2545), 1, - anon_sym_typeof, - ACTIONS(2547), 1, - anon_sym_new, - ACTIONS(2549), 1, - anon_sym_QMARK, - ACTIONS(2551), 1, - anon_sym_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2559), 1, - anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(2702), 1, + sym__tuple_type_body, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(483), 6, + STATE(3729), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(3442), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99215,81 +108693,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32066] = 31, + [33581] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(3034), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(3040), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, + anon_sym_AMP, + ACTIONS(3044), 1, + anon_sym_PIPE, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2997), 6, + STATE(2718), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99304,7 +108782,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32186] = 31, + [33701] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -99313,72 +108791,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2985), 6, + STATE(536), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99393,81 +108871,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32306] = 31, + [33821] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3032), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(3034), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(3036), 1, + anon_sym_LBRACK, + ACTIONS(3038), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(3040), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, + anon_sym_AMP, + ACTIONS(3044), 1, + anon_sym_PIPE, + ACTIONS(3050), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(3052), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(3054), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(3060), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3064), 1, + anon_sym_infer, + ACTIONS(3066), 1, + anon_sym_keyof, + ACTIONS(3068), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3309), 1, + sym_identifier, + ACTIONS(3311), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2623), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2675), 1, + sym__tuple_type_body, + STATE(3995), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4013), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4296), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(3046), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(3058), 2, + sym_true, + sym_false, + STATE(2677), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(3048), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2948), 6, + STATE(2728), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2676), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99482,149 +108960,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32426] = 10, + [33941] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, - anon_sym_COLON, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_EQ_GT, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(585), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [32504] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(972), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2975), 1, + anon_sym_typeof, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2983), 1, + anon_sym_QMARK, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3003), 1, + anon_sym_keyof, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3347), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1686), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2991), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2952), 6, + STATE(3719), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1948), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99639,149 +109049,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32624] = 10, + [34061] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1408), 1, - anon_sym_COLON, - ACTIONS(961), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(702), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(714), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(716), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(718), 1, 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, - [32702] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(484), 6, + STATE(2579), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99796,81 +109138,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32822] = 31, + [34181] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(702), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, anon_sym_typeof, - ACTIONS(937), 1, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4072), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2955), 6, + STATE(2578), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2585), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99885,81 +109227,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32942] = 31, + [34301] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(499), 1, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2933), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2939), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3349), 1, sym_this, - ACTIONS(2545), 1, - anon_sym_typeof, - ACTIONS(2547), 1, - anon_sym_new, - ACTIONS(2549), 1, - anon_sym_QMARK, - ACTIONS(2551), 1, - anon_sym_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2559), 1, - anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2541), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4099), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2925), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2927), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(459), 6, + STATE(3685), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2577), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -99974,170 +109316,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33062] = 31, + [34421] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(972), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3095), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2975), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(2983), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(2985), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(530), 1, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3980), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4256), 1, sym_nested_identifier, - STATE(3732), 1, + STATE(4261), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2989), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(483), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [33182] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3424), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, - sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(2997), 2, sym_true, sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, + STATE(1862), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2991), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2961), 6, + STATE(1942), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100152,81 +109405,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33302] = 31, + [34541] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(972), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2971), 1, anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(2973), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2975), 1, anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, + ACTIONS(2981), 1, anon_sym_new, - ACTIONS(2761), 1, + ACTIONS(2983), 1, anon_sym_QMARK, - ACTIONS(2763), 1, + ACTIONS(2985), 1, anon_sym_AMP, - ACTIONS(2765), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2771), 1, + ACTIONS(2993), 1, sym_number, - ACTIONS(2773), 1, + ACTIONS(2995), 1, sym_this, - ACTIONS(2777), 1, + ACTIONS(2999), 1, sym_readonly, - ACTIONS(2779), 1, + ACTIONS(3001), 1, anon_sym_infer, - ACTIONS(2781), 1, + ACTIONS(3003), 1, anon_sym_keyof, - ACTIONS(2783), 1, + ACTIONS(3005), 1, anon_sym_LBRACE_PIPE, - STATE(1643), 1, + STATE(1686), 1, sym_nested_type_identifier, - STATE(1864), 1, + STATE(1911), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(3980), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4256), 1, sym_nested_identifier, - STATE(3626), 1, + STATE(4261), 1, sym_formal_parameters, - ACTIONS(2767), 2, + ACTIONS(2989), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(2997), 2, sym_true, sym_false, - STATE(1860), 2, + STATE(1862), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(2991), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1752), 6, + STATE(1939), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100241,81 +109494,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33422] = 31, + [34661] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2545), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3114), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(3116), 1, anon_sym_new, - ACTIONS(2549), 1, + ACTIONS(3118), 1, anon_sym_QMARK, - ACTIONS(2551), 1, + ACTIONS(3120), 1, anon_sym_AMP, - ACTIONS(2553), 1, + ACTIONS(3122), 1, anon_sym_PIPE, - ACTIONS(2559), 1, + ACTIONS(3124), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3870), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2920), 6, + STATE(1520), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100330,81 +109583,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33542] = 31, + [34781] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3057), 1, + ACTIONS(2897), 1, sym_this, - STATE(2210), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3116), 1, + anon_sym_new, + ACTIONS(3118), 1, + anon_sym_QMARK, + ACTIONS(3120), 1, + anon_sym_AMP, + ACTIONS(3122), 1, + anon_sym_PIPE, + ACTIONS(3124), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(3870), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(2665), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2278), 6, + STATE(1521), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100419,81 +109672,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33662] = 31, + [34901] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_new, - ACTIONS(2761), 1, - anon_sym_QMARK, - ACTIONS(2763), 1, - anon_sym_AMP, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2771), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2773), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2777), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2779), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1643), 1, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3116), 1, + anon_sym_new, + ACTIONS(3118), 1, + anon_sym_QMARK, + ACTIONS(3120), 1, + anon_sym_AMP, + ACTIONS(3122), 1, + anon_sym_PIPE, + ACTIONS(3124), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1864), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(3870), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3626), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(2767), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1860), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1808), 6, + STATE(1698), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100508,81 +109761,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33782] = 31, + [35021] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(783), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(785), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2232), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100597,81 +109850,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33902] = 31, + [35141] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(803), 1, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3081), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3051), 6, + STATE(3429), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2277), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100686,222 +109939,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34022] = 13, + [35261] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, - anon_sym_LT, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_EQ_GT, - STATE(1659), 1, - sym_type_arguments, - STATE(1767), 1, - sym_arguments, - ACTIONS(2460), 11, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 21, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [34106] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1237), 1, - anon_sym_EQ, - ACTIONS(1239), 1, - anon_sym_EQ_GT, - ACTIONS(1325), 1, - anon_sym_extends, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2699), 1, - anon_sym_COMMA, - ACTIONS(2702), 3, - anon_sym_GT, + ACTIONS(535), 1, anon_sym_AMP, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(961), 12, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [34188] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(651), 1, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2749), 1, - anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_new, - ACTIONS(2761), 1, - anon_sym_QMARK, - ACTIONS(2763), 1, - anon_sym_AMP, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2771), 1, - sym_number, - ACTIONS(2773), 1, + ACTIONS(3307), 1, sym_this, - ACTIONS(2777), 1, - sym_readonly, - ACTIONS(2779), 1, - anon_sym_infer, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, - anon_sym_LBRACE_PIPE, - STATE(1643), 1, - sym_nested_type_identifier, - STATE(1864), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3626), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(2767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1860), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1823), 6, + STATE(3729), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(547), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -100916,7 +110028,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34308] = 31, + [35381] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -100925,72 +110037,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2272), 6, + STATE(2900), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101005,81 +110117,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34428] = 31, + [35501] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, sym_this, - ACTIONS(2545), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3114), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(3116), 1, anon_sym_new, - ACTIONS(2549), 1, + ACTIONS(3118), 1, anon_sym_QMARK, - ACTIONS(2551), 1, + ACTIONS(3120), 1, anon_sym_AMP, - ACTIONS(2553), 1, + ACTIONS(3122), 1, anon_sym_PIPE, - ACTIONS(2559), 1, + ACTIONS(3124), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3870), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2836), 6, + STATE(1512), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101094,81 +110206,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34548] = 31, + [35621] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(783), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(785), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2643), 6, + STATE(3438), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101183,81 +110295,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34668] = 31, + [35741] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2659), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(2837), 1, anon_sym_new, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2839), 1, + anon_sym_QMARK, + ACTIONS(2841), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3057), 1, + ACTIONS(2851), 1, sym_this, - STATE(2210), 1, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(1681), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(3791), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4226), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4291), 1, sym_formal_parameters, - ACTIONS(2665), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2853), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(1685), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2847), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2759), 6, + STATE(2032), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(1678), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101272,81 +110384,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34788] = 31, + [35861] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, - anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3116), 1, anon_sym_new, - ACTIONS(2623), 1, + ACTIONS(3118), 1, anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(3120), 1, anon_sym_AMP, - ACTIONS(2627), 1, + ACTIONS(3122), 1, anon_sym_PIPE, - ACTIONS(2633), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, - sym_number, - ACTIONS(2643), 1, - sym_readonly, - ACTIONS(2647), 1, - anon_sym_infer, - ACTIONS(2649), 1, + ACTIONS(3124), 1, anon_sym_keyof, - ACTIONS(2651), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(2386), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(3870), 1, sym_type_parameters, - STATE(3509), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3681), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(2629), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2380), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2438), 6, + STATE(1511), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101361,81 +110473,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34908] = 31, + [35981] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(653), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2747), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2751), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_typeof, - ACTIONS(2755), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_new, - ACTIONS(2761), 1, - anon_sym_QMARK, - ACTIONS(2763), 1, - anon_sym_AMP, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2771), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2773), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2777), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2779), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2781), 1, - anon_sym_keyof, - ACTIONS(2783), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1643), 1, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3116), 1, + anon_sym_new, + ACTIONS(3118), 1, + anon_sym_QMARK, + ACTIONS(3120), 1, + anon_sym_AMP, + ACTIONS(3122), 1, + anon_sym_PIPE, + ACTIONS(3124), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1864), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3452), 1, + STATE(3870), 1, sym_type_parameters, - STATE(3527), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3626), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(2767), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2775), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1860), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2769), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1824), 6, + STATE(1503), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1863), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101450,81 +110562,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35028] = 31, + [36101] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2561), 6, + STATE(3444), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101539,81 +110651,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35148] = 31, + [36221] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2611), 1, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - ACTIONS(2613), 1, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(2615), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(2617), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2837), 1, anon_sym_new, - ACTIONS(2623), 1, + ACTIONS(2839), 1, anon_sym_QMARK, - ACTIONS(2625), 1, + ACTIONS(2841), 1, anon_sym_AMP, - ACTIONS(2627), 1, + ACTIONS(2843), 1, anon_sym_PIPE, - ACTIONS(2633), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_SQUOTE, - ACTIONS(2637), 1, + ACTIONS(2849), 1, sym_number, - ACTIONS(2643), 1, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, sym_readonly, - ACTIONS(2647), 1, + ACTIONS(2857), 1, anon_sym_infer, - ACTIONS(2649), 1, + ACTIONS(2859), 1, anon_sym_keyof, - ACTIONS(2651), 1, + ACTIONS(2861), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - sym_this, - STATE(2297), 1, + STATE(1652), 1, sym_nested_type_identifier, - STATE(2386), 1, + STATE(1681), 1, sym__tuple_type_body, - STATE(3467), 1, + STATE(3791), 1, sym_type_parameters, - STATE(3509), 1, + STATE(4226), 1, sym_nested_identifier, - STATE(3681), 1, + STATE(4291), 1, sym_formal_parameters, - ACTIONS(2629), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 2, + ACTIONS(2853), 2, sym_true, sym_false, - STATE(2380), 2, + STATE(1685), 2, sym_string, sym__number, - ACTIONS(2631), 6, + ACTIONS(2847), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2463), 6, + STATE(1671), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2383), 14, + STATE(1678), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101628,81 +110740,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35268] = 31, + [36341] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(3103), 1, - anon_sym_AMP, - ACTIONS(3105), 1, - anon_sym_PIPE, - ACTIONS(3107), 1, - anon_sym_keyof, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3732), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(537), 6, + STATE(3448), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101717,7 +110829,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35388] = 31, + [36461] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -101726,72 +110838,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2571), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2516), 1, sym_this, - STATE(1268), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3042), 6, + STATE(554), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2956), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101806,149 +110918,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35508] = 10, + [36581] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(3115), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(585), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [35586] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2545), 1, - anon_sym_typeof, - ACTIONS(2547), 1, - anon_sym_new, - ACTIONS(2549), 1, - anon_sym_QMARK, - ACTIONS(2551), 1, - anon_sym_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2559), 1, - anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(475), 6, + STATE(2626), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -101963,68 +111007,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2534), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35770] = 31, + [36701] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -102033,72 +111016,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_typeof, + ACTIONS(3335), 1, + anon_sym_new, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(611), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3789), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4012), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2979), 6, + STATE(536), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102113,81 +111096,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35890] = 31, + [36821] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2837), 1, + anon_sym_new, + ACTIONS(2839), 1, + anon_sym_QMARK, + ACTIONS(2841), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3791), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4226), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4291), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2847), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2889), 6, + STATE(2008), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1678), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102202,81 +111185,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36010] = 31, + [36941] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2837), 1, + anon_sym_new, + ACTIONS(2839), 1, + anon_sym_QMARK, + ACTIONS(2841), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3791), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4226), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4291), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2847), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2977), 6, + STATE(1748), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1678), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102291,81 +111274,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36130] = 31, + [37061] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(499), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(3232), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(3234), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(3236), 1, anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2984), 6, + STATE(3003), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102380,81 +111363,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36250] = 31, + [37181] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2545), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2547), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2549), 1, - anon_sym_QMARK, - ACTIONS(2551), 1, - anon_sym_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2559), 1, - anon_sym_keyof, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3315), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3495), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(474), 6, + STATE(3451), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102469,81 +111452,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36370] = 31, + [37301] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, sym_type_parameters, - STATE(3578), 1, - sym_nested_identifier, - STATE(3685), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2307), 6, + STATE(3461), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102558,81 +111541,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36490] = 31, + [37421] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(2709), 1, - anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2721), 1, - anon_sym_QMARK, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_PIPE, - ACTIONS(2731), 1, - sym_number, - ACTIONS(2733), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(2737), 1, - sym_readonly, - ACTIONS(2739), 1, - anon_sym_infer, - ACTIONS(2741), 1, - anon_sym_keyof, - ACTIONS(2743), 1, - anon_sym_LBRACE_PIPE, - STATE(1440), 1, - sym_nested_type_identifier, - STATE(1693), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(2727), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2735), 2, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1679), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1662), 6, + STATE(3487), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102647,81 +111630,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36610] = 31, + [37541] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(781), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(783), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(785), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(801), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(803), 1, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(805), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(2210), 1, - sym_nested_type_identifier, - STATE(2247), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(2665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(667), 2, sym_true, sym_false, - STATE(2255), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2325), 6, + STATE(3387), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102736,81 +111719,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36730] = 31, + [37661] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2545), 1, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3114), 1, anon_sym_typeof, - ACTIONS(2549), 1, + ACTIONS(3116), 1, + anon_sym_new, + ACTIONS(3118), 1, anon_sym_QMARK, - ACTIONS(2559), 1, + ACTIONS(3120), 1, + anon_sym_AMP, + ACTIONS(3122), 1, + anon_sym_PIPE, + ACTIONS(3124), 1, anon_sym_keyof, - ACTIONS(3039), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3870), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3038), 6, + STATE(1712), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(487), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102825,7 +111808,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36850] = 31, + [37781] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -102834,72 +111817,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(533), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(553), 1, anon_sym_keyof, - ACTIONS(935), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2739), 6, + STATE(3091), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -102914,81 +111897,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36970] = 31, + [37901] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(2659), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_new, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3057), 1, + ACTIONS(2897), 1, sym_this, - STATE(2210), 1, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3116), 1, + anon_sym_new, + ACTIONS(3118), 1, + anon_sym_QMARK, + ACTIONS(3120), 1, + anon_sym_AMP, + ACTIONS(3122), 1, + anon_sym_PIPE, + ACTIONS(3124), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(3870), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4063), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4147), 1, sym_formal_parameters, - ACTIONS(2665), 2, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2671), 6, + STATE(1486), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103003,152 +111986,170 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37090] = 13, + [38021] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, - anon_sym_EQ, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2825), 1, - anon_sym_EQ_GT, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2955), 1, - anon_sym_LT, - ACTIONS(2958), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_LBRACE, - STATE(3061), 1, - sym_type_arguments, - ACTIONS(3119), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(535), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [37174] = 31, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(561), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [38141] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_new, - ACTIONS(2721), 1, - anon_sym_QMARK, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2733), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2737), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2739), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2741), 1, - anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(3116), 1, + anon_sym_new, + ACTIONS(3118), 1, + anon_sym_QMARK, + ACTIONS(3120), 1, + anon_sym_AMP, + ACTIONS(3122), 1, + anon_sym_PIPE, + ACTIONS(3124), 1, + anon_sym_keyof, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(3870), 1, sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4063), 1, sym_nested_identifier, - ACTIONS(2727), 2, + STATE(4147), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1626), 6, + STATE(1714), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103163,149 +112164,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37294] = 10, + [38261] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_COLON, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_EQ_GT, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(585), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [37372] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(3021), 1, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, anon_sym_typeof, - ACTIONS(3023), 1, + ACTIONS(3228), 1, anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3027), 1, + ACTIONS(3232), 1, anon_sym_AMP, - ACTIONS(3029), 1, + ACTIONS(3234), 1, anon_sym_PIPE, - ACTIONS(3031), 1, + ACTIONS(3236), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(3307), 1, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3490), 1, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2468), 6, + STATE(3155), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103320,81 +112253,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37492] = 31, + [38381] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_STAR, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(972), 1, anon_sym_SQUOTE, - ACTIONS(2673), 1, - sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(3047), 1, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2975), 1, anon_sym_typeof, - ACTIONS(3049), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, anon_sym_new, - ACTIONS(3051), 1, + ACTIONS(2983), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(2985), 1, anon_sym_AMP, - ACTIONS(3055), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3057), 1, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, sym_this, - ACTIONS(3059), 1, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, anon_sym_keyof, - STATE(2210), 1, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(1911), 1, sym__tuple_type_body, - STATE(3470), 1, + STATE(3980), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4256), 1, sym_nested_identifier, - STATE(3609), 1, + STATE(4261), 1, sym_formal_parameters, - ACTIONS(2665), 2, + ACTIONS(2989), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2997), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(1862), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2991), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2477), 6, + STATE(2188), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103409,78 +112342,99 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37612] = 10, + [38501] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1428), 1, - anon_sym_COLON, - ACTIONS(961), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3190), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3192), 1, anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [37690] = 3, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3019), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [38621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 23, + ACTIONS(2763), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -103504,7 +112458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2367), 33, + ACTIONS(2765), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -103538,7 +112492,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [37754] = 31, + [38685] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -103547,72 +112501,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2397), 6, + STATE(550), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103627,152 +112581,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37874] = 13, + [38805] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1077), 1, - anon_sym_EQ_GT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - STATE(1653), 1, - sym_type_arguments, - STATE(1782), 1, - sym_arguments, - ACTIONS(1851), 11, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1849), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [37958] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(769), 1, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_QMARK, - ACTIONS(783), 1, - anon_sym_AMP, - ACTIONS(785), 1, - anon_sym_PIPE, - ACTIONS(801), 1, - anon_sym_infer, - ACTIONS(803), 1, - anon_sym_keyof, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2973), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(2975), 1, anon_sym_typeof, - ACTIONS(2659), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(2661), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(2981), 1, anon_sym_new, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2673), 1, + ACTIONS(2983), 1, + anon_sym_QMARK, + ACTIONS(2985), 1, + anon_sym_AMP, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2993), 1, sym_number, - ACTIONS(2679), 1, - sym_readonly, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3057), 1, + ACTIONS(2995), 1, sym_this, - STATE(2210), 1, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, + anon_sym_keyof, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, sym_nested_type_identifier, - STATE(2247), 1, + STATE(1911), 1, sym__tuple_type_body, - STATE(3414), 1, + STATE(3980), 1, sym_type_parameters, - STATE(3578), 1, + STATE(4256), 1, sym_nested_identifier, - STATE(3685), 1, + STATE(4261), 1, sym_formal_parameters, - ACTIONS(2665), 2, + ACTIONS(2989), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2677), 2, + ACTIONS(2997), 2, sym_true, sym_false, - STATE(2255), 2, + STATE(1862), 2, sym_string, sym__number, - ACTIONS(2667), 6, + ACTIONS(2991), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2306), 6, + STATE(1872), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2258), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -103787,58 +112670,15 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38078] = 12, + [38925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(2883), 1, - anon_sym_EQ_GT, - ACTIONS(2919), 1, - anon_sym_EQ, - ACTIONS(2925), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(3119), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + ACTIONS(2462), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -103857,38 +112697,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [38160] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1909), 1, - anon_sym_in, - ACTIONS(3121), 1, - anon_sym_of, - ACTIONS(961), 13, + ACTIONS(2464), 33, sym__automatic_semicolon, 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_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103904,226 +112723,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [38240] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3324), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2408), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [38360] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3324), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(484), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [38480] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_EQ_GT, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(585), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -104132,209 +112731,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [38556] = 31, + [38989] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, - sym_this, - STATE(462), 1, - sym__tuple_type_body, - STATE(2180), 1, - sym_nested_type_identifier, - STATE(3324), 1, - sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, - sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(460), 2, - sym_string, - sym__number, - ACTIONS(963), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2410), 6, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(461), 14, - sym__primary_type, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [38676] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3095), 1, + ACTIONS(3331), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3333), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3335), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3337), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3339), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3343), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(611), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3789), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3732), 1, + STATE(4012), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(542), 6, + STATE(624), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104349,81 +112820,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38796] = 31, + [39109] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(972), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2971), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(2973), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2975), 1, anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(2981), 1, anon_sym_new, - ACTIONS(2721), 1, + ACTIONS(2983), 1, anon_sym_QMARK, - ACTIONS(2723), 1, + ACTIONS(2985), 1, anon_sym_AMP, - ACTIONS(2725), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2993), 1, sym_number, - ACTIONS(2733), 1, + ACTIONS(2995), 1, sym_this, - ACTIONS(2737), 1, + ACTIONS(2999), 1, sym_readonly, - ACTIONS(2739), 1, + ACTIONS(3001), 1, anon_sym_infer, - ACTIONS(2741), 1, + ACTIONS(3003), 1, anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(3005), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, + STATE(1686), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(1911), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(3980), 1, sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4256), 1, sym_nested_identifier, - ACTIONS(2727), 2, + STATE(4261), 1, + sym_formal_parameters, + ACTIONS(2989), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(2997), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(1862), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(2991), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1621), 6, + STATE(1870), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(1902), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104438,81 +112909,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38916] = 31, + [39229] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2775), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_new, - ACTIONS(2721), 1, - anon_sym_QMARK, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, sym_number, - ACTIONS(2733), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2737), 1, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(2739), 1, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(2741), 1, - anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(3886), 1, sym_type_parameters, - STATE(3551), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(3752), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(2727), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1692), 6, + STATE(2852), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104527,81 +112998,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39036] = 31, + [39349] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(477), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(479), 1, anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2873), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2877), 1, anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(2883), 1, anon_sym_new, - ACTIONS(2721), 1, + ACTIONS(2885), 1, anon_sym_QMARK, - ACTIONS(2723), 1, + ACTIONS(2887), 1, anon_sym_AMP, - ACTIONS(2725), 1, + ACTIONS(2889), 1, anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2895), 1, sym_number, - ACTIONS(2733), 1, + ACTIONS(2897), 1, sym_this, - ACTIONS(2737), 1, + ACTIONS(2901), 1, sym_readonly, - ACTIONS(2739), 1, + ACTIONS(2903), 1, anon_sym_infer, - ACTIONS(2741), 1, + ACTIONS(2905), 1, anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(2907), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, + STATE(1443), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(1498), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(3974), 1, sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4063), 1, sym_nested_identifier, - ACTIONS(2727), 2, + STATE(4234), 1, + sym_formal_parameters, + ACTIONS(2891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(2899), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(1495), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(2893), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 6, + STATE(1503), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(1461), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104616,150 +113087,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39156] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_EQ_GT, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3123), 1, - anon_sym_in, - ACTIONS(3126), 1, - anon_sym_of, - ACTIONS(585), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [39236] = 31, + [39469] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, ACTIONS(463), 1, anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, ACTIONS(497), 1, anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(547), 1, - anon_sym_AMP, - ACTIONS(549), 1, - anon_sym_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3040), 6, + STATE(3515), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(487), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104774,7 +113176,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39356] = 31, + [39589] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -104791,64 +113193,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(474), 6, + STATE(2878), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104863,81 +113265,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39476] = 31, + [39709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2711), 23, anon_sym_STAR, - ACTIONS(2711), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2713), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2717), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_new, - ACTIONS(2721), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [39773] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(2723), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(2725), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(2731), 1, - sym_number, - ACTIONS(2733), 1, - sym_this, - ACTIONS(2737), 1, - sym_readonly, - ACTIONS(2739), 1, + ACTIONS(495), 1, anon_sym_infer, - ACTIONS(2741), 1, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, - sym_nested_type_identifier, - STATE(1693), 1, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, sym_type_parameters, - STATE(3551), 1, - sym_formal_parameters, - STATE(3752), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(2727), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2735), 2, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - STATE(1679), 2, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1623), 6, + STATE(561), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -104952,81 +113415,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39596] = 31, + [39893] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3092), 1, + anon_sym_typeof, + ACTIONS(3094), 1, + anon_sym_new, + ACTIONS(3096), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_AMP, + ACTIONS(3100), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3812), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4095), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(475), 6, + STATE(3462), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105041,81 +113504,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39716] = 31, + [40013] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2775), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2777), 1, anon_sym_STAR, - ACTIONS(2711), 1, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(2715), 1, + ACTIONS(2783), 1, anon_sym_LPAREN, - ACTIONS(2717), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_new, - ACTIONS(2721), 1, - anon_sym_QMARK, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, sym_number, - ACTIONS(2733), 1, + ACTIONS(2807), 1, sym_this, - ACTIONS(2737), 1, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(2739), 1, + ACTIONS(2813), 1, anon_sym_infer, - ACTIONS(2741), 1, - anon_sym_keyof, - ACTIONS(2743), 1, + ACTIONS(2817), 1, anon_sym_LBRACE_PIPE, - STATE(1440), 1, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, sym_nested_type_identifier, - STATE(1693), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3238), 1, + STATE(3886), 1, sym_type_parameters, - STATE(3551), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(3752), 1, + STATE(4125), 1, sym_nested_identifier, - ACTIONS(2727), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2735), 2, + ACTIONS(2809), 2, sym_true, sym_false, - STATE(1679), 2, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(2729), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1624), 6, + STATE(2847), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(1684), 14, + STATE(2796), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105130,142 +113593,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2389), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2391), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [39900] = 31, + [40133] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, - anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(535), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(565), 1, - anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, + ACTIONS(643), 1, anon_sym_new, - ACTIONS(965), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(2805), 1, sym_number, - ACTIONS(1035), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(2811), 1, sym_readonly, - ACTIONS(1117), 1, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3236), 1, + anon_sym_keyof, + ACTIONS(3351), 1, sym_this, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2661), 1, - anon_sym_LBRACK, - STATE(2180), 1, + STATE(2645), 1, sym_nested_type_identifier, - STATE(2257), 1, + STATE(2797), 1, sym__tuple_type_body, - STATE(3424), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3748), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2799), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3042), 6, + STATE(3672), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(2963), 14, + STATE(2846), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105280,142 +113682,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(917), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [40084] = 31, + [40253] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(463), 1, - anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, - ACTIONS(497), 1, - anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3797), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3577), 1, + STATE(4014), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(483), 6, + STATE(3466), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105430,81 +113771,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40204] = 31, + [40373] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(484), 6, + STATE(2877), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105519,81 +113860,155 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40324] = 31, + [40493] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(2025), 1, + anon_sym_in, + ACTIONS(3353), 1, + anon_sym_of, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [40583] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, - sym_number, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, - sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(3095), 1, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2837), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(2839), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(2841), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(2843), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, anon_sym_keyof, - STATE(462), 1, - sym__tuple_type_body, - STATE(530), 1, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3791), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4226), 1, sym_nested_identifier, - STATE(3732), 1, + STATE(4291), 1, sym_formal_parameters, - ACTIONS(973), 2, - sym_true, - sym_false, - ACTIONS(1869), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(2847), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(484), 6, + STATE(1739), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(1678), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105608,81 +114023,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40444] = 31, + [40703] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, - ACTIONS(495), 1, - anon_sym_infer, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(545), 1, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(547), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(549), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(565), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - anon_sym_new, - ACTIONS(965), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3424), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3748), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2897), 6, + STATE(544), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105697,148 +114112,259 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40564] = 9, + [40823] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(1053), 1, - anon_sym_EQ_GT, - ACTIONS(1055), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(961), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(463), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(465), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(467), 1, anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [40640] = 31, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [40943] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(637), 1, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(554), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41063] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(639), 1, + ACTIONS(465), 1, anon_sym_AMP, - ACTIONS(641), 1, + ACTIONS(467), 1, anon_sym_PIPE, - ACTIONS(669), 1, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, anon_sym_keyof, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - sym_this, - ACTIONS(2831), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2835), 1, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_new, - STATE(462), 1, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3478), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3480), 1, - sym_formal_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - ACTIONS(973), 2, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2570), 6, + STATE(2868), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105853,7 +114379,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40760] = 31, + [41183] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -105862,72 +114388,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1039), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3184), 1, anon_sym_typeof, - ACTIONS(3099), 1, + ACTIONS(3186), 1, anon_sym_new, - ACTIONS(3101), 1, + ACTIONS(3188), 1, anon_sym_QMARK, - ACTIONS(3103), 1, + ACTIONS(3190), 1, anon_sym_AMP, - ACTIONS(3105), 1, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(3107), 1, + ACTIONS(3194), 1, anon_sym_keyof, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(530), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3457), 1, + STATE(3991), 1, sym_type_parameters, - STATE(3486), 1, - sym_nested_identifier, - STATE(3732), 1, + STATE(4017), 1, sym_formal_parameters, - ACTIONS(973), 2, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(541), 6, + STATE(2952), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -105942,7 +114468,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40880] = 31, + [41303] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -105959,64 +114485,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2447), 6, + STATE(536), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106031,7 +114557,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41000] = 31, + [41423] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, @@ -106048,64 +114574,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2514), 1, anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(2516), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4224), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(466), 6, + STATE(560), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(562), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106120,152 +114646,81 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41120] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - STATE(1296), 1, - sym_type_arguments, - STATE(1408), 1, - sym_arguments, - ACTIONS(2460), 11, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2458), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [41204] = 31, + [41543] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(427), 1, anon_sym_STAR, ACTIONS(463), 1, anon_sym_QMARK, - ACTIONS(465), 1, - anon_sym_AMP, - ACTIONS(467), 1, - anon_sym_PIPE, ACTIONS(495), 1, anon_sym_infer, ACTIONS(497), 1, anon_sym_keyof, ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - ACTIONS(937), 1, - anon_sym_LPAREN, - ACTIONS(965), 1, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(663), 1, sym_number, - ACTIONS(1035), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1038), 1, anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(1044), 1, sym_readonly, - ACTIONS(1867), 1, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2407), 1, + ACTIONS(2508), 1, anon_sym_typeof, - ACTIONS(2409), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_new, - ACTIONS(2415), 1, + ACTIONS(3307), 1, sym_this, - STATE(462), 1, + STATE(564), 1, sym__tuple_type_body, - STATE(2180), 1, + STATE(2506), 1, sym_nested_type_identifier, - STATE(3324), 1, + STATE(3960), 1, sym_type_parameters, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(3577), 1, + STATE(4123), 1, sym_formal_parameters, - ACTIONS(973), 2, + ACTIONS(667), 2, sym_true, sym_false, - ACTIONS(1869), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(460), 2, + STATE(534), 2, sym_string, sym__number, - ACTIONS(963), 6, + ACTIONS(657), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(459), 6, + STATE(3731), 6, sym__type, sym_constructor_type, sym_infer_type, sym_union_type, sym_intersection_type, sym_function_type, - STATE(461), 14, + STATE(547), 14, sym__primary_type, sym_conditional_type, sym_generic_type, @@ -106280,2114 +114735,20555 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41324] = 11, + [41663] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(3128), 1, - anon_sym_in, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(585), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2837), 1, + anon_sym_new, + ACTIONS(2839), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2841), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2843), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3791), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4291), 1, + sym_formal_parameters, + ACTIONS(2845), 2, 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, - [41403] = 12, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1737), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41783] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(3132), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 4, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(535), 1, anon_sym_AMP, + ACTIONS(537), 1, anon_sym_PIPE, - ACTIONS(585), 10, - anon_sym_as, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3285), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3291), 1, + anon_sym_keyof, + ACTIONS(3307), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [41484] = 12, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3739), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(547), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [41903] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1037), 1, - anon_sym_EQ, - ACTIONS(1325), 1, - anon_sym_extends, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2699), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2702), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 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_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, - [41565] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3123), 1, - anon_sym_in, - ACTIONS(3126), 1, - anon_sym_of, - ACTIONS(585), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2837), 1, + anon_sym_new, + ACTIONS(2839), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2841), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2843), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3791), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4291), 1, + sym_formal_parameters, + ACTIONS(2845), 2, 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, - [41642] = 7, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2001), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42023] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(3123), 1, - anon_sym_in, - ACTIONS(3126), 1, - anon_sym_of, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2979), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(571), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3132), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3134), 1, anon_sym_PIPE, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - [41713] = 12, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1901), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42143] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1941), 1, - anon_sym_QMARK, - ACTIONS(1950), 1, - anon_sym_COLON, - ACTIONS(932), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 21, + ACTIONS(427), 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, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(3355), 1, + sym_this, + STATE(1932), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [41794] = 12, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3729), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3459), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42263] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_EQ, - ACTIONS(3006), 1, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, anon_sym_QMARK, - ACTIONS(3134), 1, - anon_sym_COLON, - ACTIONS(2997), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3132), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3134), 1, anon_sym_PIPE, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - [41875] = 7, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1833), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42383] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(910), 2, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(907), 3, - anon_sym_EQ, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, + anon_sym_QMARK, + ACTIONS(3132), 1, anon_sym_AMP, + ACTIONS(3134), 1, anon_sym_PIPE, - ACTIONS(901), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [41946] = 7, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1898), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42503] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(2506), 1, - anon_sym_LBRACK, - ACTIONS(1638), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2473), 4, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, anon_sym_AMP, + ACTIONS(3192), 1, anon_sym_PIPE, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - ACTIONS(917), 28, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42017] = 8, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3013), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42623] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 1, - anon_sym_LBRACE, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(901), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(910), 13, - anon_sym_as, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, anon_sym_LPAREN, + ACTIONS(2979), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(917), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(907), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3132), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3134), 1, anon_sym_PIPE, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - [42090] = 7, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1851), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42743] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(1638), 1, - anon_sym_extends, - ACTIONS(2506), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2473), 4, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 20, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2973), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(917), 27, - anon_sym_as, + ACTIONS(2977), 1, anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, anon_sym_LBRACE_PIPE, - [42161] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(901), 1, - anon_sym_extends, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(907), 2, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, + anon_sym_QMARK, + ACTIONS(3132), 1, anon_sym_AMP, + ACTIONS(3134), 1, anon_sym_PIPE, - ACTIONS(910), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(905), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - ACTIONS(917), 28, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42232] = 9, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1870), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42863] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2883), 1, - anon_sym_EQ_GT, - ACTIONS(2919), 1, - anon_sym_EQ, - ACTIONS(585), 13, - anon_sym_as, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2977), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3132), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3134), 1, anon_sym_PIPE, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - [42307] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1037), 1, - anon_sym_EQ, - ACTIONS(1325), 1, - anon_sym_extends, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2699), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2702), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - [42388] = 7, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1872), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42983] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(901), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(910), 2, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(907), 3, - anon_sym_GT, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, + anon_sym_QMARK, + ACTIONS(3132), 1, anon_sym_AMP, + ACTIONS(3134), 1, anon_sym_PIPE, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - ACTIONS(917), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42459] = 11, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1885), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43103] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_EQ, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(2997), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 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(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3289), 1, anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [42538] = 7, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(560), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43223] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(2506), 1, - anon_sym_LBRACK, - ACTIONS(1638), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2473), 4, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 19, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3132), 1, + anon_sym_AMP, + ACTIONS(3134), 1, + anon_sym_PIPE, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - ACTIONS(917), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42609] = 5, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1939), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43343] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 17, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2979), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3128), 1, + anon_sym_new, + ACTIONS(3130), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3132), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3134), 1, anon_sym_PIPE, + ACTIONS(3136), 1, + anon_sym_keyof, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3973), 1, + sym_type_parameters, + STATE(4248), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - [42676] = 8, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1942), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43463] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(585), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, 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, - [42749] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1037), 1, - anon_sym_EQ, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1960), 1, - anon_sym_COLON, - ACTIONS(961), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3126), 1, + anon_sym_typeof, + ACTIONS(3130), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_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(3136), 1, + anon_sym_keyof, + ACTIONS(3347), 1, + sym_this, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3960), 1, + sym_type_parameters, + STATE(4123), 1, + sym_formal_parameters, + STATE(4256), 1, + sym_nested_identifier, + ACTIONS(2989), 2, 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, - [42826] = 7, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3720), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1948), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43583] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_extends, - ACTIONS(2473), 1, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(907), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(910), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(905), 20, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2973), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(917), 27, - anon_sym_as, + ACTIONS(2975), 1, + anon_sym_typeof, + ACTIONS(2977), 1, anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [42897] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(901), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(910), 2, + ACTIONS(2979), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(907), 3, - anon_sym_GT, + ACTIONS(2981), 1, + anon_sym_new, + ACTIONS(2983), 1, + anon_sym_QMARK, + ACTIONS(2985), 1, anon_sym_AMP, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, + anon_sym_keyof, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3980), 1, + sym_type_parameters, + STATE(4256), 1, + sym_nested_identifier, + STATE(4261), 1, + sym_formal_parameters, + ACTIONS(2989), 2, 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, - ACTIONS(917), 28, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42968] = 9, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1851), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43703] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, - anon_sym_EQ, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_QMARK_DOT, - ACTIONS(1893), 1, - anon_sym_LBRACK, - ACTIONS(1895), 1, - anon_sym_DOT, - ACTIONS(961), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 23, + ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3287), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3289), 1, anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [43043] = 9, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(536), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43823] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, - anon_sym_EQ, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2825), 1, - anon_sym_EQ_GT, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(585), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 23, + ACTIONS(427), 1, anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3190), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3192), 1, anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - [43118] = 7, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(554), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43943] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(1638), 1, - anon_sym_extends, - ACTIONS(2506), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2473), 3, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, anon_sym_AMP, + ACTIONS(3289), 1, anon_sym_PIPE, - ACTIONS(905), 20, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3095), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44063] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, 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, - ACTIONS(917), 28, - anon_sym_as, - anon_sym_COMMA, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3276), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44183] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [43189] = 11, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1875), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44303] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(2480), 1, - anon_sym_EQ_GT, - ACTIONS(2972), 1, - anon_sym_COLON, - ACTIONS(3136), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(585), 10, - anon_sym_as, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2606), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44423] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44543] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1486), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44663] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3144), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3146), 1, anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, 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, - [43268] = 9, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1866), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44783] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2975), 1, + anon_sym_typeof, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_new, + ACTIONS(2983), 1, + anon_sym_QMARK, + ACTIONS(2985), 1, + anon_sym_AMP, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, + anon_sym_keyof, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3980), 1, + sym_type_parameters, + STATE(4256), 1, + sym_nested_identifier, + STATE(4261), 1, + sym_formal_parameters, + ACTIONS(2989), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2190), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [44903] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2938), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45023] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1503), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45143] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, + anon_sym_new, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3974), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4234), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1486), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45263] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1512), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(744), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(756), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [45447] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1860), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45567] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1521), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45687] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(554), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45807] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3140), 1, + anon_sym_new, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_AMP, + ACTIONS(3146), 1, + anon_sym_PIPE, + ACTIONS(3148), 1, + anon_sym_keyof, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3988), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4257), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1520), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [45927] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3148), 1, + anon_sym_keyof, + ACTIONS(3293), 1, + sym_this, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3960), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3714), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1519), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46047] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2975), 1, + anon_sym_typeof, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_new, + ACTIONS(2983), 1, + anon_sym_QMARK, + ACTIONS(2985), 1, + anon_sym_AMP, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, + anon_sym_keyof, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3980), 1, + sym_type_parameters, + STATE(4256), 1, + sym_nested_identifier, + STATE(4261), 1, + sym_formal_parameters, + ACTIONS(2989), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1833), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46167] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2745), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2717), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46351] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2565), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46471] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2741), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46591] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2602), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46711] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(3369), 1, + sym_this, + STATE(1716), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3729), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3331), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46831] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2837), 1, + anon_sym_new, + ACTIONS(2839), 1, + anon_sym_QMARK, + ACTIONS(2841), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3791), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4291), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1709), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46951] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2837), 1, + anon_sym_new, + ACTIONS(2839), 1, + anon_sym_QMARK, + ACTIONS(2841), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3791), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4291), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1707), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47071] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_typeof, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2839), 1, + anon_sym_QMARK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2859), 1, + anon_sym_keyof, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3371), 1, + sym_this, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3960), 1, + sym_type_parameters, + STATE(4123), 1, + sym_formal_parameters, + STATE(4226), 1, + sym_nested_identifier, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3678), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1704), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47191] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, + sym_type_parameters, + STATE(4059), 1, + sym_formal_parameters, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2851), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47311] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACE, + ACTIONS(2975), 1, + anon_sym_typeof, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_new, + ACTIONS(2983), 1, + anon_sym_QMARK, + ACTIONS(2985), 1, + anon_sym_AMP, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2993), 1, + sym_number, + ACTIONS(2995), 1, + sym_this, + ACTIONS(2999), 1, + sym_readonly, + ACTIONS(3001), 1, + anon_sym_infer, + ACTIONS(3003), 1, + anon_sym_keyof, + ACTIONS(3005), 1, + anon_sym_LBRACE_PIPE, + STATE(1686), 1, + sym_nested_type_identifier, + STATE(1911), 1, + sym__tuple_type_body, + STATE(3980), 1, + sym_type_parameters, + STATE(4256), 1, + sym_nested_identifier, + STATE(4261), 1, + sym_formal_parameters, + ACTIONS(2989), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2997), 2, + sym_true, + sym_false, + STATE(1862), 2, + sym_string, + sym__number, + ACTIONS(2991), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2187), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1902), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47431] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47551] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(544), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47671] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3106), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47791] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(561), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [47911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2709), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47975] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2582), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48095] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2600), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48215] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2751), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48335] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2752), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48455] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2725), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2703), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48639] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3497), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48759] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3128), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48879] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, + anon_sym_new, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3974), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4234), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2192), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48999] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3446), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49119] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(544), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49239] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2777), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49359] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3194), 1, + anon_sym_keyof, + ACTIONS(3307), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3687), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(547), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49479] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(560), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49599] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(536), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49719] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2579), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49839] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2578), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49959] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3469), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50079] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3467), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50199] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3349), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3960), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3689), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2577), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50319] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + ACTIONS(3357), 1, + anon_sym_typeof, + ACTIONS(3359), 1, + anon_sym_new, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_keyof, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3946), 1, + sym_type_parameters, + STATE(4099), 1, + sym_nested_identifier, + STATE(4266), 1, + sym_formal_parameters, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2890), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50439] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, + sym_type_parameters, + STATE(4059), 1, + sym_formal_parameters, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3031), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50559] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_typeof, + ACTIONS(3335), 1, + anon_sym_new, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(611), 1, + sym_nested_type_identifier, + STATE(3789), 1, + sym_type_parameters, + STATE(4012), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(544), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50679] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2783), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50799] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1706), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [50919] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(744), 1, + anon_sym_EQ, + ACTIONS(752), 1, + anon_sym_LT, + ACTIONS(740), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(749), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(756), 17, + anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_BQUOTE, + ACTIONS(746), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [50991] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1671), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51111] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1696), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51231] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3498), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51351] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3430), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51471] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1748), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51591] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1739), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51711] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1737), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51831] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1756), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [51951] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3341), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52071] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1709), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52191] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2851), 1, + sym_this, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2857), 1, + anon_sym_infer, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2959), 1, + anon_sym_new, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2963), 1, + anon_sym_AMP, + ACTIONS(2965), 1, + anon_sym_PIPE, + ACTIONS(2967), 1, + anon_sym_keyof, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3989), 1, + sym_type_parameters, + STATE(4226), 1, + sym_nested_identifier, + STATE(4276), 1, + sym_formal_parameters, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1707), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1678), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52311] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_STAR, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_LPAREN, + ACTIONS(2835), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + sym_number, + ACTIONS(2855), 1, + sym_readonly, + ACTIONS(2861), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(2961), 1, + anon_sym_QMARK, + ACTIONS(2967), 1, + anon_sym_keyof, + ACTIONS(3371), 1, + sym_this, + STATE(1652), 1, + sym_nested_type_identifier, + STATE(1681), 1, + sym__tuple_type_body, + STATE(3960), 1, + sym_type_parameters, + STATE(4123), 1, + sym_formal_parameters, + STATE(4226), 1, + sym_nested_identifier, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2853), 2, + sym_true, + sym_false, + STATE(1685), 2, + sym_string, + sym__number, + ACTIONS(2847), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3707), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1704), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52431] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2831), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52551] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2902), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52671] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2904), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52791] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_typeof, + ACTIONS(3335), 1, + anon_sym_new, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(611), 1, + sym_nested_type_identifier, + STATE(3789), 1, + sym_type_parameters, + STATE(4012), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(550), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52911] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3033), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53031] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2826), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53151] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2851), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53271] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3402), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53391] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2889), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53511] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2955), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53631] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_typeof, + ACTIONS(3335), 1, + anon_sym_new, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(611), 1, + sym_nested_type_identifier, + STATE(3789), 1, + sym_type_parameters, + STATE(4012), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(554), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53751] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3295), 1, + anon_sym_typeof, + ACTIONS(3297), 1, + anon_sym_new, + ACTIONS(3299), 1, + anon_sym_QMARK, + ACTIONS(3301), 1, + anon_sym_AMP, + ACTIONS(3303), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3799), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4025), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2896), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53871] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, + anon_sym_QMARK_DOT, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1878), 1, + anon_sym_in, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2739), 1, + anon_sym_of, + STATE(3522), 1, + sym_call_type_arguments, + STATE(1399), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [53961] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(3186), 1, + anon_sym_new, + ACTIONS(3188), 1, + anon_sym_QMARK, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_PIPE, + ACTIONS(3194), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3991), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3035), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54081] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_typeof, + ACTIONS(3335), 1, + anon_sym_new, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(611), 1, + sym_nested_type_identifier, + STATE(3789), 1, + sym_type_parameters, + STATE(4012), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(630), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54201] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, + sym_type_parameters, + STATE(4059), 1, + sym_formal_parameters, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3022), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54321] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(3228), 1, + anon_sym_new, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_AMP, + ACTIONS(3234), 1, + anon_sym_PIPE, + ACTIONS(3236), 1, + anon_sym_keyof, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3886), 1, + sym_type_parameters, + STATE(4059), 1, + sym_formal_parameters, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2816), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2494), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2496), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [54505] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2784), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54625] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2786), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54745] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2823), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54865] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1042), 1, + sym_this, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + STATE(541), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3729), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3454), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54985] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(3315), 1, + anon_sym_new, + ACTIONS(3317), 1, + anon_sym_QMARK, + ACTIONS(3319), 1, + anon_sym_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3803), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4062), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3009), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55105] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3321), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55225] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(744), 1, + anon_sym_EQ, + ACTIONS(752), 1, + anon_sym_LT, + ACTIONS(740), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(749), 13, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(756), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(746), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [55297] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2633), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55417] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2934), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55537] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2852), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55657] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2847), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55777] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3351), 1, + sym_this, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(3960), 1, + sym_type_parameters, + STATE(4123), 1, + sym_formal_parameters, + STATE(4125), 1, + sym_nested_identifier, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3708), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2846), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [55897] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3158), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56017] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3322), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56137] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3520), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56257] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(3283), 1, + anon_sym_new, + ACTIONS(3285), 1, + anon_sym_QMARK, + ACTIONS(3287), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3797), 1, + sym_type_parameters, + STATE(4014), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3346), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56377] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3517), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56497] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(463), 1, + anon_sym_QMARK, + ACTIONS(465), 1, + anon_sym_AMP, + ACTIONS(467), 1, + anon_sym_PIPE, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(497), 1, + anon_sym_keyof, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, + anon_sym_new, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3748), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4224), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3378), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56617] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, + anon_sym_new, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3974), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4234), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1511), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56737] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2697), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56857] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(746), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(740), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(744), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [56929] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, + anon_sym_new, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3974), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4234), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1512), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57049] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3089), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57169] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2749), 1, + anon_sym_in, + ACTIONS(2752), 1, + anon_sym_of, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [57259] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_new, + ACTIONS(2791), 1, + anon_sym_QMARK, + ACTIONS(2793), 1, + anon_sym_AMP, + ACTIONS(2795), 1, + anon_sym_PIPE, + ACTIONS(2801), 1, + anon_sym_DQUOTE, + ACTIONS(2803), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_number, + ACTIONS(2807), 1, + sym_this, + ACTIONS(2811), 1, + sym_readonly, + ACTIONS(2813), 1, + anon_sym_infer, + ACTIONS(2815), 1, + anon_sym_keyof, + ACTIONS(2817), 1, + anon_sym_LBRACE_PIPE, + STATE(2645), 1, + sym_nested_type_identifier, + STATE(2797), 1, + sym__tuple_type_body, + STATE(4002), 1, + sym_type_parameters, + STATE(4125), 1, + sym_nested_identifier, + STATE(4217), 1, + sym_formal_parameters, + ACTIONS(2797), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2809), 2, + sym_true, + sym_false, + STATE(2801), 2, + sym_string, + sym__number, + ACTIONS(2799), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2862), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2796), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57379] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + anon_sym_SQUOTE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + anon_sym_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(2879), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2883), 1, + anon_sym_new, + ACTIONS(2885), 1, + anon_sym_QMARK, + ACTIONS(2887), 1, + anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, + sym_number, + ACTIONS(2897), 1, + sym_this, + ACTIONS(2901), 1, + sym_readonly, + ACTIONS(2903), 1, + anon_sym_infer, + ACTIONS(2905), 1, + anon_sym_keyof, + ACTIONS(2907), 1, + anon_sym_LBRACE_PIPE, + STATE(1443), 1, + sym_nested_type_identifier, + STATE(1498), 1, + sym__tuple_type_body, + STATE(3974), 1, + sym_type_parameters, + STATE(4063), 1, + sym_nested_identifier, + STATE(4234), 1, + sym_formal_parameters, + ACTIONS(2891), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2899), 2, + sym_true, + sym_false, + STATE(1495), 2, + sym_string, + sym__number, + ACTIONS(2893), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2154), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(1461), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57499] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(3307), 1, + sym_this, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_typeof, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(611), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3741), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(547), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57619] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2670), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57739] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_typeof, + ACTIONS(3335), 1, + anon_sym_new, + ACTIONS(3337), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_keyof, + STATE(564), 1, + sym__tuple_type_body, + STATE(611), 1, + sym_nested_type_identifier, + STATE(3789), 1, + sym_type_parameters, + STATE(4012), 1, + sym_formal_parameters, + STATE(4018), 1, + sym_nested_identifier, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(560), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57859] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 1, + anon_sym_STAR, + ACTIONS(495), 1, + anon_sym_infer, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(533), 1, + anon_sym_QMARK, + ACTIONS(535), 1, + anon_sym_AMP, + ACTIONS(537), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_keyof, + ACTIONS(629), 1, + anon_sym_typeof, + ACTIONS(643), 1, + anon_sym_new, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(663), 1, + sym_number, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + sym_readonly, + ACTIONS(1924), 1, + anon_sym_LPAREN, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + sym_this, + STATE(564), 1, + sym__tuple_type_body, + STATE(2506), 1, + sym_nested_type_identifier, + STATE(3960), 1, + sym_type_parameters, + STATE(4018), 1, + sym_nested_identifier, + STATE(4123), 1, + sym_formal_parameters, + ACTIONS(667), 2, + sym_true, + sym_false, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(534), 2, + sym_string, + sym__number, + ACTIONS(657), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3134), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(562), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57979] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, + anon_sym_AMP, + ACTIONS(718), 1, + anon_sym_PIPE, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(2919), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_new, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(2933), 1, + sym_number, + ACTIONS(2939), 1, + sym_readonly, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + sym_this, + STATE(2541), 1, + sym_nested_type_identifier, + STATE(2566), 1, + sym__tuple_type_body, + STATE(3918), 1, + sym_type_parameters, + STATE(4072), 1, + sym_formal_parameters, + STATE(4099), 1, + sym_nested_identifier, + ACTIONS(2925), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2937), 2, + sym_true, + sym_false, + STATE(2597), 2, + sym_string, + sym__number, + ACTIONS(2927), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3205), 6, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2585), 14, + sym__primary_type, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58099] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_EQ, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(611), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58166] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2044), 1, + anon_sym_QMARK_DOT, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(3365), 1, + sym_call_type_arguments, + STATE(1998), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58251] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3373), 1, + anon_sym_QMARK_DOT, + STATE(3364), 1, + sym_call_type_arguments, + STATE(1992), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58336] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(744), 1, + anon_sym_EQ, + ACTIONS(752), 1, + anon_sym_LT, + ACTIONS(740), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(749), 13, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(756), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(746), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58409] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2749), 1, + anon_sym_in, + ACTIONS(2752), 1, + anon_sym_of, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58496] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2063), 1, + anon_sym_QMARK_DOT, + STATE(3441), 1, + sym_call_type_arguments, + STATE(1905), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58581] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_QMARK_DOT, + STATE(3379), 1, + sym_call_type_arguments, + STATE(1569), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58666] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, + anon_sym_EQ, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(611), 17, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58733] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3377), 1, + anon_sym_QMARK_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1938), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58818] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2034), 1, + anon_sym_QMARK_DOT, + STATE(3381), 1, + sym_call_type_arguments, + STATE(1567), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [58903] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + anon_sym_extends, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(746), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(749), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(744), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 28, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58974] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2067), 1, + anon_sym_QMARK_DOT, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_call_type_arguments, + STATE(109), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59059] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2040), 1, + anon_sym_QMARK_DOT, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_call_type_arguments, + STATE(2107), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59144] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_QMARK_DOT, + STATE(3493), 1, + sym_call_type_arguments, + STATE(1618), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59229] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2061), 1, + anon_sym_QMARK_DOT, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(3347), 1, + sym_call_type_arguments, + STATE(2104), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59314] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3379), 1, + anon_sym_QMARK_DOT, + STATE(3349), 1, + sym_call_type_arguments, + STATE(2103), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59399] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3381), 1, + anon_sym_QMARK_DOT, + STATE(3492), 1, + sym_call_type_arguments, + STATE(1616), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59484] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(746), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(740), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(744), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59555] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(749), 1, + anon_sym_DOT, + ACTIONS(1600), 1, + anon_sym_extends, + ACTIONS(3246), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2637), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(744), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 28, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59626] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(605), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3383), 1, + anon_sym_QMARK_DOT, + STATE(3404), 1, + sym_call_type_arguments, + STATE(1914), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59711] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2059), 1, + anon_sym_QMARK_DOT, + STATE(3403), 1, + sym_call_type_arguments, + STATE(1912), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59796] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + STATE(3443), 1, + sym_call_type_arguments, + STATE(1724), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59881] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(680), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_LT, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_DOT, + ACTIONS(2036), 1, + anon_sym_QMARK_DOT, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(3484), 1, + sym_call_type_arguments, + STATE(1774), 2, + sym_template_string, + sym_arguments, + ACTIONS(655), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(645), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(622), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [59966] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2575), 1, + anon_sym_in, + ACTIONS(2578), 1, + anon_sym_of, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [60053] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(744), 1, + anon_sym_EQ, + ACTIONS(752), 1, + anon_sym_LT, + ACTIONS(740), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(749), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(756), 17, + anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_BQUOTE, + ACTIONS(746), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [60126] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3154), 1, + anon_sym_STAR, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3164), 1, + anon_sym_LBRACK, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, + sym_number, + ACTIONS(3387), 1, + anon_sym_export, + ACTIONS(3391), 1, + anon_sym_async, + ACTIONS(3393), 1, + anon_sym_static, + ACTIONS(3399), 1, + sym_readonly, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3389), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3395), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3397), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3811), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2984), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3385), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [60246] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3381), 1, + anon_sym_QMARK_DOT, + STATE(3492), 1, + sym_call_type_arguments, + STATE(1616), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [60328] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + anon_sym_extends, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(746), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(749), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + ACTIONS(744), 19, + 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_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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2717), 31, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60460] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(740), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(746), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(744), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2462), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2464), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [60592] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3373), 1, + anon_sym_QMARK_DOT, + STATE(3364), 1, + sym_call_type_arguments, + STATE(1992), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [60674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2494), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2496), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [60736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2943), 1, + anon_sym_EQ, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(611), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [60802] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_QMARK_DOT, + STATE(3379), 1, + sym_call_type_arguments, + STATE(1569), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [60884] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(607), 1, + anon_sym_QMARK_DOT, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(3328), 1, + sym_call_type_arguments, + STATE(115), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [60966] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3377), 1, + anon_sym_QMARK_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1938), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [61048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2713), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [61110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(749), 1, + anon_sym_DOT, + ACTIONS(2637), 2, + anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(3246), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(744), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(756), 27, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2709), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [61240] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3383), 1, + anon_sym_QMARK_DOT, + STATE(3404), 1, + sym_call_type_arguments, + STATE(1914), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [61322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2717), 31, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61384] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3154), 1, + anon_sym_STAR, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3164), 1, + anon_sym_LBRACK, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3172), 1, + sym_number, + ACTIONS(3387), 1, + anon_sym_export, + ACTIONS(3391), 1, + anon_sym_async, + ACTIONS(3393), 1, + anon_sym_static, + ACTIONS(3399), 1, + sym_readonly, + STATE(2475), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3389), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3395), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3397), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3811), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2991), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3385), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [61504] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(740), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(746), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(744), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61574] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3401), 1, + anon_sym_QMARK_DOT, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [61656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(744), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(756), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [61718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2717), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [61780] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(740), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(746), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(744), 19, + 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_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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61850] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2947), 1, + anon_sym_EQ, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(611), 15, + 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, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(599), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [61916] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + anon_sym_extends, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(746), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(749), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + ACTIONS(744), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2703), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [62048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2729), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2731), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [62110] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(746), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(740), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(744), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 24, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2765), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [62242] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2761), 1, + anon_sym_QMARK_DOT, + STATE(3354), 1, + sym_call_type_arguments, + STATE(2077), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [62324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_EQ, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(611), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [62390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(749), 1, + anon_sym_DOT, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(3246), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(744), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(756), 27, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62458] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(749), 1, + anon_sym_DOT, + ACTIONS(1600), 1, + anon_sym_extends, + ACTIONS(2637), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3246), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(744), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62528] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3379), 1, + anon_sym_QMARK_DOT, + STATE(3349), 1, + sym_call_type_arguments, + STATE(2103), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [62610] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(749), 1, + anon_sym_DOT, + ACTIONS(1600), 1, + anon_sym_extends, + ACTIONS(3246), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2637), 4, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(744), 19, + 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_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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON, + ACTIONS(2715), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + ACTIONS(2717), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62744] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, + anon_sym_QMARK_DOT, + STATE(3410), 1, + sym_call_type_arguments, + STATE(1688), 2, + sym_template_string, + sym_arguments, + ACTIONS(611), 8, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [62826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(611), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [62891] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_EQ, + ACTIONS(2749), 1, + anon_sym_in, + ACTIONS(2752), 1, + anon_sym_of, + ACTIONS(611), 14, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [62960] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(740), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(746), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(744), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63029] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_LT, + ACTIONS(740), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(749), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(746), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(744), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(756), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63098] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_EQ, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(611), 15, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [63163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 1, + anon_sym_EQ, + ACTIONS(611), 14, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [63227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2650), 1, + anon_sym_EQ, + ACTIONS(611), 13, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [63291] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_EQ, + ACTIONS(611), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [63355] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(2749), 1, + anon_sym_in, + ACTIONS(2752), 1, + anon_sym_of, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [63421] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + anon_sym_EQ, + ACTIONS(2575), 1, + anon_sym_in, + ACTIONS(2578), 1, + anon_sym_of, + ACTIONS(611), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(609), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(599), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [63487] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3405), 1, + sym_identifier, + ACTIONS(3407), 1, + anon_sym_STAR, + ACTIONS(3411), 1, + anon_sym_LBRACE, + STATE(3820), 1, + sym_import_clause, + ACTIONS(3415), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3818), 2, + sym_string, + sym_import_require_clause, + STATE(4191), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(3409), 15, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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, + ACTIONS(3413), 22, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63562] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(595), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(599), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [63636] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3423), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3425), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3040), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [63742] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3259), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3261), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3001), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [63848] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1314), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_default, + ACTIONS(3445), 1, + anon_sym_EQ, + ACTIONS(3447), 1, + anon_sym_as, + ACTIONS(3449), 1, + anon_sym_namespace, + ACTIONS(3453), 1, + anon_sym_type, + ACTIONS(3455), 1, + anon_sym_import, + ACTIONS(3457), 1, + anon_sym_var, + ACTIONS(3459), 1, + anon_sym_let, + ACTIONS(3461), 1, + anon_sym_const, + ACTIONS(3463), 1, + anon_sym_class, + ACTIONS(3465), 1, + anon_sym_async, + ACTIONS(3467), 1, + anon_sym_function, + ACTIONS(3469), 1, + anon_sym_abstract, + ACTIONS(3471), 1, + anon_sym_declare, + ACTIONS(3473), 1, + anon_sym_module, + ACTIONS(3475), 1, + anon_sym_interface, + ACTIONS(3477), 1, + anon_sym_enum, + STATE(2501), 1, + sym_decorator, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3183), 1, + sym_internal_module, + STATE(3187), 1, + sym_function_signature, + STATE(3189), 1, + sym__declaration, + STATE(3523), 1, + sym_export_clause, + STATE(3666), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3206), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [63958] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3479), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3481), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2913), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64064] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3483), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3485), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2935), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64170] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1314), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_default, + ACTIONS(3445), 1, + anon_sym_EQ, + ACTIONS(3447), 1, + anon_sym_as, + ACTIONS(3449), 1, + anon_sym_namespace, + ACTIONS(3453), 1, + anon_sym_type, + ACTIONS(3455), 1, + anon_sym_import, + ACTIONS(3457), 1, + anon_sym_var, + ACTIONS(3459), 1, + anon_sym_let, + ACTIONS(3461), 1, + anon_sym_const, + ACTIONS(3463), 1, + anon_sym_class, + ACTIONS(3465), 1, + anon_sym_async, + ACTIONS(3467), 1, + anon_sym_function, + ACTIONS(3469), 1, + anon_sym_abstract, + ACTIONS(3471), 1, + anon_sym_declare, + ACTIONS(3473), 1, + anon_sym_module, + ACTIONS(3475), 1, + anon_sym_interface, + ACTIONS(3477), 1, + anon_sym_enum, + STATE(2501), 1, + sym_decorator, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3183), 1, + sym_internal_module, + STATE(3187), 1, + sym_function_signature, + STATE(3189), 1, + sym__declaration, + STATE(3523), 1, + sym_export_clause, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3206), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [64280] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3487), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3489), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2940), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64386] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3162), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3182), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2987), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64492] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3491), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3493), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2996), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1264), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [64653] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1314), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_default, + ACTIONS(3445), 1, + anon_sym_EQ, + ACTIONS(3447), 1, + anon_sym_as, + ACTIONS(3449), 1, + anon_sym_namespace, + ACTIONS(3453), 1, + anon_sym_type, + ACTIONS(3455), 1, + anon_sym_import, + ACTIONS(3457), 1, + anon_sym_var, + ACTIONS(3459), 1, + anon_sym_let, + ACTIONS(3461), 1, + anon_sym_const, + ACTIONS(3463), 1, + anon_sym_class, + ACTIONS(3465), 1, + anon_sym_async, + ACTIONS(3467), 1, + anon_sym_function, + ACTIONS(3469), 1, + anon_sym_abstract, + ACTIONS(3471), 1, + anon_sym_declare, + ACTIONS(3473), 1, + anon_sym_module, + ACTIONS(3475), 1, + anon_sym_interface, + ACTIONS(3477), 1, + anon_sym_enum, + STATE(2501), 1, + sym_decorator, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3183), 1, + sym_internal_module, + STATE(3187), 1, + sym_function_signature, + STATE(3189), 1, + sym__declaration, + STATE(3523), 1, + sym_export_clause, + ACTIONS(3495), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3451), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3206), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [64762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1248), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [64817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1244), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [64872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1272), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [64927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1236), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [64982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1252), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1260), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1276), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1280), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1240), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65257] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1314), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_default, + ACTIONS(3447), 1, + anon_sym_as, + ACTIONS(3449), 1, + anon_sym_namespace, + ACTIONS(3453), 1, + anon_sym_type, + ACTIONS(3455), 1, + anon_sym_import, + ACTIONS(3457), 1, + anon_sym_var, + ACTIONS(3459), 1, + anon_sym_let, + ACTIONS(3461), 1, + anon_sym_const, + ACTIONS(3463), 1, + anon_sym_class, + ACTIONS(3465), 1, + anon_sym_async, + ACTIONS(3467), 1, + anon_sym_function, + ACTIONS(3469), 1, + anon_sym_abstract, + ACTIONS(3471), 1, + anon_sym_declare, + ACTIONS(3473), 1, + anon_sym_module, + ACTIONS(3475), 1, + anon_sym_interface, + ACTIONS(3477), 1, + anon_sym_enum, + ACTIONS(3498), 1, + anon_sym_EQ, + STATE(2501), 1, + sym_decorator, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3183), 1, + sym_internal_module, + STATE(3187), 1, + sym_function_signature, + STATE(3189), 1, + sym__declaration, + STATE(3523), 1, + sym_export_clause, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3206), 12, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [65364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1256), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1054), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1052), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1056), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1052), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1268), 32, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [65586] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3500), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [65688] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(595), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + anon_sym_extends, + [65750] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3502), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [65852] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3504), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [65954] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3506), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66056] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3508), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66158] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3514), 1, + anon_sym_in, + ACTIONS(3517), 1, + anon_sym_of, + STATE(3271), 1, + sym_type_annotation, + STATE(3504), 1, + sym_call_type_arguments, + STATE(3560), 1, + sym__initializer, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(3512), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(599), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(611), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [66242] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3519), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66344] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(3525), 1, + anon_sym_in, + ACTIONS(3528), 1, + anon_sym_of, + STATE(3288), 1, + sym_type_annotation, + STATE(3504), 1, + sym_call_type_arguments, + STATE(3599), 1, + sym__initializer, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(3523), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(599), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(611), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [66428] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3530), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66530] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3532), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66632] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3534), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66734] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3536), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66836] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3538), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66938] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3540), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67040] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3542), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67142] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3544), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67244] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3546), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67346] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3548), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67448] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2555), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, - anon_sym_EQ, - ACTIONS(1239), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(961), 13, - anon_sym_as, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(595), 8, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(599), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [43343] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1941), 1, - anon_sym_QMARK, - ACTIONS(932), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(961), 10, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 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, - anon_sym_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, - [43422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_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, - ACTIONS(2484), 31, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [43484] = 9, + [67520] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(1037), 1, - anon_sym_EQ, - ACTIONS(1853), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1976), 1, - anon_sym_QMARK_DOT, - ACTIONS(961), 12, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3550), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67622] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3552), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67724] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_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(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [43558] = 3, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3554), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67826] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2391), 30, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [43620] = 32, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3556), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67928] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(2799), 1, - anon_sym_LBRACK, - ACTIONS(2803), 1, + ACTIONS(3168), 1, anon_sym_new, - ACTIONS(2805), 1, + ACTIONS(3170), 1, anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(3141), 1, + ACTIONS(3419), 1, anon_sym_export, - ACTIONS(3145), 1, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, anon_sym_async, - ACTIONS(3147), 1, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, anon_sym_static, - ACTIONS(3153), 1, + ACTIONS(3439), 1, sym_readonly, - STATE(2149), 1, + STATE(2474), 1, sym_accessibility_modifier, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2764), 1, + STATE(3063), 1, sym__call_signature, - STATE(3032), 1, + STATE(3458), 1, aux_sym_export_statement_repeat1, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(3143), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 2, + ACTIONS(3435), 2, anon_sym_get, anon_sym_set, - ACTIONS(3151), 3, + ACTIONS(3558), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2213), 3, + STATE(2542), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3325), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2531), 6, + STATE(3191), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3139), 10, + ACTIONS(3417), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -108398,434 +135294,379 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [43740] = 3, + [68030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 24, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2367), 30, + ACTIONS(595), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [43802] = 6, + anon_sym_implements, + anon_sym_extends, + [68088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(2473), 2, - anon_sym_LBRACE, - anon_sym_LT, - ACTIONS(2506), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(905), 22, + ACTIONS(1056), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(917), 27, + ACTIONS(1052), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43870] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [68143] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 24, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2534), 30, + ACTIONS(611), 23, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [43932] = 3, + anon_sym_implements, + [68212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 24, + ACTIONS(1208), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2530), 30, + ACTIONS(1206), 31, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [43994] = 9, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [68265] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(1075), 1, - anon_sym_EQ, - ACTIONS(1077), 1, - anon_sym_EQ_GT, - ACTIONS(1359), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(961), 12, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2723), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(2726), 1, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, + ACTIONS(611), 23, + anon_sym_as, + anon_sym_LBRACE, + 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, - [44068] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [68334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 24, + ACTIONS(1142), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2513), 30, + ACTIONS(1140), 31, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [44130] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [68387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 24, + ACTIONS(3560), 15, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2484), 30, + ACTIONS(3562), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [44192] = 4, + anon_sym_implements, + [68439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, - anon_sym_COLON, - ACTIONS(2482), 23, + ACTIONS(3564), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -108834,881 +135675,1082 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2484), 30, + ACTIONS(3566), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44256] = 11, + anon_sym_implements, + [68491] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2984), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68589] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3128), 1, - anon_sym_in, - ACTIONS(3157), 1, - anon_sym_COLON, - ACTIONS(585), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3571), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(1758), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(599), 11, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_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, - [44334] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2004), 1, - anon_sym_COLON, - ACTIONS(961), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [68663] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(1772), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(1770), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(599), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [44410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, + ACTIONS(611), 16, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_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, - ACTIONS(917), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [44472] = 6, + [68735] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2506), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(905), 22, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2916), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3574), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(917), 27, + ACTIONS(3576), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44540] = 10, + anon_sym_implements, + [68885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1960), 1, - anon_sym_COLON, - ACTIONS(961), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + ACTIONS(3578), 1, + anon_sym_LT, + STATE(1529), 1, + sym_type_arguments, + ACTIONS(2054), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [44616] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(901), 1, - anon_sym_extends, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(907), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(910), 4, + ACTIONS(2052), 29, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(905), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44686] = 9, + anon_sym_implements, + anon_sym_extends, + [68941] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(585), 12, - anon_sym_as, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2941), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69039] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2991), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69137] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2921), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69235] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3041), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1070), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [44760] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(1638), 1, - anon_sym_extends, - ACTIONS(2473), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2506), 3, + ACTIONS(1072), 29, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(905), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44830] = 8, + anon_sym_implements, + [69385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(1070), 1, anon_sym_EQ, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(585), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 23, + ACTIONS(3581), 1, + sym__automatic_semicolon, + ACTIONS(1068), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, + ACTIONS(1066), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [44902] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [69441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 24, + ACTIONS(3583), 15, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2496), 30, + ACTIONS(3403), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [44964] = 5, + anon_sym_implements, + [69493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, - anon_sym_EQ, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 15, + ACTIONS(3585), 1, + anon_sym_LT, + ACTIONS(3588), 1, + anon_sym_DOT, + STATE(1523), 1, + sym_type_arguments, + ACTIONS(2020), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(2018), 28, 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_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(571), 23, + anon_sym_implements, + anon_sym_extends, + [69551] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3588), 1, + anon_sym_DOT, + STATE(1523), 1, + sym_type_arguments, + ACTIONS(2014), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [45030] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3128), 1, - anon_sym_in, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(585), 11, + ACTIONS(2012), 28, 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_implements, + anon_sym_extends, + [69607] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_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(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + anon_sym_new, + ACTIONS(3170), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [45108] = 7, + ACTIONS(3419), 1, + anon_sym_export, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, + anon_sym_async, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, + anon_sym_static, + ACTIONS(3439), 1, + sym_readonly, + STATE(2474), 1, + sym_accessibility_modifier, + STATE(2501), 1, + sym_decorator, + STATE(2611), 1, + sym_formal_parameters, + STATE(3063), 1, + sym__call_signature, + STATE(3458), 1, + aux_sym_export_statement_repeat1, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(3435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3191), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3417), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69705] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_extends, - ACTIONS(2473), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(907), 3, - anon_sym_QMARK, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3590), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3593), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(910), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - ACTIONS(905), 19, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(2052), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(599), 11, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + anon_sym_as, 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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45178] = 3, + [69779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 23, + ACTIONS(3596), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -109717,196 +136759,203 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(2484), 31, + ACTIONS(3598), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45240] = 9, + anon_sym_implements, + [69831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, + ACTIONS(3600), 15, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(961), 12, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3602), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + anon_sym_implements, + [69883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3604), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + 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(3606), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [45314] = 32, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [69935] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2789), 1, - anon_sym_STAR, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(2799), 1, - anon_sym_LBRACK, - ACTIONS(2803), 1, + ACTIONS(3168), 1, anon_sym_new, - ACTIONS(2805), 1, + ACTIONS(3170), 1, anon_sym_DASH, - ACTIONS(2807), 1, - sym_number, - ACTIONS(3141), 1, + ACTIONS(3419), 1, anon_sym_export, - ACTIONS(3145), 1, + ACTIONS(3421), 1, + anon_sym_STAR, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3429), 1, anon_sym_async, - ACTIONS(3147), 1, + ACTIONS(3431), 1, + sym_number, + ACTIONS(3433), 1, anon_sym_static, - ACTIONS(3153), 1, + ACTIONS(3439), 1, sym_readonly, - STATE(2149), 1, + STATE(2474), 1, sym_accessibility_modifier, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2764), 1, + STATE(3063), 1, sym__call_signature, - STATE(3032), 1, + STATE(3458), 1, aux_sym_export_statement_repeat1, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(3143), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 2, + ACTIONS(3435), 2, anon_sym_get, anon_sym_set, - ACTIONS(3151), 3, + ACTIONS(3437), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2213), 3, + STATE(2542), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3325), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2547), 6, + STATE(3037), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3139), 10, + ACTIONS(3417), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -109917,176 +136966,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [45434] = 12, + [70033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2451), 1, - anon_sym_LT, - ACTIONS(2454), 1, - anon_sym_DOT, - STATE(320), 1, + STATE(1529), 1, sym_type_arguments, - ACTIONS(567), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(569), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 19, + ACTIONS(1800), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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_AMP, + 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, - [45514] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(910), 1, - anon_sym_DOT, - ACTIONS(1638), 1, - anon_sym_extends, - ACTIONS(2506), 3, + ACTIONS(1798), 29, + 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, - ACTIONS(2473), 4, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45584] = 5, + anon_sym_implements, + anon_sym_extends, + [70087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, - anon_sym_EQ, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(571), 22, + ACTIONS(1142), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110094,63 +137027,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [45650] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2919), 1, - anon_sym_EQ, - ACTIONS(585), 13, + ACTIONS(1140), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + anon_sym_extends, + [70138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3608), 1, + anon_sym_LBRACK, + ACTIONS(1858), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110158,190 +137077,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [45722] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(910), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(901), 3, + ACTIONS(1856), 28, + 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_extends, - ACTIONS(907), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45792] = 7, + anon_sym_implements, + anon_sym_extends, + [70191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(910), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(901), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(907), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 19, + ACTIONS(1274), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - 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_AMP, + 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, - ACTIONS(917), 26, + ACTIONS(1272), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45862] = 9, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [70242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2073), 1, anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_EQ, - ACTIONS(3013), 1, - anon_sym_EQ_GT, - ACTIONS(585), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + ACTIONS(1602), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110349,181 +137174,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [45936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 24, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1600), 28, + anon_sym_as, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, anon_sym_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, - ACTIONS(2492), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [45998] = 8, + anon_sym_implements, + anon_sym_extends, + [70295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(585), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + ACTIONS(1250), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_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, - [46069] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 1, - anon_sym_EQ, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 15, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1248), 28, sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(571), 22, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [70346] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + anon_sym_DOT, + STATE(1632), 1, + sym_statement_block, + ACTIONS(1060), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110531,62 +137275,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46134] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_EQ, - ACTIONS(585), 12, - sym__automatic_semicolon, + ACTIONS(1058), 26, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + anon_sym_implements, + [70403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1632), 1, + sym_statement_block, + ACTIONS(1060), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110594,448 +137324,350 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46205] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2521), 1, - anon_sym_in, - ACTIONS(2524), 1, - anon_sym_of, - ACTIONS(585), 10, + ACTIONS(1058), 27, 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_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + anon_sym_implements, + [70458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46282] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(1909), 1, - anon_sym_in, - ACTIONS(3121), 1, - anon_sym_of, - ACTIONS(961), 10, + ACTIONS(1244), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 21, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [70509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46359] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_LT, - ACTIONS(901), 2, + ACTIONS(1252), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(910), 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(907), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_QMARK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_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, - ACTIONS(917), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46428] = 5, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [70560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(585), 15, + ACTIONS(3581), 1, + sym__automatic_semicolon, + ACTIONS(1068), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1066), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(571), 22, + anon_sym_implements, + [70613] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + anon_sym_extends, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2685), 1, + anon_sym_QMARK, + ACTIONS(3614), 1, + anon_sym_EQ, + ACTIONS(3616), 1, + anon_sym_RPAREN, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2674), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3593), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_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, - [46493] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_EQ_GT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3123), 1, - anon_sym_in, - ACTIONS(3126), 1, - anon_sym_of, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + [70692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46570] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(947), 1, - anon_sym_QMARK_DOT, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(2012), 1, - anon_sym_in, - ACTIONS(3159), 1, - anon_sym_of, - ACTIONS(961), 10, + ACTIONS(1280), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 21, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [70743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1644), 1, + sym_statement_block, + ACTIONS(1060), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46647] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(585), 12, + ACTIONS(1058), 27, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + [70798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111043,190 +137675,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46718] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3123), 1, - anon_sym_in, - ACTIONS(3126), 1, - anon_sym_of, - ACTIONS(585), 10, + ACTIONS(1206), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + anon_sym_implements, + anon_sym_extends, + [70849] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_LBRACE, + ACTIONS(3622), 1, + anon_sym_DOT, + STATE(1644), 1, + sym_statement_block, + ACTIONS(1060), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46792] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2521), 1, - anon_sym_in, - ACTIONS(2524), 1, - anon_sym_of, - ACTIONS(585), 10, + ACTIONS(1058), 26, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + [70906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46866] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(1240), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1855), 1, anon_sym_DOT, - ACTIONS(1976), 1, anon_sym_QMARK_DOT, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [70957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 1, + sym__automatic_semicolon, + ACTIONS(1078), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111234,493 +137824,414 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [46938] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(1076), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1855), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2027), 1, anon_sym_QMARK_DOT, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + anon_sym_implements, + [71010] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, + anon_sym_BQUOTE, + ACTIONS(3626), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [47010] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(3123), 1, - anon_sym_in, - ACTIONS(3126), 1, - anon_sym_of, - ACTIONS(585), 13, + ACTIONS(611), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [71079] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + ACTIONS(3628), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [47078] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(2521), 1, - anon_sym_in, - ACTIONS(2524), 1, - anon_sym_of, - ACTIONS(585), 13, + ACTIONS(611), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 21, + [71148] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [47146] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(595), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1855), 1, anon_sym_DOT, - ACTIONS(2033), 1, anon_sym_QMARK_DOT, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + anon_sym_extends, + [71203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [47218] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - ACTIONS(1853), 1, + ACTIONS(1276), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1855), 1, anon_sym_DOT, - ACTIONS(2025), 1, anon_sym_QMARK_DOT, - ACTIONS(961), 10, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(951), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(928), 22, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [71254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LT, + ACTIONS(742), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [47290] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(581), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(585), 10, + ACTIONS(740), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + anon_sym_implements, + anon_sym_extends, + [71307] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(3633), 1, + anon_sym_EQ, + ACTIONS(3635), 1, + anon_sym_in, + ACTIONS(3638), 1, + anon_sym_of, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [47359] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2541), 1, - anon_sym_QMARK_DOT, - ACTIONS(585), 10, + ACTIONS(611), 19, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + [71380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + 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(1256), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_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, - [47428] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2964), 1, - anon_sym_QMARK_DOT, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [71431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1846), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111728,60 +138239,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, - [47497] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_EQ, - ACTIONS(575), 1, + ACTIONS(1844), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2462), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2471), 1, anon_sym_QMARK_DOT, - ACTIONS(585), 10, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(583), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(571), 22, + anon_sym_implements, + anon_sym_extends, + [71482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111789,47 +138287,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_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, + ACTIONS(1836), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [47566] = 12, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [71533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(3161), 1, - sym_identifier, - ACTIONS(3163), 1, + ACTIONS(1854), 14, anon_sym_STAR, - ACTIONS(3167), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_import_clause, - ACTIONS(3171), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3388), 2, - sym_string, - sym_import_require_clause, - STATE(3498), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(3165), 15, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -111843,13 +138342,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3169), 22, - sym__automatic_semicolon, + ACTIONS(1852), 29, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -111864,881 +138366,281 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47641] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(2947), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2949), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2569), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [47747] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1339), 1, - anon_sym_LBRACE, - ACTIONS(3193), 1, - anon_sym_STAR, - ACTIONS(3195), 1, - anon_sym_default, - ACTIONS(3197), 1, - anon_sym_EQ, - ACTIONS(3199), 1, - anon_sym_as, - ACTIONS(3201), 1, - anon_sym_namespace, - ACTIONS(3205), 1, - anon_sym_type, - ACTIONS(3207), 1, - anon_sym_import, - ACTIONS(3209), 1, - anon_sym_var, - ACTIONS(3211), 1, - anon_sym_let, - ACTIONS(3213), 1, - anon_sym_const, - ACTIONS(3215), 1, - anon_sym_class, - ACTIONS(3217), 1, - anon_sym_async, - ACTIONS(3219), 1, - anon_sym_function, - ACTIONS(3221), 1, - anon_sym_abstract, - ACTIONS(3223), 1, - anon_sym_declare, - ACTIONS(3225), 1, - anon_sym_module, - ACTIONS(3227), 1, - anon_sym_interface, - ACTIONS(3229), 1, - anon_sym_enum, - STATE(2168), 1, - sym_decorator, - STATE(2659), 1, - sym_function_signature, - STATE(2686), 1, - sym_internal_module, - STATE(2693), 1, - sym__declaration, - STATE(2780), 1, - aux_sym_export_statement_repeat1, - STATE(2938), 1, - sym_export_clause, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2696), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [47857] = 30, + anon_sym_implements, + anon_sym_extends, + [71584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1339), 1, - anon_sym_LBRACE, - ACTIONS(3193), 1, + ACTIONS(1862), 14, anon_sym_STAR, - ACTIONS(3195), 1, - anon_sym_default, - ACTIONS(3197), 1, - anon_sym_EQ, - ACTIONS(3199), 1, - anon_sym_as, - ACTIONS(3201), 1, - anon_sym_namespace, - ACTIONS(3205), 1, - anon_sym_type, - ACTIONS(3207), 1, - anon_sym_import, - ACTIONS(3209), 1, - anon_sym_var, - ACTIONS(3211), 1, - anon_sym_let, - ACTIONS(3213), 1, - anon_sym_const, - ACTIONS(3215), 1, - anon_sym_class, - ACTIONS(3217), 1, - anon_sym_async, - ACTIONS(3219), 1, - anon_sym_function, - ACTIONS(3221), 1, - anon_sym_abstract, - ACTIONS(3223), 1, - anon_sym_declare, - ACTIONS(3225), 1, - anon_sym_module, - ACTIONS(3227), 1, - anon_sym_interface, - ACTIONS(3229), 1, - anon_sym_enum, - STATE(2168), 1, - sym_decorator, - STATE(2659), 1, - sym_function_signature, - STATE(2686), 1, - sym_internal_module, - STATE(2693), 1, - sym__declaration, - STATE(2780), 1, - aux_sym_export_statement_repeat1, - STATE(2938), 1, - sym_export_clause, - STATE(3090), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2696), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [47967] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3231), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3233), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2481), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [48073] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3235), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3237), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2572), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [48179] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3239), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3241), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2514), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [48285] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1339), 1, - anon_sym_LBRACE, - ACTIONS(3193), 1, - anon_sym_STAR, - ACTIONS(3195), 1, - anon_sym_default, - ACTIONS(3197), 1, - anon_sym_EQ, - ACTIONS(3199), 1, - anon_sym_as, - ACTIONS(3201), 1, - anon_sym_namespace, - ACTIONS(3205), 1, - anon_sym_type, - ACTIONS(3207), 1, - anon_sym_import, - ACTIONS(3209), 1, - anon_sym_var, - ACTIONS(3211), 1, - anon_sym_let, - ACTIONS(3213), 1, - anon_sym_const, - ACTIONS(3215), 1, - anon_sym_class, - ACTIONS(3217), 1, - anon_sym_async, - ACTIONS(3219), 1, - anon_sym_function, - ACTIONS(3221), 1, - anon_sym_abstract, - ACTIONS(3223), 1, - anon_sym_declare, - ACTIONS(3225), 1, - anon_sym_module, - ACTIONS(3227), 1, - anon_sym_interface, - ACTIONS(3229), 1, - anon_sym_enum, - STATE(2168), 1, - sym_decorator, - STATE(2659), 1, - sym_function_signature, - STATE(2686), 1, - sym_internal_module, - STATE(2693), 1, - sym__declaration, - STATE(2780), 1, - aux_sym_export_statement_repeat1, - STATE(2938), 1, - sym_export_clause, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 9, - sym__automatic_semicolon, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1860), 29, + 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_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2696), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [48395] = 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_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [71635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1339), 1, - anon_sym_LBRACE, - ACTIONS(3193), 1, + ACTIONS(1776), 14, anon_sym_STAR, - ACTIONS(3195), 1, - anon_sym_default, - ACTIONS(3197), 1, - anon_sym_EQ, - ACTIONS(3199), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1774), 29, anon_sym_as, - ACTIONS(3201), 1, - anon_sym_namespace, - ACTIONS(3205), 1, - anon_sym_type, - ACTIONS(3207), 1, - anon_sym_import, - ACTIONS(3209), 1, - anon_sym_var, - ACTIONS(3211), 1, - anon_sym_let, - ACTIONS(3213), 1, - anon_sym_const, - ACTIONS(3215), 1, - anon_sym_class, - ACTIONS(3217), 1, - anon_sym_async, - ACTIONS(3219), 1, - anon_sym_function, - ACTIONS(3221), 1, - anon_sym_abstract, - ACTIONS(3223), 1, - anon_sym_declare, - ACTIONS(3225), 1, - anon_sym_module, - ACTIONS(3227), 1, - anon_sym_interface, - ACTIONS(3229), 1, - anon_sym_enum, - STATE(2168), 1, - sym_decorator, - STATE(2659), 1, - sym_function_signature, - STATE(2686), 1, - sym_internal_module, - STATE(2693), 1, - sym__declaration, - STATE(2780), 1, - aux_sym_export_statement_repeat1, - STATE(2938), 1, - sym_export_clause, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 9, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2696), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [48505] = 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [71686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1732), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3243), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1730), 29, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3245), 2, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2556), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [48611] = 28, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [71737] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(2797), 2, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(3633), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(611), 20, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2817), 2, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2548), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [48717] = 29, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [71806] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1339), 1, - anon_sym_LBRACE, - ACTIONS(3193), 1, - anon_sym_STAR, - ACTIONS(3195), 1, - anon_sym_default, - ACTIONS(3199), 1, - anon_sym_as, - ACTIONS(3201), 1, - anon_sym_namespace, - ACTIONS(3205), 1, - anon_sym_type, - ACTIONS(3207), 1, - anon_sym_import, - ACTIONS(3209), 1, - anon_sym_var, - ACTIONS(3211), 1, - anon_sym_let, - ACTIONS(3213), 1, - anon_sym_const, - ACTIONS(3215), 1, - anon_sym_class, - ACTIONS(3217), 1, - anon_sym_async, - ACTIONS(3219), 1, - anon_sym_function, - ACTIONS(3221), 1, - anon_sym_abstract, - ACTIONS(3223), 1, - anon_sym_declare, - ACTIONS(3225), 1, - anon_sym_module, - ACTIONS(3227), 1, - anon_sym_interface, - ACTIONS(3229), 1, - anon_sym_enum, - ACTIONS(3247), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(3640), 1, anon_sym_EQ, - STATE(2168), 1, - sym_decorator, - STATE(2659), 1, - sym_function_signature, - STATE(2686), 1, - sym_internal_module, - STATE(2693), 1, - sym__declaration, - STATE(2780), 1, - aux_sym_export_statement_repeat1, - STATE(2938), 1, - sym_export_clause, - ACTIONS(3203), 9, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(611), 20, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2696), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [48824] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [71875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 15, + ACTIONS(1778), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1780), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1792), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112746,26 +138648,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1291), 32, + ACTIONS(1790), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112784,13 +138680,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [48879] = 3, + [71930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 15, + ACTIONS(1814), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112804,20 +138698,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 32, + ACTIONS(1812), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112837,12 +138728,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [48934] = 3, + [71981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1283), 15, + ACTIONS(1395), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112856,20 +138746,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1281), 32, + ACTIONS(1393), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112889,12 +138776,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [48989] = 3, + [72032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 15, + ACTIONS(1760), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112908,20 +138794,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1295), 32, + ACTIONS(1758), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112941,89 +138824,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [49044] = 30, + [72083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1339), 1, - anon_sym_LBRACE, - ACTIONS(3193), 1, + ACTIONS(1266), 15, anon_sym_STAR, - ACTIONS(3195), 1, - anon_sym_default, - ACTIONS(3197), 1, anon_sym_EQ, - ACTIONS(3199), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1264), 28, + sym__automatic_semicolon, anon_sym_as, - ACTIONS(3201), 1, - anon_sym_namespace, - ACTIONS(3205), 1, - anon_sym_type, - ACTIONS(3207), 1, - anon_sym_import, - ACTIONS(3209), 1, - anon_sym_var, - ACTIONS(3211), 1, - anon_sym_let, - ACTIONS(3213), 1, - anon_sym_const, - ACTIONS(3215), 1, - anon_sym_class, - ACTIONS(3217), 1, - anon_sym_async, - ACTIONS(3219), 1, - anon_sym_function, - ACTIONS(3221), 1, - anon_sym_abstract, - ACTIONS(3223), 1, - anon_sym_declare, - ACTIONS(3225), 1, - anon_sym_module, - ACTIONS(3227), 1, - anon_sym_interface, - ACTIONS(3229), 1, - anon_sym_enum, - STATE(2168), 1, - sym_decorator, - STATE(2659), 1, - sym_function_signature, - STATE(2686), 1, - sym_internal_module, - STATE(2693), 1, - sym__declaration, - STATE(2780), 1, - aux_sym_export_statement_repeat1, - STATE(2938), 1, - sym_export_clause, - ACTIONS(3249), 2, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3203), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_PIPE_RBRACE, - STATE(2696), 12, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [49153] = 3, + [72134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 15, + ACTIONS(1262), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -113039,20 +138891,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1277), 32, + ACTIONS(1260), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113070,14 +138918,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [49208] = 3, + anon_sym_PIPE_RBRACE, + [72185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 15, + ACTIONS(1866), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -113091,20 +138938,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1251), 32, + ACTIONS(1864), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113124,15 +138968,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [49263] = 3, + [72236] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 15, - anon_sym_STAR, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113143,21 +139004,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1303), 32, + ACTIONS(611), 20, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113173,18 +139025,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49318] = 3, + [72305] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 15, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(3640), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(3644), 1, anon_sym_in, - anon_sym_LT, + ACTIONS(3647), 1, + anon_sym_of, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113195,21 +139064,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 32, + ACTIONS(611), 19, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113225,18 +139084,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49373] = 3, + [72378] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 15, - anon_sym_STAR, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3649), 1, anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113247,21 +139120,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 32, + ACTIONS(611), 20, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113277,43 +139141,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49428] = 3, + [72447] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 15, - anon_sym_STAR, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + anon_sym_extends, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2674), 1, + anon_sym_COMMA, + ACTIONS(2681), 1, + anon_sym_COLON, + ACTIONS(2685), 1, + anon_sym_QMARK, + ACTIONS(3614), 1, anon_sym_EQ, + ACTIONS(3616), 1, + anon_sym_RPAREN, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3593), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 10, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1255), 32, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113329,15 +139204,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49483] = 3, + [72528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 15, + ACTIONS(1796), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -113351,20 +139222,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1273), 32, + ACTIONS(1794), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113379,1376 +139247,609 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [49538] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3252), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [49640] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3254), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [49742] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3256), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [49844] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3258), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [49946] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3260), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50048] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3262), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50150] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3264), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50252] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [72579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1804), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3266), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1802), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50354] = 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [72630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1238), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3268), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1236), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50456] = 27, + [72681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1826), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3270), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1824), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50558] = 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [72732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1054), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3272), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1052), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50660] = 27, + [72783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1270), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3274), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1268), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50762] = 27, + [72834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1780), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1778), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [72885] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3276), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(611), 20, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50864] = 27, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [72954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1822), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1820), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [50966] = 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1830), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3280), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [51068] = 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1736), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3282), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1734), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [51170] = 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1764), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3284), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1762), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [51272] = 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(597), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(595), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [51374] = 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [73209] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - STATE(2962), 1, - sym_type_arguments, - STATE(1176), 2, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, sym_template_string, sym_arguments, - ACTIONS(3288), 14, + ACTIONS(597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114763,15 +139864,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3290), 25, + ACTIONS(595), 24, + sym__automatic_semicolon, 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_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -114787,32 +139888,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [51437] = 8, + anon_sym_extends, + [73268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(569), 3, - anon_sym_EQ, + ACTIONS(597), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(567), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(595), 29, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_else, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - ACTIONS(571), 12, + [73319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1834), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114821,13 +139949,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 18, + ACTIONS(1832), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -114844,10 +139983,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51500] = 3, + anon_sym_implements, + anon_sym_extends, + [73370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 14, + ACTIONS(3608), 1, + anon_sym_LBRACK, + ACTIONS(1808), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114862,18 +140005,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1209), 31, - sym__automatic_semicolon, + ACTIONS(1806), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -114892,17 +140032,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [51553] = 5, + [73423] = 3, ACTIONS(3), 1, sym_comment, - STATE(2962), 1, - sym_type_arguments, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3294), 14, + ACTIONS(1850), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114917,7 +140052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3296), 28, + ACTIONS(1848), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -114946,10 +140081,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [51610] = 3, + anon_sym_extends, + [73474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1207), 14, + ACTIONS(1768), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114964,18 +140100,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 31, - sym__automatic_semicolon, + ACTIONS(1766), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -114994,31 +140128,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [51663] = 11, + [73525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - STATE(1296), 1, - sym_type_arguments, - STATE(1408), 1, - sym_arguments, - ACTIONS(2458), 13, + ACTIONS(1772), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115029,14 +140148,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 24, + ACTIONS(1770), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115054,29 +140177,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [51732] = 11, + anon_sym_extends, + [73576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - STATE(1296), 1, - sym_type_arguments, - STATE(1408), 1, - sym_arguments, - ACTIONS(2458), 13, + ACTIONS(1748), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115087,14 +140196,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 24, + ACTIONS(1746), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115112,12 +140225,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [51801] = 3, + anon_sym_extends, + [73627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3302), 15, + ACTIONS(1784), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -115131,14 +140244,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3155), 29, + ACTIONS(1782), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115161,17 +140273,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [51853] = 5, + anon_sym_extends, + [73678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 1, - anon_sym_LT, - STATE(1265), 1, - sym_type_arguments, - ACTIONS(1964), 13, + ACTIONS(1788), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115182,7 +140292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 29, + ACTIONS(1786), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -115212,38 +140322,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [51909] = 6, + [73729] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_extends, - ACTIONS(3311), 2, - anon_sym_COMMA, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(3314), 3, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(611), 20, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [73798] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, + anon_sym_QMARK_DOT, + STATE(3410), 1, + sym_call_type_arguments, + ACTIONS(597), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 12, + STATE(1688), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(599), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [73867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3309), 26, + ACTIONS(1798), 29, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -115264,12 +140483,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [51967] = 3, + anon_sym_extends, + [73918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 15, + ACTIONS(1752), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -115283,14 +140502,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3319), 29, + ACTIONS(1750), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115313,228 +140531,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [52019] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2547), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [52117] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [52215] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [52313] = 3, + anon_sym_extends, + [73969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 15, + ACTIONS(1756), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -115548,14 +140550,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 29, + ACTIONS(1754), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115578,12 +140579,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [52365] = 3, + anon_sym_extends, + [74020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 15, + ACTIONS(1842), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -115597,14 +140598,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3323), 29, + ACTIONS(1840), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115627,14 +140627,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [52417] = 5, + anon_sym_extends, + [74071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - anon_sym_EQ, - ACTIONS(3325), 1, - sym__automatic_semicolon, - ACTIONS(1065), 14, + ACTIONS(1818), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115649,7 +140646,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1063), 28, + ACTIONS(1816), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -115678,112 +140675,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [52473] = 26, + anon_sym_extends, + [74122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, + ACTIONS(1056), 1, + anon_sym_EQ_GT, + ACTIONS(1054), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1052), 27, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2531), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [52571] = 5, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [74174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 3, - anon_sym_COMMA, + ACTIONS(2562), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1763), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1067), 12, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1069), 26, + ACTIONS(3657), 23, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115797,16 +140774,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [52627] = 3, + [74234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 15, + ACTIONS(742), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -115820,14 +140794,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3329), 29, + ACTIONS(740), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115850,91 +140823,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [52679] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2555), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [52777] = 6, + [74284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_LT, - ACTIONS(3334), 1, - anon_sym_DOT, - STATE(1269), 1, - sym_type_arguments, - ACTIONS(1926), 13, + ACTIONS(1146), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -115945,7 +140841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1924), 28, + ACTIONS(1144), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -115955,6 +140851,7 @@ static 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, @@ -115973,46 +140870,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [52835] = 10, + [74334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(3668), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3665), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LT, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - STATE(1296), 1, - sym_type_arguments, - STATE(1408), 1, - sym_arguments, - ACTIONS(2458), 13, + ACTIONS(1832), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3574), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(2460), 24, + ACTIONS(3576), 20, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - 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, @@ -116029,29 +140920,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [52901] = 8, + [74390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 4, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(3671), 1, anon_sym_AMP, + ACTIONS(3673), 1, anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(3675), 1, + anon_sym_extends, + ACTIONS(2100), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, @@ -116059,14 +140942,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 24, + ACTIONS(2098), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116084,15 +140970,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [52963] = 3, + [74446] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 15, - anon_sym_STAR, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3677), 1, anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -116103,19 +141006,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3338), 29, + ACTIONS(611), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116131,112 +141025,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - [53015] = 26, + [74514] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(595), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2527), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [53113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 15, + anon_sym_extends, + ACTIONS(599), 11, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3342), 29, + ACTIONS(611), 18, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116252,17 +141082,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53165] = 3, + [74582] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 15, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(3679), 1, anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -116273,19 +141118,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 29, + ACTIONS(611), 19, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, @@ -116301,15 +141138,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [53217] = 4, + [74650] = 3, ACTIONS(3), 1, sym_comment, - STATE(1265), 1, - sym_type_arguments, - ACTIONS(1759), 14, + ACTIONS(3574), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -116323,16 +141157,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 29, + ACTIONS(3576), 27, + sym__automatic_semicolon, 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, @@ -116351,95 +141185,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [53271] = 26, + [74700] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_new, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3175), 1, - anon_sym_export, - ACTIONS(3177), 1, - anon_sym_STAR, - ACTIONS(3179), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_async, - ACTIONS(3183), 1, - sym_number, - ACTIONS(3185), 1, - anon_sym_static, - ACTIONS(3191), 1, - sym_readonly, - STATE(2148), 1, - sym_accessibility_modifier, - STATE(2168), 1, - sym_decorator, - STATE(2290), 1, - sym_formal_parameters, - STATE(2764), 1, - sym__call_signature, - STATE(3032), 1, - aux_sym_export_statement_repeat1, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(3187), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2208), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2589), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3173), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [53369] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, + ACTIONS(2597), 1, anon_sym_DOT, - STATE(1269), 1, - sym_type_arguments, - ACTIONS(1920), 14, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3684), 1, + anon_sym_COLON, + ACTIONS(3686), 1, + anon_sym_LT, + ACTIONS(3690), 1, + anon_sym_QMARK, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -116447,17 +141222,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1918), 28, + ACTIONS(611), 19, + sym__automatic_semicolon, 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_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116473,14 +141242,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [53425] = 3, + [74770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 14, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -116494,16 +141270,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 29, + ACTIONS(595), 22, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -116521,100 +141291,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [53476] = 23, + anon_sym_LBRACE_PIPE, + [74828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1088), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3354), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 7, + ACTIONS(1090), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [53567] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [74878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(567), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(571), 12, + ACTIONS(3604), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -116622,13 +141353,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 18, + ACTIONS(3606), 27, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116645,12 +141387,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53628] = 4, + [74928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_DOT, - ACTIONS(1640), 14, + ACTIONS(1098), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116665,7 +141405,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1638), 28, + ACTIONS(1100), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -116675,6 +141415,7 @@ static 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, @@ -116693,21 +141434,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [53681] = 6, + [74978] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(569), 14, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3693), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -116718,15 +141470,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 26, + ACTIONS(611), 19, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116742,17 +141489,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [53738] = 5, + [75046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3376), 1, - anon_sym_PIPE, - ACTIONS(2002), 12, + ACTIONS(1124), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116761,11 +141502,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(2000), 29, + ACTIONS(1126), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -116794,81 +141537,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [53793] = 25, + [75096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3380), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1056), 2, anon_sym_COLON, - anon_sym_RBRACK, - [53888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1803), 14, + anon_sym_EQ_GT, + ACTIONS(1054), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116883,16 +141558,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 29, + ACTIONS(1052), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -116911,12 +141584,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [53939] = 3, + [75148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 14, + ACTIONS(3695), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116931,7 +141603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 29, + ACTIONS(3697), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -116960,11 +141632,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [53990] = 3, + [75198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(1114), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116979,7 +141650,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 29, + ACTIONS(1116), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117008,17 +141679,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [54041] = 6, + [75248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3376), 1, - anon_sym_PIPE, - ACTIONS(3386), 1, - anon_sym_extends, - ACTIONS(1998), 12, + ACTIONS(3699), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117027,11 +141691,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1996), 28, + ACTIONS(3701), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117060,10 +141726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [54098] = 3, + [75298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 14, + ACTIONS(1108), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117078,7 +141744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 29, + ACTIONS(1106), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117107,17 +141773,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [54149] = 5, + [75348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1751), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1815), 12, + ACTIONS(1152), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117126,11 +141785,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1813), 27, + ACTIONS(1154), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117138,6 +141799,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -117158,11 +141820,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [54204] = 3, + [75398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 14, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -117176,16 +141844,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 29, + ACTIONS(595), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -117204,60 +141867,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [54255] = 3, + anon_sym_LBRACE_PIPE, + [75452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1825), 29, - anon_sym_as, + ACTIONS(3709), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [54306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 14, + ACTIONS(3703), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117272,16 +141895,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 29, + ACTIONS(3706), 21, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -117300,13 +141917,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [54357] = 3, + [75504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 14, + ACTIONS(3564), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -117320,16 +141936,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 29, + ACTIONS(3566), 27, + sym__automatic_semicolon, 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, @@ -117348,12 +141964,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [54408] = 3, + [75554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(599), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117368,7 +141982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 29, + ACTIONS(611), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117397,11 +142011,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [54459] = 3, + [75604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 14, + ACTIONS(3711), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117416,7 +142029,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1731), 29, + ACTIONS(3713), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117445,17 +142058,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [54510] = 6, + [75654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3376), 1, - anon_sym_PIPE, - ACTIONS(3386), 1, - anon_sym_extends, - ACTIONS(1994), 12, + ACTIONS(3715), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117464,11 +142070,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1992), 28, + ACTIONS(3717), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117497,10 +142105,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [54567] = 3, + [75704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 14, + ACTIONS(3719), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117515,7 +142123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 29, + ACTIONS(3721), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -117544,11 +142152,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [54618] = 3, + [75754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 14, + ACTIONS(3671), 1, + anon_sym_AMP, + ACTIONS(3673), 1, + anon_sym_PIPE, + ACTIONS(3675), 1, + anon_sym_extends, + ACTIONS(3723), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117557,20 +142170,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1773), 29, + ACTIONS(3725), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -117592,12 +142202,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [54669] = 3, + [75810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 14, + ACTIONS(3583), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -117611,16 +142221,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 29, + ACTIONS(3403), 27, + sym__automatic_semicolon, 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, @@ -117639,32 +142249,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [54720] = 12, + [75860] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3392), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 13, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117678,13 +142285,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 19, + ACTIONS(611), 19, 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, @@ -117698,82 +142303,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54789] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3395), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [54884] = 3, + [75928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 15, + ACTIONS(3729), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -117787,15 +142323,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1277), 28, - sym__automatic_semicolon, + ACTIONS(3731), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -117814,12 +142351,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [54935] = 3, + anon_sym_implements, + [75978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 14, + ACTIONS(1240), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3739), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3733), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117834,16 +142381,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1209), 29, + ACTIONS(3736), 19, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -117861,15 +142401,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [54986] = 3, + [76032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 15, + ACTIONS(3741), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -117883,15 +142419,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1303), 28, - sym__automatic_semicolon, + ACTIONS(3743), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -117910,12 +142447,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [55037] = 3, + anon_sym_implements, + [76082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 14, + ACTIONS(1264), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3751), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3745), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117930,16 +142477,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 29, + ACTIONS(3748), 19, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -117957,13 +142497,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55088] = 3, + [76136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 14, + ACTIONS(3759), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3753), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117978,16 +142523,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 29, + ACTIONS(3756), 21, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -118006,16 +142545,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55139] = 3, + [76188] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3761), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -118026,18 +142581,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 29, + ACTIONS(611), 19, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118053,13 +142601,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55190] = 3, + [76256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 14, + ACTIONS(3763), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118074,7 +142619,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 29, + ACTIONS(3765), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -118103,11 +142648,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [55241] = 3, + [76306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 14, + ACTIONS(3773), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3767), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118122,16 +142674,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1689), 29, + ACTIONS(3770), 21, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -118150,16 +142696,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55292] = 3, + [76358] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_QMARK_DOT, + ACTIONS(3775), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -118170,18 +142732,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 29, + ACTIONS(611), 19, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118197,13 +142752,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55343] = 3, + [76426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 14, + ACTIONS(3783), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3777), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118218,16 +142778,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1785), 29, + ACTIONS(3780), 21, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -118246,12 +142800,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55394] = 3, + [76478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(3785), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118266,7 +142818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1781), 29, + ACTIONS(3787), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -118295,17 +142847,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [55445] = 4, + [76528] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1831), 14, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3789), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -118316,17 +142883,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 28, + ACTIONS(611), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118342,14 +142902,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [55498] = 3, + [76596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 14, + ACTIONS(1070), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -118363,16 +142922,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 29, + ACTIONS(1072), 27, + sym__automatic_semicolon, 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, @@ -118391,12 +142950,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55549] = 3, + [76646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 14, + ACTIONS(1252), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3783), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3777), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118411,16 +142979,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 29, + ACTIONS(3780), 19, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -118438,15 +142999,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [55600] = 4, + [76700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, - anon_sym_DOT, - ACTIONS(569), 14, + ACTIONS(3791), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118461,7 +143017,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 28, + ACTIONS(3793), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -118471,6 +143027,7 @@ static 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, @@ -118489,85 +143046,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [55653] = 25, + [76750] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3795), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3401), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [55748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 14, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -118578,18 +143082,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 29, + ACTIONS(611), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118605,15 +143101,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [55799] = 4, + [76818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3325), 1, - sym__automatic_semicolon, - ACTIONS(1065), 14, + ACTIONS(3723), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118628,7 +143120,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1063), 28, + ACTIONS(3725), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -118657,158 +143149,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [55852] = 25, + [76868] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2685), 1, anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(3614), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, + ACTIONS(2674), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(599), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_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(3403), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [55947] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [76940] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3797), 1, + anon_sym_EQ, + ACTIONS(3803), 1, anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3800), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(599), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_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(3405), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [77012] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3806), 1, + anon_sym_EQ, + ACTIONS(3812), 1, + anon_sym_QMARK, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(3809), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [56042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1275), 15, + ACTIONS(599), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -118816,17 +143306,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1273), 28, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118842,17 +143323,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [56093] = 5, + [77084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, - anon_sym_LPAREN, - STATE(1356), 1, - sym_arguments, - ACTIONS(3407), 14, + ACTIONS(742), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118867,15 +143341,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3409), 27, + ACTIONS(740), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -118894,11 +143370,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [56148] = 3, + [77134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1207), 14, + ACTIONS(1268), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3821), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3815), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118913,16 +143399,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 29, + ACTIONS(3818), 19, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -118940,13 +143419,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56199] = 3, + [77188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 14, + ACTIONS(1260), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3773), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3767), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118961,16 +143448,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 29, + ACTIONS(3770), 19, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -118988,15 +143468,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56250] = 4, + [77242] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, - anon_sym_LBRACK, - ACTIONS(1741), 14, + ACTIONS(1244), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3829), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3823), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119011,15 +143497,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 28, + ACTIONS(3826), 19, 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -119037,15 +143517,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56303] = 3, + [77296] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -119058,7 +143545,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1735), 29, + ACTIONS(3833), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -119066,10 +143553,7 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -119083,19 +143567,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [56354] = 3, + [77356] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 14, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3835), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -119106,18 +143605,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 29, + ACTIONS(611), 19, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -119133,15 +143625,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56405] = 4, + [77424] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(903), 13, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2726), 1, + anon_sym_BQUOTE, + ACTIONS(3837), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119155,18 +143661,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(901), 29, + ACTIONS(611), 19, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -119182,14 +143681,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56458] = 3, + [77492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 14, + ACTIONS(3600), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -119203,16 +143700,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 29, + ACTIONS(3602), 27, + sym__automatic_semicolon, 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, @@ -119231,36 +143728,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56509] = 13, + [77542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3392), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 12, + ACTIONS(3839), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -119271,13 +143746,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 19, + ACTIONS(3841), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -119291,14 +143771,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [56580] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [77592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, - anon_sym_LBRACE, - STATE(1417), 1, - sym_statement_block, - ACTIONS(1059), 14, + ACTIONS(3843), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119313,8 +143793,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1057), 27, + ACTIONS(3845), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -119341,16 +143822,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [56635] = 6, + [77642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(1276), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3759), 7, anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_DOT, - STATE(1417), 1, - sym_statement_block, - ACTIONS(1059), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3753), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119365,15 +143851,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1057), 26, + ACTIONS(3756), 19, 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, @@ -119390,35 +143871,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [56692] = 13, + [77696] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3392), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(2954), 1, + anon_sym_BQUOTE, + ACTIONS(3847), 1, + anon_sym_EQ, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 12, + ACTIONS(599), 14, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -119430,13 +143908,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 19, + ACTIONS(611), 18, 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, @@ -119450,11 +143924,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [56763] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [77764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 14, + ACTIONS(3560), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -119468,16 +143946,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 29, + ACTIONS(3562), 27, + sym__automatic_semicolon, 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, @@ -119496,16 +143974,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [56814] = 5, + [77814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, - anon_sym_LPAREN, - STATE(1355), 1, - sym_arguments, - ACTIONS(3418), 14, + ACTIONS(3849), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119520,11 +143992,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3420), 27, + ACTIONS(3851), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -119548,35 +144021,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [56869] = 13, + [77864] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2665), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(2954), 1, + anon_sym_BQUOTE, + ACTIONS(3853), 1, anon_sym_EQ, - ACTIONS(3426), 1, - anon_sym_in, - ACTIONS(3429), 1, - anon_sym_of, - STATE(2658), 1, - sym_type_annotation, - STATE(3220), 1, - sym__initializer, - ACTIONS(3424), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(571), 13, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -119587,9 +144058,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(611), 18, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -119605,35 +144076,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [56940] = 13, + anon_sym_LBRACE_PIPE, + [77932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(3431), 1, - anon_sym_EQ, - ACTIONS(3435), 1, - anon_sym_in, - ACTIONS(3438), 1, - anon_sym_of, - STATE(2657), 1, - sym_type_annotation, - STATE(3223), 1, - sym__initializer, - ACTIONS(3433), 3, - sym__automatic_semicolon, + ACTIONS(1280), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3709), 7, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(571), 13, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3703), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -119645,9 +144106,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(3706), 19, 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, @@ -119663,14 +144126,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [57011] = 4, + [77986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1271), 14, + ACTIONS(3855), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119685,13 +144144,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 27, + ACTIONS(3857), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -119713,80 +144173,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [57064] = 25, + [78036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3859), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3861), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_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(3442), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [57159] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 14, + ACTIONS(3863), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119801,7 +144238,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1707), 29, + ACTIONS(3865), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -119830,107 +144267,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [57210] = 25, + [78136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3444), 5, + ACTIONS(3829), 7, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [57305] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 12, + anon_sym_implements, + ACTIONS(3823), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -119941,35 +144293,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 18, + ACTIONS(3826), 21, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - 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, - [57378] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3376), 1, - anon_sym_PIPE, - ACTIONS(3386), 1, - anon_sym_extends, - ACTIONS(3449), 12, + ACTIONS(3821), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_implements, + ACTIONS(3815), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119978,20 +144335,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3451), 28, + ACTIONS(3818), 21, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -120010,13 +144363,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [57435] = 3, + [78240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 15, + ACTIONS(1134), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -120030,15 +144381,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1295), 28, - sym__automatic_semicolon, + ACTIONS(1136), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -120057,178 +144409,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [57486] = 26, + anon_sym_implements, + [78290] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3455), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57583] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 7, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 15, + ACTIONS(611), 20, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57662] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [78356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1735), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3457), 1, - anon_sym_COMMA, - ACTIONS(3460), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(1214), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 24, + ACTIONS(1216), 28, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120246,28 +144512,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [57725] = 9, + [78406] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1962), 1, - anon_sym_extends, - ACTIONS(2449), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3463), 1, - anon_sym_COMMA, - ACTIONS(3466), 3, - anon_sym_GT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(1770), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(1772), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(571), 11, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, @@ -120275,14 +144550,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 24, + ACTIONS(611), 18, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120298,12 +144569,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [57788] = 3, + [78476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 15, + ACTIONS(3596), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -120319,14 +144588,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 28, + ACTIONS(3598), 27, sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -120346,14 +144616,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [57839] = 4, + [78526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, - sym__automatic_semicolon, - ACTIONS(1177), 14, + ACTIONS(3867), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120368,7 +144634,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1175), 28, + ACTIONS(3869), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -120397,14 +144663,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [57892] = 5, + [78576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1493), 1, - sym_statement_block, - ACTIONS(1059), 14, + ACTIONS(3871), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120419,16 +144681,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1057), 27, - sym__automatic_semicolon, + ACTIONS(3873), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -120447,16 +144709,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57947] = 6, + anon_sym_implements, + [78626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - ACTIONS(3473), 1, - anon_sym_DOT, - STATE(1493), 1, - sym_statement_block, - ACTIONS(1059), 14, + ACTIONS(3875), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120471,16 +144728,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1057), 26, - sym__automatic_semicolon, + ACTIONS(3877), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120498,225 +144756,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58004] = 19, + anon_sym_implements, + [78676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1162), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3354), 3, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 10, + ACTIONS(1164), 28, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [58087] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3354), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_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(3346), 9, - anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3751), 7, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [58174] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3446), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + anon_sym_implements, + ACTIONS(3745), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 9, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 15, + ACTIONS(3748), 21, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - 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, - [58251] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78778] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3446), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 12, + ACTIONS(3879), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -120727,10 +144876,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 19, + ACTIONS(3881), 25, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, @@ -120747,82 +144898,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58322] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3475), 5, + anon_sym_BQUOTE, + anon_sym_implements, + [78834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3739), 7, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [58417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 15, + anon_sym_implements, + ACTIONS(3733), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -120836,14 +144928,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1291), 28, - sym__automatic_semicolon, + ACTIONS(3736), 21, 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, @@ -120863,14 +144950,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [58468] = 3, + [78886] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 15, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -120884,17 +144977,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1255), 28, - sym__automatic_semicolon, + ACTIONS(3657), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120908,227 +144999,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [58519] = 25, + anon_sym_implements, + [78944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1182), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3477), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [58614] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3479), 5, + ACTIONS(1184), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [58709] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_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(3481), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [58804] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [78994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 15, + ACTIONS(1172), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121142,15 +145066,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1251), 28, - sym__automatic_semicolon, + ACTIONS(1174), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -121169,254 +145094,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [58855] = 25, + anon_sym_implements, + [79044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3883), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3483), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [58950] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3485), 5, + ACTIONS(3885), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [59045] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_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(3487), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [59140] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(1789), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1791), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(1230), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 24, + ACTIONS(1232), 28, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -121434,12 +145189,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [59201] = 3, + [79144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 15, + ACTIONS(1200), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121453,15 +145207,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 28, - sym__automatic_semicolon, + ACTIONS(1202), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -121480,12 +145235,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [59252] = 3, + anon_sym_implements, + [79194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1283), 15, + ACTIONS(1764), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1762), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1070), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -121495,21 +145260,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1281), 28, - sym__automatic_semicolon, + ACTIONS(1072), 20, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -121528,14 +145285,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [59303] = 3, + [79248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 15, + ACTIONS(1190), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121549,15 +145303,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 28, - sym__automatic_semicolon, + ACTIONS(1188), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -121576,154 +145331,118 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [59354] = 25, + anon_sym_implements, + [79298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(3671), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(3673), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(2108), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2106), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_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(3489), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [59449] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [79352] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1758), 1, + anon_sym_extends, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_RPAREN, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3571), 2, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3491), 1, - anon_sym_RPAREN, - ACTIONS(3493), 1, - anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - STATE(3724), 1, - sym_type_annotation, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, + ACTIONS(599), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59549] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 14, + ACTIONS(1078), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121738,7 +145457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3497), 28, + ACTIONS(1076), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -121767,53 +145486,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [59599] = 17, + [79474] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, + ACTIONS(2601), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, + anon_sym_BQUOTE, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 3, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 7, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 14, + ACTIONS(611), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121821,17 +145528,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59677] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 14, + ACTIONS(1082), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121846,7 +145559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 28, + ACTIONS(1080), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -121875,111 +145588,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [59727] = 28, + [79590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1224), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1222), 28, anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3493), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3654), 1, - sym_type_annotation, - ACTIONS(3358), 2, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59827] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [79640] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3517), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3812), 1, + anon_sym_QMARK, + ACTIONS(3887), 1, + anon_sym_EQ, + ACTIONS(3890), 1, + anon_sym_COLON, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3809), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3354), 12, + ACTIONS(599), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -121987,97 +145677,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 17, - sym__automatic_semicolon, + ACTIONS(611), 16, 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, - [59899] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79714] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3803), 1, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, + ACTIONS(3892), 1, + anon_sym_EQ, + ACTIONS(3895), 1, + anon_sym_COLON, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3800), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 3, + ACTIONS(599), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3507), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3403), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59993] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 14, + ACTIONS(3897), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122092,7 +145771,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3540), 28, + ACTIONS(3899), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -122121,81 +145800,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [60043] = 25, + [79838] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2681), 1, + anon_sym_COLON, + ACTIONS(2685), 1, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3614), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(2674), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - STATE(1319), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [79912] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_EQ, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 3, + ACTIONS(599), 14, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3507), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 18, + anon_sym_as, + 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, - ACTIONS(3444), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60137] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [79980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -122208,7 +145943,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1247), 28, + ACTIONS(3657), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -122216,10 +145951,7 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -122233,14 +145965,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [60187] = 3, + [80040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 14, + ACTIONS(3409), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122255,7 +145985,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1125), 28, + ACTIONS(3413), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -122284,84 +146014,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [60237] = 25, + [80090] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3505), 1, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2665), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(3903), 1, + anon_sym_EQ, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3401), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3307), 15, + ACTIONS(599), 14, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -122372,18 +146051,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 27, - sym__automatic_semicolon, + ACTIONS(611), 18, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122399,11 +146069,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [60381] = 3, + anon_sym_LBRACE_PIPE, + [80158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 14, + ACTIONS(3671), 1, + anon_sym_AMP, + ACTIONS(3673), 1, + anon_sym_PIPE, + ACTIONS(3675), 1, + anon_sym_extends, + ACTIONS(2104), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122412,20 +146088,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1145), 28, + ACTIONS(2102), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -122447,36 +146120,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [60431] = 3, + [80214] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + anon_sym_extends, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3590), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(3593), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(599), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1155), 28, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122492,81 +146177,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [60481] = 25, + [80285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + STATE(1720), 1, + sym_type_arguments, + ACTIONS(1800), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3442), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1798), 26, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60575] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [80336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 14, + ACTIONS(1224), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122581,16 +146242,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 28, + ACTIONS(1222), 27, + sym__automatic_semicolon, 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_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122609,11 +146270,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [60625] = 3, + [80385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, + ACTIONS(1108), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122628,16 +146288,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3544), 28, + ACTIONS(1106), 27, + sym__automatic_semicolon, 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_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122656,12 +146316,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [60675] = 3, + [80434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 14, + ACTIONS(1074), 1, + sym__automatic_semicolon, + ACTIONS(1066), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1070), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122675,16 +146340,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3548), 28, + ACTIONS(1072), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122703,11 +146364,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [60725] = 3, + [80487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 14, + ACTIONS(3905), 1, + sym__automatic_semicolon, + ACTIONS(1068), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122722,16 +146384,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 28, + ACTIONS(1066), 26, 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_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122750,11 +146411,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [60775] = 3, + [80538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 14, + ACTIONS(1146), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122769,16 +146429,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1187), 28, + ACTIONS(1144), 27, + sym__automatic_semicolon, 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_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122797,84 +146457,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [60825] = 28, + [80587] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2665), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(2952), 1, + anon_sym_DOT, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 18, anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, anon_sym_COMMA, - ACTIONS(3493), 1, - anon_sym_COLON, - ACTIONS(3550), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3625), 1, - sym_type_annotation, - ACTIONS(3358), 2, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60925] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [80652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 14, + ACTIONS(1056), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122888,16 +146533,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3554), 28, + ACTIONS(1052), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122916,37 +146556,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [60975] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [80703] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1758), 1, + anon_sym_extends, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(3571), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(599), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(3558), 28, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122962,16 +146615,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61025] = 3, + [80774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 14, + ACTIONS(3907), 1, + anon_sym_LT, + STATE(1720), 1, + sym_type_arguments, + ACTIONS(2054), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -122982,16 +146636,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3562), 28, + ACTIONS(2052), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -123010,15 +146662,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [61075] = 3, + anon_sym_extends, + [80827] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 14, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2665), 1, + anon_sym_QMARK_DOT, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(2954), 1, + anon_sym_BQUOTE, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -123029,18 +146698,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1223), 28, + ACTIONS(611), 18, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123056,12 +146716,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61125] = 3, + anon_sym_LBRACE_PIPE, + [80892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 14, + ACTIONS(3910), 1, + anon_sym_DOT, + STATE(1711), 1, + sym_type_arguments, + ACTIONS(2014), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123076,17 +146739,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3487), 28, + ACTIONS(2012), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -123104,100 +146764,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [61175] = 19, + anon_sym_extends, + [80945] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(2042), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3505), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2761), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + STATE(3354), 1, + sym_call_type_arguments, + STATE(2077), 2, sym_template_string, sym_arguments, - ACTIONS(3354), 3, - anon_sym_QMARK, + ACTIONS(597), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 3, + ACTIONS(595), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(599), 10, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3507), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 9, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [61257] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81012] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + anon_sym_extends, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3590), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3593), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3485), 28, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123213,16 +146877,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61307] = 3, + [81083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 14, + ACTIONS(3910), 1, + anon_sym_DOT, + ACTIONS(3912), 1, + anon_sym_LT, + STATE(1711), 1, + sym_type_arguments, + ACTIONS(2020), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -123233,17 +146900,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3570), 28, + ACTIONS(2018), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -123261,34 +146925,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [61357] = 13, + anon_sym_extends, + [81138] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(2555), 1, anon_sym_QMARK_DOT, - ACTIONS(3572), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 12, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -123300,12 +146962,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 18, - sym__automatic_semicolon, + ACTIONS(611), 18, 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, @@ -123319,14 +146979,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61427] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81205] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2555), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -123337,18 +147017,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3483), 28, + ACTIONS(611), 18, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123364,38 +147036,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61477] = 3, + [81272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(597), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(595), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(599), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(3579), 28, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123411,38 +147091,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61527] = 3, + [81339] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1758), 1, + anon_sym_extends, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3571), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1389), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1103), 28, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123458,12 +147148,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61577] = 3, + [81410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 14, + ACTIONS(1082), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123478,16 +147166,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3583), 28, + ACTIONS(1080), 27, + sym__automatic_semicolon, 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_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -123505,31 +147193,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [61627] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, - anon_sym_LT, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - STATE(1659), 1, - sym_type_arguments, - STATE(1767), 1, - sym_arguments, - ACTIONS(2458), 13, + anon_sym_BQUOTE, + [81459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -123540,12 +147212,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 21, + ACTIONS(1188), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + 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, @@ -123562,29 +147240,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61693] = 11, + [81508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, - anon_sym_LT, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - STATE(1659), 1, - sym_type_arguments, - STATE(1767), 1, - sym_arguments, - ACTIONS(2458), 13, + ACTIONS(3919), 1, + sym_regex_flags, + ACTIONS(3915), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -123595,12 +147261,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 21, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_instanceof, + ACTIONS(3917), 24, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123613,37 +147284,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61759] = 12, + [81559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3572), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 13, + ACTIONS(1078), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -123654,12 +147305,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 18, + ACTIONS(1076), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + 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, @@ -123673,21 +147330,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61827] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [81608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - STATE(2978), 1, - sym_type_arguments, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3288), 14, + ACTIONS(3921), 1, + sym__automatic_semicolon, + ACTIONS(1078), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123702,13 +147353,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3290), 22, - sym__automatic_semicolon, + ACTIONS(1076), 26, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + 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, @@ -123725,172 +147380,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61887] = 21, + [81659] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3354), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 3, + ACTIONS(1770), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1772), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(599), 10, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3507), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 8, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [61973] = 27, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81728] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - anon_sym_COMMA, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3593), 1, - anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + ACTIONS(1772), 2, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2923), 1, - aux_sym_extends_clause_repeat1, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3587), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 14, + ACTIONS(1770), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(599), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1201), 28, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123906,112 +147492,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [62121] = 16, + [81797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(2042), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2761), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3517), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + STATE(3354), 1, + sym_call_type_arguments, + ACTIONS(597), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2077), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 3, + ACTIONS(595), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(599), 11, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 9, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 14, - sym__automatic_semicolon, + ACTIONS(611), 16, 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, - [62197] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81864] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3517), 1, + ACTIONS(2582), 1, anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3354), 12, + ACTIONS(595), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(597), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(599), 10, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3346), 18, - sym__automatic_semicolon, + ACTIONS(611), 16, 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, @@ -124025,10 +147600,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62267] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [81931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 14, + ACTIONS(1854), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124043,16 +147620,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3479), 28, + ACTIONS(1852), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -124071,153 +147646,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [62317] = 23, + anon_sym_extends, + [81979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_QMARK, - ACTIONS(3501), 1, + ACTIONS(1070), 1, + anon_sym_EQ, + ACTIONS(3905), 1, + sym__automatic_semicolon, + ACTIONS(1068), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3534), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 6, - sym__automatic_semicolon, + ACTIONS(1066), 24, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [62407] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2691), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3475), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62501] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [82031] = 5, ACTIONS(3), 1, sym_comment, - STATE(2978), 1, - sym_type_arguments, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3294), 14, + ACTIONS(1070), 1, + anon_sym_EQ, + ACTIONS(3923), 1, + sym__automatic_semicolon, + ACTIONS(1068), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124231,13 +147717,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3296), 25, - sym__automatic_semicolon, + ACTIONS(1066), 23, 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, @@ -124257,85 +147740,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62555] = 25, + anon_sym_LBRACE_PIPE, + [82083] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1234), 1, + sym__automatic_semicolon, + ACTIONS(1226), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1230), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1232), 23, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3477), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62649] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [82135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(571), 14, + ACTIONS(1395), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124350,15 +147806,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 25, + ACTIONS(1393), 26, + sym__automatic_semicolon, 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_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -124375,149 +147832,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [62705] = 25, + anon_sym_extends, + [82183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1176), 1, + sym__automatic_semicolon, + ACTIONS(1168), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1172), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3489), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3534), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62799] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, + ACTIONS(1174), 23, anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3479), 4, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62893] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [82235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(571), 14, + ACTIONS(1186), 1, + sym__automatic_semicolon, + ACTIONS(1178), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1182), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124532,16 +147903,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 28, + ACTIONS(1184), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -124560,11 +147927,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [62943] = 3, + [82287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 14, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(1858), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124579,16 +147947,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 28, + ACTIONS(1856), 25, + sym__automatic_semicolon, 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_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -124607,11 +147972,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [62993] = 3, + anon_sym_extends, + [82337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 14, + ACTIONS(1278), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124626,16 +147991,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1233), 28, + ACTIONS(1276), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -124654,294 +148017,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [63043] = 25, + anon_sym_extends, + [82385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1282), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1280), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3380), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63137] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [82433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1866), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3481), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1864), 26, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63231] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3493), 1, - anon_sym_COLON, - ACTIONS(3615), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3623), 1, - sym_type_annotation, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63331] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [82481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(3927), 1, + anon_sym_LT, + ACTIONS(3930), 1, anon_sym_DOT, - ACTIONS(3501), 1, + STATE(1791), 1, + sym_type_arguments, + ACTIONS(2020), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3617), 1, - anon_sym_COMMA, - ACTIONS(3620), 1, - anon_sym_RBRACE, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3380), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2018), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63429] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [82535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 15, + ACTIONS(1814), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124955,15 +148174,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3323), 27, + ACTIONS(1812), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124983,105 +148200,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63479] = 27, + anon_sym_extends, + [82583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1204), 1, + sym__automatic_semicolon, + ACTIONS(1196), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1200), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3620), 1, - anon_sym_RBRACE, - ACTIONS(3622), 1, - anon_sym_COMMA, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3442), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1202), 23, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63577] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3572), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 12, + anon_sym_BQUOTE, + [82635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -125092,12 +148266,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 18, + ACTIONS(1758), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125111,79 +148289,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63647] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [82683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(3932), 1, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + STATE(1788), 1, + sym_type_arguments, + ACTIONS(2054), 14, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2052), 24, + anon_sym_as, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3395), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63741] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [82735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 14, + ACTIONS(1776), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125198,15 +148358,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(901), 28, + ACTIONS(1774), 26, sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -125227,12 +148384,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63791] = 3, + anon_sym_extends, + [82783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 15, + ACTIONS(1266), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125246,15 +148403,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3319), 27, + ACTIONS(1264), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125274,82 +148429,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63841] = 27, + anon_sym_extends, + [82831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1258), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3625), 1, - anon_sym_COMMA, - ACTIONS(3628), 1, - anon_sym_RBRACE, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3475), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1256), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63939] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [82879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 14, + ACTIONS(3935), 1, + sym_regex_flags, + ACTIONS(3915), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125363,16 +148496,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 28, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_instanceof, + ACTIONS(3917), 23, + sym__automatic_semicolon, 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, @@ -125387,17 +148518,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [63989] = 3, + [82929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 15, + ACTIONS(1238), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125411,15 +148539,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3342), 27, + ACTIONS(1236), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125439,85 +148565,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64039] = 27, + anon_sym_extends, + [82977] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2546), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3630), 1, - anon_sym_COMMA, - ACTIONS(3633), 1, - anon_sym_RBRACE, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3477), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3525), 1, + anon_sym_in, + ACTIONS(3528), 1, + anon_sym_of, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3635), 14, + ACTIONS(599), 12, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_BANG, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -125528,18 +148605,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 28, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125555,12 +148622,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [64187] = 3, + [83047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 14, + ACTIONS(1764), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125575,16 +148640,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3169), 28, + ACTIONS(1762), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125603,85 +148666,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64237] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3493), 1, - anon_sym_COLON, - ACTIONS(3637), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3572), 1, - sym_type_annotation, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64337] = 3, + anon_sym_extends, + [83095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 15, + ACTIONS(597), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125695,15 +148685,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3338), 27, + ACTIONS(595), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125723,24 +148711,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64387] = 6, + anon_sym_extends, + [83143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3311), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(1805), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3307), 13, + ACTIONS(1056), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125748,13 +148727,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3309), 20, + ACTIONS(1052), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125773,10 +148757,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64443] = 3, + anon_sym_extends, + [83193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 14, + ACTIONS(3937), 1, + anon_sym_AMP, + ACTIONS(3939), 1, + anon_sym_PIPE, + ACTIONS(3941), 1, + anon_sym_extends, + ACTIONS(2104), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125785,22 +148776,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1111), 28, + ACTIONS(2102), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125819,11 +148806,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64493] = 3, + [83247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 14, + ACTIONS(597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125838,16 +148824,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3641), 28, + ACTIONS(595), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125866,11 +148850,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64543] = 3, + anon_sym_extends, + [83295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 14, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_PIPE, + ACTIONS(3947), 1, + anon_sym_extends, + ACTIONS(2100), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125879,20 +148869,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3645), 28, + ACTIONS(2098), 25, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -125912,25 +148898,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - [64593] = 5, + [83349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1761), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1067), 13, + ACTIONS(1054), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125938,13 +148911,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1069), 20, + ACTIONS(1052), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125963,11 +148943,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64647] = 3, + anon_sym_extends, + [83397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3647), 14, + ACTIONS(3930), 1, + anon_sym_DOT, + STATE(1791), 1, + sym_type_arguments, + ACTIONS(2014), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125981,17 +148967,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3649), 28, + ACTIONS(2012), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -126009,12 +148989,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64697] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [83449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3651), 14, + STATE(1788), 1, + sym_type_arguments, + ACTIONS(1800), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126028,16 +149012,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3653), 28, + ACTIONS(1798), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126056,11 +149035,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64747] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [83499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 14, + ACTIONS(1834), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126075,16 +149055,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3657), 28, + ACTIONS(1832), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126103,15 +149081,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64797] = 3, + anon_sym_extends, + [83547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 14, + ACTIONS(3630), 1, + anon_sym_LT, + ACTIONS(742), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -126122,16 +149101,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3661), 28, + ACTIONS(740), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126150,83 +149127,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64847] = 28, + anon_sym_extends, + [83597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3587), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3667), 1, - anon_sym_LBRACE, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, - anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3687), 1, - anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - STATE(2901), 1, - aux_sym_extends_clause_repeat1, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1081), 14, + ACTIONS(1808), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126241,16 +149148,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1079), 28, + ACTIONS(1806), 25, + sym__automatic_semicolon, 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_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126269,11 +149173,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64997] = 3, + anon_sym_extends, + [83647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 14, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_PIPE, + ACTIONS(3947), 1, + anon_sym_extends, + ACTIONS(3723), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126282,20 +149192,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1161), 28, + ACTIONS(3725), 25, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -126315,12 +149221,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - [65047] = 3, + [83701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1177), 14, + ACTIONS(3937), 1, + anon_sym_AMP, + ACTIONS(3939), 1, + anon_sym_PIPE, + ACTIONS(2108), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126329,22 +149238,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1175), 28, + ACTIONS(2106), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126363,13 +149268,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [65097] = 3, + anon_sym_extends, + [83753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3302), 15, + ACTIONS(1850), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126383,15 +149287,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3155), 27, + ACTIONS(1848), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -126411,150 +149313,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65147] = 25, + anon_sym_extends, + [83801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3937), 1, anon_sym_AMP, - ACTIONS(3532), 1, + ACTIONS(3939), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, + ACTIONS(3941), 1, + anon_sym_extends, + ACTIONS(3723), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3485), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3725), 25, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65241] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2691), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3405), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65335] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [83855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 15, + ACTIONS(1768), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126568,15 +149380,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3329), 27, + ACTIONS(1766), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -126596,150 +149406,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65385] = 25, + anon_sym_extends, + [83903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1772), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3699), 4, + ACTIONS(1770), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65479] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2691), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3487), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65573] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [83951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 15, + ACTIONS(1748), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126753,15 +149470,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 27, + ACTIONS(1746), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -126781,10 +149496,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65623] = 3, + anon_sym_extends, + [83999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 14, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_PIPE, + ACTIONS(3947), 1, + anon_sym_extends, + ACTIONS(2104), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126793,20 +149515,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3395), 28, + ACTIONS(2102), 25, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -126826,12 +149544,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - [65673] = 3, + [84053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 14, + ACTIONS(1274), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126846,16 +149563,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3705), 28, + ACTIONS(1272), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126874,11 +149589,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [65723] = 3, + anon_sym_extends, + [84101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 14, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_PIPE, + ACTIONS(2108), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126887,20 +149606,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(901), 28, + ACTIONS(2106), 26, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -126920,12 +149635,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_implements, - [65773] = 3, + anon_sym_extends, + [84153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 14, + ACTIONS(1156), 1, + sym__automatic_semicolon, + ACTIONS(1148), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1152), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126940,16 +149660,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 28, + ACTIONS(1154), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126968,80 +149684,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [65823] = 25, + [84205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1784), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1782), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3483), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65917] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [84253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 14, + ACTIONS(1788), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127056,16 +149747,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3709), 28, + ACTIONS(1786), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127084,167 +149773,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [65967] = 27, + anon_sym_extends, + [84301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(3949), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(3954), 2, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3711), 1, - anon_sym_COMMA, - ACTIONS(3713), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3105), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3583), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, + anon_sym_EQ, + 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(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66064] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, + ACTIONS(3403), 23, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3041), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66161] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [84355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(1791), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1789), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(571), 12, + ACTIONS(1800), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127253,13 +149834,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 18, + ACTIONS(1798), 26, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127276,10 +149866,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66220] = 3, + anon_sym_extends, + [84403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 14, + ACTIONS(1752), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127294,14 +149885,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1103), 27, + ACTIONS(1750), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -127322,33 +149911,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66269] = 12, + anon_sym_extends, + [84451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3717), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 13, + ACTIONS(1756), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -127359,10 +149930,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 17, + ACTIONS(1754), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127376,171 +149953,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [66336] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [84499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1118), 1, + sym__automatic_semicolon, + ACTIONS(1110), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1114), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3401), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1116), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + 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, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66429] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [84551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1128), 1, + sym__automatic_semicolon, + ACTIONS(1120), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1124), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3403), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1126), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + 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, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66522] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3717), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 12, + anon_sym_BQUOTE, + [84603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -127551,10 +150069,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 17, + ACTIONS(1240), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127568,18 +150092,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [66591] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [84651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_LT, - STATE(1604), 1, - sym_type_arguments, - ACTIONS(1964), 13, + ACTIONS(1838), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -127590,7 +150114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 26, + ACTIONS(1836), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -127617,34 +150141,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [66644] = 13, + [84699] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3717), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3514), 1, + anon_sym_in, + ACTIONS(3517), 1, + anon_sym_of, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 12, + ACTIONS(599), 12, anon_sym_STAR, - anon_sym_in, + anon_sym_BANG, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -127655,10 +150180,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 17, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127672,28 +150195,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [66713] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [84769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3463), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1962), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(571), 12, + ACTIONS(1270), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127702,13 +150209,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 18, + ACTIONS(1268), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, 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, @@ -127725,82 +150241,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66774] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3723), 1, - anon_sym_COMMA, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3725), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66869] = 4, + anon_sym_extends, + [84817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1271), 14, + ACTIONS(1862), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127815,7 +150260,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 25, + ACTIONS(1860), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -127841,707 +150286,378 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66920] = 25, + anon_sym_extends, + [84865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1842), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3489), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3609), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67013] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1840), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, - anon_sym_LT, - ACTIONS(3593), 1, - anon_sym_QMARK, - ACTIONS(3595), 1, anon_sym_AMP_AMP, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3603), 1, - anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3487), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67106] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [84913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(1832), 1, + anon_sym_extends, + ACTIONS(3665), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, - anon_sym_LT, - ACTIONS(3593), 1, - anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + ACTIONS(3668), 2, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3485), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, + ACTIONS(3574), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3589), 4, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3609), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67199] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, + ACTIONS(3576), 22, + anon_sym_as, anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3727), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3115), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67296] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [84967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1818), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3483), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1816), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67389] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1102), 1, + sym__automatic_semicolon, + ACTIONS(1094), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1098), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3481), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1100), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + 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, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67482] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [85067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1092), 1, + sym__automatic_semicolon, + ACTIONS(1084), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1088), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3479), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1090), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + 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, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67575] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [85119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1846), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3477), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1844), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67668] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1736), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3475), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1734), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67761] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1250), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3354), 1, - anon_sym_QMARK, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 5, + ACTIONS(1248), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_implements, - ACTIONS(3609), 5, + 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, - [67850] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3457), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3460), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1735), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(571), 12, + ACTIONS(1830), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128550,13 +150666,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 18, + ACTIONS(1828), 26, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -128573,34 +150698,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67911] = 13, + anon_sym_extends, + [85311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3729), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 12, + ACTIONS(1166), 1, + sym__automatic_semicolon, + ACTIONS(1158), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1162), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -128611,10 +150722,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 17, + ACTIONS(1164), 23, 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -128628,282 +150743,275 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [67980] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3729), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3585), 3, + anon_sym_BQUOTE, + [85363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 9, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 13, + ACTIONS(1820), 26, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [68055] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1780), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3354), 2, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1778), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 7, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_implements, - [68140] = 19, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1826), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3605), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 3, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1824), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 8, - 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_implements, - [68221] = 17, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85507] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3591), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3605), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3647), 1, + anon_sym_of, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3585), 3, + ACTIONS(599), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3354), 7, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [85577] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 1, + anon_sym_DOT, + ACTIONS(1602), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 13, + ACTIONS(1600), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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_implements, - [68298] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85627] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2546), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3729), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3635), 1, + anon_sym_in, + ACTIONS(3638), 1, + anon_sym_of, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3504), 1, + sym_call_type_arguments, + STATE(1389), 2, sym_template_string, sym_arguments, - ACTIONS(3354), 12, + ACTIONS(599), 12, anon_sym_STAR, - anon_sym_in, + anon_sym_BANG, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -128914,1217 +151022,847 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 16, + ACTIONS(611), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [68369] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [85697] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(2555), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3593), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + STATE(3373), 1, + sym_call_type_arguments, + STATE(1496), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3444), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 18, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68462] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [85761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1804), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3442), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1802), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68555] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(1764), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1762), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + anon_sym_extends, + ACTIONS(1070), 13, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3603), 1, - anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3405), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1072), 22, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68648] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [85861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1796), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3395), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1794), 26, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68741] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [85909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1138), 1, + sym__automatic_semicolon, + ACTIONS(1130), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1134), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3380), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1136), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + 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, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68834] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [85961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(1778), 2, anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, - anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_extends, + ACTIONS(1780), 2, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3732), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, + ACTIONS(1792), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1790), 24, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68929] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [86013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(1732), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3487), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1730), 26, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69024] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [86061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3566), 1, - anon_sym_LBRACE, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(1246), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3485), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1244), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69119] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [86109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3575), 1, - anon_sym_LBRACE, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(1254), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3483), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1252), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69214] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [86157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1218), 1, + sym__automatic_semicolon, + ACTIONS(1210), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1214), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1216), 23, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3734), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69307] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [86209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1262), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3736), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3176), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1260), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69404] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [86257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(3937), 1, + anon_sym_AMP, + ACTIONS(3939), 1, + anon_sym_PIPE, + ACTIONS(3941), 1, + anon_sym_extends, + ACTIONS(2100), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2098), 25, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3738), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3105), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69501] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [86311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(1258), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3740), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3481), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1256), 24, + anon_sym_as, + 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, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69596] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [86358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3613), 1, + ACTIONS(3957), 1, anon_sym_LBRACE, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + STATE(2134), 1, + sym_statement_block, + ACTIONS(1060), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3479), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1058), 23, + anon_sym_as, + 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, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69691] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [86409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(1214), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3742), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3477), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1216), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69786] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [86456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(1134), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3475), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3693), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69881] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, + ACTIONS(1136), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2821), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2976), 1, anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, anon_sym_QMARK_DOT, - ACTIONS(3679), 1, anon_sym_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3687), 1, - anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3354), 2, - anon_sym_LBRACE, - anon_sym_QMARK, - ACTIONS(3681), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3346), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69970] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [86503] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1801), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [86586] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2441), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3675), 1, + ACTIONS(3377), 1, anon_sym_QMARK_DOT, - ACTIONS(3746), 1, - anon_sym_LT, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1938), 2, sym_template_string, sym_arguments, - ACTIONS(3354), 13, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -130136,9 +151874,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 16, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130152,138 +151889,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [70039] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [86651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(1832), 1, + anon_sym_extends, + ACTIONS(3668), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3665), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3746), 1, - anon_sym_LT, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, + anon_sym_RBRACK, + ACTIONS(3574), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 10, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 12, + ACTIONS(3576), 20, anon_sym_as, - 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_LBRACE_PIPE, - [70114] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, anon_sym_QMARK_DOT, - ACTIONS(3679), 1, anon_sym_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 3, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [70199] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [86704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1177), 14, + ACTIONS(3630), 1, + anon_sym_LT, + ACTIONS(742), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -130294,15 +151958,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1175), 27, - sym__automatic_semicolon, + ACTIONS(740), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -130322,74 +151981,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70248] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 4, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [70329] = 4, + [86753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - sym__automatic_semicolon, - ACTIONS(1177), 14, + ACTIONS(1162), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130404,13 +152001,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1175), 26, + ACTIONS(1164), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -130431,97 +152027,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70380] = 17, + [86800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2073), 1, anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, + ACTIONS(1602), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 8, anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 12, + ACTIONS(1600), 23, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [70457] = 14, + [86849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3746), 1, - anon_sym_LT, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 13, + ACTIONS(1282), 15, anon_sym_STAR, anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -130532,306 +152091,205 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 15, + ACTIONS(1280), 24, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [70528] = 26, + [86896] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(3977), 1, + anon_sym_RBRACE, + ACTIONS(3979), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3635), 1, + ACTIONS(3981), 1, + anon_sym_async, + ACTIONS(3983), 1, + sym_number, + ACTIONS(3985), 1, + anon_sym_static, + ACTIONS(3991), 1, + sym_readonly, + STATE(2476), 1, + sym_accessibility_modifier, + STATE(3546), 1, + aux_sym_object_repeat1, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(3987), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3989), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2818), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3545), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3975), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [86981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 15, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3444), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3693), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70623] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, + ACTIONS(1276), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2821), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, anon_sym_QMARK_DOT, - ACTIONS(3677), 1, - anon_sym_QMARK, - ACTIONS(3679), 1, anon_sym_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3687), 1, - anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3751), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3442), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [70718] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, anon_sym_QMARK_QMARK, - ACTIONS(3753), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3217), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70815] = 26, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [87028] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(3995), 1, anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3679), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3685), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3687), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3691), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3695), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3405), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3689), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3683), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3671), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3693), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70910] = 4, + ACTIONS(3997), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [87109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 1, - sym__automatic_semicolon, - ACTIONS(1065), 14, + ACTIONS(1266), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130845,14 +152303,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1063), 26, + ACTIONS(1264), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -130872,80 +152326,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70961] = 27, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [87156] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3711), 1, - anon_sym_COMMA, - ACTIONS(3759), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3105), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3657), 20, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71058] = 3, + anon_sym_BQUOTE, + [87211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 14, + ACTIONS(3957), 1, + anon_sym_LBRACE, + ACTIONS(4027), 1, + anon_sym_DOT, + STATE(2134), 1, + sym_statement_block, + ACTIONS(1060), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130960,17 +152400,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1161), 27, - sym__automatic_semicolon, + ACTIONS(1058), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130988,289 +152422,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71107] = 25, + anon_sym_LBRACE_PIPE, + [87264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1242), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3761), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71200] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, + ACTIONS(1240), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2821), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, anon_sym_QMARK_DOT, - ACTIONS(3677), 1, - anon_sym_QMARK, - ACTIONS(3679), 1, anon_sym_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3687), 1, - anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3701), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3395), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71295] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [87311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3883), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3591), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3593), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3601), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3603), 1, anon_sym_PIPE, - ACTIONS(3607), 1, - anon_sym_STAR_STAR, - ACTIONS(3611), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3597), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3605), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3585), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3599), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3885), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3763), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3589), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3609), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71388] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [87358] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2441), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3675), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3377), 1, anon_sym_QMARK_DOT, - ACTIONS(3677), 1, - anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3687), 1, - anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3765), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3380), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1938), 2, sym_template_string, sym_arguments, - ACTIONS(3663), 3, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71483] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [87423] = 3, ACTIONS(3), 1, sym_comment, - STATE(3025), 1, - sym_type_arguments, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3294), 15, + ACTIONS(1732), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131286,7 +152583,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3296), 23, + ACTIONS(1730), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131309,23 +152606,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [71536] = 8, + [87470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - STATE(3025), 1, - sym_type_arguments, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3288), 15, + ACTIONS(3574), 16, anon_sym_STAR, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -131340,10 +152628,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3290), 20, + ACTIONS(3576), 23, anon_sym_as, 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, @@ -131361,34 +152652,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [71595] = 12, + [87517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, - ACTIONS(3767), 1, - anon_sym_LT, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 14, + ACTIONS(3879), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -131399,9 +152676,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, + ACTIONS(3881), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131415,29 +152696,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [71662] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [87570] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LT, - ACTIONS(2821), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3298), 1, + ACTIONS(3401), 1, + anon_sym_QMARK_DOT, + ACTIONS(3651), 1, anon_sym_EQ, - STATE(1862), 1, - sym_type_arguments, - STATE(1907), 1, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, sym_arguments, - ACTIONS(2458), 14, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -131450,9 +152735,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 19, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131468,32 +152752,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [71727] = 11, + [87635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LT, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - STATE(1862), 1, - sym_type_arguments, - STATE(1907), 1, - sym_arguments, - ACTIONS(2458), 14, + ACTIONS(1736), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -131504,9 +152771,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 19, + ACTIONS(1734), 24, anon_sym_as, 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, @@ -131523,173 +152794,138 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [71792] = 26, + [87682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(3719), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3673), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3770), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3401), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3721), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71887] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [87729] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(3995), 1, anon_sym_as, - ACTIONS(3669), 1, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3673), 1, - anon_sym_LT, - ACTIONS(3675), 1, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, - ACTIONS(3677), 1, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3679), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3685), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3687), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3691), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3695), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3772), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3403), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3681), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3689), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3697), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3663), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3683), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3671), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3693), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71982] = 13, + ACTIONS(4029), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [87810] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(2441), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3675), 1, + ACTIONS(3401), 1, anon_sym_QMARK_DOT, - ACTIONS(3767), 1, - anon_sym_LT, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1776), 2, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 13, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -131701,9 +152937,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131717,36 +152952,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [72051] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3675), 1, - anon_sym_QMARK_DOT, - ACTIONS(3767), 1, - anon_sym_LT, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3697), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 13, + [87875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1208), 15, anon_sym_STAR, anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -131757,9 +152973,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, + ACTIONS(1206), 24, anon_sym_as, 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, @@ -131773,12 +152993,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [72120] = 3, + [87922] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4031), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1947), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 14, + ACTIONS(1756), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131792,15 +153079,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 27, - sym__automatic_semicolon, + ACTIONS(1754), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -131820,505 +153102,315 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72169] = 27, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [88052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1752), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3774), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3138), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72266] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1750), 24, + anon_sym_as, anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3776), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3100), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72363] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [88099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1182), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3723), 1, - anon_sym_COMMA, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3455), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72458] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [88146] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3503), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3505), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3379), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3349), 1, + sym_call_type_arguments, + STATE(2103), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3723), 1, - anon_sym_COMMA, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3778), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72553] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [88211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1748), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3723), 1, - anon_sym_COMMA, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1746), 24, + anon_sym_as, + 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_CARET, - ACTIONS(3780), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72648] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [88258] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3782), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3105), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72745] = 26, + ACTIONS(4033), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [88339] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(2441), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - anon_sym_as, - ACTIONS(3669), 1, - anon_sym_BANG, - ACTIONS(3673), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3675), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3379), 1, anon_sym_QMARK_DOT, - ACTIONS(3677), 1, - anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3687), 1, - anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_STAR_STAR, - ACTIONS(3695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3784), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3681), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3697), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3763), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - STATE(1776), 2, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3349), 1, + sym_call_type_arguments, + STATE(2103), 2, sym_template_string, sym_arguments, - ACTIONS(3663), 3, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3683), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3671), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3693), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72840] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [88404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3786), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_DOT, - STATE(1634), 1, - sym_type_arguments, - ACTIONS(1926), 13, + ACTIONS(1172), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -132329,7 +153421,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1924), 25, + ACTIONS(1174), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -132337,6 +153429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132354,168 +153447,306 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [72895] = 27, + [88451] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4035), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1786), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88534] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(607), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3791), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3085), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2606), 1, + anon_sym_LPAREN, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3328), 1, + sym_call_type_arguments, + STATE(115), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72992] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [88599] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, + ACTIONS(607), 1, + anon_sym_QMARK_DOT, + ACTIONS(2069), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, + ACTIONS(2582), 1, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3793), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3115), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2606), 1, + anon_sym_LPAREN, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3328), 1, + sym_call_type_arguments, + STATE(115), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73089] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [88664] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4037), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1850), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88747] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4039), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1947), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, - anon_sym_LT, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - STATE(1659), 1, - sym_type_arguments, - STATE(1767), 1, - sym_arguments, - ACTIONS(2458), 13, + ACTIONS(3849), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -132526,12 +153757,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 21, + ACTIONS(3851), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132548,155 +153783,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73152] = 27, + [88877] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4041), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1947), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88960] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - ACTIONS(3795), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3105), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73249] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1805), 1, - anon_sym_extends, - ACTIONS(3311), 2, + ACTIONS(4047), 6, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3314), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 12, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3309), 23, - sym__automatic_semicolon, - anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - [73304] = 5, + [89041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1763), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1067), 12, + ACTIONS(3723), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1069), 23, + ACTIONS(3725), 25, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -132715,86 +153950,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73357] = 25, + [89088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(3373), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3364), 1, + sym_call_type_arguments, + STATE(1992), 2, sym_template_string, sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3734), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73450] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3789), 1, - anon_sym_DOT, - STATE(1634), 1, - sym_type_arguments, - ACTIONS(1920), 14, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -132805,15 +153986,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1918), 25, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132829,18 +154003,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [73503] = 4, + [89153] = 12, ACTIONS(3), 1, sym_comment, - STATE(1604), 1, - sym_type_arguments, - ACTIONS(1759), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_QMARK_DOT, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3379), 1, + sym_call_type_arguments, + STATE(1569), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -132851,16 +154039,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 26, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132876,13 +154056,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [73554] = 3, + [89218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 14, + ACTIONS(1142), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -132896,15 +154075,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 27, - sym__automatic_semicolon, + ACTIONS(1140), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -132924,154 +154098,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73603] = 27, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [89265] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - ACTIONS(3797), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3094), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73700] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, + ACTIONS(4071), 6, anon_sym_COMMA, - ACTIONS(481), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(575), 1, + [89346] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - ACTIONS(3799), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - STATE(3161), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73797] = 3, + ACTIONS(4073), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [89427] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_QMARK_DOT, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3379), 1, + sym_call_type_arguments, + STATE(1569), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -133082,18 +154258,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1079), 27, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - 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, @@ -133109,23 +154275,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [73846] = 7, + [89492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3801), 1, + ACTIONS(3373), 1, + anon_sym_QMARK_DOT, + ACTIONS(3653), 1, anon_sym_EQ, - ACTIONS(571), 14, + STATE(3364), 1, + sym_call_type_arguments, + STATE(1992), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -133136,14 +154311,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 23, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -133159,21 +154328,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [73903] = 7, + [89557] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3803), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4065), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -133186,13 +154358,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 23, + ACTIONS(3833), 19, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133200,94 +154371,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [73960] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3805), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - STATE(3106), 1, - aux_sym_array_repeat1, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74057] = 4, + [89616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 1, - sym_regex_flags, - ACTIONS(3807), 16, + ACTIONS(1230), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -133301,15 +154396,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3809), 24, + ACTIONS(1232), 25, + sym__automatic_semicolon, + 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, @@ -133324,224 +154418,157 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74108] = 25, + [89663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1274), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1272), 24, + anon_sym_as, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3734), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74201] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [89710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1262), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3503), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3511), 1, - anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1260), 24, + anon_sym_as, + 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_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3507), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3734), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3522), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3534), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74294] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [89757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3503), 1, - anon_sym_LT, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3511), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3524), 1, - anon_sym_QMARK, - ACTIONS(3526), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3536), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3513), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3528), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 3, + ACTIONS(4063), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3507), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3734), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3522), 4, + ACTIONS(3831), 8, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3534), 5, + ACTIONS(3833), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, - [74387] = 5, + anon_sym_BQUOTE, + [89822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__automatic_semicolon, - ACTIONS(1063), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1067), 15, + ACTIONS(1254), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -133555,11 +154582,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 23, + ACTIONS(1252), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -133579,15 +154605,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74440] = 5, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [89869] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 1, - sym__automatic_semicolon, - ACTIONS(1139), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1143), 14, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4075), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1799), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [89952] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4065), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4063), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4043), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4057), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4049), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [90021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1200), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133602,9 +154742,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1145), 23, + ACTIONS(1202), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -133626,34 +154768,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74492] = 13, + [90068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3813), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 12, + ACTIONS(1838), 15, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -133664,10 +154787,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, + ACTIONS(1836), 24, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + 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, @@ -133681,16 +154807,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74560] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [90115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1203), 1, - sym__automatic_semicolon, - ACTIONS(1195), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1199), 14, + ACTIONS(1246), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -133704,11 +154831,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1201), 23, + ACTIONS(1244), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -133728,626 +154854,537 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74612] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [90162] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 2, anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3816), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, + anon_sym_PIPE, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74706] = 26, + ACTIONS(3833), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [90235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(599), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 25, + sym__automatic_semicolon, anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, anon_sym_COMMA, - ACTIONS(3818), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74800] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [90282] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3813), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4065), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 13, + ACTIONS(4043), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4057), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, + anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3390), 16, + ACTIONS(3833), 16, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, 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, - [74866] = 26, + anon_sym_BQUOTE, + [90345] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3831), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3820), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74960] = 26, + ACTIONS(3833), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [90422] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3822), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4049), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1255), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - 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, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4077), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_extends, - [75102] = 25, + [90503] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, + ACTIONS(4045), 1, anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(4051), 1, anon_sym_QMARK, - ACTIONS(3832), 1, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3840), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3844), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3848), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3403), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3834), 2, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3842), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75194] = 14, + ACTIONS(3865), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [90584] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(3979), 1, + anon_sym_LBRACK, + ACTIONS(3983), 1, + sym_number, + ACTIONS(4081), 1, + anon_sym_RBRACE, + ACTIONS(4083), 1, + anon_sym_async, + ACTIONS(4085), 1, + anon_sym_static, + ACTIONS(4091), 1, + sym_readonly, + STATE(2476), 1, + sym_accessibility_modifier, + STATE(3600), 1, + aux_sym_object_repeat1, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4089), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2818), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3598), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4079), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [90669] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3844), 1, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, + anon_sym_AMP_AMP, + ACTIONS(4059), 1, + anon_sym_AMP, + ACTIONS(4061), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3850), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, + ACTIONS(4069), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 12, + ACTIONS(4055), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4063), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4043), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(3346), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4057), 3, 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, - [75264] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3853), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3388), 12, - anon_sym_STAR, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3390), 16, - sym__automatic_semicolon, - 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, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75332] = 25, + ACTIONS(3765), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [90750] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, + ACTIONS(4045), 1, anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(4051), 1, anon_sym_QMARK, - ACTIONS(3832), 1, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3840), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3844), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3848), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3401), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3834), 2, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3842), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75424] = 3, + ACTIONS(3787), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [90831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1283), 14, + ACTIONS(4093), 1, + anon_sym_AMP, + ACTIONS(4095), 1, + anon_sym_PIPE, + ACTIONS(4097), 1, + anon_sym_extends, + ACTIONS(3723), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134356,19 +155393,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1281), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3725), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134388,138 +155422,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [75472] = 25, + [90884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3628), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3791), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75564] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 7, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 12, + ACTIONS(3793), 25, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75640] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [90931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 14, + ACTIONS(1854), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -134533,13 +155485,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1852), 24, 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, @@ -134560,230 +155509,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [75688] = 19, + anon_sym_LBRACE_PIPE, + [90978] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3844), 1, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, + anon_sym_AMP_AMP, + ACTIONS(4059), 1, + anon_sym_AMP, + ACTIONS(4061), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, + ACTIONS(4069), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3842), 2, + ACTIONS(4055), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3824), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3346), 7, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [75768] = 21, + ACTIONS(3841), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [91059] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3832), 1, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3354), 2, - anon_sym_QMARK, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3513), 2, + ACTIONS(4065), 1, + anon_sym_STAR_STAR, + ACTIONS(4069), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3842), 2, + ACTIONS(4055), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3346), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [75852] = 16, + ACTIONS(3873), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [91140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3850), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(1862), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 9, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(3346), 12, - sym__automatic_semicolon, + ACTIONS(1860), 24, 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, - [75926] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, anon_sym_QMARK_DOT, - ACTIONS(3850), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3346), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -134797,33 +155671,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75994] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [91187] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(2050), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, anon_sym_QMARK_DOT, - ACTIONS(3853), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3410), 1, + sym_call_type_arguments, + STATE(1688), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 12, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -134835,10 +155712,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -134852,559 +155727,324 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76062] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_QMARK, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, - anon_sym_AMP, - ACTIONS(3840), 1, - anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3346), 4, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76150] = 25, + [91252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(2050), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, - anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, - anon_sym_AMP, - ACTIONS(3840), 1, - anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3475), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3410), 1, + sym_call_type_arguments, + STATE(1688), 2, sym_template_string, sym_arguments, - ACTIONS(3824), 3, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3826), 4, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76242] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3477), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(611), 16, + 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, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76334] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [91317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3711), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3479), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3713), 25, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76426] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [91364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1776), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3761), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1774), 24, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76518] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [91411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(1778), 2, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_extends, + ACTIONS(1780), 2, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, + ACTIONS(1792), 13, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3620), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1790), 22, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76610] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [91462] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, + ACTIONS(4045), 1, anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(4051), 1, anon_sym_QMARK, - ACTIONS(3832), 1, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3840), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3844), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3848), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3481), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3834), 2, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3842), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76702] = 26, + ACTIONS(4099), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [91543] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3856), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76796] = 9, + ACTIONS(3787), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [91624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3858), 1, - anon_sym_EQ, - ACTIONS(3860), 1, - anon_sym_in, - ACTIONS(3863), 1, - anon_sym_of, - ACTIONS(571), 13, + ACTIONS(3785), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -135416,12 +156056,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 21, + ACTIONS(3787), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -135438,23 +156082,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [76856] = 6, + [91671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, - anon_sym_LPAREN, - ACTIONS(3868), 1, - anon_sym_COLON, - ACTIONS(3870), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3302), 13, + ACTIONS(3715), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -135462,10 +156100,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3155), 23, + ACTIONS(3717), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -135486,351 +156126,302 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [76910] = 25, + [91718] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3633), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1785), 26, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(4101), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_extends, - [77050] = 26, + [91799] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3873), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77144] = 26, + ACTIONS(3997), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [91880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1270), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1268), 24, anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, anon_sym_COMMA, - ACTIONS(3875), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77238] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [91927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3897), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3442), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3899), 25, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77330] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [91974] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, anon_sym_LBRACK, - ACTIONS(1805), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3314), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 12, + ACTIONS(3959), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4103), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1947), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [92057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1796), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3309), 22, + ACTIONS(1794), 24, anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -135849,79 +156440,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77384] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [92104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1804), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1802), 24, anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77478] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [92151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 14, + ACTIONS(1814), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -135935,13 +156505,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1295), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1812), 24, 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, @@ -135962,14 +156529,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [77526] = 4, + anon_sym_LBRACE_PIPE, + [92198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(571), 14, + ACTIONS(1826), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -135983,12 +156549,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 24, - sym__automatic_semicolon, + ACTIONS(1824), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136008,24 +156572,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77576] = 9, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [92245] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(3979), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3879), 1, - anon_sym_EQ, - ACTIONS(3881), 1, - anon_sym_in, - ACTIONS(3884), 1, - anon_sym_of, - ACTIONS(571), 13, + ACTIONS(3983), 1, + sym_number, + ACTIONS(4107), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_async, + ACTIONS(4111), 1, + anon_sym_static, + ACTIONS(4117), 1, + sym_readonly, + STATE(2476), 1, + sym_accessibility_modifier, + STATE(3692), 1, + aux_sym_object_repeat1, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(4113), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4115), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2818), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3698), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4105), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [92330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -136037,12 +156656,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 21, - sym__automatic_semicolon, + ACTIONS(1236), 24, 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, @@ -136059,216 +156679,185 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77636] = 25, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [92377] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3832), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3840), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3844), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3848), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3405), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3842), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77728] = 26, + ACTIONS(4047), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [92458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1395), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1393), 24, anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, anon_sym_COMMA, - ACTIONS(3886), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77822] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [92505] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, + ACTIONS(4045), 1, anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(4051), 1, anon_sym_QMARK, - ACTIONS(3832), 1, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3840), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3844), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3848), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3834), 2, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3842), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3888), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77914] = 4, + ACTIONS(3861), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [92586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, - sym_regex_flags, - ACTIONS(3807), 16, + ACTIONS(4093), 1, + anon_sym_AMP, + ACTIONS(4095), 1, + anon_sym_PIPE, + ACTIONS(4097), 1, + anon_sym_extends, + ACTIONS(2100), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -136276,19 +156865,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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, - ACTIONS(3809), 23, - sym__automatic_semicolon, + ACTIONS(2098), 24, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136304,13 +156890,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77964] = 3, + [92639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 14, + ACTIONS(3409), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136325,11 +156912,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 26, + ACTIONS(3413), 25, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -136351,414 +156938,256 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [78012] = 25, + [92686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1760), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3395), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78104] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1758), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3892), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78198] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [92733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3729), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3380), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3731), 25, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78290] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [92780] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 13, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3657), 20, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78382] = 25, + anon_sym_BQUOTE, + [92837] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, - anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, - anon_sym_AMP, - ACTIONS(3840), 1, - anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3483), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4119), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1947), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [92920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + anon_sym_AMP, + ACTIONS(4095), 1, + anon_sym_PIPE, + ACTIONS(4097), 1, + anon_sym_extends, + ACTIONS(2104), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3826), 4, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78474] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(2102), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2601), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2691), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, - anon_sym_QMARK, - ACTIONS(3832), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, - anon_sym_AMP, - ACTIONS(3840), 1, - anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3485), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78566] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [92973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 14, + ACTIONS(1088), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136773,11 +157202,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1291), 26, + ACTIONS(1090), 25, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -136799,155 +157228,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [78614] = 25, + [93020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1098), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78706] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1100), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3896), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78800] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [93067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1761), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1067), 13, + ACTIONS(1780), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -136955,15 +157285,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1069), 22, + ACTIONS(1778), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -136982,20 +157314,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78852] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [93114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_extends, - ACTIONS(3311), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3314), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 13, + ACTIONS(1822), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -137003,15 +157329,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3309), 22, + ACTIONS(1820), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -137030,150 +157358,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78906] = 25, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [93161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(1124), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3830), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78998] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1126), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79092] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [93208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, - anon_sym_LT, - ACTIONS(903), 13, + ACTIONS(1830), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -137184,13 +157423,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(901), 26, - sym__automatic_semicolon, + ACTIONS(1828), 24, 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, @@ -137211,79 +157447,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [79142] = 25, + anon_sym_LBRACE_PIPE, + [93255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4121), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4123), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, + ACTIONS(4125), 1, + anon_sym_extends, + ACTIONS(3723), 13, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3725), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79234] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [93308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_DOT, - ACTIONS(1640), 14, + ACTIONS(1114), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137298,7 +157513,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1638), 25, + ACTIONS(1116), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -137306,6 +157521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137323,147 +157539,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [79284] = 26, + [93355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4093), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4095), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(2108), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79378] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(2106), 25, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2601), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2691), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, - anon_sym_QMARK, - ACTIONS(3832), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, - anon_sym_AMP, - ACTIONS(3840), 1, - anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3489), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79470] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [93406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 14, + ACTIONS(1846), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -137477,13 +157604,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 26, - sym__automatic_semicolon, + ACTIONS(1844), 24, 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, @@ -137504,78 +157628,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [79518] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79612] = 3, + anon_sym_LBRACE_PIPE, + [93453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 14, + ACTIONS(1152), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137590,7 +157647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 26, + ACTIONS(1154), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -137616,100 +157673,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [79660] = 25, + [93500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1818), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3914), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3403), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1816), 24, + anon_sym_as, + 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, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79752] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [93547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 14, + ACTIONS(1832), 1, + anon_sym_extends, + ACTIONS(3665), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3668), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3574), 12, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1757), 26, - sym__automatic_semicolon, + ACTIONS(3576), 20, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -137728,101 +157764,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [79800] = 26, + [93600] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3934), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79894] = 3, + ACTIONS(4071), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [93681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 14, + ACTIONS(1764), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1762), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1070), 12, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1251), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1072), 20, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -137841,31 +157871,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [79942] = 12, + [93732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3505), 1, + ACTIONS(3381), 1, anon_sym_QMARK_DOT, - ACTIONS(3853), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3492), 1, + sym_call_type_arguments, + STATE(1616), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 13, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137879,10 +157907,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -137896,96 +157922,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80008] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3936), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80102] = 10, + [93797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LT, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, - anon_sym_DOT, - STATE(1862), 1, - sym_type_arguments, - STATE(1907), 1, - sym_arguments, - ACTIONS(2458), 14, + ACTIONS(1842), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -137996,9 +157943,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2460), 19, + ACTIONS(1840), 24, anon_sym_as, 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, @@ -138015,34 +157966,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [80164] = 13, + [93844] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(3381), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3392), 1, - anon_sym_LT, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 2, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3492), 1, + sym_call_type_arguments, + STATE(1616), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 12, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -138054,10 +158004,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138071,78 +158019,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80232] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [93909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4121), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4123), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4125), 1, + anon_sym_extends, + ACTIONS(2100), 13, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3360), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2098), 23, + anon_sym_as, + 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, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80326] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [93962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 14, + ACTIONS(3695), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138157,7 +158086,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 26, + ACTIONS(3697), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -138183,13 +158112,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [80374] = 3, + [94009] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 14, - anon_sym_STAR, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -138202,16 +158140,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 26, + ACTIONS(3833), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138225,18 +158160,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [80422] = 3, + [94066] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 14, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2761), 1, + anon_sym_QMARK_DOT, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3354), 1, + sym_call_type_arguments, + STATE(2077), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -138247,16 +158197,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 26, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138272,16 +158214,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [80470] = 3, + [94131] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 14, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2761), 1, + anon_sym_QMARK_DOT, + ACTIONS(3651), 1, + anon_sym_EQ, + STATE(3354), 1, + sym_call_type_arguments, + STATE(2077), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -138292,16 +158250,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 26, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138317,12 +158267,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [80518] = 3, + [94196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 14, + ACTIONS(3763), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138337,7 +158285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 26, + ACTIONS(3765), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -138363,41 +158311,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [80566] = 8, + [94243] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4127), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1865), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [94326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3699), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 21, + ACTIONS(3701), 25, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138414,84 +158417,118 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80624] = 25, + [94373] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3995), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3380), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80716] = 6, + ACTIONS(3765), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [94454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(3560), 16, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3944), 1, - anon_sym_extends, - ACTIONS(1994), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3562), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [94501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3564), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138499,17 +158536,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1992), 25, - sym__automatic_semicolon, + ACTIONS(3566), 23, 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, @@ -138529,11 +158565,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80770] = 3, + anon_sym_LBRACE_PIPE, + [94548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 14, + ACTIONS(4129), 1, + sym__automatic_semicolon, + ACTIONS(1078), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138547,13 +158587,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1707), 26, - sym__automatic_semicolon, + ACTIONS(1076), 23, 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, @@ -138573,12 +158610,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [80818] = 3, + anon_sym_LBRACE_PIPE, + [94597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 14, + ACTIONS(4131), 1, + sym_regex_flags, + ACTIONS(3915), 17, anon_sym_STAR, + anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138592,13 +158633,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1731), 26, - sym__automatic_semicolon, + anon_sym_instanceof, + ACTIONS(3917), 21, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [94646] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4121), 1, + anon_sym_AMP, + ACTIONS(4123), 1, + anon_sym_PIPE, + ACTIONS(4125), 1, + anon_sym_extends, + ACTIONS(2104), 13, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2102), 23, 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, @@ -138618,12 +158702,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [80866] = 3, + anon_sym_LBRACE_PIPE, + [94699] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(3979), 1, + anon_sym_LBRACK, + ACTIONS(3983), 1, + sym_number, + ACTIONS(4135), 1, + anon_sym_RBRACE, + ACTIONS(4137), 1, + anon_sym_async, + ACTIONS(4139), 1, + anon_sym_static, + ACTIONS(4145), 1, + sym_readonly, + STATE(2476), 1, + sym_accessibility_modifier, + STATE(3572), 1, + aux_sym_object_repeat1, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(4141), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4143), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2818), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3576), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4133), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [94784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(1070), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138637,13 +158786,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 26, - sym__automatic_semicolon, + ACTIONS(1072), 23, 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, @@ -138663,12 +158809,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [80914] = 3, + anon_sym_LBRACE_PIPE, + [94831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 14, + ACTIONS(4121), 1, + anon_sym_AMP, + ACTIONS(4123), 1, + anon_sym_PIPE, + ACTIONS(2108), 13, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138676,19 +158827,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1749), 26, - sym__automatic_semicolon, + ACTIONS(2106), 24, 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, @@ -138709,11 +158855,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [80962] = 3, + anon_sym_LBRACE_PIPE, + [94882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 14, + ACTIONS(4147), 1, + anon_sym_LBRACK, + ACTIONS(1858), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138727,14 +158877,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 26, - sym__automatic_semicolon, + ACTIONS(1856), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -138754,11 +158900,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [81010] = 3, + anon_sym_LBRACE_PIPE, + [94931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 14, + ACTIONS(3919), 1, + sym_regex_flags, + ACTIONS(3915), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138772,13 +158922,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1303), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + anon_sym_instanceof, + anon_sym_implements, + ACTIONS(3917), 21, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138794,221 +158943,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [81058] = 25, + [94980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1252), 2, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + anon_sym_BQUOTE, + ACTIONS(3783), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3777), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3914), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3395), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81150] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(3780), 19, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, - anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3405), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [81242] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, - anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3442), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81334] = 5, + [95031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1157), 1, + ACTIONS(1240), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3739), 4, sym__automatic_semicolon, - ACTIONS(1149), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1153), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3733), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139023,11 +159018,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1155), 23, + ACTIONS(3736), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139046,145 +159038,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [81386] = 25, + [95082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1260), 2, anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, - anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3401), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81478] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, - anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3444), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 14, + ACTIONS(3773), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3767), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139199,13 +159064,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1689), 26, - sym__automatic_semicolon, + ACTIONS(3770), 19, 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, @@ -139224,38 +159084,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [81618] = 14, + [95133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3946), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 12, + ACTIONS(1250), 15, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -139266,213 +159103,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 15, + ACTIONS(1248), 24, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [81688] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3354), 7, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3346), 12, - 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, - [81764] = 25, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [95180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(1276), 2, anon_sym_LPAREN, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_BANG, - ACTIONS(3505), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, - anon_sym_QMARK, - ACTIONS(3832), 1, - anon_sym_AMP_AMP, - ACTIONS(3838), 1, - anon_sym_AMP, - ACTIONS(3840), 1, - anon_sym_PIPE, - ACTIONS(3844), 1, - anon_sym_STAR_STAR, - ACTIONS(3848), 1, - anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3842), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3949), 2, + anon_sym_BQUOTE, + ACTIONS(3759), 4, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3836), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3826), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3846), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81856] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 7, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [81936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 14, + ACTIONS(3753), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139487,13 +159154,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 26, - sym__automatic_semicolon, + ACTIONS(3756), 19, 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, @@ -139512,37 +159174,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [81984] = 6, + [95231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_extends, - ACTIONS(3311), 2, + ACTIONS(1280), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3709), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3314), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3703), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3309), 21, + ACTIONS(3706), 19, anon_sym_as, - anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -139557,144 +159217,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [82038] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, - anon_sym_AMP, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3354), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3346), 6, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [82122] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [95282] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3928), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4051), 1, + anon_sym_QMARK, + ACTIONS(4053), 1, + anon_sym_AMP_AMP, + ACTIONS(4059), 1, + anon_sym_AMP, + ACTIONS(4061), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3946), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4069), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4055), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4063), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3354), 9, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 12, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82196] = 5, + ACTIONS(4029), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [95363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 1, - anon_sym_LT, - STATE(1753), 1, - sym_type_arguments, - ACTIONS(1964), 14, + ACTIONS(1866), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -139705,7 +159300,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 24, + ACTIONS(1864), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -139730,14 +159325,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [82248] = 5, + [95410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - anon_sym_EQ, - ACTIONS(3757), 1, + ACTIONS(3739), 4, sym__automatic_semicolon, - ACTIONS(1065), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3733), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139752,12 +159348,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1063), 24, + ACTIONS(3736), 21, 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, @@ -139777,15 +159370,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [82300] = 5, + [95459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 1, - sym__automatic_semicolon, - ACTIONS(1119), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1123), 14, + ACTIONS(3855), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139800,9 +159388,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1125), 23, + ACTIONS(3857), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -139824,34 +159414,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [82352] = 5, + [95506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 3, + ACTIONS(3751), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1763), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1067), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3745), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(1069), 21, + ACTIONS(3748), 21, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -139870,35 +159459,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [82404] = 13, + [95555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3946), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3354), 12, + ACTIONS(1054), 15, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -139909,10 +159478,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3346), 16, + ACTIONS(1052), 24, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + 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, @@ -139926,675 +159498,779 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82472] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [95602] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3354), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4023), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3346), 4, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82560] = 25, + ACTIONS(3861), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [95683] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4051), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4053), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4059), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4065), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4069), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3475), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, + ACTIONS(4055), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4063), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4043), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4057), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4049), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4067), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82652] = 25, + ACTIONS(4033), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [95764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(3923), 1, + sym__automatic_semicolon, + ACTIONS(1068), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1066), 23, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [95813] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3995), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3477), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82744] = 25, + ACTIONS(4073), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [95894] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4019), 1, + anon_sym_STAR_STAR, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - ACTIONS(3914), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3833), 19, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + anon_sym_instanceof, + anon_sym_BQUOTE, + [95953] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4019), 1, + anon_sym_STAR_STAR, + ACTIONS(4017), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3479), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, + ACTIONS(3993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4011), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3833), 16, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 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_BQUOTE, + [96018] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4019), 1, + anon_sym_STAR_STAR, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82836] = 25, + ACTIONS(3833), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [96087] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3481), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(3831), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82928] = 5, + ACTIONS(3833), 10, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [96160] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - STATE(1739), 1, - sym_arguments, - ACTIONS(3407), 14, - anon_sym_STAR, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4019), 1, + anon_sym_STAR_STAR, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4011), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3409), 24, + ACTIONS(3833), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [82980] = 8, + [96223] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(1789), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1791), 3, - anon_sym_GT, + ACTIONS(3831), 1, + anon_sym_QMARK, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4007), 1, + anon_sym_AMP_AMP, + ACTIONS(4013), 1, anon_sym_AMP, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(4019), 1, + anon_sym_STAR_STAR, + ACTIONS(4009), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4017), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 21, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4001), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3833), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [83038] = 25, + [96300] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3995), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3483), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83130] = 25, + ACTIONS(4077), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [96381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3995), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3485), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83222] = 25, + ACTIONS(4099), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [96462] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3995), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3487), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83314] = 12, + ACTIONS(4101), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [96543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1962), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3954), 1, - anon_sym_EQ, - ACTIONS(3956), 1, - anon_sym_RPAREN, - ACTIONS(2997), 2, + ACTIONS(1268), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3821), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3815), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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(585), 18, + ACTIONS(3818), 19, 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, @@ -140610,16 +160286,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [83380] = 5, + [96594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - STATE(1743), 1, - sym_arguments, - ACTIONS(3418), 14, + ACTIONS(1800), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -140633,12 +160305,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3420), 24, - sym__automatic_semicolon, + ACTIONS(1798), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140658,88 +160328,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [83432] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3960), 1, - anon_sym_RBRACE, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83526] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [96641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_LT, - ACTIONS(3965), 1, - anon_sym_DOT, - STATE(1763), 1, - sym_type_arguments, - ACTIONS(1926), 14, + ACTIONS(1788), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -140750,11 +160349,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1924), 23, + ACTIONS(1786), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140774,15 +160374,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [83580] = 5, + [96688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - anon_sym_AMP, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(2002), 12, + ACTIONS(1784), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -140790,17 +160387,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(2000), 26, - sym__automatic_semicolon, + ACTIONS(1782), 24, 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, @@ -140821,15 +160417,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [83632] = 5, + anon_sym_LBRACE_PIPE, + [96735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1249), 1, + ACTIONS(1244), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3829), 4, sym__automatic_semicolon, - ACTIONS(1241), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1245), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3823), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140844,11 +160444,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1247), 23, + ACTIONS(3826), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140867,16 +160464,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [83684] = 5, + [96786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3965), 1, - anon_sym_DOT, - STATE(1763), 1, - sym_type_arguments, - ACTIONS(1920), 15, + ACTIONS(3583), 16, anon_sym_STAR, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -140891,11 +160484,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1918), 23, + ACTIONS(3403), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140913,287 +160507,169 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [83736] = 25, + [96833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3859), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3914), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3489), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83828] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(3861), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2462), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3292), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83922] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [96880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(1772), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3352), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3364), 1, anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1770), 24, anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, anon_sym_COMMA, - ACTIONS(3969), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84016] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [96927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3971), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84110] = 4, + ACTIONS(3865), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [97008] = 5, ACTIONS(3), 1, sym_comment, - STATE(1753), 1, - sym_type_arguments, - ACTIONS(1759), 15, + ACTIONS(1264), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3751), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3745), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141207,10 +160683,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 24, + ACTIONS(3748), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141229,29 +160703,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [84160] = 8, + [97059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2541), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(567), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(571), 12, + ACTIONS(1768), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141259,13 +160716,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 18, + ACTIONS(1766), 24, anon_sym_as, + 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, @@ -141282,10 +160745,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [84218] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [97106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 14, + ACTIONS(3863), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141300,7 +160765,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 26, + ACTIONS(3865), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -141326,85 +160791,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [84266] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3364), 1, - anon_sym_PIPE, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3973), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3360), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3350), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3370), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84360] = 5, + [97153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - anon_sym_EQ, - ACTIONS(3975), 1, - sym__automatic_semicolon, - ACTIONS(1065), 15, + ACTIONS(3867), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141418,10 +160809,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1063), 23, + ACTIONS(3869), 25, + sym__automatic_semicolon, 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, @@ -141441,12 +160835,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [84412] = 3, + [97200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 14, + ACTIONS(1850), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141460,13 +160854,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 26, - sym__automatic_semicolon, + ACTIONS(1848), 24, 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, @@ -141487,125 +160878,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [84460] = 26, + anon_sym_LBRACE_PIPE, + [97247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3977), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84554] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 1, + ACTIONS(3873), 6, sym__automatic_semicolon, - ACTIONS(1181), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1185), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1187), 23, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [84606] = 3, + [97328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 14, + ACTIONS(3871), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141620,7 +160958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 26, + ACTIONS(3873), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -141646,11 +160984,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [84654] = 3, + [97375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 14, + ACTIONS(3843), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141665,7 +161002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 26, + ACTIONS(3845), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -141691,11 +161028,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [84702] = 3, + [97422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 14, + ACTIONS(3875), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141710,7 +161046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1735), 26, + ACTIONS(3877), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -141736,12 +161072,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [84750] = 3, + [97469] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 1, + anon_sym_STAR, + ACTIONS(4155), 1, + anon_sym_RBRACE, + ACTIONS(4157), 1, + anon_sym_LBRACK, + ACTIONS(4160), 1, + anon_sym_async, + ACTIONS(4163), 1, + anon_sym_DASH, + ACTIONS(4166), 1, + anon_sym_DQUOTE, + ACTIONS(4169), 1, + anon_sym_SQUOTE, + ACTIONS(4172), 1, + sym_number, + ACTIONS(4175), 1, + anon_sym_AT, + ACTIONS(4178), 1, + anon_sym_static, + ACTIONS(4181), 1, + anon_sym_abstract, + ACTIONS(4190), 1, + sym_readonly, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(4184), 2, + anon_sym_get, + anon_sym_set, + STATE(1947), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4187), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4149), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [97552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 14, + ACTIONS(4147), 1, + anon_sym_LBRACK, + ACTIONS(1808), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141755,14 +161155,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1277), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1806), 23, 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, @@ -141782,10 +161178,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [84798] = 3, + anon_sym_LBRACE_PIPE, + [97601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(3839), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141800,7 +161197,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1781), 26, + ACTIONS(3841), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -141826,80 +161223,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [84846] = 26, + [97648] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3995), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4013), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4015), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4019), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4023), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3979), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(4009), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4017), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4011), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(4001), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4021), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84940] = 3, + ACTIONS(3841), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [97729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(3596), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141913,13 +161304,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 26, - sym__automatic_semicolon, + ACTIONS(3598), 23, 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, @@ -141939,14 +161327,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [84988] = 4, + anon_sym_LBRACE_PIPE, + [97776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - anon_sym_LBRACK, - ACTIONS(1741), 14, + ACTIONS(3600), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141960,13 +161348,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 25, - sym__automatic_semicolon, + ACTIONS(3602), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -141985,18 +161371,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85038] = 5, + anon_sym_LBRACE_PIPE, + [97823] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 1, - sym__automatic_semicolon, - ACTIONS(1217), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1221), 14, - anon_sym_STAR, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -142009,14 +161400,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1223), 23, + ACTIONS(3657), 20, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -142030,13 +161420,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85090] = 3, + [97880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 14, + ACTIONS(3741), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142051,7 +161439,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 26, + ACTIONS(3743), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -142077,11 +161465,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85138] = 3, + [97927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 14, + ACTIONS(3709), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3703), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142096,13 +161488,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 26, - sym__automatic_semicolon, + ACTIONS(3706), 21, 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, @@ -142122,16 +161510,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85186] = 5, + [97976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 1, + ACTIONS(3759), 4, sym__automatic_semicolon, - ACTIONS(1165), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1169), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3753), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142146,11 +161533,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 23, + ACTIONS(3756), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142170,16 +161555,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85238] = 5, + [98025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1751), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1815), 12, + ACTIONS(3773), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3767), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142188,17 +161572,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1813), 24, - sym__automatic_semicolon, + ACTIONS(3770), 21, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -142217,10 +161600,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85290] = 3, + [98074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 14, + ACTIONS(3783), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3777), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142235,13 +161623,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 26, - sym__automatic_semicolon, + ACTIONS(3780), 21, 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, @@ -142261,12 +161645,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85338] = 3, + [98123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 14, + ACTIONS(1834), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142280,13 +161664,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 26, - sym__automatic_semicolon, + ACTIONS(1832), 24, 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, @@ -142307,17 +161688,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [85386] = 6, + anon_sym_LBRACE_PIPE, + [98170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - anon_sym_AMP, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(3944), 1, - anon_sym_extends, - ACTIONS(1998), 12, + ACTIONS(597), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142325,17 +161702,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1996), 25, - sym__automatic_semicolon, + ACTIONS(595), 24, 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, @@ -142355,11 +161731,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85440] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [98217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 14, + ACTIONS(597), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142373,13 +161752,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 26, - sym__automatic_semicolon, + ACTIONS(595), 24, 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, @@ -142400,36 +161776,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [85488] = 6, + anon_sym_LBRACE_PIPE, + [98264] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, - anon_sym_LBRACK, - ACTIONS(1805), 2, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3314), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 12, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(3979), 1, + anon_sym_LBRACK, + ACTIONS(3983), 1, + sym_number, + ACTIONS(4195), 1, + anon_sym_RBRACE, + ACTIONS(4197), 1, + anon_sym_async, + ACTIONS(4199), 1, + anon_sym_static, + ACTIONS(4205), 1, + sym_readonly, + STATE(2476), 1, + sym_accessibility_modifier, + STATE(3735), 1, + aux_sym_object_repeat1, + STATE(4048), 1, + sym_object, + STATE(4223), 1, + sym_array, + ACTIONS(4201), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4203), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2818), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3738), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4193), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [98349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3309), 22, - sym__automatic_semicolon, + ACTIONS(1762), 24, 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, @@ -142448,16 +161882,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85542] = 5, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [98396] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, - sym__automatic_semicolon, - ACTIONS(1129), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1133), 14, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4207), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1947), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [98479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3604), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142471,11 +161966,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1135), 23, + ACTIONS(3606), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142495,41 +161989,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [85594] = 9, + anon_sym_LBRACE_PIPE, + [98526] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_extends, - ACTIONS(2601), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3457), 1, - anon_sym_COMMA, - ACTIONS(3460), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(3383), 1, + anon_sym_QMARK_DOT, + ACTIONS(3653), 1, + anon_sym_EQ, + STATE(3404), 1, + sym_call_type_arguments, + STATE(1914), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 21, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -142545,14 +162043,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [85654] = 4, + [98591] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DASH, + ACTIONS(3427), 1, + anon_sym_LBRACK, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3963), 1, + anon_sym_async, + ACTIONS(3965), 1, + sym_number, + ACTIONS(3967), 1, + anon_sym_static, + ACTIONS(3969), 1, + anon_sym_abstract, + ACTIONS(3973), 1, + sym_readonly, + ACTIONS(4209), 1, + anon_sym_RBRACE, + STATE(2432), 1, + sym_method_definition, + STATE(2469), 1, + sym_accessibility_modifier, + ACTIONS(3971), 2, + anon_sym_get, + anon_sym_set, + STATE(1964), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3646), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3417), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [98674] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1762), 4, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1831), 14, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1070), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142560,19 +162126,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1829), 25, - sym__automatic_semicolon, + ACTIONS(1072), 20, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -142591,23 +162151,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85704] = 7, + [98725] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3879), 1, + ACTIONS(3383), 1, + anon_sym_QMARK_DOT, + ACTIONS(3651), 1, anon_sym_EQ, - ACTIONS(571), 14, + STATE(3404), 1, + sym_call_type_arguments, + STATE(1914), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -142618,13 +162187,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 22, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -142640,11 +162204,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [85760] = 3, + [98790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 14, + ACTIONS(3829), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3823), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142659,13 +162227,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1273), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3826), 21, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142685,11 +162249,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85808] = 3, + [98839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 14, + ACTIONS(3821), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3815), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142704,13 +162272,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 26, - sym__automatic_semicolon, + ACTIONS(3818), 21, 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, @@ -142730,14 +162294,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [85856] = 4, + [98888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1271), 15, + ACTIONS(3729), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -142753,7 +162313,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 23, + ACTIONS(3731), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -142777,61 +162337,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [85906] = 3, + [98934] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, anon_sym_AMP, + ACTIONS(4227), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(567), 26, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4099), 5, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99014] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(3871), 1, + anon_sym_LBRACE, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3873), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [85954] = 5, + [99096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - sym__automatic_semicolon, - ACTIONS(1093), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1097), 14, + ACTIONS(3867), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142845,11 +162477,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 23, + ACTIONS(3869), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142869,16 +162500,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86006] = 5, + anon_sym_LBRACE_PIPE, + [99142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 1, - sym__automatic_semicolon, - ACTIONS(1083), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1087), 14, + ACTIONS(3863), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142892,11 +162520,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 23, + ACTIONS(3865), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142916,84 +162543,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86058] = 26, + anon_sym_LBRACE_PIPE, + [99188] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3863), 1, + anon_sym_LBRACE, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LT, - ACTIONS(3356), 1, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, anon_sym_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(3364), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(3368), 1, + ACTIONS(4261), 1, anon_sym_STAR_STAR, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3382), 1, - anon_sym_QMARK, - ACTIONS(3384), 1, + ACTIONS(4265), 1, anon_sym_QMARK_QMARK, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3983), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3358), 2, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(4259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3372), 2, + ACTIONS(4267), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3344), 3, + ACTIONS(4237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3360), 3, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3350), 4, + ACTIONS(3865), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3370), 5, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86152] = 5, + [99270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym__automatic_semicolon, - ACTIONS(1227), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1231), 14, + ACTIONS(3859), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -143007,11 +162624,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1233), 23, + ACTIONS(3861), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -143031,89 +162647,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86204] = 6, + anon_sym_LBRACE_PIPE, + [99316] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - anon_sym_AMP, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(3944), 1, - anon_sym_extends, - ACTIONS(3449), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(3859), 1, + anon_sym_LBRACE, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3861), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [86258] = 9, + [99398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1962), 1, - anon_sym_extends, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3463), 1, - anon_sym_COMMA, - ACTIONS(3466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(3855), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 21, - sym__automatic_semicolon, + ACTIONS(3857), 23, anon_sym_as, - anon_sym_RBRACE, + 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, @@ -143130,11 +162751,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86318] = 3, + anon_sym_LBRACE_PIPE, + [99444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 14, + ACTIONS(3785), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -143148,13 +162771,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3787), 23, 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, @@ -143174,86 +162794,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [86366] = 25, + anon_sym_LBRACE_PIPE, + [99490] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3785), 1, + anon_sym_LBRACE, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, anon_sym_BANG, - ACTIONS(3505), 1, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_as, - ACTIONS(3828), 1, - anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(4247), 1, anon_sym_QMARK, - ACTIONS(3832), 1, + ACTIONS(4249), 1, anon_sym_AMP_AMP, - ACTIONS(3838), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(3840), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(3844), 1, + ACTIONS(4261), 1, anon_sym_STAR_STAR, - ACTIONS(3848), 1, + ACTIONS(4265), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3444), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3513), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3834), 2, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3842), 2, + ACTIONS(4259), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3824), 3, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3836), 3, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3826), 4, + ACTIONS(3787), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3846), 5, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86458] = 7, + [99572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(3858), 1, - anon_sym_EQ, - ACTIONS(571), 14, + ACTIONS(1246), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143268,13 +162874,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 22, - sym__automatic_semicolon, + ACTIONS(1244), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -143291,11 +162898,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [86514] = 3, + anon_sym_extends, + [99618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(3839), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -143309,13 +162918,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 26, - sym__automatic_semicolon, + ACTIONS(3841), 23, 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, @@ -143335,34 +162941,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [86562] = 13, + anon_sym_LBRACE_PIPE, + [99664] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1399), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, + ACTIONS(3383), 1, anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3813), 1, - anon_sym_LT, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1176), 2, + STATE(3404), 1, + sym_call_type_arguments, + STATE(1914), 2, sym_template_string, sym_arguments, - ACTIONS(3388), 12, + ACTIONS(599), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -143374,10 +162976,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3390), 16, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -143391,16 +162991,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86630] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [99726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 14, + ACTIONS(1270), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143415,13 +163011,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 23, - sym__automatic_semicolon, + ACTIONS(1268), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -143439,184 +163036,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [86684] = 4, + [99772] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(569), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(567), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3861), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [86734] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3989), 1, - anon_sym_RBRACE, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1719), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [86817] = 25, + [99852] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3839), 1, + anon_sym_LBRACE, + ACTIONS(4239), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4249), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4261), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4003), 1, - anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4259), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(3841), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86908] = 3, + [99934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 15, + ACTIONS(3699), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -143632,7 +163176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 24, + ACTIONS(3701), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -143655,74 +163199,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [86955] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4005), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1799), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [87038] = 3, + [99980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 15, + ACTIONS(3695), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -143738,7 +163219,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1209), 24, + ACTIONS(3697), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -143761,157 +163242,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [87085] = 7, + [100026] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(4007), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 21, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4291), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [87140] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_EQ, - ACTIONS(571), 14, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(585), 21, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3865), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_BQUOTE, anon_sym_implements, - [87195] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(1789), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(1791), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4271), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 20, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [87252] = 3, + [100106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 14, + ACTIONS(4293), 1, + anon_sym_LBRACE, + ACTIONS(1264), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3751), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3745), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143926,13 +163329,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 25, - sym__automatic_semicolon, + ACTIONS(3748), 19, 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, @@ -143951,12 +163349,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [87299] = 3, + [100158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 14, + ACTIONS(1200), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -143970,13 +163368,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3570), 25, - sym__automatic_semicolon, + ACTIONS(1202), 23, 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, @@ -143996,11 +163391,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87346] = 3, + anon_sym_LBRACE_PIPE, + [100204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 14, + ACTIONS(1230), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -144014,13 +163411,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 25, - sym__automatic_semicolon, + ACTIONS(1232), 23, 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, @@ -144040,35 +163434,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87393] = 6, + anon_sym_LBRACE_PIPE, + [100250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_extends, - ACTIONS(3311), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3314), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 12, + ACTIONS(1172), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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(3309), 20, + ACTIONS(1174), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -144087,34 +163477,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87446] = 5, + anon_sym_LBRACE_PIPE, + [100296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1761), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1067), 12, + ACTIONS(1182), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, 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(1069), 20, + ACTIONS(1184), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -144133,20 +163520,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87497] = 5, + anon_sym_LBRACE_PIPE, + [100342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1761), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1067), 13, + ACTIONS(1254), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -144154,13 +163533,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1069), 20, + ACTIONS(1252), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -144179,10 +163563,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87548] = 3, + anon_sym_extends, + [100388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(571), 14, + ACTIONS(4295), 1, + anon_sym_LBRACE, + ACTIONS(1240), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3739), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3733), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144197,13 +163590,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 25, - sym__automatic_semicolon, + ACTIONS(3736), 19, 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, @@ -144222,31 +163610,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [87595] = 9, + [100440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4017), 1, - anon_sym_QMARK, - ACTIONS(4014), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(571), 13, + ACTIONS(3723), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -144254,9 +163629,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(3725), 23, anon_sym_as, + 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, @@ -144273,30 +163652,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87654] = 9, + anon_sym_LBRACE_PIPE, + [100486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(4020), 1, - anon_sym_EQ, - ACTIONS(4026), 1, - anon_sym_QMARK, - ACTIONS(4023), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1056), 1, anon_sym_COLON, - ACTIONS(571), 13, + ACTIONS(1054), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -144304,9 +163673,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(1052), 23, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144323,73 +163696,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87713] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4031), 1, - anon_sym_RBRACE, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_async, - ACTIONS(4037), 1, - sym_number, - ACTIONS(4039), 1, - anon_sym_static, - ACTIONS(4045), 1, - sym_readonly, - STATE(2145), 1, - sym_accessibility_modifier, - STATE(3198), 1, - aux_sym_object_repeat1, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(4041), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4043), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2394), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3033), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4029), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [87798] = 3, + anon_sym_extends, + [100534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 14, + ACTIONS(4297), 1, + anon_sym_AMP, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(4301), 1, + anon_sym_extends, + ACTIONS(2100), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144398,18 +163715,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3487), 25, + ACTIONS(2098), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144429,79 +163743,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [87845] = 25, + [100586] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(4241), 1, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, - anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4047), 1, - anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4267), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3560), 14, + ACTIONS(3831), 14, anon_sym_STAR, - anon_sym_BANG, + anon_sym_LBRACE, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -144514,16 +163772,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3562), 25, - sym__automatic_semicolon, + ACTIONS(3833), 18, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144537,42 +163789,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [87983] = 8, + anon_sym_LBRACE_PIPE, + [100642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(1962), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(1162), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 20, + ACTIONS(1164), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144589,197 +163833,257 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88040] = 9, + anon_sym_LBRACE_PIPE, + [100688] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3954), 1, - anon_sym_EQ, - ACTIONS(2997), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(571), 13, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, + anon_sym_QMARK, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3873), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [88099] = 3, + [100768] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3558), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3841), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [88146] = 8, + [100848] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(1735), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3460), 3, - anon_sym_GT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, + anon_sym_QMARK, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3787), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [88203] = 3, + [100928] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1135), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3765), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [88250] = 3, + [101008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 14, + ACTIONS(4297), 1, + anon_sym_AMP, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(4301), 1, + anon_sym_extends, + ACTIONS(2104), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144788,18 +164092,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1187), 25, + ACTIONS(2102), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144819,12 +164120,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [88297] = 3, + [101060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 14, + ACTIONS(3843), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -144838,13 +164139,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3554), 25, - sym__automatic_semicolon, + ACTIONS(3845), 23, 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, @@ -144864,82 +164162,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88344] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, - anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 1, - anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4049), 1, - anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88435] = 6, + anon_sym_LBRACE_PIPE, + [101106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, - anon_sym_AMP, - ACTIONS(4053), 1, - anon_sym_PIPE, - ACTIONS(4055), 1, - anon_sym_extends, - ACTIONS(1994), 13, + ACTIONS(3897), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -144949,11 +164176,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1992), 23, + ACTIONS(3899), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -144977,76 +164206,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [88488] = 25, + [101152] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4219), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4225), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4227), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4231), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4235), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3765), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101232] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4221), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(3787), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88579] = 3, + [101312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 15, + ACTIONS(3875), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -145062,7 +164345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1707), 24, + ACTIONS(3877), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145085,40 +164368,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [88626] = 8, + [101358] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(1789), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(1791), 3, - anon_sym_GT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, anon_sym_AMP, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(571), 12, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4303), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4033), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3719), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 19, + ACTIONS(3721), 23, anon_sym_as, + 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, @@ -145136,11 +164473,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [88683] = 3, + [101486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 14, + ACTIONS(1152), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145154,13 +164492,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1089), 25, - sym__automatic_semicolon, + ACTIONS(1154), 23, 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, @@ -145180,11 +164515,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88730] = 3, + anon_sym_LBRACE_PIPE, + [101532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 14, + ACTIONS(1114), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145198,13 +164535,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1099), 25, - sym__automatic_semicolon, + ACTIONS(1116), 23, 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, @@ -145224,10 +164558,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88777] = 3, + anon_sym_LBRACE_PIPE, + [101578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 15, + ACTIONS(1124), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -145243,7 +164578,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 24, + ACTIONS(1126), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145266,18 +164601,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [88824] = 6, + [101624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, - anon_sym_AMP, - ACTIONS(4053), 1, - anon_sym_PIPE, - ACTIONS(4055), 1, - anon_sym_extends, - ACTIONS(1998), 13, + ACTIONS(1098), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -145287,11 +164615,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1996), 23, + ACTIONS(1100), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145315,10 +164645,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [88877] = 3, + [101670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 15, + ACTIONS(1088), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -145334,7 +164664,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 24, + ACTIONS(1090), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145357,12 +164687,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [88924] = 3, + [101716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 15, + ACTIONS(1078), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -145378,7 +164707,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 24, + ACTIONS(1076), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145401,18 +164730,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [88971] = 5, + [101762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, - anon_sym_AMP, - ACTIONS(4053), 1, - anon_sym_PIPE, - ACTIONS(2002), 13, + ACTIONS(1262), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145420,11 +164743,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(2000), 24, + ACTIONS(1260), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145448,14 +164774,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [89022] = 3, + [101808] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 16, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3841), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145469,7 +164852,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 23, + ACTIONS(1272), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145492,12 +164876,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, + [101934] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4029), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [89069] = 3, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 14, + ACTIONS(3741), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145511,13 +164957,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3444), 25, - sym__automatic_semicolon, + ACTIONS(3743), 23, 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, @@ -145537,11 +164980,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [89116] = 3, + anon_sym_LBRACE_PIPE, + [102062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 14, + ACTIONS(1134), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145555,13 +165000,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3483), 25, - sym__automatic_semicolon, + ACTIONS(1136), 23, 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, @@ -145581,39 +165023,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [89163] = 9, + anon_sym_LBRACE_PIPE, + [102108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1962), 1, - anon_sym_extends, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(3463), 1, - anon_sym_COMMA, - ACTIONS(3466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 12, + ACTIONS(1214), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 19, + ACTIONS(1216), 23, anon_sym_as, + 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, @@ -145631,10 +165067,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [89222] = 3, + [102154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 14, + ACTIONS(4307), 1, + anon_sym_LBRACE, + ACTIONS(1280), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3703), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145649,13 +165093,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 25, - sym__automatic_semicolon, + ACTIONS(3706), 19, 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, @@ -145674,11 +165113,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [102206] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4033), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BQUOTE, - [89269] = 3, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 14, + ACTIONS(4309), 1, + anon_sym_LBRACE, + ACTIONS(1276), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3759), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3753), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145693,13 +165199,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3579), 25, - sym__automatic_semicolon, + ACTIONS(3756), 19, 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, @@ -145718,11 +165219,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [89316] = 3, + [102338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 14, + ACTIONS(4297), 1, + anon_sym_AMP, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(2108), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145731,18 +165235,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1233), 25, + ACTIONS(2106), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145762,16 +165263,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_extends, + [102388] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4029), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BQUOTE, - [89363] = 3, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102468] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 15, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(2761), 1, + anon_sym_QMARK_DOT, + STATE(3354), 1, + sym_call_type_arguments, + STATE(2077), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -145782,13 +165358,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1689), 24, + ACTIONS(611), 16, anon_sym_as, - 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, @@ -145804,40 +165375,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [89410] = 6, + [102530] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_extends, - ACTIONS(3314), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3311), 3, - anon_sym_COMMA, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3307), 13, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3381), 1, + anon_sym_QMARK_DOT, + STATE(3492), 1, + sym_call_type_arguments, + STATE(1616), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(3309), 20, + ACTIONS(611), 16, 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, @@ -145853,11 +165426,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [89463] = 3, + [102592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 14, + ACTIONS(4311), 1, + anon_sym_LBRACE, + ACTIONS(1260), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3773), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3767), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145872,13 +165452,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1223), 25, - sym__automatic_semicolon, + ACTIONS(3770), 19, 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, @@ -145897,13 +165472,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [89510] = 4, + [102644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3975), 1, - sym__automatic_semicolon, - ACTIONS(1065), 15, + ACTIONS(3715), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -145919,7 +165491,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1063), 23, + ACTIONS(3717), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -145943,11 +165515,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [89559] = 3, + [102690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 14, + ACTIONS(3711), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145961,13 +165534,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3641), 25, - sym__automatic_semicolon, + ACTIONS(3713), 23, 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, @@ -145987,10 +165557,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [89606] = 3, + anon_sym_LBRACE_PIPE, + [102736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1207), 15, + ACTIONS(1146), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -146006,7 +165577,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 24, + ACTIONS(1144), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -146029,12 +165600,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [89653] = 3, + [102782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 14, + ACTIONS(4313), 1, + anon_sym_LBRACE, + ACTIONS(1252), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3783), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3777), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146049,13 +165627,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3645), 25, - sym__automatic_semicolon, + ACTIONS(3780), 19, 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, @@ -146074,15 +165647,189 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [89700] = 3, + [102834] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4319), 1, + anon_sym_LBRACK, + ACTIONS(4321), 1, + anon_sym_async, + ACTIONS(4323), 1, + sym_number, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(4325), 2, + anon_sym_get, + anon_sym_set, + STATE(2543), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [102900] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4321), 1, + anon_sym_async, + ACTIONS(4323), 1, + sym_number, + ACTIONS(4327), 1, + anon_sym_LBRACK, + ACTIONS(4329), 1, + sym_readonly, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(4325), 2, + anon_sym_get, + anon_sym_set, + STATE(2543), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [102968] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4333), 1, + sym_number, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(4335), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [103032] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 14, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, + anon_sym_QMARK_DOT, + STATE(3410), 1, + sym_call_type_arguments, + STATE(1688), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -146093,16 +165840,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3497), 25, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -146118,21 +165857,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [89747] = 7, + [103094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_EQ, - ACTIONS(571), 15, + ACTIONS(1278), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146146,10 +165875,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 20, + ACTIONS(1276), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, 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, @@ -146166,21 +165899,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [89802] = 7, + anon_sym_extends, + [103140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, - anon_sym_DOT, - ACTIONS(4061), 1, - anon_sym_EQ, - ACTIONS(571), 15, + ACTIONS(1282), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146194,10 +165918,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 20, + ACTIONS(1280), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, 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, @@ -146214,136 +165942,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [89857] = 22, + anon_sym_extends, + [103186] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4033), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(4037), 1, - sym_number, - ACTIONS(4065), 1, - anon_sym_RBRACE, - ACTIONS(4067), 1, - anon_sym_async, - ACTIONS(4069), 1, - anon_sym_static, - ACTIONS(4075), 1, - sym_readonly, - STATE(2145), 1, - sym_accessibility_modifier, - STATE(3055), 1, - aux_sym_object_repeat1, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(4071), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4073), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2394), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3110), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4063), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [89942] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(3763), 1, + anon_sym_LBRACE, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4077), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1821), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [90025] = 3, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3765), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 15, + ACTIONS(3763), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -146359,7 +166023,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1251), 24, + ACTIONS(3765), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -146382,14 +166046,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [90072] = 3, + [103314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 15, + ACTIONS(1192), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(599), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146403,10 +166068,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1291), 24, + ACTIONS(611), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146425,85 +166091,280 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90119] = 3, + [103362] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3709), 25, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4047), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103442] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, + anon_sym_QMARK, + ACTIONS(4275), 1, anon_sym_AMP_AMP, + ACTIONS(4281), 1, + anon_sym_AMP, + ACTIONS(4283), 1, + anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4071), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [103522] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3873), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BQUOTE, - [90166] = 9, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103602] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_extends, - ACTIONS(2821), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3457), 1, - anon_sym_COMMA, - ACTIONS(3460), 3, - anon_sym_GT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, + anon_sym_QMARK, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, - ACTIONS(571), 12, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4073), 5, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103682] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 19, + ACTIONS(3833), 18, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146511,24 +166372,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90225] = 4, + anon_sym_implements, + [103740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_EQ_GT, - ACTIONS(1271), 14, + ACTIONS(3791), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146542,12 +166399,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 24, + ACTIONS(3793), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146567,38 +166422,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90274] = 8, + anon_sym_LBRACE_PIPE, + [103786] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(569), 3, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 8, + anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3833), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_implements, + [103850] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, anon_sym_AMP, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(571), 12, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4337), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3997), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4339), 1, anon_sym_LBRACE, + ACTIONS(3821), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3815), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 19, + ACTIONS(3818), 21, 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, @@ -146615,55 +166581,189 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90331] = 3, + [103982] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1295), 24, + ACTIONS(4289), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 10, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_implements, + [104050] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3865), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [104130] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3861), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90378] = 3, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3647), 14, + ACTIONS(4341), 1, + anon_sym_LBRACE, + ACTIONS(3829), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3823), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146678,13 +166778,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3649), 25, - sym__automatic_semicolon, + ACTIONS(3826), 21, 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, @@ -146704,54 +166800,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90425] = 3, + [104260] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 16, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, + anon_sym_AMP, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 9, + anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_implements, + [104332] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3319), 23, + ACTIONS(3833), 15, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90472] = 3, + anon_sym_implements, + [104394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 15, + ACTIONS(3849), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -146767,7 +166926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 24, + ACTIONS(3851), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -146790,67 +166949,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [90519] = 8, + [104440] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(567), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(569), 2, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3831), 1, + anon_sym_QMARK, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, - ACTIONS(571), 12, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3833), 7, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [90576] = 3, + anon_sym_implements, + [104516] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 16, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3373), 1, + anon_sym_QMARK_DOT, + STATE(3364), 1, + sym_call_type_arguments, + STATE(1992), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -146861,13 +167042,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3329), 23, + ACTIONS(611), 16, anon_sym_as, - 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, @@ -146883,20 +167059,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90623] = 6, + [104578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2964), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 15, - anon_sym_STAR, + ACTIONS(4313), 1, anon_sym_LBRACE, + ACTIONS(3783), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3777), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146910,10 +167082,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 21, + ACTIONS(3780), 21, anon_sym_as, - 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, @@ -146930,16 +167104,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90676] = 4, + [104628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, - sym__automatic_semicolon, - ACTIONS(1177), 15, - anon_sym_STAR, + ACTIONS(4311), 1, anon_sym_LBRACE, + ACTIONS(3773), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3767), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146953,9 +167127,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1175), 23, + ACTIONS(3770), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -146976,13 +167149,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90725] = 3, + [104678] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 15, - anon_sym_STAR, + ACTIONS(4341), 1, anon_sym_LBRACE, + ACTIONS(1244), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3829), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3823), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -146996,10 +167175,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 24, + ACTIONS(3826), 19, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147018,17 +167195,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90772] = 4, + [104730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_DOT, - ACTIONS(1640), 15, - anon_sym_STAR, + ACTIONS(4309), 1, anon_sym_LBRACE, + ACTIONS(3759), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3753), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147042,11 +167218,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1638), 23, + ACTIONS(3756), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147064,18 +167240,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90821] = 4, + [104780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, - anon_sym_LT, - ACTIONS(903), 14, - anon_sym_STAR, + ACTIONS(4307), 1, anon_sym_LBRACE, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3703), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -147086,9 +167263,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(901), 24, + ACTIONS(3706), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -147109,65 +167285,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [90870] = 9, + [104830] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(4081), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_COLON, - ACTIONS(4086), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(571), 12, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, anon_sym_AMP, + ACTIONS(4227), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4047), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [90929] = 3, + [104910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 16, + ACTIONS(1054), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147181,7 +167363,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 23, + ACTIONS(1052), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -147204,11 +167387,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [90976] = 3, + anon_sym_extends, + [104956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 15, + ACTIONS(1082), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -147224,7 +167407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 24, + ACTIONS(1080), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -147247,12 +167430,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [91023] = 3, + [105002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3651), 14, + ACTIONS(4339), 1, + anon_sym_LBRACE, + ACTIONS(1268), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(3821), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3815), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147267,13 +167457,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3653), 25, - sym__automatic_semicolon, + ACTIONS(3818), 19, 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, @@ -147292,11 +167477,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [91070] = 3, + [105054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 14, + ACTIONS(1266), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147311,13 +167495,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3548), 25, - sym__automatic_semicolon, + ACTIONS(1264), 24, + sym__call_type_arguments_closing_bracket, 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, @@ -147337,12 +167519,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91117] = 3, + anon_sym_extends, + [105100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 15, + ACTIONS(1258), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147356,7 +167538,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1269), 24, + ACTIONS(1256), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -147380,127 +167563,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [91164] = 4, + [105146] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4089), 1, - sym_regex_flags, - ACTIONS(3807), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3809), 21, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4077), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [91213] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - anon_sym_STAR, - ACTIONS(4097), 1, - anon_sym_RBRACE, - ACTIONS(4099), 1, - anon_sym_LBRACK, - ACTIONS(4102), 1, - anon_sym_async, - ACTIONS(4105), 1, - anon_sym_DASH, - ACTIONS(4108), 1, - anon_sym_DQUOTE, - ACTIONS(4111), 1, - anon_sym_SQUOTE, - ACTIONS(4114), 1, - sym_number, - ACTIONS(4117), 1, - anon_sym_AT, - ACTIONS(4120), 1, - anon_sym_static, - ACTIONS(4123), 1, - anon_sym_abstract, - ACTIONS(4132), 1, - sym_readonly, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(4126), 2, - anon_sym_get, - anon_sym_set, - STATE(1799), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4129), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4091), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [91296] = 7, + anon_sym_instanceof, + [105226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_EQ, - ACTIONS(571), 14, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(3879), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147514,12 +167648,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 21, - sym__automatic_semicolon, + ACTIONS(3881), 20, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147536,60 +167668,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91351] = 7, + anon_sym_LBRACE_PIPE, + [105278] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 21, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4099), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [91406] = 3, + [105358] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3302), 16, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -147604,13 +167757,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3155), 23, + ACTIONS(3657), 18, anon_sym_as, 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, @@ -147624,15 +167774,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [91453] = 3, + [105412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, + ACTIONS(742), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -147646,13 +167795,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3544), 25, - sym__automatic_semicolon, + ACTIONS(740), 23, 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, @@ -147672,10 +167818,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91500] = 3, + anon_sym_LBRACE_PIPE, + [105458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 15, + ACTIONS(3883), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -147691,7 +167838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1277), 24, + ACTIONS(3885), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -147714,256 +167861,383 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [91547] = 21, + [105504] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4139), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1819), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [91630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1809), 24, - anon_sym_as, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4101), 5, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105584] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4343), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4101), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [91677] = 5, + [105666] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 2, + ACTIONS(2656), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(1751), 2, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, anon_sym_AMP, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(1815), 13, - anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4345), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1813), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4099), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [91728] = 3, + [105748] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, anon_sym_AMP, + ACTIONS(4257), 1, anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4347), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1817), 24, - anon_sym_as, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4077), 4, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105830] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4249), 1, anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(3831), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3833), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [91775] = 3, + [105906] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 14, - anon_sym_STAR, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 11, + anon_sym_LBRACE, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3657), 25, - sym__automatic_semicolon, + ACTIONS(3833), 14, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91822] = 3, + anon_sym_LBRACE_PIPE, + [105968] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 14, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_QMARK_DOT, + STATE(3379), 1, + sym_call_type_arguments, + STATE(1569), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -147974,16 +168248,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3479), 25, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147999,364 +168265,312 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [91869] = 6, + [106030] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, anon_sym_AMP, + ACTIONS(4227), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 22, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4071), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [91922] = 3, + [106110] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1825), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4249), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 3, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3833), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [91969] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4037), 1, - sym_number, - ACTIONS(4143), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_async, - ACTIONS(4147), 1, - anon_sym_static, - ACTIONS(4153), 1, - sym_readonly, - STATE(2145), 1, - sym_accessibility_modifier, - STATE(3141), 1, - aux_sym_object_repeat1, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(4149), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4151), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2394), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3140), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4141), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92054] = 22, + [106182] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4033), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(4037), 1, - sym_number, - ACTIONS(4157), 1, - anon_sym_RBRACE, - ACTIONS(4159), 1, - anon_sym_async, - ACTIONS(4161), 1, - anon_sym_static, - ACTIONS(4167), 1, - sym_readonly, - STATE(2145), 1, - sym_accessibility_modifier, - STATE(3117), 1, - aux_sym_object_repeat1, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(4163), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4165), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2394), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3104), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4155), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 14, - anon_sym_STAR, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 4, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1201), 25, - sym__automatic_semicolon, + ACTIONS(4263), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 9, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [92186] = 3, + anon_sym_LBRACE_PIPE, + [106250] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, anon_sym_AMP, + ACTIONS(4283), 1, anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3661), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3997), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [92233] = 3, + [106330] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 15, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 9, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1777), 24, + ACTIONS(3833), 14, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [92280] = 3, + [106394] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 14, + ACTIONS(607), 1, + anon_sym_QMARK_DOT, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(3328), 1, + sym_call_type_arguments, + STATE(115), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -148367,16 +168581,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3169), 25, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148392,76 +168598,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [92327] = 21, + [106456] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4169), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1799), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1275), 15, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 14, anon_sym_STAR, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -148474,144 +168629,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1273), 24, + ACTIONS(3833), 17, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [92457] = 21, + [106514] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4171), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1799), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4247), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, anon_sym_AMP, + ACTIONS(4257), 1, anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4349), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1749), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4073), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [92587] = 3, + [106596] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 14, anon_sym_STAR, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -148624,13 +168737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 24, + ACTIONS(3657), 18, anon_sym_as, 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, @@ -148644,18 +168754,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [92634] = 3, + [106652] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 15, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3655), 14, anon_sym_STAR, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -148668,13 +168785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1731), 24, + ACTIONS(3657), 18, anon_sym_as, 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, @@ -148688,20 +168802,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [92681] = 3, + [106708] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 15, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3379), 1, + anon_sym_QMARK_DOT, + STATE(3349), 1, + sym_call_type_arguments, + STATE(2103), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -148712,13 +168838,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 24, + ACTIONS(611), 16, anon_sym_as, - 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, @@ -148734,15 +168855,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [92728] = 3, + [106770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 15, - anon_sym_STAR, + ACTIONS(4293), 1, anon_sym_LBRACE, + ACTIONS(3751), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3745), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -148756,9 +168878,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 24, + ACTIONS(3748), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -148779,14 +168900,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [92775] = 3, + [106820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 15, - anon_sym_STAR, + ACTIONS(4295), 1, anon_sym_LBRACE, + ACTIONS(3739), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3733), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -148800,9 +168923,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 24, + ACTIONS(3736), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -148823,74 +168945,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [92822] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4173), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1861), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [92905] = 3, + [106870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 15, + ACTIONS(3409), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -148906,7 +168964,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 24, + ACTIONS(3413), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -148929,74 +168987,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [92952] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4175), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1799), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [93035] = 3, + [106916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1283), 15, + ACTIONS(1108), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -149012,7 +169007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1281), 24, + ACTIONS(1106), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -149035,25 +169030,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [93082] = 9, + [106962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(1735), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3457), 1, - anon_sym_RPAREN, - ACTIONS(3460), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 12, + ACTIONS(1242), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149062,15 +169043,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 20, + ACTIONS(1240), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -149087,14 +169073,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93141] = 3, + anon_sym_extends, + [107008] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 14, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3401), 1, + anon_sym_QMARK_DOT, + STATE(3531), 1, + sym_call_type_arguments, + STATE(1771), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149105,16 +169108,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1247), 25, - sym__automatic_semicolon, + ACTIONS(611), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -149130,170 +169125,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [93188] = 25, + [107070] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4219), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4225), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4227), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4231), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4235), 1, anon_sym_QMARK_QMARK, - ACTIONS(4177), 1, - anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4221), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3920), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3703), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3705), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [93326] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(1962), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(4211), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3997), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [93383] = 3, + [107150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 15, + ACTIONS(599), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -149309,7 +169204,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1255), 24, + ACTIONS(611), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -149332,17 +169227,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [93430] = 3, + [107196] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3377), 1, + anon_sym_QMARK_DOT, + STATE(3474), 1, + sym_call_type_arguments, + STATE(1938), 2, + sym_template_string, + sym_arguments, + ACTIONS(599), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149353,13 +169262,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 24, + ACTIONS(611), 16, anon_sym_as, - 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, @@ -149375,42 +169279,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [93477] = 8, + [107258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, - anon_sym_DOT, - ACTIONS(1735), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3460), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(1190), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 20, - sym__automatic_semicolon, + ACTIONS(1188), 23, 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, @@ -149427,13 +169321,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93534] = 3, + anon_sym_LBRACE_PIPE, + [107304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 16, + ACTIONS(1238), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149447,7 +169340,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3323), 23, + ACTIONS(1236), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -149470,55 +169364,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [93581] = 3, + anon_sym_extends, + [107350] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 16, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, anon_sym_STAR, + ACTIONS(4317), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3342), 23, - anon_sym_as, + ACTIONS(4321), 1, + anon_sym_async, + ACTIONS(4323), 1, + sym_number, + ACTIONS(4327), 1, + anon_sym_LBRACK, + ACTIONS(4329), 1, + sym_readonly, + STATE(3666), 1, + aux_sym_object_repeat1, + ACTIONS(4325), 2, + anon_sym_get, + anon_sym_set, + STATE(2543), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [107418] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4351), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4071), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [93628] = 3, + [107500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 14, + ACTIONS(4297), 1, + anon_sym_AMP, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(4301), 1, + anon_sym_extends, + ACTIONS(3723), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149527,18 +169498,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(3540), 25, + ACTIONS(3725), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -149558,103 +169526,280 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [93675] = 3, + [107552] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 14, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1125), 25, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4319), 1, + anon_sym_LBRACK, + ACTIONS(4321), 1, + anon_sym_async, + ACTIONS(4323), 1, + sym_number, + STATE(3666), 1, + aux_sym_object_repeat1, + ACTIONS(4325), 2, + anon_sym_get, + anon_sym_set, + STATE(2543), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [107618] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, + anon_sym_QMARK, + ACTIONS(4275), 1, anon_sym_AMP_AMP, + ACTIONS(4281), 1, + anon_sym_AMP, + ACTIONS(4283), 1, + anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4277), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4033), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [107698] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4045), 1, + anon_sym_as, + ACTIONS(4273), 1, + anon_sym_QMARK, + ACTIONS(4275), 1, + anon_sym_AMP_AMP, + ACTIONS(4281), 1, + anon_sym_AMP, + ACTIONS(4283), 1, + anon_sym_PIPE, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4291), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4277), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4285), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4269), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4279), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4029), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_BQUOTE, - [93722] = 22, + anon_sym_implements, + ACTIONS(4271), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4289), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107778] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, anon_sym_STAR, - ACTIONS(113), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4333), 1, + sym_number, + STATE(3666), 1, + aux_sym_object_repeat1, + ACTIONS(4335), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [107842] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_STAR, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4033), 1, + ACTIONS(3979), 1, anon_sym_LBRACK, - ACTIONS(4037), 1, + ACTIONS(3983), 1, sym_number, - ACTIONS(4181), 1, - anon_sym_RBRACE, - ACTIONS(4183), 1, + ACTIONS(4355), 1, anon_sym_async, - ACTIONS(4185), 1, + ACTIONS(4357), 1, anon_sym_static, - ACTIONS(4191), 1, + ACTIONS(4363), 1, sym_readonly, - STATE(2145), 1, + STATE(2476), 1, sym_accessibility_modifier, - STATE(3229), 1, - aux_sym_object_repeat1, - STATE(3680), 1, + STATE(4048), 1, sym_object, - STATE(3683), 1, + STATE(4223), 1, sym_array, - ACTIONS(4187), 2, + ACTIONS(3389), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4359), 2, anon_sym_get, anon_sym_set, - ACTIONS(4189), 3, + ACTIONS(4361), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2394), 3, + STATE(2818), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3180), 4, + STATE(3811), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4179), 11, + ACTIONS(4353), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -149666,262 +169811,511 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93807] = 10, + [107922] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4239), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(4247), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, + anon_sym_AMP_AMP, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4261), 1, + anon_sym_STAR_STAR, + ACTIONS(4265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4365), 1, + anon_sym_LBRACE, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4253), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4047), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(4243), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4263), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108004] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4017), 1, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4193), 1, - anon_sym_COLON, - ACTIONS(4014), 2, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4073), 5, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(571), 13, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108084] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(3833), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [108142] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(3833), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [93868] = 6, + [108206] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, + anon_sym_QMARK, anon_sym_AMP, - ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(4055), 1, - anon_sym_extends, - ACTIONS(3449), 13, + ACTIONS(4211), 3, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4215), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 23, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 10, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [93921] = 25, + [108274] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, - anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4225), 1, anon_sym_AMP, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4231), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4195), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(3831), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4215), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94012] = 3, + ACTIONS(3833), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [108346] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1145), 25, - sym__automatic_semicolon, + ACTIONS(3833), 15, 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_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [94059] = 3, + [108408] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 16, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3831), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, anon_sym_AMP, + ACTIONS(4227), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3338), 23, + ACTIONS(4233), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 7, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [108484] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, anon_sym_AMP_AMP, + ACTIONS(4225), 1, + anon_sym_AMP, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4077), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [94106] = 3, + [108564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 15, + ACTIONS(3871), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -149937,7 +170331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1303), 24, + ACTIONS(3873), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -149960,63 +170354,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [94153] = 6, + [108610] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, - STATE(1896), 1, - sym_statement_block, - ACTIONS(1059), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4213), 1, + anon_sym_as, + ACTIONS(4217), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4219), 1, + anon_sym_AMP_AMP, + ACTIONS(4225), 1, anon_sym_AMP, + ACTIONS(4227), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_STAR_STAR, + ACTIONS(4235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4221), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4229), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1057), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4211), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4223), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4101), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4215), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4233), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [94206] = 5, + [108690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - anon_sym_LBRACE, - STATE(1896), 1, - sym_statement_block, - ACTIONS(1059), 14, + ACTIONS(1250), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150031,7 +170433,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1057), 23, + ACTIONS(1248), 24, + sym__call_type_arguments_closing_bracket, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -150054,11 +170457,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [94257] = 3, + anon_sym_extends, + [108736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 15, + ACTIONS(1224), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -150074,7 +170477,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 24, + ACTIONS(1222), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -150097,648 +170500,803 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [94304] = 3, + [108782] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 14, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4319), 1, + anon_sym_LBRACK, + ACTIONS(4367), 1, anon_sym_STAR, + ACTIONS(4369), 1, + anon_sym_async, + ACTIONS(4371), 1, + sym_number, + ACTIONS(4373), 1, + anon_sym_abstract, + ACTIONS(4375), 2, + anon_sym_get, + anon_sym_set, + STATE(2526), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3417), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [108845] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3583), 25, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4029), 4, sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108924] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4099), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [94351] = 3, + [109003] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4077), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109082] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3831), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3395), 25, - sym__automatic_semicolon, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 6, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [109157] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3997), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [94398] = 5, + [109236] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - STATE(1954), 1, - sym_arguments, - ACTIONS(3407), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3409), 22, + ACTIONS(3833), 14, anon_sym_as, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [94449] = 3, + [109297] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4435), 1, + anon_sym_RPAREN, + ACTIONS(4439), 1, + anon_sym_COLON, + ACTIONS(4441), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + STATE(4126), 1, + sym_type_annotation, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1325), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [94496] = 3, + [109382] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 14, - anon_sym_STAR, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1155), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4461), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [94543] = 21, + [109461] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(4315), 1, anon_sym_STAR, - ACTIONS(3991), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4321), 1, anon_sym_async, - ACTIONS(3993), 1, + ACTIONS(4323), 1, sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, + ACTIONS(4327), 1, + anon_sym_LBRACK, + ACTIONS(4329), 1, sym_readonly, - ACTIONS(4201), 1, + ACTIONS(3495), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, + ACTIONS(4325), 2, anon_sym_get, anon_sym_set, - STATE(1865), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, + STATE(2543), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, + ACTIONS(3451), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, 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, - [94626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1735), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [94673] = 21, + [109528] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(4315), 1, anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4333), 1, sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4203), 1, + ACTIONS(3495), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, + ACTIONS(4335), 2, anon_sym_get, anon_sym_set, - STATE(1799), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, + ACTIONS(3451), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, 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, - [94756] = 5, + sym_readonly, + [109591] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - STATE(1950), 1, - sym_arguments, - ACTIONS(3418), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 2, + anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3420), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [94807] = 4, + ACTIONS(3833), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [109662] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1741), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, anon_sym_QMARK, - 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(1739), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [94856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(4407), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1745), 24, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 9, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [94903] = 21, + [109729] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3991), 1, - anon_sym_async, - ACTIONS(3993), 1, - sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, - anon_sym_abstract, - ACTIONS(4001), 1, - sym_readonly, - ACTIONS(4207), 1, - anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, - anon_sym_get, - anon_sym_set, - STATE(1799), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2199), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [94986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1761), 24, + ACTIONS(3833), 14, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95033] = 4, + [109792] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(569), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -150751,192 +171309,276 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 23, + ACTIONS(3833), 17, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95082] = 3, + [109849] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(567), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4073), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95129] = 3, + [109928] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(2631), 1, + anon_sym_COMMA, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4479), 1, anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + STATE(3473), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4465), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110011] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, anon_sym_LBRACK, + ACTIONS(2597), 1, anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4101), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95176] = 25, + [110090] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2654), 1, + anon_sym_COMMA, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(4241), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4465), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4491), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4493), 1, + anon_sym_LBRACE, + ACTIONS(4497), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4499), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4505), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4507), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4511), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4515), 1, anon_sym_QMARK_QMARK, - ACTIONS(4211), 1, - anon_sym_COLON, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + STATE(3407), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4267), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4501), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4509), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4495), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95267] = 4, + [110175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_LBRACK, - ACTIONS(1831), 15, + ACTIONS(4517), 1, + anon_sym_AMP, + ACTIONS(4519), 1, + anon_sym_PIPE, + ACTIONS(4521), 1, + anon_sym_extends, + ACTIONS(2100), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150944,16 +171586,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1829), 23, + ACTIONS(2098), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150971,214 +171613,460 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95316] = 10, + [110226] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3134), 1, - anon_sym_COLON, - ACTIONS(3954), 1, - anon_sym_EQ, - ACTIONS(2997), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(571), 13, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_COLON, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4523), 1, + anon_sym_RPAREN, + STATE(4079), 1, + sym_type_annotation, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [95377] = 3, + [110311] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1781), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4071), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95424] = 3, + [110390] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4047), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1785), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110469] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, anon_sym_LBRACK, + ACTIONS(2597), 1, anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4099), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95471] = 21, + [110548] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(2805), 1, - anon_sym_DASH, - ACTIONS(3179), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(4525), 1, anon_sym_STAR, - ACTIONS(3991), 1, + ACTIONS(4527), 1, anon_sym_async, - ACTIONS(3993), 1, + ACTIONS(4529), 1, sym_number, - ACTIONS(3995), 1, - anon_sym_static, - ACTIONS(3997), 1, + ACTIONS(4531), 1, anon_sym_abstract, - ACTIONS(4001), 1, + ACTIONS(4533), 2, + anon_sym_get, + anon_sym_set, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3417), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, sym_readonly, - ACTIONS(4213), 1, + [110611] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4333), 1, + sym_number, + STATE(3666), 1, + aux_sym_object_repeat1, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2113), 1, - sym_method_definition, - STATE(2140), 1, - sym_accessibility_modifier, - ACTIONS(3999), 2, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - STATE(1830), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3189), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2199), 3, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [110670] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4319), 1, + anon_sym_LBRACK, + ACTIONS(4321), 1, + anon_sym_async, + ACTIONS(4323), 1, + sym_number, + ACTIONS(3495), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4325), 2, + anon_sym_get, + anon_sym_set, + STATE(2543), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3163), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3173), 11, + ACTIONS(3451), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, 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, - [95554] = 3, + sym_readonly, + [110735] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 9, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [110802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 15, + ACTIONS(4535), 1, + anon_sym_AMP, + ACTIONS(4537), 1, + anon_sym_PIPE, + ACTIONS(4539), 1, + anon_sym_extends, + ACTIONS(3723), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -151188,16 +172076,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1789), 24, + ACTIONS(3725), 21, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151216,125 +172101,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, anon_sym_LBRACE_PIPE, - [95601] = 3, + [110853] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_COLON, + ACTIONS(4441), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4541), 1, + anon_sym_RPAREN, + STATE(4260), 1, + sym_type_annotation, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1765), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95648] = 25, + [110938] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4385), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4391), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4393), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4397), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4401), 1, anon_sym_QMARK_QMARK, - ACTIONS(4215), 1, - anon_sym_RBRACK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4543), 1, + anon_sym_COMMA, + ACTIONS(4546), 1, + anon_sym_RBRACE, + ACTIONS(4025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4099), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4377), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4381), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95739] = 3, + [111021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 15, + ACTIONS(4517), 1, + anon_sym_AMP, + ACTIONS(4519), 1, + anon_sym_PIPE, + ACTIONS(4521), 1, + anon_sym_extends, + ACTIONS(3723), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151342,16 +172243,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1727), 24, + ACTIONS(3725), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151370,154 +172270,377 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [95786] = 10, + [111072] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(4020), 1, - anon_sym_EQ, - ACTIONS(4026), 1, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - ACTIONS(4217), 1, - anon_sym_COLON, - ACTIONS(4023), 2, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(571), 13, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4548), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, anon_sym_in, anon_sym_LT, 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(585), 18, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111153] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4550), 1, + anon_sym_COMMA, + ACTIONS(4553), 1, + anon_sym_RBRACE, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4077), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [95847] = 4, + [111236] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 1, - sym_regex_flags, - ACTIONS(3807), 17, - anon_sym_STAR, - anon_sym_as, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4077), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_implements, - ACTIONS(3809), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + [111315] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, anon_sym_LBRACK, + ACTIONS(2597), 1, anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4555), 1, + anon_sym_COMMA, + ACTIONS(4558), 1, + anon_sym_RBRACE, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4073), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [95896] = 3, + anon_sym_instanceof, + [111398] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_COLON, + ACTIONS(4441), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4560), 1, + anon_sym_RPAREN, + STATE(4208), 1, + sym_type_annotation, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3661), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111483] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, anon_sym_LBRACK, + ACTIONS(2597), 1, anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4047), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [95942] = 3, + [111562] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 15, + ACTIONS(4517), 1, + anon_sym_AMP, + ACTIONS(4519), 1, + anon_sym_PIPE, + ACTIONS(2108), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151525,16 +172648,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1247), 23, + ACTIONS(2106), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151553,279 +172675,373 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [95988] = 3, + anon_sym_extends, + [111611] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3831), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1079), 23, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 6, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [111686] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, anon_sym_LBRACK, + ACTIONS(2597), 1, anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4071), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [96034] = 7, + [111765] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(4219), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4033), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [96088] = 3, + [111844] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1107), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3997), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [96134] = 7, + [111923] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2691), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3999), 1, anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(585), 20, + ACTIONS(3833), 14, sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + 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_DASH_DASH, - anon_sym_BQUOTE, - [96188] = 24, + [111984] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_COLON, + ACTIONS(4441), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4443), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4449), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4451), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4455), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4459), 1, anon_sym_QMARK_QMARK, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4562), 1, + anon_sym_RPAREN, + STATE(4034), 1, + sym_type_annotation, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4445), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4429), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4437), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96276] = 13, + [112069] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4227), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4229), 1, - anon_sym_async, - ACTIONS(4231), 1, + ACTIONS(4333), 1, sym_number, - STATE(3090), 1, + STATE(3536), 1, aux_sym_object_repeat1, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2209), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -151835,12 +173051,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -151852,269 +173071,349 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [96342] = 9, + [112128] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(1735), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3457), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3460), 2, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(571), 12, - anon_sym_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3833), 14, + sym__automatic_semicolon, + 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, + [112191] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, 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(585), 18, + ACTIONS(3833), 17, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + 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_DASH_DASH, - anon_sym_BQUOTE, - [96400] = 14, + [112248] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_async, - ACTIONS(4231), 1, - sym_number, - ACTIONS(4235), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, - sym_readonly, - STATE(3090), 1, - aux_sym_object_repeat1, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4558), 1, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_COMMA, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4047), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [96468] = 12, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112331] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(4241), 1, - sym_number, - STATE(3090), 1, - aux_sym_object_repeat1, - ACTIONS(4243), 2, - anon_sym_get, - anon_sym_set, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(3831), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 8, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [96532] = 8, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [112402] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(567), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(569), 3, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, 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, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4029), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [96588] = 7, + [112481] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(3803), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4033), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [96642] = 7, + [112560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(3801), 1, - anon_sym_EQ, - ACTIONS(571), 14, + ACTIONS(4535), 1, + anon_sym_AMP, + ACTIONS(4537), 1, + anon_sym_PIPE, + ACTIONS(2108), 13, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152122,17 +173421,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(585), 20, + ACTIONS(2106), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -152148,11 +173446,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [96696] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [112609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 15, + ACTIONS(4535), 1, + anon_sym_AMP, + ACTIONS(4537), 1, + anon_sym_PIPE, + ACTIONS(4539), 1, + anon_sym_extends, + ACTIONS(2100), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -152162,16 +173467,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1161), 23, + ACTIONS(2098), 21, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152190,76 +173492,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [96742] = 24, + [112660] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4409), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4411), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4417), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4423), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4427), 1, anon_sym_QMARK_QMARK, - ACTIONS(4245), 1, - anon_sym_LPAREN, - ACTIONS(4247), 1, - anon_sym_BQUOTE, - STATE(3007), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(126), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4403), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4101), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96830] = 3, + [112739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1177), 15, + ACTIONS(4535), 1, + anon_sym_AMP, + ACTIONS(4537), 1, + anon_sym_PIPE, + ACTIONS(4539), 1, + anon_sym_extends, + ACTIONS(2104), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -152269,16 +173571,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1175), 23, + ACTIONS(2102), 21, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152297,67 +173596,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [96876] = 13, + [112790] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4227), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(4229), 1, - anon_sym_async, - ACTIONS(4231), 1, - sym_number, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4073), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4381), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [96942] = 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 15, + ACTIONS(4517), 1, + anon_sym_AMP, + ACTIONS(4519), 1, + anon_sym_PIPE, + ACTIONS(4521), 1, + anon_sym_extends, + ACTIONS(2104), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -152365,16 +173674,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, 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(1111), 23, + ACTIONS(2102), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152393,101 +173701,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [96988] = 14, + [112920] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4223), 1, + ACTIONS(4327), 1, + anon_sym_LBRACK, + ACTIONS(4367), 1, anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4369), 1, anon_sym_async, - ACTIONS(4231), 1, + ACTIONS(4371), 1, sym_number, - ACTIONS(4235), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4567), 1, sym_readonly, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(4233), 2, + ACTIONS(4375), 2, anon_sym_get, anon_sym_set, - STATE(2209), 3, + STATE(2526), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [97056] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4241), 1, - sym_number, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(4243), 2, - anon_sym_get, - anon_sym_set, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(3417), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -152500,1540 +173751,2197 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [97120] = 3, + [112982] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3831), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3657), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3833), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97166] = 3, + [113056] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3651), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4337), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4499), 1, + anon_sym_AMP_AMP, + ACTIONS(4505), 1, anon_sym_AMP, + ACTIONS(4507), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3653), 23, - anon_sym_as, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3997), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97212] = 3, + [113136] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3647), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4569), 1, + anon_sym_RPAREN, + STATE(3693), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3649), 23, - anon_sym_as, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113218] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4571), 1, + anon_sym_RBRACK, + STATE(3617), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97258] = 3, + [113300] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4305), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4499), 1, + anon_sym_AMP_AMP, + ACTIONS(4505), 1, anon_sym_AMP, + ACTIONS(4507), 1, anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4029), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3645), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4513), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113380] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4303), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, + anon_sym_QMARK, + ACTIONS(4499), 1, anon_sym_AMP_AMP, + ACTIONS(4505), 1, + anon_sym_AMP, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4033), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97304] = 3, + [113460] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4573), 1, + anon_sym_RPAREN, + STATE(3676), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3641), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97350] = 8, + [113542] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(1791), 2, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, - ACTIONS(1789), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(571), 12, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4377), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4575), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97406] = 6, + [113620] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_QMARK_DOT, - ACTIONS(2976), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(571), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4577), 1, + anon_sym_RPAREN, + STATE(3660), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97458] = 3, + [113702] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3444), 23, - anon_sym_as, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_RBRACK, + STATE(3547), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97504] = 13, + [113784] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(4229), 1, - anon_sym_async, - ACTIONS(4231), 1, - sym_number, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [97570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4581), 1, + anon_sym_RBRACK, + STATE(3644), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97616] = 3, + [113866] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4583), 1, + anon_sym_COMMA, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4585), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 23, - anon_sym_as, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113946] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4587), 1, + anon_sym_RBRACK, + STATE(3547), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97662] = 3, + [114028] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1233), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4575), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97708] = 3, + [114106] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4575), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [97754] = 7, + [114184] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4589), 1, + anon_sym_STAR, + ACTIONS(4591), 1, + sym_number, + ACTIONS(4593), 2, + anon_sym_get, + anon_sym_set, + STATE(3014), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [114242] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4575), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97808] = 7, + [114320] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4595), 1, + anon_sym_RPAREN, + STATE(3573), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 20, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97862] = 9, + [114402] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1735), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3457), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3460), 3, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4597), 1, + anon_sym_COMMA, + ACTIONS(4599), 1, + anon_sym_RBRACK, + STATE(3547), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, 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, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97920] = 9, + [114484] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1962), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3463), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3466), 3, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, anon_sym_QMARK, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3997), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4463), 3, 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, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [97978] = 3, + [114562] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 15, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4367), 1, anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(4601), 1, + sym_number, + ACTIONS(4603), 2, + anon_sym_get, + anon_sym_set, + STATE(2939), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3169), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [114620] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4459), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1223), 23, - anon_sym_as, + ACTIONS(4029), 3, 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_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98070] = 3, + [114698] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1187), 23, - anon_sym_as, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4583), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98116] = 3, + [114778] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3479), 23, - anon_sym_as, + ACTIONS(4033), 3, 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_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98162] = 3, + [114856] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 15, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3709), 23, - anon_sym_as, + ACTIONS(4609), 1, + sym_number, + ACTIONS(4611), 2, + anon_sym_get, + anon_sym_set, + STATE(2995), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [114914] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, + anon_sym_QMARK, + ACTIONS(4471), 1, anon_sym_AMP_AMP, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4101), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98208] = 3, + [114992] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1089), 23, - anon_sym_as, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4613), 1, + anon_sym_RPAREN, + STATE(3574), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98254] = 3, + [115074] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1099), 23, - anon_sym_as, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4583), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4615), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98300] = 3, + [115154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 15, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4617), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4619), 1, + sym_number, + ACTIONS(4621), 2, + anon_sym_get, + anon_sym_set, + STATE(3021), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1135), 23, - anon_sym_as, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [115212] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4623), 1, + anon_sym_STAR, + ACTIONS(4625), 1, + sym_number, + ACTIONS(4627), 2, + anon_sym_get, + anon_sym_set, + STATE(2979), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [115270] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4327), 1, + anon_sym_LBRACK, + ACTIONS(4629), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_async, + ACTIONS(4633), 1, + sym_number, + ACTIONS(4637), 1, + sym_readonly, + ACTIONS(4635), 2, + anon_sym_get, + anon_sym_set, + STATE(2539), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [115332] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, anon_sym_LBRACK, + ACTIONS(2952), 1, anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, + ACTIONS(4365), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, + anon_sym_QMARK, + ACTIONS(4499), 1, anon_sym_AMP_AMP, + ACTIONS(4505), 1, + anon_sym_AMP, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4047), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98346] = 3, + [115412] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4479), 1, anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3497), 23, - anon_sym_as, + ACTIONS(4077), 3, + 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_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98392] = 3, + [115490] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3395), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4575), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98438] = 24, + [115568] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2601), 1, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4411), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4417), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4423), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4427), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4639), 1, + anon_sym_RPAREN, + STATE(3622), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4403), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4407), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98526] = 3, + [115650] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4479), 1, anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3540), 23, - anon_sym_as, + ACTIONS(4099), 3, + 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_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98572] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4241), 1, - sym_number, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(4243), 2, - anon_sym_get, - anon_sym_set, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [98636] = 9, + [115728] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(1962), 1, - anon_sym_extends, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3463), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 12, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(585), 18, + ACTIONS(3833), 13, anon_sym_as, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [98694] = 3, + anon_sym_implements, + [115788] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(901), 23, - anon_sym_as, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4641), 1, + anon_sym_RBRACK, + STATE(3547), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [98740] = 14, + [115870] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_async, - ACTIONS(4231), 1, - sym_number, - ACTIONS(4235), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, - sym_readonly, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [98808] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, + ACTIONS(4617), 1, anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4643), 1, anon_sym_async, - ACTIONS(4231), 1, + ACTIONS(4645), 1, sym_number, - ACTIONS(4235), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4649), 1, sym_readonly, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(4233), 2, + ACTIONS(4647), 2, anon_sym_get, anon_sym_set, - STATE(2209), 3, + STATE(2536), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -154043,7 +175951,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, + ACTIONS(3417), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -154059,148 +175967,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [98876] = 20, + [115932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4037), 1, - sym_number, - ACTIONS(4251), 1, - anon_sym_async, - ACTIONS(4253), 1, - anon_sym_static, - ACTIONS(4259), 1, - sym_readonly, - STATE(2145), 1, - sym_accessibility_modifier, - STATE(3680), 1, - sym_object, - STATE(3683), 1, - sym_array, - ACTIONS(3143), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4255), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4257), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2394), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3325), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4249), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [98956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1201), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4327), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99002] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, + ACTIONS(4589), 1, anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4241), 1, + ACTIONS(4651), 1, + anon_sym_async, + ACTIONS(4653), 1, sym_number, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(4243), 2, + ACTIONS(4655), 2, anon_sym_get, anon_sym_set, - STATE(2602), 3, + STATE(2525), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -154214,247 +176016,146 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [99066] = 24, + [115992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2821), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3348), 1, + ACTIONS(4241), 1, anon_sym_BANG, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(3675), 1, + ACTIONS(4245), 1, anon_sym_QMARK_DOT, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4499), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4505), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4507), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4511), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4515), 1, anon_sym_QMARK_QMARK, - STATE(3025), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4267), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4501), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4509), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1776), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4659), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1123), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(4495), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1125), 23, - anon_sym_as, - 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, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99200] = 24, + [116072] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4441), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4443), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4449), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4451), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4455), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4459), 1, anon_sym_QMARK_QMARK, - STATE(2962), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4445), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4071), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3930), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(4437), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1145), 23, - anon_sym_as, - 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, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99334] = 13, + [116150] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4227), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4229), 1, + ACTIONS(4629), 1, + anon_sym_STAR, + ACTIONS(4631), 1, anon_sym_async, - ACTIONS(4231), 1, + ACTIONS(4633), 1, sym_number, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(4233), 2, + ACTIONS(4635), 2, anon_sym_get, anon_sym_set, - STATE(2209), 3, + STATE(2539), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -154464,7 +176165,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -154481,619 +176182,786 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [99400] = 3, + [116210] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1155), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 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(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4427), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4597), 1, + anon_sym_COMMA, + ACTIONS(4661), 1, + anon_sym_RBRACK, + STATE(3547), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3542), 15, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(3544), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3703), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(4407), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3705), 23, - anon_sym_as, - 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, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99538] = 3, + [116292] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3548), 23, - anon_sym_as, + ACTIONS(4101), 3, 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_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99584] = 8, + [116370] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(1789), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1791), 3, - anon_sym_QMARK, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 2, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(571), 11, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4463), 3, 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, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [99640] = 3, + ACTIONS(3833), 7, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [116440] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3554), 23, - anon_sym_as, + ACTIONS(4099), 3, 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_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99686] = 24, + [116518] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(3659), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4441), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4443), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4449), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4451), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4455), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4459), 1, anon_sym_QMARK_QMARK, - STATE(2978), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4445), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4077), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4437), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99774] = 3, + [116596] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1105), 15, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4663), 1, anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(4665), 1, + sym_number, + ACTIONS(4667), 2, + anon_sym_get, + anon_sym_set, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [116654] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1103), 23, + ACTIONS(3833), 13, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99820] = 24, + [116714] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_QMARK_DOT, - ACTIONS(3348), 1, + ACTIONS(4241), 1, anon_sym_BANG, - ACTIONS(3378), 1, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4351), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, anon_sym_as, - ACTIONS(3912), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4497), 1, anon_sym_QMARK, - ACTIONS(3916), 1, + ACTIONS(4499), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 1, + ACTIONS(4505), 1, anon_sym_AMP, - ACTIONS(3924), 1, + ACTIONS(4507), 1, anon_sym_PIPE, - ACTIONS(3928), 1, + ACTIONS(4511), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4515), 1, anon_sym_QMARK_QMARK, - ACTIONS(4261), 1, - anon_sym_LPAREN, - ACTIONS(4263), 1, - anon_sym_BQUOTE, - STATE(2921), 1, - sym_type_arguments, - ACTIONS(3372), 2, + ACTIONS(4071), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3918), 2, + ACTIONS(4501), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3926), 2, + ACTIONS(4509), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1590), 2, - sym_template_string, - sym_arguments, - ACTIONS(3908), 3, + ACTIONS(4489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3920), 3, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3910), 4, + ACTIONS(4495), 5, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3930), 5, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99908] = 3, + [116794] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 2, + anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 23, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 7, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [116864] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [99954] = 3, + ACTIONS(3833), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [116930] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(3583), 23, + ACTIONS(3833), 13, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100000] = 3, + [116992] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(3831), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4479), 1, anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3562), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3833), 5, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_implements, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100046] = 3, + [117066] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 15, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4629), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(3579), 23, - anon_sym_as, + ACTIONS(4669), 1, + sym_number, + ACTIONS(4671), 2, + anon_sym_get, + anon_sym_set, + STATE(3011), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [117124] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4673), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100092] = 3, + [117202] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -155106,278 +176974,328 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3483), 23, + ACTIONS(3833), 16, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100138] = 3, + [117258] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3487), 23, + ACTIONS(4485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 8, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [117324] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4073), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100184] = 3, + [117402] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_AMP, + ACTIONS(4451), 1, anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3570), 23, - anon_sym_as, + ACTIONS(4047), 3, 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_RPAREN, + anon_sym_COLON, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100230] = 3, + [117480] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4479), 1, anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3485), 23, - anon_sym_as, + ACTIONS(4029), 3, + 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_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [100276] = 9, + [117558] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - ACTIONS(3435), 1, - anon_sym_in, - ACTIONS(3438), 1, - anon_sym_of, - ACTIONS(571), 13, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, anon_sym_AMP, + ACTIONS(4479), 1, anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4033), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [100333] = 12, + [117636] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4227), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4265), 1, + ACTIONS(4675), 1, anon_sym_STAR, - ACTIONS(4267), 1, - anon_sym_async, - ACTIONS(4269), 1, + ACTIONS(4677), 1, sym_number, - ACTIONS(4271), 1, - anon_sym_abstract, - ACTIONS(4273), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(2200), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3173), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [100396] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4241), 1, - sym_number, - STATE(3112), 1, - aux_sym_object_repeat1, - STATE(2602), 3, + STATE(3023), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -155387,15 +177305,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -155407,122 +177323,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [100455] = 9, + [117694] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - ACTIONS(3860), 1, - anon_sym_in, - ACTIONS(3863), 1, - anon_sym_of, - ACTIONS(571), 13, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(4423), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4427), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4681), 1, + anon_sym_RBRACK, + STATE(3565), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [100512] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - ACTIONS(3881), 1, - anon_sym_in, - ACTIONS(3884), 1, - anon_sym_of, - ACTIONS(571), 13, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [100569] = 10, + [117776] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4241), 1, + ACTIONS(4617), 1, + anon_sym_STAR, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4645), 1, sym_number, - STATE(3178), 1, - aux_sym_object_repeat1, - STATE(2602), 3, + ACTIONS(4647), 2, + anon_sym_get, + anon_sym_set, + STATE(2536), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -155532,15 +177415,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -155552,97 +177432,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [100628] = 14, + [117836] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4223), 1, + ACTIONS(4319), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4683), 1, anon_sym_async, - ACTIONS(4231), 1, + ACTIONS(4685), 1, sym_number, - ACTIONS(4235), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - sym_readonly, - ACTIONS(3249), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4233), 2, + ACTIONS(4687), 2, anon_sym_get, anon_sym_set, - STATE(2209), 3, + STATE(2540), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3451), 9, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [100695] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4241), 1, - sym_number, - ACTIONS(3249), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4243), 2, - anon_sym_get, - anon_sym_set, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -155656,42 +177481,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [100758] = 13, + [117896] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4223), 1, - anon_sym_STAR, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4227), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4229), 1, + ACTIONS(4525), 1, + anon_sym_STAR, + ACTIONS(4527), 1, anon_sym_async, - ACTIONS(4231), 1, + ACTIONS(4529), 1, sym_number, - ACTIONS(3249), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4233), 2, + ACTIONS(4689), 1, + sym_readonly, + ACTIONS(4533), 2, anon_sym_get, anon_sym_set, - STATE(2209), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3451), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, + ACTIONS(3417), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -155707,43 +177531,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [100823] = 10, + [117958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(1870), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(967), 1, anon_sym_SQUOTE, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4241), 1, sym_number, - STATE(3195), 1, - aux_sym_object_repeat1, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 11, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(1868), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -155757,166 +177573,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [100882] = 12, + [118004] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4275), 1, - anon_sym_STAR, - ACTIONS(4277), 1, - anon_sym_async, - ACTIONS(4279), 1, - sym_number, - ACTIONS(4281), 1, - anon_sym_abstract, - ACTIONS(4283), 2, - anon_sym_get, - anon_sym_set, - STATE(2198), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3173), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [100945] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118082] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(4241), 1, - sym_number, - STATE(3090), 1, - aux_sym_object_repeat1, - STATE(2602), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4583), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4548), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [101004] = 9, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118162] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - ACTIONS(3426), 1, - anon_sym_in, - ACTIONS(3429), 1, - anon_sym_of, - ACTIONS(571), 13, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 8, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(585), 18, + ACTIONS(3833), 13, anon_sym_as, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101061] = 6, + anon_sym_implements, + [118224] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2471), 1, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(571), 14, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 13, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -155929,139 +177770,217 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 20, + ACTIONS(3833), 16, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101112] = 11, + anon_sym_implements, + [118280] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4227), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4285), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, + anon_sym_QMARK, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4463), 3, anon_sym_STAR, - ACTIONS(4287), 1, - anon_sym_async, - ACTIONS(4289), 1, - sym_number, - ACTIONS(4291), 2, - anon_sym_get, - anon_sym_set, - STATE(2203), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4659), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_implements, + ACTIONS(4467), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [101172] = 11, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118358] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4293), 1, - anon_sym_STAR, - ACTIONS(4295), 1, - anon_sym_async, - ACTIONS(4297), 1, - sym_number, - ACTIONS(4299), 2, - anon_sym_get, - anon_sym_set, - STATE(2206), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, + anon_sym_QMARK, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4073), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4467), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [101232] = 7, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118436] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(581), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - ACTIONS(571), 14, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4349), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, + anon_sym_QMARK, + ACTIONS(4499), 1, + anon_sym_AMP_AMP, + ACTIONS(4505), 1, + anon_sym_AMP, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4073), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118516] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3831), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -156074,342 +177993,498 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(3833), 15, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101284] = 11, + anon_sym_LBRACE_PIPE, + [118572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(4301), 1, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, anon_sym_STAR, - ACTIONS(4303), 1, - anon_sym_async, - ACTIONS(4305), 1, - sym_number, - ACTIONS(4307), 2, - anon_sym_get, - anon_sym_set, - STATE(2204), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 9, + anon_sym_LBRACE, + anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [101344] = 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3833), 12, + anon_sym_as, + 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_LBRACE_PIPE, + [118634] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(4275), 1, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, anon_sym_STAR, - ACTIONS(4277), 1, - anon_sym_async, - ACTIONS(4279), 1, - sym_number, - ACTIONS(4309), 1, - sym_readonly, - ACTIONS(4283), 2, - anon_sym_get, - anon_sym_set, - STATE(2198), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 4, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 7, + anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [118700] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4499), 1, + anon_sym_AMP_AMP, + ACTIONS(4505), 1, + anon_sym_AMP, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 3, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(3173), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [101406] = 7, + anon_sym_PIPE, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3833), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [118770] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(581), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(4241), 1, anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3831), 11, + anon_sym_LBRACE, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(585), 18, + ACTIONS(3833), 12, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101458] = 10, + anon_sym_LBRACE_PIPE, + [118830] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4499), 1, + anon_sym_AMP_AMP, + ACTIONS(4505), 1, + anon_sym_AMP, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(3831), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, anon_sym_STAR, - ACTIONS(4313), 1, - sym_number, - ACTIONS(4315), 2, - anon_sym_get, - anon_sym_set, - STATE(2534), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3833), 4, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + ACTIONS(4495), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [101516] = 7, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118904] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(2964), 1, - anon_sym_QMARK_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4347), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4499), 1, + anon_sym_AMP_AMP, + ACTIONS(4505), 1, anon_sym_AMP, + ACTIONS(4507), 1, anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4077), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101568] = 7, + [118984] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2656), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2952), 1, anon_sym_DOT, - ACTIONS(2964), 1, - anon_sym_QMARK_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(4241), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4345), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, + anon_sym_as, + ACTIONS(4497), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4499), 1, + anon_sym_AMP_AMP, + ACTIONS(4505), 1, anon_sym_AMP, + ACTIONS(4507), 1, anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4099), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(4513), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119064] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_BANG, + ACTIONS(4245), 1, + anon_sym_QMARK_DOT, + ACTIONS(4343), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4497), 1, + anon_sym_QMARK, + ACTIONS(4499), 1, anon_sym_AMP_AMP, + ACTIONS(4505), 1, + anon_sym_AMP, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(4267), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4509), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4503), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4495), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4513), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101620] = 10, + [119144] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4317), 1, + ACTIONS(4607), 1, anon_sym_STAR, - ACTIONS(4319), 1, + ACTIONS(4683), 1, + anon_sym_async, + ACTIONS(4685), 1, sym_number, - ACTIONS(4321), 2, + ACTIONS(4691), 1, + sym_readonly, + ACTIONS(4687), 2, anon_sym_get, anon_sym_set, - STATE(2482), 3, + STATE(2540), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -156422,47 +178497,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [101678] = 12, + [119206] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, + anon_sym_QMARK, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4071), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119284] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4265), 1, - anon_sym_STAR, - ACTIONS(4267), 1, - anon_sym_async, - ACTIONS(4269), 1, + ACTIONS(4333), 1, sym_number, - ACTIONS(4323), 1, - sym_readonly, - ACTIONS(4273), 2, - anon_sym_get, - anon_sym_set, - STATE(2200), 3, + ACTIONS(3495), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3173), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -156473,41 +178602,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [101740] = 10, + sym_readonly, + [119342] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4265), 1, + ACTIONS(4675), 1, anon_sym_STAR, - ACTIONS(4325), 1, + ACTIONS(4693), 1, + anon_sym_async, + ACTIONS(4695), 1, sym_number, - ACTIONS(4327), 2, + ACTIONS(4697), 2, anon_sym_get, anon_sym_set, - STATE(2583), 3, + STATE(2534), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -156521,74 +178652,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [101798] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101850] = 11, + [119402] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4329), 1, + ACTIONS(4699), 1, anon_sym_STAR, - ACTIONS(4331), 1, - anon_sym_async, - ACTIONS(4333), 1, + ACTIONS(4701), 1, sym_number, - ACTIONS(4335), 2, + ACTIONS(4703), 2, anon_sym_get, anon_sym_set, - STATE(2201), 3, + STATE(2993), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -156598,10 +178682,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -156615,86 +178700,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [101910] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(2471), 1, - anon_sym_QMARK_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101962] = 10, + [119460] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4337), 1, + ACTIONS(4699), 1, anon_sym_STAR, - ACTIONS(4339), 1, + ACTIONS(4705), 1, + anon_sym_async, + ACTIONS(4707), 1, sym_number, - ACTIONS(4341), 2, + ACTIONS(4709), 2, anon_sym_get, anon_sym_set, - STATE(2597), 3, + STATE(2538), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -156708,37 +178749,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102020] = 10, + [119520] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4301), 1, + ACTIONS(4711), 1, anon_sym_STAR, - ACTIONS(4343), 1, + ACTIONS(4713), 1, sym_number, - ACTIONS(4345), 2, + ACTIONS(4715), 2, anon_sym_get, anon_sym_set, - STATE(2588), 3, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -156756,71 +178797,209 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102078] = 4, + [119578] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 5, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4717), 1, + anon_sym_RBRACK, + STATE(3656), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119660] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3203), 11, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4719), 1, + anon_sym_RPAREN, + STATE(3626), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119742] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1885), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [102124] = 11, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4721), 1, + anon_sym_RBRACK, + STATE(3565), 1, + aux_sym_array_repeat1, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119824] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4337), 1, + ACTIONS(4525), 1, anon_sym_STAR, - ACTIONS(4347), 1, + ACTIONS(4527), 1, anon_sym_async, - ACTIONS(4349), 1, + ACTIONS(4529), 1, sym_number, - ACTIONS(4351), 2, + ACTIONS(4533), 2, anon_sym_get, anon_sym_set, - STATE(2195), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -156830,7 +179009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3173), 16, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -156847,37 +179026,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102184] = 10, + [119884] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4293), 1, + ACTIONS(4525), 1, anon_sym_STAR, - ACTIONS(4353), 1, + ACTIONS(4723), 1, sym_number, - ACTIONS(4355), 2, + ACTIONS(4725), 2, anon_sym_get, anon_sym_set, - STATE(2560), 3, + STATE(3032), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -156895,27 +179074,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102242] = 10, + [119942] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4469), 1, + anon_sym_QMARK, + ACTIONS(4471), 1, + anon_sym_AMP_AMP, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4047), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4463), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4467), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120020] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4329), 1, - anon_sym_STAR, - ACTIONS(4357), 1, + ACTIONS(4701), 1, sym_number, - ACTIONS(4359), 2, - anon_sym_get, - anon_sym_set, - STATE(2595), 3, + STATE(2993), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -156925,13 +179157,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -156943,35 +179177,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102300] = 10, + [120073] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4548), 1, + anon_sym_COLON, + ACTIONS(4727), 1, + anon_sym_COMMA, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4241), 1, + ACTIONS(4609), 1, sym_number, - ACTIONS(3249), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2602), 3, + STATE(2995), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3451), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -156991,229 +179280,442 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102358] = 12, + [120205] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(567), 1, + anon_sym_RPAREN, + ACTIONS(577), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4361), 1, - anon_sym_STAR, - ACTIONS(4363), 1, - anon_sym_async, - ACTIONS(4365), 1, - sym_number, - ACTIONS(4369), 1, + ACTIONS(4733), 1, sym_readonly, - ACTIONS(4367), 2, - anon_sym_get, - anon_sym_set, - STATE(2205), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, + STATE(2392), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + STATE(2502), 1, + sym_accessibility_modifier, + STATE(2883), 1, + sym__parameter_name, + STATE(3141), 1, + sym_array, + STATE(3142), 1, + sym_object, + STATE(3308), 1, + sym__rest_identifier, + ACTIONS(4729), 2, sym_identifier, - anon_sym_static, - anon_sym_declare, + sym_this, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [102420] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4285), 1, - anon_sym_STAR, - ACTIONS(4371), 1, - sym_number, - ACTIONS(4373), 2, - anon_sym_get, - anon_sym_set, - STATE(2624), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + STATE(3736), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [102478] = 7, + [120278] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2541), 1, - anon_sym_QMARK_DOT, - ACTIONS(3298), 1, - anon_sym_EQ, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4735), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120357] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4737), 1, + anon_sym_RBRACE, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [102530] = 7, + [120436] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2541), 1, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, anon_sym_QMARK_DOT, - ACTIONS(3300), 1, - anon_sym_EQ, - ACTIONS(571), 14, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120515] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(585), 18, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120594] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(577), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_readonly, + ACTIONS(4743), 1, + anon_sym_RPAREN, + STATE(2398), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + STATE(2502), 1, + sym_accessibility_modifier, + STATE(2883), 1, + sym__parameter_name, + STATE(3141), 1, + sym_array, + STATE(3142), 1, + sym_object, + STATE(3308), 1, + sym__rest_identifier, + ACTIONS(4729), 2, + sym_identifier, + sym_this, + ACTIONS(1934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3550), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1920), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + 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, + [120667] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4745), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [102582] = 12, + [120746] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, + sym_number, + ACTIONS(1724), 1, + anon_sym_async, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4329), 1, + ACTIONS(4747), 1, anon_sym_STAR, - ACTIONS(4331), 1, - anon_sym_async, - ACTIONS(4333), 1, - sym_number, - ACTIONS(4375), 1, - sym_readonly, - ACTIONS(4335), 2, + STATE(3727), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2201), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, + ACTIONS(1722), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -157229,27 +179731,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [102644] = 10, + sym_readonly, + [120813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(1870), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(967), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4377), 1, - anon_sym_STAR, - ACTIONS(4379), 1, sym_number, - ACTIONS(4381), 2, - anon_sym_get, - anon_sym_set, - STATE(2584), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -157259,13 +179755,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157277,41 +179775,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102702] = 12, + [120862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4285), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4749), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, - ACTIONS(4287), 1, - anon_sym_async, - ACTIONS(4289), 1, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120941] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, sym_number, - ACTIONS(4383), 1, + ACTIONS(1724), 1, + anon_sym_async, + ACTIONS(1728), 1, sym_readonly, - ACTIONS(4291), 2, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4747), 1, + anon_sym_STAR, + STATE(3727), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2203), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 15, + ACTIONS(1722), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -157327,43 +179886,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [102764] = 10, + [121010] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4361), 1, - anon_sym_STAR, - ACTIONS(4385), 1, + ACTIONS(4723), 1, sym_number, - ACTIONS(4387), 2, - anon_sym_get, - anon_sym_set, - STATE(2499), 3, + STATE(3032), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 17, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157375,42 +179931,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102822] = 11, + [121063] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, + sym_number, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4361), 1, + ACTIONS(4747), 1, anon_sym_STAR, - ACTIONS(4363), 1, - anon_sym_async, - ACTIONS(4365), 1, - sym_number, - ACTIONS(4367), 2, + STATE(3727), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2205), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3173), 16, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -157424,90 +179982,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [102882] = 11, + [121128] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(577), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4275), 1, - anon_sym_STAR, - ACTIONS(4277), 1, - anon_sym_async, - ACTIONS(4279), 1, - sym_number, - ACTIONS(4283), 2, - anon_sym_get, - anon_sym_set, - STATE(2198), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3173), 16, + ACTIONS(4733), 1, + sym_readonly, + ACTIONS(4751), 1, + anon_sym_RPAREN, + STATE(2389), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + STATE(2502), 1, + sym_accessibility_modifier, + STATE(2883), 1, + sym__parameter_name, + STATE(3141), 1, + sym_array, + STATE(3142), 1, + sym_object, + STATE(3308), 1, + sym__rest_identifier, + ACTIONS(4729), 2, + sym_identifier, + sym_this, + ACTIONS(1934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3784), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - sym_identifier, + anon_sym_async, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [102942] = 10, + [121201] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(1316), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, + sym_number, + ACTIONS(1724), 1, + anon_sym_async, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4275), 1, + ACTIONS(4747), 1, anon_sym_STAR, - ACTIONS(4389), 1, - sym_number, - ACTIONS(4391), 2, + STATE(3666), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2604), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 17, + ACTIONS(1722), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -157521,42 +180089,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [103000] = 15, + [121268] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1382), 1, + ACTIONS(1316), 1, anon_sym_RBRACE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, + ACTIONS(1724), 1, anon_sym_async, - ACTIONS(4225), 1, + ACTIONS(1728), 1, + sym_readonly, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - STATE(3112), 1, + STATE(3666), 1, aux_sym_object_repeat1, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 16, + ACTIONS(1722), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -157572,46 +180142,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [103067] = 15, + [121337] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1341), 1, + ACTIONS(1316), 1, anon_sym_RBRACE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - STATE(3195), 1, + STATE(3666), 1, aux_sym_object_repeat1, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 16, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -157625,241 +180193,560 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [103134] = 8, + [121402] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4395), 1, - sym_number, - STATE(2309), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4753), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121479] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4755), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121558] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4757), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121637] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3173), 19, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4759), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121714] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(577), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_readonly, + ACTIONS(4761), 1, + anon_sym_RPAREN, + STATE(2399), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + STATE(2502), 1, + sym_accessibility_modifier, + STATE(2883), 1, + sym__parameter_name, + STATE(3141), 1, + sym_array, + STATE(3142), 1, + sym_object, + STATE(3308), 1, + sym__rest_identifier, + ACTIONS(4729), 2, + sym_identifier, + sym_this, + ACTIONS(1934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3726), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [103187] = 8, + [121787] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, ACTIONS(4397), 1, - sym_number, - STATE(2576), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4763), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 19, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121864] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(577), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_readonly, + ACTIONS(4765), 1, + anon_sym_RPAREN, + STATE(2389), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + STATE(2502), 1, + sym_accessibility_modifier, + STATE(2883), 1, + sym__parameter_name, + STATE(3141), 1, + sym_array, + STATE(3142), 1, + sym_object, + STATE(3308), 1, + sym__rest_identifier, + ACTIONS(4729), 2, + sym_identifier, + sym_this, + ACTIONS(1934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3784), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [103240] = 14, + [121937] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1384), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4767), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [103305] = 16, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122016] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1382), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(1843), 1, - sym_readonly, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4769), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, anon_sym_STAR, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [103374] = 18, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122095] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_RPAREN, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - STATE(2064), 1, + ACTIONS(4771), 1, + anon_sym_RPAREN, + STATE(2389), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3387), 3, + STATE(3784), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -157874,22 +180761,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [103447] = 8, + [122168] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + ACTIONS(4773), 1, sym_number, - STATE(2557), 3, + STATE(2656), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -157899,7 +180786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + ACTIONS(3417), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -157919,49 +180806,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [103500] = 16, + [122221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(1843), 1, - sym_readonly, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, + ACTIONS(4713), 1, + sym_number, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 15, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157972,46 +180850,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [103569] = 14, + sym_readonly, + [122274] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, + ACTIONS(4625), 1, + sym_number, + STATE(2979), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -158023,40 +180896,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [103634] = 14, + [122327] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1382), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - STATE(3112), 1, + ACTIONS(4775), 1, + anon_sym_RBRACE, + STATE(3595), 1, aux_sym_object_repeat1, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 17, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -158074,95 +180947,215 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [103699] = 14, + [122392] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, ACTIONS(4409), 1, - anon_sym_RBRACE, - STATE(3165), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 17, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4777), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122471] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(577), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_readonly, + ACTIONS(4779), 1, + anon_sym_RPAREN, + STATE(2389), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + STATE(2502), 1, + sym_accessibility_modifier, + STATE(2883), 1, + sym__parameter_name, + STATE(3141), 1, + sym_array, + STATE(3142), 1, + sym_object, + STATE(3308), 1, + sym__rest_identifier, + ACTIONS(4729), 2, + sym_identifier, + sym_this, + ACTIONS(1934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3784), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [103764] = 16, + [122544] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4781), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122623] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, + ACTIONS(1724), 1, anon_sym_async, - ACTIONS(1843), 1, + ACTIONS(1728), 1, sym_readonly, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - ACTIONS(4409), 1, + ACTIONS(4775), 1, anon_sym_RBRACE, - STATE(3165), 1, + STATE(3595), 1, aux_sym_object_repeat1, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 15, + ACTIONS(1722), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -158178,128 +181171,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [103833] = 6, + [122692] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2591), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2597), 1, anon_sym_DOT, - ACTIONS(2964), 1, - anon_sym_QMARK_DOT, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3999), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, anon_sym_AMP, + ACTIONS(4393), 1, anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4783), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4377), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4381), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [103882] = 8, + [122769] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4385), 1, - sym_number, - STATE(2499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [103935] = 8, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122848] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4357), 1, + ACTIONS(1468), 1, sym_number, - STATE(2595), 3, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4747), 1, + anon_sym_STAR, + ACTIONS(4787), 1, + anon_sym_RBRACE, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, + anon_sym_get, + anon_sym_set, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -158311,90 +181337,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [103988] = 6, + [122913] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, + ACTIONS(2585), 1, anon_sym_DOT, - ACTIONS(2541), 1, - anon_sym_QMARK_DOT, - ACTIONS(571), 14, - anon_sym_STAR, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, anon_sym_AMP, + ACTIONS(4419), 1, anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [104037] = 18, + [122992] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - ACTIONS(4411), 1, + ACTIONS(4791), 1, anon_sym_RPAREN, - STATE(2064), 1, + STATE(2389), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3387), 3, + STATE(3784), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -158409,44 +181450,160 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [104110] = 16, + [123065] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4793), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123144] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4795), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123223] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1384), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, + ACTIONS(1724), 1, anon_sym_async, - ACTIONS(1843), 1, + ACTIONS(1728), 1, sym_readonly, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - STATE(3178), 1, + ACTIONS(4787), 1, + anon_sym_RBRACE, + STATE(3536), 1, aux_sym_object_repeat1, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 15, + ACTIONS(1722), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -158462,326 +181619,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [104179] = 6, + [123292] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(1887), 5, - anon_sym_STAR, + ACTIONS(2591), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4003), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_as, + ACTIONS(4383), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1885), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [104228] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4343), 1, - sym_number, - STATE(2588), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(4385), 1, + anon_sym_AMP_AMP, + ACTIONS(4391), 1, + anon_sym_AMP, + ACTIONS(4393), 1, + anon_sym_PIPE, + ACTIONS(4397), 1, + anon_sym_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4387), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4797), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [104281] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(1887), 5, + ACTIONS(4377), 3, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4389), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4381), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1885), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [104330] = 8, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4399), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123369] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4379), 1, + ACTIONS(1468), 1, sym_number, - STATE(2584), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [104383] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(535), 1, - anon_sym_RPAREN, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, - anon_sym_LBRACK, - ACTIONS(4405), 1, - sym_readonly, - STATE(2063), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - STATE(2176), 1, - sym_accessibility_modifier, - STATE(2436), 1, - sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, - sym_array, - STATE(2943), 1, - sym__rest_identifier, - ACTIONS(4399), 2, - sym_identifier, - sym_this, - ACTIONS(1873), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3142), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1861), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, + ACTIONS(1724), 1, anon_sym_async, - anon_sym_static, - 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, - [104456] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, - sym_readonly, - ACTIONS(4413), 1, - anon_sym_RPAREN, - STATE(2064), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - STATE(2176), 1, - sym_accessibility_modifier, - STATE(2436), 1, - sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, - sym_array, - STATE(2943), 1, - sym__rest_identifier, - ACTIONS(4399), 2, - sym_identifier, - sym_this, - ACTIONS(1873), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3387), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1861), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, + ACTIONS(4747), 1, + anon_sym_STAR, + ACTIONS(4787), 1, + anon_sym_RBRACE, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, 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, - [104529] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4313), 1, - sym_number, - STATE(2534), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(1722), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -158793,22 +181728,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [104582] = 8, + [123436] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4319), 1, + ACTIONS(4799), 1, sym_number, - STATE(2482), 3, + STATE(2893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -158818,7 +181753,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -158834,77 +181769,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_any, anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [104635] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(581), 1, - anon_sym_QMARK_DOT, - ACTIONS(2462), 1, - anon_sym_DOT, - ACTIONS(571), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(585), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [104684] = 6, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [123489] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(1887), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(659), 1, anon_sym_DQUOTE, + ACTIONS(661), 1, anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4801), 1, sym_number, - ACTIONS(3203), 9, + STATE(3027), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1885), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -158924,22 +181818,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [104733] = 8, + [123542] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4371), 1, + ACTIONS(4669), 1, sym_number, - STATE(2624), 3, + STATE(3011), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -158949,7 +181843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -158969,46 +181863,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [104786] = 14, + [123595] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DOT, + STATE(2416), 1, + sym_arguments, + ACTIONS(4805), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(967), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, sym_number, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, - ACTIONS(4415), 1, - anon_sym_RBRACE, - STATE(3090), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 17, + anon_sym_AT, + ACTIONS(4803), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -159020,49 +181906,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [104851] = 16, + [123644] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(1843), 1, - sym_readonly, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, - ACTIONS(4415), 1, - anon_sym_RBRACE, - STATE(3090), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, + ACTIONS(4811), 1, + sym_number, + STATE(2668), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 15, + ACTIONS(3417), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -159073,47 +181950,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [104920] = 18, + sym_readonly, + [123697] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - ACTIONS(4417), 1, + ACTIONS(4813), 1, anon_sym_RPAREN, - STATE(2064), 1, + STATE(2389), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3387), 3, + STATE(3784), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159128,20 +182006,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [104993] = 6, + [123770] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3090), 1, - aux_sym_object_repeat1, - ACTIONS(1887), 5, - anon_sym_STAR, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4727), 1, + anon_sym_COMMA, + ACTIONS(4815), 1, + anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123849] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, anon_sym_DQUOTE, + ACTIONS(661), 1, anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4619), 1, sym_number, - ACTIONS(3203), 9, + STATE(3021), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -159151,7 +182089,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1885), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159171,47 +182109,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [105042] = 15, + [123902] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(1365), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, + ACTIONS(1724), 1, anon_sym_async, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - ACTIONS(4415), 1, - anon_sym_RBRACE, - STATE(3090), 1, + STATE(3583), 1, aux_sym_object_repeat1, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(3029), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1722), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [123969] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124048] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4677), 1, + sym_number, + STATE(3023), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -159223,42 +182264,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [105109] = 15, + [124101] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1384), 1, + ACTIONS(1365), 1, anon_sym_RBRACE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, + ACTIONS(1724), 1, anon_sym_async, - ACTIONS(4225), 1, + ACTIONS(1728), 1, + sym_readonly, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - STATE(3178), 1, + STATE(3583), 1, aux_sym_object_repeat1, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 16, + ACTIONS(1722), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159274,158 +182317,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [105176] = 18, + [124170] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, - sym_readonly, - ACTIONS(4419), 1, - anon_sym_RPAREN, - STATE(2064), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - STATE(2176), 1, - sym_accessibility_modifier, - STATE(2436), 1, - sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, - sym_array, - STATE(2943), 1, - sym__rest_identifier, - ACTIONS(4399), 2, - sym_identifier, - sym_this, - ACTIONS(1873), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3387), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(4665), 1, + sym_number, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105249] = 18, + sym_readonly, + [124223] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1365), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, + sym_number, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, - sym_readonly, - ACTIONS(4421), 1, - anon_sym_RPAREN, - STATE(2074), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - STATE(2176), 1, - sym_accessibility_modifier, - STATE(2436), 1, - sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, - sym_array, - STATE(2943), 1, - sym__rest_identifier, - ACTIONS(4399), 2, - sym_identifier, - sym_this, - ACTIONS(1873), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3096), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(4747), 1, + anon_sym_STAR, + STATE(3583), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, + anon_sym_get, + anon_sym_set, + STATE(3029), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105322] = 18, + sym_readonly, + [124288] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - ACTIONS(4423), 1, + ACTIONS(4819), 1, anon_sym_RPAREN, - STATE(2069), 1, + STATE(2389), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3145), 3, + STATE(3784), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159440,40 +182468,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105395] = 8, + [124361] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4821), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124440] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, - anon_sym_LBRACK, - ACTIONS(4425), 1, + ACTIONS(1468), 1, sym_number, - STATE(2319), 3, + ACTIONS(1724), 1, + anon_sym_async, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4747), 1, + anon_sym_STAR, + ACTIONS(4775), 1, + anon_sym_RBRACE, + STATE(3595), 1, + aux_sym_object_repeat1, + ACTIONS(1726), 2, + anon_sym_get, + anon_sym_set, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3173), 19, + ACTIONS(1722), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -159485,36 +182578,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [105448] = 6, + [124507] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_LPAREN, - ACTIONS(4433), 1, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, anon_sym_DOT, - STATE(2088), 1, - sym_arguments, - ACTIONS(4429), 10, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124584] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124661] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, anon_sym_DQUOTE, + ACTIONS(661), 1, anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, sym_number, - anon_sym_AT, - ACTIONS(4427), 22, + STATE(3014), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -159528,47 +182737,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [105497] = 18, + [124714] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124791] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - ACTIONS(4435), 1, + ACTIONS(4823), 1, anon_sym_RPAREN, - STATE(2064), 1, + STATE(2389), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3387), 3, + STATE(3784), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159583,47 +182849,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105570] = 18, + [124864] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4673), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124941] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4825), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125020] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - ACTIONS(4437), 1, + ACTIONS(4827), 1, anon_sym_RPAREN, - STATE(2064), 1, + STATE(2389), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3387), 3, + STATE(3784), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159638,102 +183019,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105643] = 18, + [125093] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, ACTIONS(4405), 1, - sym_readonly, - ACTIONS(4439), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4829), 1, anon_sym_RPAREN, - STATE(2064), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - STATE(2176), 1, - sym_accessibility_modifier, - STATE(2436), 1, - sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, - sym_array, - STATE(2943), 1, - sym__rest_identifier, - ACTIONS(4399), 2, - sym_identifier, - sym_this, - ACTIONS(1873), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3387), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1861), 14, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - 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, - [105716] = 18, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125172] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - ACTIONS(4441), 1, - anon_sym_RPAREN, - STATE(2064), 1, + ACTIONS(4831), 1, + anon_sym_class, + STATE(2463), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3387), 3, + STATE(3588), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159748,87 +183132,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105789] = 18, + [125245] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, ACTIONS(4405), 1, - sym_readonly, - ACTIONS(4443), 1, - anon_sym_class, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - STATE(2176), 1, - sym_accessibility_modifier, - STATE(2436), 1, - sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, - sym_array, - STATE(2943), 1, - sym__rest_identifier, - ACTIONS(4399), 2, - sym_identifier, - sym_this, - ACTIONS(1873), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1861), 14, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4833), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125324] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4601), 1, + sym_number, + STATE(2939), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [105862] = 8, + sym_readonly, + [125377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + STATE(3666), 1, + aux_sym_object_repeat1, + ACTIONS(1870), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(967), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4389), 1, sym_number, - STATE(2604), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159848,32 +183278,265 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [105915] = 8, + [125426] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4835), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125505] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4837), 1, + anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125584] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4839), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125663] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4841), 1, + anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125739] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4353), 1, + ACTIONS(1365), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, sym_number, - STATE(2560), 3, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + STATE(3583), 1, + aux_sym_object_repeat1, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3451), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -159893,185 +183556,268 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [105968] = 15, + [125799] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, - ACTIONS(4409), 1, - anon_sym_RBRACE, - STATE(3165), 1, - aux_sym_object_repeat1, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4843), 1, anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [106035] = 8, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125875] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4325), 1, - sym_number, - STATE(2583), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4845), 1, anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125951] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, anon_sym_QMARK, - ACTIONS(1837), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [106088] = 8, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4847), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126027] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, - sym_number, - STATE(2597), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4849), 1, anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [106141] = 12, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126103] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(4225), 1, + ACTIONS(1724), 1, + anon_sym_async, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - STATE(3195), 1, - aux_sym_object_repeat1, - STATE(2490), 3, + ACTIONS(4747), 1, + anon_sym_STAR, + ACTIONS(1726), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4851), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + ACTIONS(1722), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -160083,42 +183829,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [106201] = 13, + [126165] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(4747), 1, anon_sym_STAR, - ACTIONS(1841), 2, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - ACTIONS(4445), 2, + ACTIONS(4851), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 16, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -160132,46 +183877,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [106263] = 14, + [126225] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4853), 1, + anon_sym_RBRACK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126301] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126377] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(1843), 1, - sym_readonly, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4445), 2, - anon_sym_COMMA, + ACTIONS(4775), 1, anon_sym_RBRACE, - STATE(2490), 3, + STATE(3595), 1, + aux_sym_object_repeat1, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 15, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -160182,45 +184036,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106327] = 17, + sym_readonly, + [126437] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - STATE(2136), 1, + STATE(2389), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3784), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160235,88 +184090,181 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106397] = 17, + [126507] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(2562), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, - sym_readonly, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - STATE(2176), 1, - sym_accessibility_modifier, - STATE(2436), 1, - sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, - sym_array, - STATE(2943), 1, - sym__rest_identifier, - ACTIONS(4399), 2, - sym_identifier, - sym_this, - ACTIONS(1873), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3408), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4857), 1, + anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126583] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(1316), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, + sym_number, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + STATE(3666), 1, + aux_sym_object_repeat1, + STATE(3029), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3451), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106467] = 12, + sym_readonly, + [126643] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4415), 1, + ACTIONS(4787), 1, anon_sym_RBRACE, - STATE(3090), 1, + STATE(3536), 1, aux_sym_object_repeat1, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1722), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [126703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(3495), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1870), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + ACTIONS(3451), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160336,45 +184284,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [106527] = 17, + [126751] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - STATE(2064), 1, + STATE(2463), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3387), 3, + STATE(3956), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160389,82 +184337,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106597] = 3, + [126821] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 11, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2562), 1, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126897] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, anon_sym_DQUOTE, + ACTIONS(661), 1, anon_sym_SQUOTE, + ACTIONS(1468), 1, sym_number, - anon_sym_AT, - ACTIONS(4447), 23, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_DOT, - anon_sym_class, + ACTIONS(1724), 1, anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, + ACTIONS(1728), 1, + sym_readonly, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4747), 1, + anon_sym_STAR, + ACTIONS(1726), 2, 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, - sym_readonly, - [106639] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, + ACTIONS(4851), 2, anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1382), 1, anon_sym_RBRACE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - STATE(3112), 1, - aux_sym_object_repeat1, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + ACTIONS(1722), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -160475,46 +184443,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [106699] = 17, + [126961] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - STATE(2136), 1, + STATE(2463), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3174), 3, + STATE(3588), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160529,41 +184496,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106769] = 12, + [127031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(4863), 11, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(967), 1, anon_sym_SQUOTE, - ACTIONS(1384), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, sym_number, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - STATE(3178), 1, - aux_sym_object_repeat1, - STATE(2490), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 19, + anon_sym_AT, + ACTIONS(4861), 23, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_DOT, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -160577,35 +184535,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [106829] = 12, + [127073] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4865), 1, + anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127149] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4867), 1, + anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127225] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(1468), 1, sym_number, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_RBRACE, - STATE(3165), 1, + STATE(3727), 1, aux_sym_object_repeat1, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160625,135 +184695,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [106889] = 6, + [127285] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(3249), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1887), 5, - anon_sym_STAR, + ACTIONS(2562), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4431), 1, + anon_sym_as, + ACTIONS(4441), 1, + anon_sym_QMARK, + ACTIONS(4443), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_AMP, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_STAR_STAR, + ACTIONS(4459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4869), 1, anon_sym_COLON, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4445), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4453), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4429), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4447), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4437), 5, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1885), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4457), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127361] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(577), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_readonly, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + STATE(2502), 1, + sym_accessibility_modifier, + STATE(2883), 1, + sym__parameter_name, + STATE(3141), 1, + sym_array, + STATE(3142), 1, + sym_object, + STATE(3308), 1, + sym__rest_identifier, + ACTIONS(4729), 2, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, + sym_this, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [106937] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4393), 1, - anon_sym_STAR, - ACTIONS(1841), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4445), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2490), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1837), 17, + STATE(3606), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, 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_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [106997] = 17, + [127431] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(543), 1, + ACTIONS(577), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4405), 1, + ACTIONS(4733), 1, sym_readonly, - STATE(2136), 1, + STATE(2463), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2176), 1, + STATE(2502), 1, sym_accessibility_modifier, - STATE(2436), 1, + STATE(2883), 1, sym__parameter_name, - STATE(2715), 1, - sym_object, - STATE(2717), 1, + STATE(3141), 1, sym_array, - STATE(2943), 1, + STATE(3142), 1, + sym_object, + STATE(3308), 1, sym__rest_identifier, - ACTIONS(4399), 2, + ACTIONS(4729), 2, sym_identifier, sym_this, - ACTIONS(1873), 3, + ACTIONS(1934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3103), 3, + STATE(3659), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, - ACTIONS(1861), 14, + ACTIONS(1920), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160768,50 +184857,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [107067] = 22, + [127501] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_BANG, + ACTIONS(3661), 1, + anon_sym_QMARK_DOT, + ACTIONS(4405), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_AMP, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(4423), 1, + anon_sym_STAR_STAR, + ACTIONS(4427), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3663), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4413), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4421), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4403), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4415), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4407), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127574] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(3201), 1, + ACTIONS(3449), 1, anon_sym_namespace, - ACTIONS(3205), 1, + ACTIONS(3453), 1, anon_sym_type, - ACTIONS(3207), 1, + ACTIONS(3455), 1, anon_sym_import, - ACTIONS(3209), 1, + ACTIONS(3457), 1, anon_sym_var, - ACTIONS(3211), 1, + ACTIONS(3459), 1, anon_sym_let, - ACTIONS(3213), 1, + ACTIONS(3461), 1, anon_sym_const, - ACTIONS(3215), 1, + ACTIONS(3463), 1, anon_sym_class, - ACTIONS(3217), 1, + ACTIONS(3465), 1, anon_sym_async, - ACTIONS(3219), 1, + ACTIONS(3467), 1, anon_sym_function, - ACTIONS(3221), 1, + ACTIONS(3469), 1, anon_sym_abstract, - ACTIONS(3223), 1, + ACTIONS(3471), 1, anon_sym_declare, - ACTIONS(3227), 1, + ACTIONS(3475), 1, anon_sym_interface, - ACTIONS(3229), 1, + ACTIONS(3477), 1, anon_sym_enum, - ACTIONS(4451), 1, + ACTIONS(4871), 1, anon_sym_module, - ACTIONS(4453), 1, + ACTIONS(4873), 1, anon_sym_global, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2660), 1, + STATE(3118), 1, sym__declaration, - STATE(2686), 1, - sym_internal_module, - STATE(2780), 1, + STATE(3135), 1, aux_sym_export_statement_repeat1, - STATE(2696), 13, + STATE(3183), 1, + sym_internal_module, + STATE(3206), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160825,32 +184968,32 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [107146] = 10, + [127653] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4445), 2, + ACTIONS(4851), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2490), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -160870,50 +185013,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107201] = 22, + [127708] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(1312), 1, anon_sym_namespace, - ACTIONS(1343), 1, + ACTIONS(1318), 1, anon_sym_type, - ACTIONS(1345), 1, + ACTIONS(1320), 1, anon_sym_import, - ACTIONS(1347), 1, + ACTIONS(1322), 1, anon_sym_var, - ACTIONS(1349), 1, + ACTIONS(1324), 1, anon_sym_let, - ACTIONS(1351), 1, + ACTIONS(1326), 1, anon_sym_const, - ACTIONS(1366), 1, + ACTIONS(1342), 1, anon_sym_class, - ACTIONS(1368), 1, + ACTIONS(1344), 1, anon_sym_async, - ACTIONS(1370), 1, + ACTIONS(1346), 1, anon_sym_function, - ACTIONS(1372), 1, + ACTIONS(1355), 1, anon_sym_abstract, - ACTIONS(1374), 1, - anon_sym_declare, - ACTIONS(1378), 1, + ACTIONS(1361), 1, anon_sym_interface, - ACTIONS(1380), 1, + ACTIONS(1363), 1, anon_sym_enum, - ACTIONS(1400), 1, - anon_sym_module, - ACTIONS(1402), 1, + ACTIONS(1391), 1, anon_sym_global, - STATE(628), 1, + ACTIONS(1408), 1, + anon_sym_declare, + ACTIONS(1412), 1, + anon_sym_module, + STATE(673), 1, sym__declaration, - STATE(636), 1, + STATE(694), 1, sym_internal_module, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2839), 1, + STATE(3259), 1, aux_sym_export_statement_repeat1, - STATE(638), 13, + STATE(669), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160927,50 +185070,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [107280] = 22, + [127787] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(3201), 1, + ACTIONS(1312), 1, anon_sym_namespace, - ACTIONS(3205), 1, + ACTIONS(1318), 1, anon_sym_type, - ACTIONS(3207), 1, + ACTIONS(1320), 1, anon_sym_import, - ACTIONS(3209), 1, + ACTIONS(1322), 1, anon_sym_var, - ACTIONS(3211), 1, + ACTIONS(1324), 1, anon_sym_let, - ACTIONS(3213), 1, + ACTIONS(1326), 1, anon_sym_const, - ACTIONS(3215), 1, + ACTIONS(1342), 1, anon_sym_class, - ACTIONS(3217), 1, + ACTIONS(1344), 1, anon_sym_async, - ACTIONS(3219), 1, + ACTIONS(1346), 1, anon_sym_function, - ACTIONS(3221), 1, + ACTIONS(1355), 1, anon_sym_abstract, - ACTIONS(3223), 1, - anon_sym_declare, - ACTIONS(3225), 1, + ACTIONS(1359), 1, anon_sym_module, - ACTIONS(3227), 1, + ACTIONS(1361), 1, anon_sym_interface, - ACTIONS(3229), 1, + ACTIONS(1363), 1, anon_sym_enum, - ACTIONS(4455), 1, + ACTIONS(1408), 1, + anon_sym_declare, + ACTIONS(4875), 1, anon_sym_default, - STATE(2168), 1, - sym_decorator, - STATE(2686), 1, + STATE(685), 1, + sym__declaration, + STATE(694), 1, sym_internal_module, - STATE(2780), 1, + STATE(2501), 1, + sym_decorator, + STATE(3259), 1, aux_sym_export_statement_repeat1, - STATE(2823), 1, - sym__declaration, - STATE(2696), 13, + STATE(669), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160984,50 +185127,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [107359] = 22, + [127866] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(1312), 1, anon_sym_namespace, - ACTIONS(1343), 1, + ACTIONS(1318), 1, anon_sym_type, - ACTIONS(1345), 1, + ACTIONS(1320), 1, anon_sym_import, - ACTIONS(1347), 1, + ACTIONS(1322), 1, anon_sym_var, - ACTIONS(1349), 1, + ACTIONS(1324), 1, anon_sym_let, - ACTIONS(1351), 1, + ACTIONS(1326), 1, anon_sym_const, - ACTIONS(1366), 1, + ACTIONS(1342), 1, anon_sym_class, - ACTIONS(1368), 1, + ACTIONS(1344), 1, anon_sym_async, - ACTIONS(1370), 1, + ACTIONS(1346), 1, anon_sym_function, - ACTIONS(1372), 1, + ACTIONS(1355), 1, anon_sym_abstract, - ACTIONS(1376), 1, + ACTIONS(1357), 1, + anon_sym_declare, + ACTIONS(1359), 1, anon_sym_module, - ACTIONS(1378), 1, + ACTIONS(1361), 1, anon_sym_interface, - ACTIONS(1380), 1, + ACTIONS(1363), 1, anon_sym_enum, - ACTIONS(1430), 1, - anon_sym_declare, - ACTIONS(4457), 1, + ACTIONS(4875), 1, anon_sym_default, - STATE(636), 1, - sym_internal_module, - STATE(643), 1, + STATE(685), 1, sym__declaration, - STATE(2168), 1, + STATE(694), 1, + sym_internal_module, + STATE(2501), 1, sym_decorator, - STATE(2839), 1, + STATE(3259), 1, aux_sym_export_statement_repeat1, - STATE(638), 13, + STATE(669), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -161041,50 +185184,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [107438] = 22, + [127945] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(1312), 1, anon_sym_namespace, - ACTIONS(1343), 1, + ACTIONS(1318), 1, anon_sym_type, - ACTIONS(1345), 1, + ACTIONS(1320), 1, anon_sym_import, - ACTIONS(1347), 1, + ACTIONS(1322), 1, anon_sym_var, - ACTIONS(1349), 1, + ACTIONS(1324), 1, anon_sym_let, - ACTIONS(1351), 1, + ACTIONS(1326), 1, anon_sym_const, - ACTIONS(1366), 1, + ACTIONS(1342), 1, anon_sym_class, - ACTIONS(1368), 1, + ACTIONS(1344), 1, anon_sym_async, - ACTIONS(1370), 1, + ACTIONS(1346), 1, anon_sym_function, - ACTIONS(1372), 1, + ACTIONS(1355), 1, anon_sym_abstract, - ACTIONS(1378), 1, + ACTIONS(1357), 1, + anon_sym_declare, + ACTIONS(1361), 1, anon_sym_interface, - ACTIONS(1380), 1, + ACTIONS(1363), 1, anon_sym_enum, - ACTIONS(1402), 1, - anon_sym_global, - ACTIONS(1430), 1, - anon_sym_declare, - ACTIONS(1514), 1, + ACTIONS(1389), 1, anon_sym_module, - STATE(628), 1, + ACTIONS(1391), 1, + anon_sym_global, + STATE(673), 1, sym__declaration, - STATE(636), 1, + STATE(694), 1, sym_internal_module, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2839), 1, + STATE(3259), 1, aux_sym_export_statement_repeat1, - STATE(638), 13, + STATE(669), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -161098,50 +185241,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [107517] = 22, + [128024] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(3449), 1, anon_sym_namespace, - ACTIONS(1343), 1, + ACTIONS(3453), 1, anon_sym_type, - ACTIONS(1345), 1, + ACTIONS(3455), 1, anon_sym_import, - ACTIONS(1347), 1, + ACTIONS(3457), 1, anon_sym_var, - ACTIONS(1349), 1, + ACTIONS(3459), 1, anon_sym_let, - ACTIONS(1351), 1, + ACTIONS(3461), 1, anon_sym_const, - ACTIONS(1366), 1, + ACTIONS(3463), 1, anon_sym_class, - ACTIONS(1368), 1, + ACTIONS(3465), 1, anon_sym_async, - ACTIONS(1370), 1, + ACTIONS(3467), 1, anon_sym_function, - ACTIONS(1372), 1, + ACTIONS(3469), 1, anon_sym_abstract, - ACTIONS(1374), 1, + ACTIONS(3471), 1, anon_sym_declare, - ACTIONS(1376), 1, + ACTIONS(3473), 1, anon_sym_module, - ACTIONS(1378), 1, + ACTIONS(3475), 1, anon_sym_interface, - ACTIONS(1380), 1, + ACTIONS(3477), 1, anon_sym_enum, - ACTIONS(4457), 1, + ACTIONS(4877), 1, anon_sym_default, - STATE(636), 1, - sym_internal_module, - STATE(643), 1, - sym__declaration, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - STATE(2839), 1, + STATE(3135), 1, aux_sym_export_statement_repeat1, - STATE(638), 13, + STATE(3175), 1, + sym__declaration, + STATE(3183), 1, + sym_internal_module, + STATE(3206), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -161155,10 +185298,10 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [107596] = 3, + [128103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 10, + ACTIONS(1052), 10, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -161169,7 +185312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1275), 22, + ACTIONS(1054), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161192,10 +185335,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107636] = 3, + [128143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 10, + ACTIONS(4805), 10, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -161206,7 +185349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1279), 22, + ACTIONS(4803), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161229,35 +185372,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107676] = 8, + [128183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 5, + ACTIONS(1248), 10, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1885), 19, + anon_sym_AT, + ACTIONS(1250), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -161271,29 +185409,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107726] = 8, + [128223] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1384), 1, + ACTIONS(1365), 1, anon_sym_RBRACE, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - STATE(3178), 1, + STATE(3583), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 5, + ACTIONS(1870), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1885), 19, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161313,29 +185451,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107776] = 8, + [128273] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4415), 1, + ACTIONS(1316), 1, anon_sym_RBRACE, - STATE(3090), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + STATE(3666), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 5, + ACTIONS(1870), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1885), 19, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161355,67 +185493,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107826] = 3, + [128323] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 10, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4775), 1, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4427), 22, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, - 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, - sym_readonly, - [107866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4461), 10, + STATE(3595), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1870), 5, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - anon_sym_AT, - ACTIONS(4459), 22, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -161429,10 +185535,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107906] = 3, + [128373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 10, + ACTIONS(1236), 10, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -161443,7 +185549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1271), 22, + ACTIONS(1238), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161466,29 +185572,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107946] = 8, + [128413] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1382), 1, + ACTIONS(1367), 1, anon_sym_RBRACE, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - STATE(3112), 1, + STATE(3727), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 5, + ACTIONS(1870), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1885), 19, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161508,35 +185614,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [107996] = 8, + [128463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4409), 1, - anon_sym_RBRACE, - STATE(3165), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1887), 5, + ACTIONS(4881), 10, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1885), 19, + anon_sym_AT, + ACTIONS(4879), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -161550,26 +185651,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108046] = 6, + [128503] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4445), 2, + ACTIONS(113), 1, anon_sym_COMMA, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4787), 1, anon_sym_RBRACE, - ACTIONS(3203), 4, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1887), 5, + ACTIONS(1870), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1885), 19, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161589,122 +185693,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108091] = 10, + [128553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4463), 1, - anon_sym_STAR, - ACTIONS(4465), 1, - sym_number, - ACTIONS(4467), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3203), 3, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4851), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3451), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(2571), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - 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, - sym_readonly, - [108143] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4469), 1, + ACTIONS(1870), 5, anon_sym_STAR, - ACTIONS(4471), 1, - anon_sym_async, - ACTIONS(4473), 1, - sym_number, - ACTIONS(4475), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2538), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [108197] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(967), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4469), 1, - anon_sym_STAR, - ACTIONS(4473), 1, sym_number, - ACTIONS(4475), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2538), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 17, + ACTIONS(1868), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161716,10 +185732,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108249] = 3, + [128598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 10, + ACTIONS(4885), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -161730,7 +185746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4477), 20, + ACTIONS(4883), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161751,10 +185767,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108287] = 3, + [128636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4483), 10, + ACTIONS(1076), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -161765,7 +185781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4481), 20, + ACTIONS(1078), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161786,12 +185802,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108325] = 4, + [128674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 1, + ACTIONS(4887), 1, sym__automatic_semicolon, - ACTIONS(1063), 9, + ACTIONS(1066), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -161801,7 +185817,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1065), 20, + ACTIONS(1068), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161822,54 +185838,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108365] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4487), 1, - anon_sym_STAR, - ACTIONS(4489), 1, - anon_sym_async, - ACTIONS(4491), 1, - sym_number, - ACTIONS(4495), 1, - sym_readonly, - ACTIONS(4493), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2507), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - [108421] = 3, + [128714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 10, + ACTIONS(4891), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -161880,7 +185852,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4497), 20, + ACTIONS(4889), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161901,10 +185873,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108459] = 3, + [128752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 10, + ACTIONS(1144), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -161915,7 +185887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1177), 20, + ACTIONS(1146), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161936,10 +185908,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108497] = 3, + [128790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4503), 10, + ACTIONS(4895), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -161950,7 +185922,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4501), 20, + ACTIONS(4893), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -161971,28 +185943,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108535] = 3, + [128828] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(659), 1, anon_sym_DQUOTE, + ACTIONS(661), 1, anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4897), 1, + anon_sym_EQ_GT, + ACTIONS(4899), 1, sym_number, - anon_sym_AT, - ACTIONS(4505), 20, + ACTIONS(3451), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -162006,73 +185984,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108573] = 11, + [128878] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, - anon_sym_STAR, - ACTIONS(4489), 1, - anon_sym_async, - ACTIONS(4491), 1, + ACTIONS(4899), 1, sym_number, - ACTIONS(4493), 2, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 2, anon_sym_get, anon_sym_set, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2507), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - 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, - sym_readonly, - [108627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4511), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4509), 20, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -162084,11 +186026,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108665] = 3, + [128930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 10, + ACTIONS(4905), 1, sym__automatic_semicolon, + ACTIONS(1076), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -162098,7 +186041,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4513), 20, + ACTIONS(1078), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162119,31 +186062,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108703] = 10, + [128970] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4907), 1, anon_sym_STAR, - ACTIONS(4491), 1, + ACTIONS(4909), 1, sym_number, - ACTIONS(4493), 2, + ACTIONS(4911), 2, anon_sym_get, anon_sym_set, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2507), 3, + STATE(2958), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 17, + ACTIONS(1722), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162161,12 +186104,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108755] = 4, + [129022] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4517), 1, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4899), 1, + sym_number, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4913), 1, + anon_sym_async, + ACTIONS(4903), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3451), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1722), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [129076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 10, sym__automatic_semicolon, - ACTIONS(1175), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -162176,7 +186161,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1177), 20, + ACTIONS(4915), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162197,34 +186182,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108795] = 9, + [129114] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4491), 1, + ACTIONS(4919), 1, + anon_sym_STAR, + ACTIONS(4921), 1, sym_number, - ACTIONS(4519), 1, - anon_sym_EQ_GT, - ACTIONS(3203), 3, + ACTIONS(4923), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2507), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + 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, + sym_readonly, + [129166] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4929), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4927), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4925), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -162238,10 +186260,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108845] = 3, + [129206] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 10, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4899), 1, + sym_number, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4913), 1, + anon_sym_async, + ACTIONS(4931), 1, + sym_readonly, + ACTIONS(4903), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3451), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1722), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + [129262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4935), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -162252,7 +186318,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4521), 20, + ACTIONS(4933), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162273,10 +186339,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108883] = 3, + [129300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 10, + ACTIONS(4939), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -162287,7 +186353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4525), 20, + ACTIONS(4937), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162308,10 +186374,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108921] = 3, + [129338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 10, + ACTIONS(4943), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -162322,7 +186388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4529), 20, + ACTIONS(4941), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162343,22 +186409,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108959] = 4, + [129376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4537), 2, + ACTIONS(4947), 10, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4535), 8, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4533), 20, + ACTIONS(4945), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162379,10 +186444,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [108999] = 3, + [129414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1107), 10, + ACTIONS(4951), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -162393,7 +186458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1109), 20, + ACTIONS(4949), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162414,10 +186479,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109037] = 3, + [129452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 10, + ACTIONS(4955), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -162428,7 +186493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4539), 20, + ACTIONS(4953), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162449,10 +186514,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109075] = 3, + [129490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 10, + ACTIONS(4959), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -162463,7 +186528,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4543), 20, + ACTIONS(4957), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162484,32 +186549,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109113] = 8, + [129528] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4357), 1, + ACTIONS(4919), 1, + anon_sym_STAR, + ACTIONS(4921), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(4961), 1, + anon_sym_async, + ACTIONS(4923), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2595), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + 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, + sym_readonly, + [129582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4965), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4963), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -162523,26 +186627,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109160] = 8, + [129620] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4465), 1, + ACTIONS(4619), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2571), 3, + STATE(3021), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162562,31 +186666,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109207] = 8, + [129667] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4547), 1, - sym_number, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, + STATE(3114), 1, + sym_array, + STATE(3195), 1, + sym_object, + ACTIONS(4967), 2, + sym_identifier, + sym_this, + ACTIONS(2648), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK, - STATE(2541), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(4969), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -162601,26 +186705,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109254] = 8, + [129714] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4549), 1, + ACTIONS(4677), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2580), 3, + STATE(3023), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162640,31 +186744,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109301] = 8, + [129761] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, anon_sym_LBRACK, - STATE(2679), 1, - sym_object, - STATE(2688), 1, - sym_array, - ACTIONS(1944), 2, - sym_identifier, - sym_this, - ACTIONS(1950), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4971), 1, + sym_number, + ACTIONS(3451), 3, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(921), 18, + STATE(2905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -162679,26 +186783,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109348] = 8, + [129808] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4551), 1, + ACTIONS(4665), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2549), 3, + STATE(3025), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162718,26 +186822,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109395] = 8, + [129855] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4385), 1, + ACTIONS(4723), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2499), 3, + STATE(3032), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162757,26 +186861,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109442] = 8, + [129902] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4313), 1, + ACTIONS(4701), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2534), 3, + STATE(2993), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162796,26 +186900,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109489] = 8, + [129949] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_LBRACK, + STATE(3169), 1, + sym_array, + STATE(3171), 1, + sym_object, + ACTIONS(1957), 2, + sym_identifier, + sym_this, + ACTIONS(676), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(615), 18, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [129996] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4379), 1, + ACTIONS(4713), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2584), 3, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162835,26 +186978,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109536] = 8, + [130043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4553), 1, + ACTIONS(4973), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2500), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162874,26 +187017,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109583] = 8, + [130090] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4353), 1, + ACTIONS(4975), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2560), 3, + STATE(3012), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162913,26 +187056,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109630] = 8, + [130137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(4625), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2597), 3, + STATE(2979), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162952,26 +187095,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109677] = 8, + [130184] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4319), 1, + ACTIONS(4921), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2482), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -162991,26 +187134,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109724] = 8, + [130231] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, + ACTIONS(4669), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2538), 3, + STATE(3011), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163030,26 +187173,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109771] = 8, + [130278] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4343), 1, + ACTIONS(4977), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2588), 3, + STATE(2908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163069,26 +187212,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109818] = 8, + [130325] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4491), 1, + ACTIONS(4909), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2507), 3, + STATE(2958), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163108,26 +187251,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109865] = 8, + [130372] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4389), 1, + ACTIONS(4591), 1, sym_number, - ACTIONS(3203), 3, + ACTIONS(3451), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2604), 3, + STATE(3014), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163147,31 +187290,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109912] = 8, + [130419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, anon_sym_LBRACK, - STATE(2804), 1, - sym_object, - STATE(2805), 1, - sym_array, - ACTIONS(4555), 2, - sym_identifier, - sym_this, - ACTIONS(2464), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4899), 1, + sym_number, + ACTIONS(3451), 3, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4557), 18, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -163186,26 +187329,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [109959] = 9, + [130466] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4559), 1, + ACTIONS(4979), 1, anon_sym_RBRACE, - ACTIONS(4561), 1, + ACTIONS(4981), 1, sym_number, - STATE(3338), 1, + STATE(3971), 1, sym_enum_assignment, - STATE(2919), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163225,29 +187368,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110007] = 6, + [130514] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 1, - anon_sym_AT, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - ACTIONS(4565), 3, - anon_sym_LBRACE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - ACTIONS(4563), 22, + ACTIONS(4981), 1, + sym_number, + ACTIONS(4983), 1, + anon_sym_RBRACE, + STATE(3971), 1, + sym_enum_assignment, + STATE(3436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -163261,32 +187407,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110049] = 9, + [130562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4989), 1, + anon_sym_AT, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + ACTIONS(4987), 3, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4570), 1, - anon_sym_RBRACE, - ACTIONS(4572), 1, - sym_number, - STATE(3099), 1, - sym_enum_assignment, - STATE(2782), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 19, + anon_sym_DOT_DOT_DOT, + ACTIONS(4985), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -163300,10 +187443,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110097] = 3, + [130604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 8, + ACTIONS(4155), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -163312,7 +187455,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4574), 20, + ACTIONS(4992), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163333,26 +187476,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110133] = 9, + [130640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4576), 1, - anon_sym_RBRACE, - ACTIONS(4578), 1, + ACTIONS(4981), 1, sym_number, - STATE(3219), 1, + ACTIONS(4994), 1, + anon_sym_RBRACE, + STATE(3971), 1, sym_enum_assignment, - STATE(2626), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163372,39 +187515,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110181] = 13, + [130688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4265), 1, - anon_sym_STAR, - ACTIONS(4267), 1, - anon_sym_async, - ACTIONS(4269), 1, + ACTIONS(4996), 1, + anon_sym_RBRACE, + ACTIONS(4998), 1, sym_number, - ACTIONS(4580), 1, - anon_sym_static, - ACTIONS(4582), 1, - anon_sym_abstract, - ACTIONS(4584), 1, - sym_readonly, - ACTIONS(4273), 2, - anon_sym_get, - anon_sym_set, - STATE(2200), 3, + STATE(3567), 1, + sym_enum_assignment, + STATE(3079), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3173), 14, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163415,26 +187553,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [110237] = 9, + sym_readonly, + [130736] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4561), 1, + ACTIONS(4981), 1, sym_number, - ACTIONS(4586), 1, + ACTIONS(5000), 1, anon_sym_RBRACE, - STATE(3338), 1, + STATE(3971), 1, sym_enum_assignment, - STATE(2919), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163454,26 +187593,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110285] = 9, + [130784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4561), 1, - sym_number, - ACTIONS(4588), 1, + ACTIONS(5002), 1, anon_sym_RBRACE, - STATE(3338), 1, + ACTIONS(5004), 1, + sym_number, + STATE(3690), 1, sym_enum_assignment, - STATE(2919), 3, + STATE(3058), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163493,34 +187632,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110333] = 9, + [130832] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4561), 1, + ACTIONS(4367), 1, + anon_sym_STAR, + ACTIONS(4369), 1, + anon_sym_async, + ACTIONS(4371), 1, sym_number, - ACTIONS(4590), 1, - anon_sym_RBRACE, - STATE(3338), 1, - sym_enum_assignment, - STATE(2919), 3, + ACTIONS(5006), 1, + anon_sym_static, + ACTIONS(5008), 1, + anon_sym_abstract, + ACTIONS(5010), 1, + sym_readonly, + ACTIONS(4375), 2, + anon_sym_get, + anon_sym_set, + STATE(2526), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(3417), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163531,29 +187675,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [110381] = 4, + [130888] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 2, - anon_sym_LBRACE, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(1950), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1885), 20, + ACTIONS(5012), 1, + anon_sym_STAR, + ACTIONS(5014), 1, + sym_number, + ACTIONS(5018), 1, + sym_readonly, + ACTIONS(5016), 2, + anon_sym_get, + anon_sym_set, + STATE(2531), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163564,38 +187714,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [110418] = 12, + [130937] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(1839), 1, - anon_sym_async, - ACTIONS(1843), 1, - sym_readonly, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4393), 1, + ACTIONS(5020), 1, anon_sym_STAR, - ACTIONS(4592), 1, - anon_sym_static, - ACTIONS(1841), 2, + ACTIONS(5022), 1, + sym_number, + ACTIONS(5026), 1, + sym_readonly, + ACTIONS(5024), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(2529), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 14, + ACTIONS(3417), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163606,29 +187753,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [110471] = 8, + [130986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(1870), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4561), 1, - sym_number, - STATE(3338), 1, - sym_enum_assignment, - STATE(2919), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(676), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1868), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, anon_sym_get, anon_sym_set, @@ -163643,35 +187786,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110516] = 10, + [131023] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4594), 1, - anon_sym_STAR, - ACTIONS(4596), 1, + ACTIONS(4981), 1, sym_number, - ACTIONS(4600), 1, - sym_readonly, - ACTIONS(4598), 2, - anon_sym_get, - anon_sym_set, - STATE(2197), 3, + STATE(3971), 1, + sym_enum_assignment, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3173), 16, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163682,33 +187822,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [110565] = 12, + sym_readonly, + [131068] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4285), 1, + ACTIONS(4607), 1, anon_sym_STAR, - ACTIONS(4287), 1, + ACTIONS(4683), 1, anon_sym_async, - ACTIONS(4289), 1, + ACTIONS(4685), 1, sym_number, - ACTIONS(4383), 1, + ACTIONS(4691), 1, sym_readonly, - ACTIONS(4602), 1, + ACTIONS(5028), 1, anon_sym_static, - ACTIONS(4291), 2, + ACTIONS(4687), 2, anon_sym_get, anon_sym_set, - STATE(2203), 3, + STATE(2540), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3173), 14, + ACTIONS(3417), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163723,33 +187864,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [110618] = 12, + [131121] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4223), 1, + ACTIONS(4315), 1, anon_sym_STAR, - ACTIONS(4229), 1, + ACTIONS(4321), 1, anon_sym_async, - ACTIONS(4231), 1, + ACTIONS(4323), 1, sym_number, - ACTIONS(4235), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4329), 1, sym_readonly, - ACTIONS(4604), 1, + ACTIONS(5030), 1, anon_sym_static, - ACTIONS(4233), 2, + ACTIONS(4325), 2, anon_sym_get, anon_sym_set, - STATE(2209), 3, + STATE(2543), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3173), 14, + ACTIONS(3417), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163764,35 +187905,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [110671] = 10, + [131174] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, - anon_sym_LBRACK, - ACTIONS(4606), 1, - anon_sym_STAR, - ACTIONS(4608), 1, + ACTIONS(1468), 1, sym_number, - ACTIONS(4612), 1, + ACTIONS(1724), 1, + anon_sym_async, + ACTIONS(1728), 1, sym_readonly, - ACTIONS(4610), 2, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4747), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_static, + ACTIONS(1726), 2, anon_sym_get, anon_sym_set, - STATE(2193), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3173), 16, + ACTIONS(1722), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163803,22 +187946,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [110720] = 7, + [131227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4425), 1, + ACTIONS(4975), 1, sym_number, - STATE(2319), 3, + STATE(3012), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3173), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163838,22 +187981,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110762] = 7, + [131269] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4319), 1, + ACTIONS(4625), 1, sym_number, - STATE(2482), 3, + STATE(2979), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163873,22 +188016,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110804] = 7, + [131311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4357), 1, + ACTIONS(4677), 1, sym_number, - STATE(2595), 3, + STATE(3023), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163908,22 +188051,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110846] = 7, + [131353] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4371), 1, + ACTIONS(4773), 1, sym_number, - STATE(2624), 3, + STATE(2656), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(3417), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163943,22 +188086,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110888] = 7, + [131395] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4241), 1, + ACTIONS(4799), 1, sym_number, - STATE(2602), 3, + STATE(2893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -163978,22 +188121,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110930] = 7, + [131437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4549), 1, + ACTIONS(4665), 1, sym_number, - STATE(2580), 3, + STATE(3025), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164013,22 +188156,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [110972] = 7, + [131479] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, - anon_sym_LBRACK, - ACTIONS(4353), 1, + ACTIONS(1468), 1, sym_number, - STATE(2560), 3, + ACTIONS(4331), 1, + anon_sym_LBRACK, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164048,22 +188191,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111014] = 7, + [131521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4313), 1, + ACTIONS(4971), 1, sym_number, - STATE(2534), 3, + STATE(2905), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164083,22 +188226,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111056] = 7, + [131563] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + ACTIONS(4977), 1, sym_number, - STATE(2557), 3, + STATE(2908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164118,22 +188261,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111098] = 7, + [131605] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(4669), 1, sym_number, - STATE(2597), 3, + STATE(3011), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164153,22 +188296,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111140] = 7, + [131647] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4385), 1, + ACTIONS(4921), 1, sym_number, - STATE(2499), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164188,22 +188331,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111182] = 7, + [131689] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, - sym_number, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - STATE(2490), 3, + ACTIONS(4609), 1, + sym_number, + STATE(2995), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164223,22 +188366,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111224] = 7, + [131731] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4379), 1, + ACTIONS(4899), 1, sym_number, - STATE(2584), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164258,22 +188401,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111266] = 7, + [131773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4465), 1, + ACTIONS(4973), 1, sym_number, - STATE(2571), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164293,22 +188436,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111308] = 7, + [131815] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2931), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4327), 1, anon_sym_LBRACK, - ACTIONS(4389), 1, + ACTIONS(4811), 1, sym_number, - STATE(2604), 3, + STATE(2668), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(3417), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164328,22 +188471,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111350] = 7, + [131857] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4397), 1, + ACTIONS(4701), 1, sym_number, - STATE(2576), 3, + STATE(2993), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164363,22 +188506,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111392] = 7, + [131899] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4553), 1, + ACTIONS(4591), 1, sym_number, - STATE(2500), 3, + STATE(3014), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164398,24 +188541,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111434] = 3, + [131941] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 4, - anon_sym_LBRACE, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(4331), 1, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_AT, - ACTIONS(4614), 22, + ACTIONS(4723), 1, + sym_number, + STATE(3032), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -164429,22 +188576,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111468] = 7, + [131983] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4395), 1, + ACTIONS(4601), 1, sym_number, - STATE(2309), 3, + STATE(2939), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3173), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164464,22 +188611,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111510] = 7, + [132025] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4325), 1, + ACTIONS(4713), 1, sym_number, - STATE(2583), 3, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164499,22 +188646,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111552] = 7, + [132067] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4551), 1, + ACTIONS(4333), 1, sym_number, - STATE(2549), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164534,22 +188681,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111594] = 7, + [132109] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, + ACTIONS(4801), 1, sym_number, - STATE(2538), 3, + STATE(3027), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164569,22 +188716,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111636] = 7, + [132151] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4491), 1, + ACTIONS(4909), 1, sym_number, - STATE(2507), 3, + STATE(2958), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164604,22 +188751,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111678] = 7, + [132193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4331), 1, anon_sym_LBRACK, - ACTIONS(4547), 1, + ACTIONS(4619), 1, sym_number, - STATE(2541), 3, + STATE(3021), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1837), 19, + ACTIONS(1722), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164639,28 +188786,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111720] = 7, + [132235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(5036), 4, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4343), 1, - sym_number, - STATE(2588), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1837), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_AT, + ACTIONS(5034), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -164674,23 +188817,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111762] = 8, + [132269] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4618), 1, + ACTIONS(5038), 1, sym_readonly, - STATE(2679), 1, - sym_object, - STATE(2688), 1, + STATE(3169), 1, sym_array, - ACTIONS(1944), 2, + STATE(3171), 1, + sym_object, + ACTIONS(1957), 2, sym_identifier, sym_this, - ACTIONS(921), 17, + ACTIONS(615), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164708,14 +188851,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [111804] = 4, + [132311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 1, + ACTIONS(5040), 1, sym_identifier, - STATE(3637), 1, + STATE(4117), 1, sym_mapped_type_clause, - ACTIONS(4622), 18, + ACTIONS(5042), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -164734,18 +188877,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [111834] = 6, + [132341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, + ACTIONS(2014), 1, anon_sym_EQ, - ACTIONS(4624), 1, + ACTIONS(5044), 1, anon_sym_LT, - ACTIONS(4626), 1, + ACTIONS(5046), 1, anon_sym_DOT, - STATE(320), 1, + STATE(519), 1, sym_type_arguments, - ACTIONS(1924), 14, + ACTIONS(2012), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -164760,18 +188903,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [111866] = 6, + [132373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, + ACTIONS(2020), 1, anon_sym_EQ, - ACTIONS(4624), 1, + ACTIONS(5044), 1, anon_sym_LT, - ACTIONS(4626), 1, + ACTIONS(5046), 1, anon_sym_DOT, - STATE(320), 1, + STATE(519), 1, sym_type_arguments, - ACTIONS(1918), 14, + ACTIONS(2018), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -164786,16 +188929,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [111898] = 5, + [132405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 1, + ACTIONS(2054), 1, anon_sym_EQ, - ACTIONS(4624), 1, + ACTIONS(5044), 1, anon_sym_LT, - STATE(409), 1, + STATE(521), 1, sym_type_arguments, - ACTIONS(1962), 14, + ACTIONS(2052), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -164810,14 +188953,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [111927] = 4, + [132434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 1, + ACTIONS(1800), 1, anon_sym_EQ, - ACTIONS(1638), 1, + ACTIONS(5044), 1, anon_sym_LT, - ACTIONS(901), 15, + STATE(521), 1, + sym_type_arguments, + ACTIONS(1798), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -164827,22 +188972,19 @@ static 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, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [111954] = 5, + [132463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(742), 1, anon_sym_EQ, - ACTIONS(4624), 1, + ACTIONS(1600), 1, anon_sym_LT, - STATE(409), 1, - sym_type_arguments, - ACTIONS(1757), 14, + ACTIONS(740), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, @@ -164852,60 +188994,61 @@ static 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, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [111983] = 3, + [132490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1207), 1, - anon_sym_PIPE, - ACTIONS(1205), 15, - sym__automatic_semicolon, + ACTIONS(597), 1, anon_sym_EQ, + ACTIONS(5048), 1, + anon_sym_DOT, + ACTIONS(595), 14, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [112007] = 4, + [132516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(1142), 1, + anon_sym_PIPE, + ACTIONS(1140), 15, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4628), 1, - anon_sym_DOT, - ACTIONS(567), 14, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_LT, anon_sym_QMARK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [112033] = 3, + anon_sym_PIPE_RBRACE, + [132540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 1, + ACTIONS(1208), 1, anon_sym_PIPE, - ACTIONS(1209), 15, + ACTIONS(1206), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -164921,10 +189064,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [112057] = 2, + [132564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 15, + ACTIONS(5050), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164940,10 +189083,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [112078] = 2, + [132585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 15, + ACTIONS(5052), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164959,10 +189102,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [112099] = 2, + [132606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 15, + ACTIONS(5054), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164978,10 +189121,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [112120] = 2, + [132627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 15, + ACTIONS(5056), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164997,10 +189140,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [112141] = 2, + [132648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 15, + ACTIONS(5058), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165016,10 +189159,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [112162] = 2, + [132669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 15, + ACTIONS(5060), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165035,20 +189178,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [112183] = 6, + [132690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, + ACTIONS(5062), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [132711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5064), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [132732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [132753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5068), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [132774] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2020), 1, anon_sym_PIPE, - ACTIONS(4642), 1, + ACTIONS(5070), 1, anon_sym_LT, - ACTIONS(4644), 1, + ACTIONS(5072), 1, anon_sym_DOT, - STATE(2261), 1, + ACTIONS(5074), 1, + anon_sym_is, + STATE(2581), 1, sym_type_arguments, - ACTIONS(1918), 10, + ACTIONS(2018), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -165057,99 +189277,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [112211] = 13, + [132804] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - ACTIONS(4650), 1, + ACTIONS(5080), 1, anon_sym_BANG, - ACTIONS(4652), 1, + ACTIONS(5082), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2866), 1, + STATE(3196), 1, sym_type_annotation, - STATE(3070), 1, - sym__initializer, - STATE(3077), 1, + STATE(3201), 1, sym__call_signature, - STATE(3397), 1, + STATE(3590), 1, + sym__initializer, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4648), 3, + ACTIONS(5078), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [112253] = 7, + [132846] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, - anon_sym_PIPE, - ACTIONS(4642), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4644), 1, - anon_sym_DOT, - ACTIONS(4654), 1, - anon_sym_is, - STATE(2261), 1, - sym_type_arguments, - ACTIONS(1924), 9, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5076), 1, + anon_sym_EQ, + ACTIONS(5086), 1, + anon_sym_BANG, + ACTIONS(5088), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3087), 1, + sym_type_annotation, + STATE(3124), 1, + sym__call_signature, + STATE(3625), 1, + sym__initializer, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(5084), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [112283] = 13, + [132888] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - ACTIONS(4658), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(4660), 1, + ACTIONS(5094), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2789), 1, + STATE(3227), 1, + sym__call_signature, + STATE(3253), 1, sym_type_annotation, - STATE(2794), 1, + STATE(3653), 1, + sym__initializer, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(5090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132930] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5076), 1, + anon_sym_EQ, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3080), 1, sym__call_signature, - STATE(3127), 1, + STATE(3257), 1, + sym_type_annotation, + STATE(3695), 1, sym__initializer, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4656), 3, + ACTIONS(5096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [112325] = 6, + [132972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, + ACTIONS(5102), 1, + anon_sym_EQ, + ACTIONS(5104), 1, + anon_sym_COMMA, + ACTIONS(5107), 1, + anon_sym_COLON, + ACTIONS(5109), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_GT, + ACTIONS(5113), 1, + anon_sym_DOT, + ACTIONS(5115), 1, + anon_sym_extends, + STATE(2857), 1, + sym_type_arguments, + STATE(3344), 1, + sym_constraint, + STATE(3758), 1, + sym_default_type, + ACTIONS(2018), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4642), 1, + [133012] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2014), 1, + anon_sym_PIPE, + ACTIONS(5070), 1, anon_sym_LT, - ACTIONS(4644), 1, + ACTIONS(5072), 1, anon_sym_DOT, - STATE(2261), 1, + STATE(2581), 1, sym_type_arguments, - ACTIONS(1924), 10, + ACTIONS(2012), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -165160,155 +189443,164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [112353] = 13, + [133040] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - ACTIONS(4664), 1, + ACTIONS(5086), 1, anon_sym_BANG, - ACTIONS(4666), 1, + ACTIONS(5118), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2775), 1, + STATE(3087), 1, sym_type_annotation, - STATE(3056), 1, - sym__initializer, - STATE(3082), 1, + STATE(3616), 1, sym__call_signature, - STATE(3397), 1, + STATE(3625), 1, + sym__initializer, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4662), 3, + ACTIONS(5084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [112395] = 13, + [133082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(2020), 1, + anon_sym_PIPE, + ACTIONS(5070), 1, anon_sym_LT, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(4646), 1, - anon_sym_EQ, - ACTIONS(4650), 1, - anon_sym_BANG, - ACTIONS(4668), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2866), 1, - sym_type_annotation, - STATE(2874), 1, - sym__call_signature, - STATE(3070), 1, - sym__initializer, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(4648), 3, + ACTIONS(5072), 1, + anon_sym_DOT, + STATE(2581), 1, + sym_type_arguments, + ACTIONS(2018), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [112437] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [133110] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - ACTIONS(4672), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(4674), 1, + ACTIONS(5120), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2867), 1, + STATE(3257), 1, sym_type_annotation, - STATE(2869), 1, - sym__call_signature, - STATE(3068), 1, + STATE(3695), 1, sym__initializer, - STATE(3397), 1, + STATE(3697), 1, + sym__call_signature, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4670), 3, + ACTIONS(5096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [112479] = 13, + [133152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1800), 1, + anon_sym_PIPE, + ACTIONS(5070), 1, anon_sym_LT, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(4646), 1, + STATE(2564), 1, + sym_type_arguments, + ACTIONS(1798), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4664), 1, - anon_sym_BANG, - ACTIONS(4676), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [133177] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5124), 1, + anon_sym_COLON, + ACTIONS(5126), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2775), 1, - sym_type_annotation, - STATE(2810), 1, + STATE(2754), 1, sym__call_signature, - STATE(3056), 1, - sym__initializer, - STATE(3397), 1, + STATE(3190), 1, + sym_type_annotation, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4662), 3, + ACTIONS(5122), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [112521] = 10, + anon_sym_PIPE_RBRACE, + [133212] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4682), 1, + ACTIONS(5132), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2429), 1, + STATE(2867), 1, sym__call_signature, - STATE(2793), 1, + STATE(3208), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4678), 5, + ACTIONS(5128), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112556] = 4, + [133247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, + ACTIONS(740), 1, anon_sym_DOT, - ACTIONS(1640), 1, + ACTIONS(1602), 1, anon_sym_PIPE, - ACTIONS(1638), 11, + ACTIONS(1600), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -165320,192 +189612,210 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [112579] = 10, + [133270] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4686), 1, + ACTIONS(5136), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2708), 1, + STATE(2861), 1, sym__call_signature, - STATE(2820), 1, + STATE(3148), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4684), 5, + ACTIONS(5134), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112614] = 10, + [133305] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(5044), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5046), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_EQ, + ACTIONS(5107), 1, + anon_sym_COLON, + ACTIONS(5115), 1, + anon_sym_extends, + STATE(519), 1, + sym_type_arguments, + STATE(3344), 1, + sym_constraint, + STATE(3758), 1, + sym_default_type, + ACTIONS(5104), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(2018), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [133342] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4690), 1, + ACTIONS(5138), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2433), 1, + STATE(3163), 1, sym__call_signature, - STATE(2806), 1, + STATE(3208), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4688), 5, + ACTIONS(5128), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112649] = 10, + [133377] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(5140), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2781), 1, - sym__call_signature, - STATE(2793), 1, + STATE(3148), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3157), 1, + sym__call_signature, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4678), 5, + ACTIONS(5134), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112684] = 10, + [133412] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4694), 1, + ACTIONS(5144), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2806), 1, + STATE(3240), 1, sym_type_annotation, - STATE(2818), 1, + STATE(3302), 1, sym__call_signature, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4688), 5, + ACTIONS(5142), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112719] = 11, + [133447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, + ACTIONS(2054), 1, + anon_sym_PIPE, + ACTIONS(5070), 1, anon_sym_LT, - ACTIONS(4626), 1, - anon_sym_DOT, - ACTIONS(4696), 1, - anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_COLON, - ACTIONS(4703), 1, - anon_sym_extends, - STATE(320), 1, + STATE(2564), 1, sym_type_arguments, - STATE(3006), 1, - sym_constraint, - STATE(3403), 1, - sym_default_type, - ACTIONS(4698), 2, + ACTIONS(2052), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(1924), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - [112756] = 10, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [133472] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(5146), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2827), 1, + STATE(3184), 1, sym__call_signature, - STATE(2829), 1, + STATE(3190), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4706), 5, + ACTIONS(5122), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112791] = 10, + [133507] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4710), 1, + ACTIONS(5148), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2418), 1, + STATE(2841), 1, sym__call_signature, - STATE(2820), 1, + STATE(3240), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4684), 5, + ACTIONS(5142), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112826] = 5, + [133542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 1, + ACTIONS(742), 1, anon_sym_PIPE, - ACTIONS(4642), 1, + ACTIONS(1600), 1, anon_sym_LT, - STATE(2241), 1, - sym_type_arguments, - ACTIONS(1962), 10, + ACTIONS(740), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -165513,364 +189823,460 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [112851] = 4, + [133565] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(901), 11, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(2611), 1, + sym_formal_parameters, + STATE(3143), 1, + sym_type_annotation, + STATE(3164), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(5150), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [112874] = 5, + [133597] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_PIPE, - ACTIONS(4642), 1, + ACTIONS(1928), 1, anon_sym_LT, - STATE(2241), 1, - sym_type_arguments, - ACTIONS(1757), 10, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(2611), 1, + sym_formal_parameters, + STATE(3082), 1, + sym_type_annotation, + STATE(3615), 1, + sym__call_signature, + STATE(3623), 1, + sym__initializer, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(5152), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133633] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5076), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(2611), 1, + sym_formal_parameters, + STATE(3225), 1, + sym__call_signature, + STATE(3237), 1, + sym_type_annotation, + STATE(3628), 1, + sym__initializer, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(5154), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133669] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(2611), 1, + sym_formal_parameters, + STATE(3295), 1, + sym__call_signature, + STATE(3305), 1, + sym_type_annotation, + STATE(3916), 1, + sym_type_parameters, + ACTIONS(5156), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 1, + anon_sym_LT, + ACTIONS(5046), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + ACTIONS(2018), 4, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [112899] = 10, + ACTIONS(5158), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [133727] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4712), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2406), 1, - sym__call_signature, - STATE(2829), 1, + STATE(3165), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3170), 1, + sym__call_signature, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4706), 5, + ACTIONS(5160), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112934] = 11, + [133759] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(5044), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(5046), 1, + anon_sym_DOT, + ACTIONS(5162), 1, + anon_sym_RPAREN, + STATE(519), 1, + sym_type_arguments, + ACTIONS(2018), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(2681), 4, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2795), 1, + anon_sym_QMARK, + [133787] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2290), 1, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(2611), 1, sym_formal_parameters, - STATE(2792), 1, - sym_type_annotation, - STATE(3120), 1, - sym__initializer, - STATE(3124), 1, + STATE(2869), 1, sym__call_signature, - STATE(3397), 1, + STATE(3305), 1, + sym_type_annotation, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4716), 3, + ACTIONS(5156), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + anon_sym_LT, + ACTIONS(5167), 1, + anon_sym_DOT, + ACTIONS(5169), 1, + anon_sym_is, + STATE(2705), 1, + sym_type_arguments, + ACTIONS(2018), 8, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [112970] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133845] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2876), 1, + STATE(3156), 1, sym__call_signature, - STATE(2878), 1, + STATE(3172), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4718), 5, + ACTIONS(5171), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113002] = 9, + [133877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2817), 1, - sym_type_annotation, - STATE(2844), 1, + STATE(2842), 1, sym__call_signature, - STATE(3397), 1, + STATE(3165), 1, + sym_type_annotation, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4720), 5, + ACTIONS(5160), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113034] = 11, + [133909] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2792), 1, + STATE(3122), 1, sym_type_annotation, - STATE(2801), 1, + STATE(3178), 1, sym__call_signature, - STATE(3120), 1, + STATE(3700), 1, sym__initializer, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4716), 3, + ACTIONS(5173), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [113070] = 9, + [133945] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(2290), 1, - sym_formal_parameters, - STATE(2716), 1, - sym_type_annotation, - STATE(2763), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(4722), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113102] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, - anon_sym_COLON, - STATE(2290), 1, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(2611), 1, sym_formal_parameters, - STATE(2428), 1, - sym__call_signature, - STATE(2815), 1, + STATE(3280), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3287), 1, + sym__call_signature, + STATE(3745), 1, + sym__initializer, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4724), 5, + ACTIONS(5175), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113134] = 11, + [133981] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2865), 1, + STATE(3237), 1, sym_type_annotation, - STATE(3073), 1, + STATE(3628), 1, sym__initializer, - STATE(3079), 1, + STATE(3645), 1, sym__call_signature, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4726), 3, + ACTIONS(5154), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [113170] = 9, + [134017] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2431), 1, + STATE(2860), 1, sym__call_signature, - STATE(2817), 1, + STATE(3143), 1, sym_type_annotation, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4720), 5, + ACTIONS(5150), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113202] = 11, + [134049] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2746), 1, + STATE(3082), 1, sym_type_annotation, - STATE(2752), 1, + STATE(3130), 1, sym__call_signature, - STATE(3157), 1, + STATE(3623), 1, sym__initializer, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4728), 3, + ACTIONS(5152), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [113238] = 6, + [134085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_LT, - ACTIONS(4732), 1, + ACTIONS(597), 1, + anon_sym_PIPE, + ACTIONS(5177), 1, anon_sym_DOT, - ACTIONS(4734), 1, - anon_sym_is, - STATE(2356), 1, - sym_type_arguments, - ACTIONS(1924), 8, + ACTIONS(595), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [113264] = 11, + anon_sym_PIPE_RBRACE, + [134107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2290), 1, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(2611), 1, sym_formal_parameters, - STATE(2865), 1, - sym_type_annotation, - STATE(2882), 1, + STATE(2866), 1, sym__call_signature, - STATE(3073), 1, - sym__initializer, - STATE(3397), 1, + STATE(3172), 1, + sym_type_annotation, + STATE(3916), 1, sym_type_parameters, - ACTIONS(4726), 3, + ACTIONS(5171), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [113300] = 9, + anon_sym_PIPE_RBRACE, + [134139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3952), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4680), 1, + anon_sym_SEMI, anon_sym_COLON, - STATE(2290), 1, - sym_formal_parameters, - STATE(2421), 1, - sym__call_signature, - STATE(2878), 1, - sym_type_annotation, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(4718), 5, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [134156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1752), 1, + anon_sym_PIPE, + ACTIONS(1750), 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, - [113332] = 4, + [134175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(1854), 1, anon_sym_PIPE, - ACTIONS(4736), 1, - anon_sym_DOT, - ACTIONS(567), 10, + ACTIONS(1852), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -165881,124 +190287,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113354] = 7, + [134194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(4626), 1, - anon_sym_DOT, - ACTIONS(4738), 1, - anon_sym_RPAREN, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 4, + ACTIONS(1866), 1, + anon_sym_PIPE, + ACTIONS(1864), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - ACTIONS(3134), 4, + anon_sym_PIPE_RBRACE, + [134213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1774), 10, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [113382] = 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [134232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(4680), 1, - anon_sym_COLON, - STATE(2290), 1, - sym_formal_parameters, - STATE(2439), 1, - sym__call_signature, - STATE(2716), 1, - sym_type_annotation, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(4722), 5, + ACTIONS(1732), 1, + anon_sym_PIPE, + ACTIONS(1730), 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, - [113414] = 6, + [134251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(4626), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 4, + ACTIONS(1780), 1, + anon_sym_PIPE, + ACTIONS(1778), 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, + [134270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, anon_sym_PIPE, + ACTIONS(1836), 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, - ACTIONS(4741), 5, + anon_sym_PIPE_RBRACE, + [134289] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, anon_sym_EQ, + STATE(3666), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - [113440] = 11, + anon_sym_PIPE_RBRACE, + [134310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2290), 1, - sym_formal_parameters, - STATE(2753), 1, - sym__call_signature, - STATE(2756), 1, - sym_type_annotation, - STATE(3167), 1, - sym__initializer, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(4743), 3, + ACTIONS(1756), 1, + anon_sym_PIPE, + ACTIONS(1754), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [113476] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [134329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(4680), 1, - anon_sym_COLON, - STATE(2290), 1, - sym_formal_parameters, - STATE(2694), 1, - sym__call_signature, - STATE(2815), 1, - sym_type_annotation, - STATE(3397), 1, - sym_type_parameters, - ACTIONS(4724), 5, + ACTIONS(1764), 1, + anon_sym_PIPE, + ACTIONS(1762), 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, - [113508] = 3, + [134348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(597), 1, anon_sym_PIPE, - ACTIONS(1781), 10, + ACTIONS(595), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166009,14 +190432,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113527] = 3, + [134367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(2054), 1, anon_sym_PIPE, - ACTIONS(1773), 10, + ACTIONS(5074), 1, + anon_sym_is, + ACTIONS(2052), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -166025,12 +190449,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113546] = 3, + [134388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1753), 10, + ACTIONS(1832), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166041,28 +190465,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113565] = 3, + [134407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1808), 1, anon_sym_PIPE, - ACTIONS(1749), 10, + ACTIONS(5179), 1, + anon_sym_LBRACK, + ACTIONS(1806), 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, - [113584] = 3, + [134428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(1850), 1, anon_sym_PIPE, - ACTIONS(1757), 10, + ACTIONS(1848), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166073,32 +190498,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113603] = 7, + [134447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 1, - anon_sym_COLON, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(4626), 1, - anon_sym_DOT, - ACTIONS(4745), 1, - anon_sym_QMARK, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 6, + ACTIONS(1768), 1, + anon_sym_PIPE, + ACTIONS(1766), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [134466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1772), 1, anon_sym_PIPE, + ACTIONS(1770), 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, - [113630] = 3, + anon_sym_PIPE_RBRACE, + [134485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(1748), 1, anon_sym_PIPE, - ACTIONS(1777), 10, + ACTIONS(1746), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166109,12 +190546,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113649] = 3, + [134504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1822), 1, anon_sym_PIPE, - ACTIONS(1825), 10, + ACTIONS(1820), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166125,12 +190562,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113668] = 3, + [134523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1862), 1, anon_sym_PIPE, - ACTIONS(1817), 10, + ACTIONS(1860), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166141,12 +190578,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113687] = 3, + [134542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, + ACTIONS(1784), 1, anon_sym_PIPE, - ACTIONS(1711), 10, + ACTIONS(1782), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166157,12 +190594,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113706] = 3, + [134561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(5179), 1, + anon_sym_LBRACK, + ACTIONS(1856), 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, + [134582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1788), 1, anon_sym_PIPE, - ACTIONS(1731), 10, + ACTIONS(1786), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166173,16 +190627,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113725] = 5, + [134601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, + ACTIONS(5165), 1, anon_sym_LT, - ACTIONS(4732), 1, + ACTIONS(5167), 1, anon_sym_DOT, - STATE(2356), 1, + STATE(2705), 1, sym_type_arguments, - ACTIONS(1924), 8, + ACTIONS(2018), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -166191,29 +190645,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [113748] = 4, + [134624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1780), 1, anon_sym_PIPE, - ACTIONS(1749), 3, + ACTIONS(1778), 3, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - ACTIONS(1813), 7, + ACTIONS(1790), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1842), 1, + anon_sym_PIPE, + ACTIONS(1840), 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, - [113769] = 3, + [134664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1826), 1, anon_sym_PIPE, - ACTIONS(1809), 10, + ACTIONS(1824), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166224,12 +190694,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113788] = 3, + [134683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3451), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [134700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1818), 1, anon_sym_PIPE, - ACTIONS(1727), 10, + ACTIONS(1816), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166240,12 +190725,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113807] = 3, + [134719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(1804), 1, anon_sym_PIPE, - ACTIONS(1745), 10, + ACTIONS(1802), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166256,12 +190741,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113826] = 3, + [134738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1800), 1, anon_sym_PIPE, - ACTIONS(1769), 10, + ACTIONS(1798), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166272,15 +190757,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113845] = 4, + [134757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 1, + ACTIONS(1846), 1, anon_sym_PIPE, - ACTIONS(4654), 1, - anon_sym_is, - ACTIONS(1962), 9, + ACTIONS(1844), 10, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -166289,14 +190773,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113866] = 4, + [134776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - STATE(3090), 1, + STATE(3536), 1, aux_sym_object_repeat1, - ACTIONS(3203), 9, + ACTIONS(3451), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -166306,12 +190790,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [113887] = 3, + [134797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 1, + anon_sym_PIPE, + ACTIONS(1758), 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, + [134816] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, + ACTIONS(2640), 1, + anon_sym_COLON, + ACTIONS(5044), 1, + anon_sym_LT, + ACTIONS(5046), 1, + anon_sym_DOT, + ACTIONS(5181), 1, + anon_sym_QMARK, + STATE(519), 1, + sym_type_arguments, + ACTIONS(2018), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1395), 1, anon_sym_PIPE, - ACTIONS(1801), 10, + ACTIONS(1393), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166322,12 +190842,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113906] = 3, + [134862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(1797), 10, + ACTIONS(1828), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166338,12 +190858,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113925] = 3, + [134881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1814), 1, anon_sym_PIPE, - ACTIONS(1821), 10, + ACTIONS(1812), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166354,12 +190874,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113944] = 3, + [134900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1695), 10, + ACTIONS(1794), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166370,12 +190890,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113963] = 3, + [134919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + anon_sym_LT, + ACTIONS(5167), 1, + anon_sym_DOT, + STATE(2705), 1, + sym_type_arguments, + ACTIONS(2012), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1736), 1, anon_sym_PIPE, - ACTIONS(1735), 10, + ACTIONS(1734), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -166386,83 +190924,341 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113982] = 5, + [134961] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5184), 1, + sym_identifier, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(1775), 1, + sym_class_body, + STATE(2799), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3996), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [134995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(1992), 8, + ACTIONS(2102), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, anon_sym_RPAREN, anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + [135017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 1, + anon_sym_COLON, + STATE(2895), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5198), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(1600), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135055] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5202), 1, + anon_sym_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5206), 1, + anon_sym_extends, + ACTIONS(2098), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [135077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 1, anon_sym_COLON, + ACTIONS(5044), 1, + anon_sym_LT, + ACTIONS(5046), 1, + anon_sym_DOT, + STATE(519), 1, + sym_type_arguments, + ACTIONS(2018), 6, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - [114005] = 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 1, + anon_sym_COLON, + STATE(3030), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5208), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(3495), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3451), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [135141] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_LT, + ACTIONS(5113), 1, + anon_sym_DOT, + STATE(2857), 1, + sym_type_arguments, + ACTIONS(2018), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135163] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5210), 1, + sym_identifier, + ACTIONS(5212), 1, + anon_sym_LBRACE, + STATE(2084), 1, + sym_class_body, + STATE(2855), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3750), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135197] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5214), 1, + sym_identifier, + STATE(1775), 1, + sym_class_body, + STATE(2799), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3996), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1600), 1, + anon_sym_LT, + ACTIONS(740), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1765), 10, + anon_sym_extends, + [135249] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5216), 1, + sym_identifier, + ACTIONS(5218), 1, + anon_sym_LBRACE, + STATE(1560), 1, + sym_class_body, + STATE(2769), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3894), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135283] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5220), 1, + sym_identifier, + STATE(2038), 1, + sym_class_body, + STATE(2825), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3936), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + anon_sym_LT, + STATE(2674), 1, + sym_type_arguments, + ACTIONS(1798), 8, 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, - [114024] = 4, + [135337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(5202), 1, + anon_sym_AMP, + ACTIONS(5204), 1, anon_sym_PIPE, - ACTIONS(4754), 1, - anon_sym_LBRACK, - ACTIONS(1739), 9, + ACTIONS(5206), 1, + anon_sym_extends, + ACTIONS(2102), 7, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [114045] = 3, + [135359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, + ACTIONS(5109), 1, + anon_sym_LT, + ACTIONS(5113), 1, + anon_sym_DOT, + STATE(2857), 1, + sym_type_arguments, + ACTIONS(2012), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 10, - sym__automatic_semicolon, + anon_sym_extends, + [135381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3952), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [114064] = 5, + [135399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, + ACTIONS(5165), 1, anon_sym_LT, - ACTIONS(4732), 1, - anon_sym_DOT, - STATE(2356), 1, + STATE(2674), 1, sym_type_arguments, - ACTIONS(1918), 8, + ACTIONS(2052), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -166471,650 +191267,963 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [114087] = 3, + [135419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(5202), 1, + anon_sym_AMP, + ACTIONS(5204), 1, anon_sym_PIPE, - ACTIONS(1689), 10, + ACTIONS(2106), 8, 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, - [114106] = 4, + [135439] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [114127] = 5, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5222), 1, + sym_identifier, + STATE(1839), 1, + sym_class_body, + STATE(2803), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3994), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(1996), 8, + ACTIONS(2106), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_else, anon_sym_RPAREN, anon_sym_while, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - [114150] = 3, + anon_sym_extends, + [135493] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5224), 1, + sym_identifier, + STATE(1775), 1, + sym_class_body, + STATE(2799), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3996), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135527] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5226), 1, + sym_identifier, + STATE(1839), 1, + sym_class_body, + STATE(2803), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3994), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135561] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5218), 1, + anon_sym_LBRACE, + ACTIONS(5228), 1, + sym_identifier, + STATE(1622), 1, + sym_class_body, + STATE(2885), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3949), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(1793), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(2098), 7, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_RBRACK, + [135617] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(3411), 1, + anon_sym_LBRACE, + ACTIONS(5230), 1, + sym_identifier, + ACTIONS(5232), 1, + anon_sym_STAR, + STATE(3839), 1, + sym_import_clause, + STATE(3861), 2, + sym_string, + sym_import_require_clause, + STATE(4191), 2, + sym_namespace_import, + sym_named_imports, + [135647] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5188), 1, + anon_sym_implements, + ACTIONS(5190), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114169] = 3, + ACTIONS(5234), 1, + sym_identifier, + STATE(1839), 1, + sym_class_body, + STATE(2803), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3994), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, + ACTIONS(5202), 1, + anon_sym_AMP, + ACTIONS(5204), 1, anon_sym_PIPE, - ACTIONS(1789), 10, + ACTIONS(5206), 1, + anon_sym_extends, + ACTIONS(5236), 6, 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, - [114188] = 4, + [135702] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [114209] = 2, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1765), 1, + sym_class_body, + STATE(2811), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(4000), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135733] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [114226] = 4, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(2827), 1, + sym_type_parameters, + STATE(3289), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3844), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135764] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(2812), 1, + sym_type_parameters, + STATE(3167), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3854), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5158), 5, anon_sym_EQ, - STATE(3178), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 9, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [114247] = 2, + [135812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 11, - sym__automatic_semicolon, + ACTIONS(1762), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(1072), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [114264] = 3, + [135829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym_PIPE, - ACTIONS(1833), 10, + ACTIONS(5244), 1, + anon_sym_DOT, + ACTIONS(595), 8, 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, - [114283] = 3, + [135846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 1, - anon_sym_PIPE, - ACTIONS(1325), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(1600), 1, + anon_sym_LT, + ACTIONS(740), 8, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114302] = 4, + [135863] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(2000), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - [114323] = 3, + ACTIONS(5246), 1, + anon_sym_LBRACE, + STATE(666), 1, + sym_class_body, + STATE(2804), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3873), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_PIPE, - ACTIONS(1715), 10, + ACTIONS(5169), 1, + anon_sym_is, + ACTIONS(2052), 8, 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, - [114342] = 3, + [135911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_PIPE, - ACTIONS(1761), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(5109), 1, + anon_sym_LT, + STATE(2879), 1, + sym_type_arguments, + ACTIONS(1798), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114361] = 3, + [135930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(1393), 4, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(567), 10, - sym__automatic_semicolon, + anon_sym_extends, + ACTIONS(2648), 5, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [135947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_LT, + STATE(2879), 1, + sym_type_arguments, + ACTIONS(2052), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114380] = 3, + [135966] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1805), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5218), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1620), 1, + sym_class_body, + STATE(2833), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3840), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [135997] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5186), 1, anon_sym_LBRACE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1677), 1, + sym_class_body, + STATE(2819), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3850), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [136028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(1600), 8, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114399] = 4, + [136045] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_PIPE, - ACTIONS(4754), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5248), 1, + anon_sym_LBRACE, + STATE(97), 1, + sym_class_body, + STATE(2815), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3883), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [136076] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3665), 1, + anon_sym_RPAREN, + ACTIONS(1832), 4, anon_sym_LBRACK, - ACTIONS(1829), 9, - sym__automatic_semicolon, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(3576), 4, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + [136095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5250), 1, + anon_sym_RPAREN, + ACTIONS(2052), 4, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114420] = 3, + ACTIONS(2681), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [136114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_PIPE, - ACTIONS(1785), 10, - sym__automatic_semicolon, + ACTIONS(5253), 1, + anon_sym_RPAREN, + ACTIONS(676), 4, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1393), 4, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114439] = 11, + [136133] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4756), 1, - sym_identifier, - ACTIONS(4758), 1, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(2850), 1, + sym_type_parameters, + STATE(3070), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3828), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [136164] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5218), 1, anon_sym_LBRACE, - ACTIONS(4760), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4762), 1, + ACTIONS(5240), 1, anon_sym_extends, - STATE(1924), 1, + STATE(1615), 1, sym_class_body, - STATE(2390), 1, + STATE(2776), 1, sym_type_parameters, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3283), 1, + STATE(3889), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [114473] = 4, + [136195] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5248), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_class_body, + STATE(2765), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3775), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [136226] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(5076), 1, anon_sym_EQ, - ACTIONS(3249), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3203), 7, + STATE(3087), 1, + sym_type_annotation, + STATE(3625), 1, + sym__initializer, + ACTIONS(5086), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5084), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [136251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [114493] = 11, + ACTIONS(5046), 1, + anon_sym_DOT, + ACTIONS(5256), 1, + anon_sym_is, + STATE(519), 1, + sym_type_arguments, + ACTIONS(2018), 5, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [136274] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4762), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4764), 1, - sym_identifier, - ACTIONS(4766), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(1431), 1, + STATE(653), 1, sym_class_body, - STATE(2466), 1, + STATE(2778), 1, sym_type_parameters, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3476), 1, + STATE(3836), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [114527] = 11, + [136305] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4762), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4766), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, - sym_identifier, - STATE(1414), 1, + STATE(648), 1, sym_class_body, - STATE(2434), 1, + STATE(2832), 1, sym_type_parameters, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3331), 1, + STATE(3910), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [114561] = 4, + [136336] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, + ACTIONS(1928), 1, anon_sym_LT, - STATE(2340), 1, - sym_type_arguments, - ACTIONS(1757), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5186), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - [114581] = 3, + STATE(1738), 1, + sym_class_body, + STATE(2761), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3906), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [136367] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, - anon_sym_EQ, - ACTIONS(3868), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [114599] = 11, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(2003), 1, + sym_class_body, + STATE(2824), 1, + sym_type_parameters, + STATE(3553), 1, + sym_extends_clause, + STATE(3938), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [136398] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4762), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4770), 1, - sym_identifier, - ACTIONS(4772), 1, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(2773), 1, + sym_type_parameters, + STATE(3269), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3891), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [136429] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(1816), 1, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1789), 1, sym_class_body, - STATE(2459), 1, + STATE(2836), 1, sym_type_parameters, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3420), 1, + STATE(3932), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [114633] = 4, + [136460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, - anon_sym_AMP, - ACTIONS(4776), 1, - anon_sym_PIPE, - ACTIONS(2000), 8, - sym__automatic_semicolon, + ACTIONS(5044), 1, + anon_sym_LT, + ACTIONS(5046), 1, + anon_sym_DOT, + ACTIONS(5258), 1, + anon_sym_is, + STATE(519), 1, + sym_type_arguments, + ACTIONS(2018), 5, 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, - [114653] = 11, + [136483] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4762), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4772), 1, - anon_sym_LBRACE, - ACTIONS(4778), 1, - sym_identifier, - STATE(1816), 1, + STATE(1996), 1, sym_class_body, - STATE(2459), 1, + STATE(2808), 1, sym_type_parameters, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3420), 1, + STATE(3985), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [114687] = 11, + [136514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1762), 5, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [136531] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4762), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4772), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(4780), 1, - sym_identifier, - STATE(1777), 1, + STATE(732), 1, sym_class_body, - STATE(2472), 1, + STATE(2858), 1, sym_type_parameters, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3461), 1, + STATE(3759), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [114721] = 3, + [136562] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_DOT, - ACTIONS(1638), 9, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3253), 1, + sym_type_annotation, + STATE(3653), 1, + sym__initializer, + ACTIONS(5092), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5090), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, + [136587] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5202), 1, anon_sym_AMP, + ACTIONS(5204), 1, anon_sym_PIPE, + ACTIONS(5206), 1, anon_sym_extends, - [114739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4784), 1, - anon_sym_COLON, - STATE(2574), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(4782), 6, + ACTIONS(5260), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114759] = 5, + [136608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(5202), 1, anon_sym_AMP, - ACTIONS(4776), 1, + ACTIONS(5204), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5206), 1, anon_sym_extends, - ACTIONS(1992), 7, + ACTIONS(5262), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [114781] = 3, + [136629] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2606), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3350), 1, + sym_call_type_arguments, + STATE(114), 2, + sym_template_string, + sym_arguments, + [136655] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, anon_sym_LT, - ACTIONS(901), 9, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3372), 1, + sym_call_type_arguments, + STATE(1471), 2, + sym_template_string, + sym_arguments, + [136681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1798), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [114799] = 4, + [136695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4784), 1, - anon_sym_COLON, - STATE(2493), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(4788), 6, + ACTIONS(1750), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [114819] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4776), 1, anon_sym_PIPE, - ACTIONS(4786), 1, anon_sym_extends, - ACTIONS(1996), 7, + [136709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1864), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [114841] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_implements, - ACTIONS(4762), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4772), 1, - anon_sym_LBRACE, - ACTIONS(4790), 1, - sym_identifier, - STATE(1777), 1, - sym_class_body, - STATE(2472), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3461), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [114875] = 11, + [136723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_implements, - ACTIONS(4762), 1, - anon_sym_extends, - ACTIONS(4772), 1, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(1856), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4792), 1, - sym_identifier, - STATE(1816), 1, - sym_class_body, - STATE(2459), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3420), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [114909] = 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [136739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_LT, - STATE(2340), 1, - sym_type_arguments, - ACTIONS(1962), 8, + ACTIONS(1758), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -167123,153 +192232,139 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [114929] = 11, + [136753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_implements, - ACTIONS(4762), 1, - anon_sym_extends, - ACTIONS(4772), 1, + ACTIONS(1393), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4794), 1, - sym_identifier, - STATE(1777), 1, - sym_class_body, - STATE(2472), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3461), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [114963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_COLON, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(4626), 1, - anon_sym_DOT, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 6, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [114987] = 9, + [136767] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(3167), 1, - anon_sym_LBRACE, - ACTIONS(4796), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, sym_identifier, - ACTIONS(4798), 1, - anon_sym_STAR, - STATE(3251), 1, - sym_import_clause, - STATE(3250), 2, - sym_string, - sym_import_require_clause, - STATE(3498), 2, - sym_namespace_import, - sym_named_imports, - [115017] = 11, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3416), 1, + sym_call_type_arguments, + STATE(1955), 2, + sym_template_string, + sym_arguments, + [136793] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4758), 1, - anon_sym_LBRACE, - ACTIONS(4760), 1, - anon_sym_implements, - ACTIONS(4762), 1, - anon_sym_extends, - ACTIONS(4800), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, sym_identifier, - STATE(1882), 1, - sym_class_body, - STATE(2462), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3456), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115051] = 3, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3421), 1, + sym_call_type_arguments, + STATE(1957), 2, + sym_template_string, + sym_arguments, + [136819] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1962), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4741), 5, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(5076), 1, anon_sym_EQ, + ACTIONS(5276), 1, + anon_sym_BANG, + STATE(3177), 1, + sym_type_annotation, + STATE(3670), 1, + sym__initializer, + ACTIONS(2571), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + [136843] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3491), 1, + sym_call_type_arguments, + STATE(1814), 2, + sym_template_string, + sym_arguments, + [136869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4787), 1, + anon_sym_RBRACE, + STATE(3536), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - [115068] = 10, + [136891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, anon_sym_LT, - ACTIONS(4758), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1883), 1, - sym_class_body, - STATE(2435), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3290), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115099] = 10, + STATE(3371), 1, + sym_call_type_arguments, + STATE(1396), 2, + sym_template_string, + sym_arguments, + [136917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4772), 1, + ACTIONS(1816), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1815), 1, - sym_class_body, - STATE(2442), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3459), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115130] = 3, + [136931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_DOT, - ACTIONS(567), 8, + ACTIONS(1844), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -167278,539 +192373,439 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115147] = 5, + [136945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(5278), 1, anon_sym_AMP, - ACTIONS(4776), 1, + ACTIONS(5280), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5282), 1, anon_sym_extends, - ACTIONS(4808), 6, + ACTIONS(2098), 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, - [115168] = 5, + anon_sym_LBRACK, + [136965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, - anon_sym_AMP, - ACTIONS(4776), 1, - anon_sym_PIPE, - ACTIONS(4786), 1, - anon_sym_extends, - ACTIONS(4810), 6, + ACTIONS(1812), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1325), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(2464), 5, - anon_sym_EQ, + [136979] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2606), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3332), 1, + sym_call_type_arguments, + STATE(119), 2, + sym_template_string, + sym_arguments, + [137005] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3329), 1, + sym_call_type_arguments, + STATE(2029), 2, + sym_template_string, + sym_arguments, + [137031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4775), 1, + anon_sym_RBRACE, + STATE(3595), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - [115206] = 7, + [137053] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2866), 1, - sym_type_annotation, - STATE(3070), 1, - sym__initializer, - ACTIONS(4650), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4648), 3, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3327), 1, + sym_call_type_arguments, + STATE(2036), 2, + sym_template_string, + sym_arguments, + [137079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1828), 8, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [115231] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(1820), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(565), 1, - sym_class_body, - STATE(2411), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3287), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115262] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4772), 1, + ACTIONS(1762), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1833), 1, - sym_class_body, - STATE(2400), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3300), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115293] = 4, + [137121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, - anon_sym_RPAREN, - ACTIONS(1962), 4, + ACTIONS(1778), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(3134), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [115312] = 4, + [137135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, - anon_sym_RPAREN, - ACTIONS(1325), 4, - anon_sym_LBRACK, + ACTIONS(5202), 1, anon_sym_AMP, + ACTIONS(5204), 1, anon_sym_PIPE, + ACTIONS(5206), 1, anon_sym_extends, - ACTIONS(1950), 4, - anon_sym_EQ, + ACTIONS(2086), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [115331] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(4626), 1, + ACTIONS(5284), 1, anon_sym_DOT, - ACTIONS(4820), 1, - anon_sym_is, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 5, - anon_sym_LBRACE, + ACTIONS(595), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115354] = 10, + [137171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1365), 1, + anon_sym_RBRACE, + ACTIONS(4317), 1, + anon_sym_EQ, + STATE(3583), 1, + aux_sym_object_repeat1, + ACTIONS(3451), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4758), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1938), 1, - sym_class_body, - STATE(2475), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3477), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115385] = 10, + anon_sym_QMARK, + [137193] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(634), 1, - sym_class_body, - STATE(2409), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3276), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115416] = 10, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3455), 1, + sym_call_type_arguments, + STATE(1398), 2, + sym_template_string, + sym_arguments, + [137219] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(2395), 1, - sym_type_parameters, - STATE(2886), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3274), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115447] = 10, + STATE(3470), 1, + sym_call_type_arguments, + STATE(1573), 2, + sym_template_string, + sym_arguments, + [137245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(1782), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2423), 1, - sym_type_parameters, - STATE(2758), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3239), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115478] = 7, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2789), 1, - sym_type_annotation, - STATE(3127), 1, - sym__initializer, - ACTIONS(4658), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4656), 3, + ACTIONS(1824), 8, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [115503] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(611), 1, - sym_class_body, - STATE(2457), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3360), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115534] = 4, + [137273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, - anon_sym_RPAREN, - ACTIONS(1805), 4, + ACTIONS(1802), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(3309), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [115553] = 10, + [137287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4772), 1, + ACTIONS(1746), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1539), 1, - sym_class_body, - STATE(2455), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3370), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115584] = 10, + [137301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4824), 1, + ACTIONS(1794), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(108), 1, - sym_class_body, - STATE(2452), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3465), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 4, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(1069), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [115632] = 5, + [137315] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3502), 1, + sym_call_type_arguments, + STATE(1497), 2, + sym_template_string, + sym_arguments, + [137341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(1778), 4, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4776), 1, anon_sym_PIPE, - ACTIONS(4786), 1, anon_sym_extends, - ACTIONS(4826), 6, + ACTIONS(1790), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115653] = 6, + [137357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(4626), 1, - anon_sym_DOT, - ACTIONS(4828), 1, - anon_sym_is, - STATE(320), 1, - sym_type_arguments, - ACTIONS(1924), 5, + ACTIONS(1774), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115676] = 10, + [137371] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5278), 1, + anon_sym_AMP, + ACTIONS(5280), 1, + anon_sym_PIPE, + ACTIONS(5282), 1, anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(2102), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2430), 1, - sym_type_parameters, - STATE(2833), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3318), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115707] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + [137391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4766), 1, + ACTIONS(5286), 1, + anon_sym_COLON, + STATE(3500), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5208), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1342), 1, - sym_class_body, - STATE(2414), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3255), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115738] = 10, + anon_sym_SEMI, + [137409] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4824), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_class_body, - STATE(2449), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3375), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115769] = 10, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3359), 1, + sym_call_type_arguments, + STATE(2046), 2, + sym_template_string, + sym_arguments, + [137435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4766), 1, + ACTIONS(1770), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1374), 1, - sym_class_body, - STATE(2425), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3312), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115800] = 10, + [137449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, anon_sym_LT, - ACTIONS(4772), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1663), 1, - sym_class_body, - STATE(2396), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3264), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115831] = 10, + STATE(3307), 1, + sym_call_type_arguments, + STATE(1906), 2, + sym_template_string, + sym_arguments, + [137475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(1860), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2405), 1, - sym_type_parameters, - STATE(2845), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3261), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115862] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(1766), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(580), 1, - sym_class_body, - STATE(2458), 1, - sym_type_parameters, - STATE(3159), 1, - sym_extends_clause, - STATE(3385), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [115893] = 3, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4734), 1, - anon_sym_is, - ACTIONS(1962), 8, + ACTIONS(1730), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -167819,54 +192814,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115910] = 3, + [137517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1761), 5, - anon_sym_RPAREN, + ACTIONS(1852), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115927] = 6, + [137531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5288), 1, + anon_sym_LBRACE, + ACTIONS(5290), 1, + anon_sym_DOT, + STATE(3304), 1, + sym_statement_block, + ACTIONS(1058), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4415), 1, anon_sym_RBRACE, - STATE(3090), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137551] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, anon_sym_LT, - anon_sym_QMARK, - [115949] = 4, + STATE(3363), 1, + sym_call_type_arguments, + STATE(2069), 2, + sym_template_string, + sym_arguments, + [137577] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_AMP, - ACTIONS(4832), 1, - anon_sym_PIPE, - ACTIONS(2000), 6, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3362), 1, + sym_call_type_arguments, + STATE(2072), 2, + sym_template_string, + sym_arguments, + [137603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1836), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - [115967] = 2, + [137617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 8, + ACTIONS(1848), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -167875,82 +192901,189 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115981] = 5, + [137631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5292), 1, + sym_identifier, + ACTIONS(5294), 1, + anon_sym_LBRACK, + STATE(3528), 1, + sym_call_type_arguments, + STATE(1767), 2, + sym_template_string, + sym_arguments, + [137657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(5296), 1, anon_sym_AMP, - ACTIONS(4776), 1, + ACTIONS(5298), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5300), 1, anon_sym_extends, - ACTIONS(4834), 5, + ACTIONS(2098), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116001] = 2, + anon_sym_LBRACK, + [137677] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3360), 1, + sym_call_type_arguments, + STATE(1755), 2, + sym_template_string, + sym_arguments, + [137703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 8, + ACTIONS(5286), 1, + anon_sym_COLON, + STATE(3476), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5198), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116015] = 5, + [137721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(5278), 1, anon_sym_AMP, - ACTIONS(4776), 1, + ACTIONS(5280), 1, anon_sym_PIPE, - ACTIONS(4786), 1, - anon_sym_extends, - ACTIONS(4836), 5, + ACTIONS(2106), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116035] = 6, + anon_sym_LBRACK, + anon_sym_extends, + [137739] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3397), 1, + sym_call_type_arguments, + STATE(1680), 2, + sym_template_string, + sym_arguments, + [137765] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4409), 1, + ACTIONS(1316), 1, anon_sym_RBRACE, - STATE(3165), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + STATE(3666), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [116057] = 4, + [137787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_COLON, - STATE(2986), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(4782), 4, + ACTIONS(1734), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [116075] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137801] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5302), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_LBRACK, + STATE(3372), 1, + sym_call_type_arguments, + STATE(1471), 2, + sym_template_string, + sym_arguments, + [137827] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5306), 1, + sym_identifier, + ACTIONS(5308), 1, + anon_sym_LBRACK, + STATE(3502), 1, + sym_call_type_arguments, + STATE(1497), 2, + sym_template_string, + sym_arguments, + [137853] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3486), 1, + sym_call_type_arguments, + STATE(1909), 2, + sym_template_string, + sym_arguments, + [137879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 8, + ACTIONS(1140), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -167959,10 +193092,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116089] = 2, + [137893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 8, + ACTIONS(1840), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -167971,36 +193104,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116103] = 2, + [137907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(567), 8, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(1806), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116117] = 4, + [137923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_AMP, - ACTIONS(4842), 1, - anon_sym_PIPE, - ACTIONS(2000), 6, + ACTIONS(1832), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - [116135] = 2, + [137937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 8, + ACTIONS(1206), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -168009,10 +193141,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116149] = 2, + [137951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 8, + ACTIONS(1754), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -168021,25 +193153,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116163] = 5, + [137965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, + ACTIONS(5296), 1, anon_sym_AMP, - ACTIONS(4842), 1, + ACTIONS(5298), 1, anon_sym_PIPE, - ACTIONS(4844), 1, + ACTIONS(5300), 1, anon_sym_extends, - ACTIONS(1996), 5, + ACTIONS(2102), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [137985] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3356), 1, + sym_call_type_arguments, + STATE(1601), 2, + sym_template_string, + sym_arguments, + [138011] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5310), 1, + sym_identifier, + ACTIONS(5312), 1, + anon_sym_LBRACK, + STATE(3491), 1, + sym_call_type_arguments, + STATE(1814), 2, + sym_template_string, + sym_arguments, + [138037] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3355), 1, + sym_call_type_arguments, + STATE(1588), 2, + sym_template_string, + sym_arguments, + [138063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 1, + anon_sym_AMP, + ACTIONS(5298), 1, + anon_sym_PIPE, + ACTIONS(2106), 6, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [116183] = 2, + anon_sym_extends, + [138081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138095] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(3405), 1, + sym_call_type_arguments, + STATE(2022), 2, + sym_template_string, + sym_arguments, + [138121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 8, + ACTIONS(1786), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -168048,15992 +193278,17830 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116197] = 6, + [138135] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1384), 1, + ACTIONS(1367), 1, anon_sym_RBRACE, - ACTIONS(4225), 1, + ACTIONS(4317), 1, anon_sym_EQ, - STATE(3178), 1, + STATE(3727), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [116219] = 5, + [138157] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, + anon_sym_LBRACK, + STATE(3528), 1, + sym_call_type_arguments, + STATE(1767), 2, + sym_template_string, + sym_arguments, + [138183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, + ACTIONS(5202), 1, anon_sym_AMP, - ACTIONS(4842), 1, + ACTIONS(5204), 1, anon_sym_PIPE, - ACTIONS(4844), 1, + ACTIONS(5206), 1, anon_sym_extends, - ACTIONS(1992), 5, + ACTIONS(5314), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [116239] = 2, + anon_sym_PIPE_RBRACE, + [138203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 8, + ACTIONS(5202), 1, + anon_sym_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5206), 1, + anon_sym_extends, + ACTIONS(5316), 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, + [138223] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + sym_identifier, + ACTIONS(5272), 1, anon_sym_LBRACK, + STATE(3478), 1, + sym_call_type_arguments, + STATE(1557), 2, + sym_template_string, + sym_arguments, + [138249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3967), 1, + sym_statement_block, + ACTIONS(5318), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138266] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5322), 1, + anon_sym_STAR, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3819), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [138291] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + sym_identifier, + ACTIONS(5328), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3874), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [138316] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, + anon_sym_GT, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - [116253] = 4, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + STATE(3310), 1, + aux_sym_implements_clause_repeat1, + [138341] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5288), 1, + anon_sym_LBRACE, + STATE(3304), 1, + sym_statement_block, + ACTIONS(1058), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(2964), 3, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3280), 1, sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(4788), 4, + STATE(3745), 1, + sym__initializer, + ACTIONS(5175), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138379] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 1, + anon_sym_EQ, + STATE(3344), 1, + sym_constraint, + STATE(3758), 1, + sym_default_type, + ACTIONS(5107), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5111), 2, + anon_sym_COMMA, + anon_sym_GT, + [138400] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 1, anon_sym_LBRACE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1674), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3862), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [138425] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5342), 1, + anon_sym_COMMA, + ACTIONS(5344), 1, + anon_sym_GT, + STATE(3383), 1, + aux_sym_implements_clause_repeat1, + [138450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(3151), 1, + sym_type_annotation, + ACTIONS(5346), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [116271] = 2, + anon_sym_PIPE_RBRACE, + [138467] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5352), 1, + anon_sym_LBRACK, + ACTIONS(5354), 1, + anon_sym_enum, + STATE(2874), 1, + sym_object, + STATE(2875), 1, + sym_array, + STATE(3342), 1, + sym_variable_declarator, + [138492] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5248), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3837), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [138517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1140), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138530] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(5356), 1, + anon_sym_LT, + ACTIONS(5358), 1, + anon_sym_extends, + STATE(726), 1, + sym_object_type, + STATE(3078), 1, + sym_type_parameters, + STATE(3568), 1, + sym_extends_clause, + [138555] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(5360), 1, + sym_identifier, + ACTIONS(5362), 1, + anon_sym_DOT, + STATE(636), 1, + sym_nested_identifier, + STATE(657), 1, + sym_string, + STATE(672), 1, + sym__module, + [138580] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5218), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1551), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3849), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [138605] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(5360), 1, + sym_identifier, + ACTIONS(5364), 1, + anon_sym_DOT, + STATE(636), 1, + sym_nested_identifier, + STATE(657), 1, + sym_string, + STATE(672), 1, + sym__module, + [138630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1689), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1206), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116285] = 2, + [138643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 8, + ACTIONS(740), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [138656] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - [116299] = 2, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(3290), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3848), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [138681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 8, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3122), 1, + sym_type_annotation, + STATE(3700), 1, + sym__initializer, + ACTIONS(5173), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [138702] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5278), 1, anon_sym_AMP, + ACTIONS(5280), 1, anon_sym_PIPE, + ACTIONS(5282), 1, anon_sym_extends, - [116313] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1769), 8, + ACTIONS(5236), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116327] = 2, + [138721] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1773), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5218), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - [116341] = 2, + STATE(1623), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3843), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [138746] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - [116355] = 5, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5366), 1, + anon_sym_COMMA, + ACTIONS(5368), 1, + anon_sym_GT, + STATE(3457), 1, + aux_sym_implements_clause_repeat1, + [138771] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, - anon_sym_AMP, - ACTIONS(4776), 1, - anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(1980), 5, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3905), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [138796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1056), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [116375] = 2, + [138809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1707), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3819), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [138834] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(5352), 1, anon_sym_LBRACK, + ACTIONS(5374), 1, + anon_sym_enum, + STATE(2874), 1, + sym_object, + STATE(2875), 1, + sym_array, + STATE(3518), 1, + sym_variable_declarator, + [138859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5278), 1, anon_sym_AMP, + ACTIONS(5280), 1, anon_sym_PIPE, + ACTIONS(5282), 1, anon_sym_extends, - [116389] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 8, + ACTIONS(5260), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + [138878] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - [116403] = 2, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5376), 1, + anon_sym_COMMA, + ACTIONS(5378), 1, + anon_sym_GT, + STATE(3463), 1, + aux_sym_implements_clause_repeat1, + [138903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1820), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116417] = 2, + [138916] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(5336), 1, anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - [116431] = 2, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5380), 1, + anon_sym_COMMA, + ACTIONS(5382), 1, + anon_sym_GT, + STATE(3384), 1, + aux_sym_implements_clause_repeat1, + [138941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1828), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116445] = 2, + [138954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1812), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116459] = 2, + [138967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1393), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116473] = 5, + [138980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_AMP, - ACTIONS(4832), 1, - anon_sym_PIPE, - ACTIONS(4846), 1, - anon_sym_extends, - ACTIONS(1996), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - [116493] = 2, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3951), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [139005] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116507] = 3, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3874), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [139030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(1734), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1829), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116523] = 3, + [139043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 4, - anon_sym_LBRACK, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5328), 1, + anon_sym_STAR, + ACTIONS(5392), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3874), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [139068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5278), 1, anon_sym_AMP, + ACTIONS(5280), 1, anon_sym_PIPE, + ACTIONS(5282), 1, anon_sym_extends, - ACTIONS(1813), 4, + ACTIONS(5262), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [116539] = 6, + [139087] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1382), 1, - anon_sym_RBRACE, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3112), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5396), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3903), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [139112] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_QMARK, - [116561] = 2, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + sym_identifier, + ACTIONS(5400), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3819), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [139137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(5402), 1, anon_sym_LBRACK, + ACTIONS(1856), 6, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116575] = 2, + [139152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1864), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116589] = 7, + [139165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - ACTIONS(4850), 1, - anon_sym_BANG, - STATE(2651), 1, - sym_type_annotation, - STATE(3227), 1, - sym__initializer, - ACTIONS(2517), 3, - sym__automatic_semicolon, + ACTIONS(1844), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_SEMI, - [116613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116627] = 2, + [139178] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1205), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5186), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - [116641] = 2, + STATE(1845), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3817), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_STAR, + ACTIONS(5404), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3819), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [139228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1758), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116655] = 2, + [139241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1825), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1816), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116669] = 2, + [139254] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5186), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - [116683] = 3, + STATE(1886), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3885), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139279] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_LBRACK, - ACTIONS(1739), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, anon_sym_extends, - [116699] = 5, + ACTIONS(5246), 1, + anon_sym_LBRACE, + STATE(725), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3765), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139304] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4832), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4846), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(1992), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - [116719] = 6, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5406), 1, + anon_sym_COMMA, + ACTIONS(5408), 1, + anon_sym_GT, + STATE(3471), 1, + aux_sym_implements_clause_repeat1, + [139329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(4851), 2, anon_sym_COMMA, - ACTIONS(1341), 1, anon_sym_RBRACE, - ACTIONS(4225), 1, - anon_sym_EQ, - STATE(3195), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3451), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [116741] = 2, + [139346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1836), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116755] = 5, + [139359] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(4854), 1, - anon_sym_DOT, - STATE(2872), 1, - sym_statement_block, - ACTIONS(1057), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [116775] = 2, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(2020), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3998), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139384] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5410), 1, anon_sym_AMP, + ACTIONS(5412), 1, anon_sym_PIPE, + ACTIONS(5414), 1, anon_sym_extends, - [116789] = 2, + ACTIONS(2098), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + [139403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 8, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(3264), 1, + sym_type_annotation, + ACTIONS(5416), 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, - [116803] = 8, + anon_sym_PIPE_RBRACE, + [139420] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - STATE(1903), 1, + STATE(1812), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3409), 1, + STATE(3926), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [116828] = 2, + [139445] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 7, - sym__automatic_semicolon, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5242), 1, anon_sym_LBRACE, + STATE(3047), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3831), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139470] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE, + ACTIONS(5414), 1, + anon_sym_extends, + ACTIONS(2102), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + [139489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2580), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [116841] = 8, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3082), 1, + sym_type_annotation, + STATE(3623), 1, + sym__initializer, + ACTIONS(5152), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139510] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, - sym_identifier, - ACTIONS(4858), 1, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5248), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + STATE(85), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3760), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1852), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4862), 1, - anon_sym_enum, - STATE(2402), 1, - sym_object, - STATE(2407), 1, - sym_array, - STATE(2936), 1, - sym_variable_declarator, - [116866] = 8, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4866), 1, - anon_sym_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3275), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [116891] = 8, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE, + ACTIONS(2106), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + [139565] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, + ACTIONS(5418), 1, anon_sym_COLON, - ACTIONS(4872), 1, + ACTIONS(5420), 1, anon_sym_QMARK, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3279), 1, + STATE(3785), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [116916] = 8, + [139590] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(2785), 1, + STATE(1733), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3245), 1, + STATE(3829), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [116941] = 8, + [139615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5422), 1, + anon_sym_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE, + ACTIONS(5426), 1, anon_sym_extends, - STATE(1685), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3240), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [116966] = 5, + ACTIONS(2098), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [139634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5422), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5424), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5426), 1, anon_sym_extends, - ACTIONS(4810), 4, - anon_sym_LBRACE, + ACTIONS(2102), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [116985] = 8, + anon_sym_LBRACK, + anon_sym_GT, + [139653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4866), 1, - anon_sym_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3275), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [117010] = 6, + ACTIONS(5428), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [139666] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, - anon_sym_EQ, - STATE(3006), 1, - sym_constraint, - STATE(3403), 1, - sym_default_type, - ACTIONS(4701), 2, - anon_sym_COLON, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(4876), 2, + ACTIONS(2098), 4, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_GT, - [117031] = 8, + [139685] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - STATE(1765), 1, + STATE(1994), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3323), 1, + STATE(3968), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [117056] = 6, + [139710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2746), 1, - sym_type_annotation, - STATE(3157), 1, - sym__initializer, - ACTIONS(4728), 3, - sym__automatic_semicolon, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1990), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3964), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(2102), 4, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_SEMI, - [117077] = 6, + anon_sym_LBRACK, + anon_sym_GT, + [139754] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(3045), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3827), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(2657), 1, + STATE(3237), 1, sym_type_annotation, - STATE(3223), 1, + STATE(3628), 1, sym__initializer, - ACTIONS(3433), 3, + ACTIONS(5154), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [117098] = 4, + [139800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - STATE(2783), 1, - sym_type_annotation, - ACTIONS(4878), 5, - sym__automatic_semicolon, + ACTIONS(5422), 1, + anon_sym_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE, + ACTIONS(2106), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [117115] = 8, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_extends, + [139817] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(4880), 1, - sym_identifier, - ACTIONS(4882), 1, + ACTIONS(5328), 1, anon_sym_STAR, - STATE(2776), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3220), 1, sym_formal_parameters, - STATE(3367), 1, + STATE(3874), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [117140] = 8, + [139842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(2106), 5, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_extends, + [139859] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(2749), 1, + STATE(650), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3469), 1, + STATE(3809), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [117165] = 4, + [139884] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(3463), 1, - sym_statement_block, - ACTIONS(4884), 5, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(5240), 1, + anon_sym_extends, + STATE(1545), 1, + sym_class_body, + STATE(3553), 1, + sym_extends_clause, + STATE(3825), 1, + sym_class_heritage, + STATE(4055), 1, + sym_implements_clause, + [139909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5432), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [117182] = 6, + [139922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2658), 1, - sym_type_annotation, - STATE(3220), 1, - sym__initializer, - ACTIONS(3424), 3, - sym__automatic_semicolon, + ACTIONS(1762), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_SEMI, - [117203] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4886), 1, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4888), 1, anon_sym_PIPE, - ACTIONS(2000), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_extends, - [117220] = 8, + [139935] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(5186), 1, + anon_sym_LBRACE, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(639), 1, + STATE(1867), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3340), 1, + STATE(3835), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [117245] = 5, + [139960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(1778), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4888), 1, anon_sym_PIPE, - ACTIONS(4890), 1, anon_sym_extends, - ACTIONS(1996), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [117264] = 8, + [139973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(1774), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(579), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3433), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [117289] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4892), 1, - sym_identifier, - ACTIONS(4894), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3446), 1, - sym__call_signature, - [117314] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4896), 1, - sym_identifier, - ACTIONS(4898), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3446), 1, - sym__call_signature, - [117339] = 8, + [139986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(1840), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1358), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3301), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [117364] = 8, + [139999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4866), 1, - anon_sym_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3275), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [117389] = 3, + ACTIONS(1730), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_is, - ACTIONS(4902), 6, - sym__automatic_semicolon, + ACTIONS(2112), 1, anon_sym_LBRACE, + STATE(3954), 1, + sym_statement_block, + ACTIONS(5434), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [117404] = 6, + [140029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2865), 1, - sym_type_annotation, - STATE(3073), 1, - sym__initializer, - ACTIONS(4726), 3, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3921), 1, + sym_statement_block, + ACTIONS(5436), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [117425] = 4, + anon_sym_PIPE_RBRACE, + [140046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(3363), 1, - sym_statement_block, - ACTIONS(4906), 5, + ACTIONS(595), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5440), 1, + anon_sym_is, + ACTIONS(5438), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [117442] = 8, + [140074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_STAR, - ACTIONS(4908), 1, - sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3446), 1, - sym__call_signature, - [117467] = 8, + ACTIONS(1832), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4910), 1, - sym_identifier, - ACTIONS(4912), 1, - anon_sym_DOT, - STATE(557), 1, - sym_nested_identifier, - STATE(559), 1, - sym_string, - STATE(630), 1, - sym__module, - [117492] = 4, + ACTIONS(5402), 1, + anon_sym_LBRACK, + ACTIONS(1806), 6, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(3345), 1, - sym_statement_block, - ACTIONS(4914), 5, - sym__automatic_semicolon, + ACTIONS(1848), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [117509] = 8, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1790), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(1778), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140130] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2915), 1, + anon_sym_LBRACE, + ACTIONS(5356), 1, anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4918), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_formal_parameters, - STATE(3275), 1, - sym__call_signature, - STATE(3427), 1, + ACTIONS(5358), 1, + anon_sym_extends, + STATE(3246), 1, sym_type_parameters, - [117534] = 8, + STATE(3277), 1, + sym_object_type, + STATE(3655), 1, + sym_extends_clause, + [140155] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(2735), 1, + STATE(3068), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3337), 1, + STATE(3822), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [117559] = 6, + [140180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2792), 1, - sym_type_annotation, - STATE(3120), 1, - sym__initializer, - ACTIONS(4716), 3, - sym__automatic_semicolon, + ACTIONS(1794), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_SEMI, - [117580] = 8, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1766), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1770), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1802), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140232] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - STATE(1346), 1, + STATE(2037), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3260), 1, + STATE(3923), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [117605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(901), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [117618] = 8, + [140257] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4920), 1, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(5442), 1, sym_identifier, - ACTIONS(4922), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3462), 1, - sym__call_signature, - [117643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(3296), 1, - sym_statement_block, - ACTIONS(4924), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [117660] = 4, + ACTIONS(5444), 1, + anon_sym_DOT, + STATE(2719), 1, + sym_nested_identifier, + STATE(2758), 1, + sym_string, + STATE(3117), 1, + sym__module, + [140282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(3314), 1, - sym_statement_block, - ACTIONS(4926), 5, - sym__automatic_semicolon, + ACTIONS(1746), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [117677] = 8, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140295] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - ACTIONS(4812), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - STATE(2853), 1, + STATE(695), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3262), 1, + STATE(3975), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [117702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(3342), 1, - sym_statement_block, - ACTIONS(4928), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [117719] = 8, + [140320] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(4930), 1, + ACTIONS(5446), 1, sym_identifier, - ACTIONS(4932), 1, + ACTIONS(5448), 1, anon_sym_STAR, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3446), 1, + STATE(3874), 1, sym__call_signature, - [117744] = 4, + STATE(3965), 1, + sym_type_parameters, + [140345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(3810), 1, sym_statement_block, - ACTIONS(4934), 5, + ACTIONS(5450), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [117761] = 8, + [140362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1350), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3263), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [117786] = 8, + STATE(3816), 1, + sym_statement_block, + ACTIONS(5452), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140379] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, anon_sym_extends, - STATE(1921), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3272), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [117811] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ, - ACTIONS(4940), 1, - anon_sym_COLON, - ACTIONS(4942), 1, - anon_sym_QMARK, - STATE(3000), 1, - sym_type_annotation, - STATE(3378), 1, - sym__initializer, - ACTIONS(4938), 2, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5454), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [117834] = 6, + ACTIONS(5456), 1, + anon_sym_GT, + STATE(3508), 1, + aux_sym_implements_clause_repeat1, + [140404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(2756), 1, - sym_type_annotation, - STATE(3167), 1, - sym__initializer, - ACTIONS(4743), 3, - sym__automatic_semicolon, + ACTIONS(1782), 7, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - anon_sym_SEMI, - [117855] = 5, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(1786), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4832), 1, anon_sym_PIPE, - ACTIONS(4846), 1, anon_sym_extends, - ACTIONS(4808), 4, + [140430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5458), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [117874] = 4, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [140443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3429), 1, + STATE(3948), 1, sym_statement_block, - ACTIONS(4944), 5, + ACTIONS(5460), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [117891] = 4, + [140460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_EQ, - ACTIONS(4445), 2, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3942), 1, + sym_statement_block, + ACTIONS(5462), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(2098), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - [117908] = 4, + [140496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3434), 1, + STATE(3761), 1, sym_statement_block, - ACTIONS(4946), 5, + ACTIONS(5470), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [117925] = 8, + [140513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1848), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3348), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [117950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 7, + STATE(3755), 1, + sym_statement_block, + ACTIONS(5472), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [117963] = 4, + [140530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3445), 1, + STATE(3757), 1, sym_statement_block, - ACTIONS(4950), 5, + ACTIONS(5474), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [117980] = 4, + [140547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3442), 1, + STATE(3898), 1, sym_statement_block, - ACTIONS(4952), 5, + ACTIONS(5476), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [117997] = 4, + [140564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3400), 1, + STATE(3783), 1, sym_statement_block, - ACTIONS(4954), 5, + ACTIONS(5478), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118014] = 5, + [140581] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, - anon_sym_AMP, - ACTIONS(4888), 1, - anon_sym_PIPE, - ACTIONS(4890), 1, - anon_sym_extends, - ACTIONS(1992), 4, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3288), 1, + sym_type_annotation, + STATE(3599), 1, + sym__initializer, + ACTIONS(3523), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [118033] = 2, + anon_sym_SEMI, + [140602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 7, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3271), 1, + sym_type_annotation, + STATE(3560), 1, + sym__initializer, + ACTIONS(3512), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [118046] = 8, + [140623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(1798), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4824), 1, - anon_sym_LBRACE, - STATE(112), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3273), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118071] = 4, + [140636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, - anon_sym_LBRACE, - STATE(2872), 1, - sym_statement_block, - ACTIONS(1057), 5, - sym__automatic_semicolon, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(2102), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118088] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 1, - sym_identifier, - ACTIONS(4858), 1, - anon_sym_LBRACE, - ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4958), 1, - anon_sym_enum, - STATE(2402), 1, - sym_object, - STATE(2407), 1, - sym_array, - STATE(2942), 1, - sym_variable_declarator, - [118113] = 8, + anon_sym_RBRACK, + anon_sym_QMARK, + [140655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(2106), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(4824), 1, - anon_sym_LBRACE, - STATE(99), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3332), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118138] = 8, + [140672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_STAR, - ACTIONS(4960), 1, - sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3446), 1, - sym__call_signature, - [118163] = 8, + ACTIONS(1750), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(4962), 1, - anon_sym_LT, - ACTIONS(4964), 1, + ACTIONS(1824), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(605), 1, - sym_object_type, - STATE(2807), 1, - sym_type_parameters, - STATE(3216), 1, - sym_extends_clause, - [118188] = 8, + [140698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(1754), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(1537), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3286), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118213] = 4, + [140711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - STATE(2713), 1, - sym_type_annotation, - ACTIONS(4966), 5, + ACTIONS(5480), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [118230] = 8, + [140724] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3243), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118255] = 8, + ACTIONS(5482), 1, + anon_sym_EQ, + ACTIONS(5486), 1, + anon_sym_COLON, + ACTIONS(5488), 1, + anon_sym_QMARK, + STATE(3530), 1, + sym_type_annotation, + STATE(3924), 1, + sym__initializer, + ACTIONS(5484), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [140747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(1860), 7, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(578), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3293), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118280] = 8, + [140760] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_implements, - ACTIONS(4804), 1, + ACTIONS(5240), 1, anon_sym_extends, - STATE(1803), 1, + STATE(1561), 1, sym_class_body, - STATE(3159), 1, + STATE(3553), 1, sym_extends_clause, - STATE(3395), 1, + STATE(3855), 1, sym_class_heritage, - STATE(3525), 1, + STATE(4055), 1, sym_implements_clause, - [118305] = 8, + [140785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4910), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5490), 1, sym_identifier, - ACTIONS(4968), 1, - anon_sym_DOT, - STATE(557), 1, - sym_nested_identifier, - STATE(559), 1, - sym_string, - STATE(630), 1, - sym__module, - [118330] = 5, + ACTIONS(5492), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3830), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [140810] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, - anon_sym_AMP, - ACTIONS(4972), 1, - anon_sym_PIPE, - ACTIONS(4974), 1, - anon_sym_extends, - ACTIONS(1992), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - [118349] = 8, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5494), 1, + sym_identifier, + ACTIONS(5496), 1, + anon_sym_STAR, + STATE(3220), 1, + sym_formal_parameters, + STATE(3927), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [140835] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1946), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3326), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118374] = 5, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_STAR, + ACTIONS(5498), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3819), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [140860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4832), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4846), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(4826), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5262), 4, anon_sym_LBRACE, - anon_sym_SEMI, - [118393] = 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [140879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, + ACTIONS(5296), 1, anon_sym_AMP, - ACTIONS(4972), 1, + ACTIONS(5298), 1, anon_sym_PIPE, - ACTIONS(4974), 1, + ACTIONS(5300), 1, anon_sym_extends, - ACTIONS(1996), 4, + ACTIONS(5262), 4, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - [118412] = 5, + anon_sym_SEMI, + [140898] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(4832), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4846), 1, + ACTIONS(5338), 1, anon_sym_extends, - ACTIONS(4810), 4, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5500), 1, + anon_sym_COMMA, + ACTIONS(5502), 1, + anon_sym_GT, + STATE(3338), 1, + aux_sym_implements_clause_repeat1, + [140923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5504), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [118431] = 8, + anon_sym_PIPE_RBRACE, + [140935] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5506), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3669), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [140957] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + anon_sym_COLON, + ACTIONS(5508), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5510), 1, + anon_sym_QMARK_COLON, + STATE(3252), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [140975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(5512), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1413), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3369), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118456] = 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140987] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(5422), 1, anon_sym_AMP, - ACTIONS(4978), 1, + ACTIONS(5424), 1, anon_sym_PIPE, - ACTIONS(2000), 5, + ACTIONS(5426), 1, + anon_sym_extends, + ACTIONS(5514), 3, anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_GT, + [141005] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3823), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [141027] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5520), 1, + anon_sym_BQUOTE, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5518), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2912), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + anon_sym_COLON, + ACTIONS(5508), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5510), 1, + anon_sym_QMARK_COLON, + STATE(3248), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [141063] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 1, + anon_sym_GT, + ACTIONS(5524), 1, + anon_sym_COMMA, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_extends, - [118473] = 4, + STATE(3709), 1, + aux_sym_implements_clause_repeat1, + [141085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_typeof, + ACTIONS(5532), 1, + sym_identifier, + STATE(2507), 1, + sym_nested_type_identifier, + STATE(4018), 1, + sym_nested_identifier, + STATE(545), 2, + sym_generic_type, + sym_type_query, + [141105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, + ACTIONS(5526), 1, anon_sym_AMP, - ACTIONS(4972), 1, + ACTIONS(5528), 1, anon_sym_PIPE, - ACTIONS(2000), 5, - anon_sym_EQ, + ACTIONS(2106), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_GT, anon_sym_extends, - [118490] = 5, + [141121] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3556), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5534), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(5526), 1, anon_sym_AMP, - ACTIONS(4978), 1, + ACTIONS(5528), 1, anon_sym_PIPE, - ACTIONS(4980), 1, + ACTIONS(5530), 1, anon_sym_extends, - ACTIONS(1996), 4, - anon_sym_EQ, + ACTIONS(2098), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - [118509] = 8, + [141155] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4982), 1, - sym_identifier, - ACTIONS(4984), 1, - anon_sym_STAR, - STATE(2776), 1, + ACTIONS(5536), 1, + anon_sym_QMARK, + STATE(2611), 1, sym_formal_parameters, - STATE(3258), 1, + STATE(3236), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [118534] = 5, + [141177] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, - anon_sym_AMP, - ACTIONS(4978), 1, - anon_sym_PIPE, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(1992), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [118553] = 8, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3823), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [141199] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1809), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3339), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118578] = 8, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5540), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3955), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [141221] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, - sym_identifier, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2776), 1, + ACTIONS(5542), 1, + anon_sym_QMARK, + STATE(2611), 1, sym_formal_parameters, - STATE(3275), 1, + STATE(3228), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [118603] = 8, + [141243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5546), 1, + anon_sym_BQUOTE, + ACTIONS(5544), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2973), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(4990), 1, + ACTIONS(5548), 1, sym_identifier, - ACTIONS(4992), 1, - anon_sym_STAR, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3410), 1, + STATE(3928), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [118628] = 8, + [141283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_LBRACE, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(4804), 1, - anon_sym_extends, - STATE(1943), 1, - sym_class_body, - STATE(3159), 1, - sym_extends_clause, - STATE(3319), 1, - sym_class_heritage, - STATE(3525), 1, - sym_implements_clause, - [118653] = 2, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3508), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5550), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141299] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5554), 1, + anon_sym_BQUOTE, + ACTIONS(5552), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3020), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 7, + STATE(2923), 1, + aux_sym_object_type_repeat1, + ACTIONS(5558), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5556), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [141333] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, anon_sym_COLON, + ACTIONS(5508), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5510), 1, + anon_sym_QMARK_COLON, + STATE(3162), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [141351] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5560), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3845), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [141373] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2929), 1, + aux_sym_object_type_repeat1, + ACTIONS(3500), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - [118666] = 5, + ACTIONS(5562), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_AMP, - ACTIONS(4842), 1, - anon_sym_PIPE, - ACTIONS(4844), 1, - anon_sym_extends, - ACTIONS(4810), 4, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3506), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5564), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [118685] = 8, + [141405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(5258), 1, + anon_sym_is, + ACTIONS(2052), 5, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141419] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(661), 1, anon_sym_SQUOTE, - ACTIONS(4996), 1, + ACTIONS(5360), 1, sym_identifier, - ACTIONS(4998), 1, - anon_sym_DOT, - STATE(2387), 1, + STATE(636), 1, sym_nested_identifier, - STATE(2450), 1, + STATE(657), 1, sym_string, - STATE(2653), 1, + STATE(672), 1, sym__module, - [118710] = 2, + [141441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_typeof, + ACTIONS(5566), 1, + sym_identifier, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(4063), 1, + sym_nested_identifier, + STATE(1528), 2, + sym_generic_type, + sym_type_query, + [141461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 7, + STATE(2911), 1, + aux_sym_object_type_repeat1, + ACTIONS(3506), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5564), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, + [141477] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3114), 1, + anon_sym_typeof, + ACTIONS(5566), 1, + sym_identifier, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(4063), 1, + sym_nested_identifier, + STATE(1528), 2, + sym_generic_type, + sym_type_query, + [141497] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3500), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5562), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [141513] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5352), 1, + anon_sym_LBRACK, + ACTIONS(5568), 1, + sym_identifier, + STATE(2874), 1, + sym_object, + STATE(2875), 1, + sym_array, + STATE(3345), 1, + sym_variable_declarator, + [141535] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + anon_sym_GT, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + ACTIONS(5570), 1, + anon_sym_COMMA, + STATE(3630), 1, + aux_sym_implements_clause_repeat1, + [141557] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5352), 1, + anon_sym_LBRACK, + ACTIONS(5568), 1, + sym_identifier, + STATE(2874), 1, + sym_object, + STATE(2875), 1, + sym_array, + STATE(3342), 1, + sym_variable_declarator, + [141579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3226), 1, + anon_sym_typeof, + ACTIONS(5572), 1, + sym_identifier, + STATE(2643), 1, + sym_nested_type_identifier, + STATE(4125), 1, + sym_nested_identifier, + STATE(2876), 2, + sym_generic_type, + sym_type_query, + [141599] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, anon_sym_COLON, + ACTIONS(5508), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5510), 1, + anon_sym_QMARK_COLON, + STATE(3223), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [141617] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3534), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - [118723] = 8, + ACTIONS(5574), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141633] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(2654), 1, + anon_sym_COMMA, + ACTIONS(4465), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2655), 1, + ACTIONS(4493), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(5576), 1, anon_sym_LT, - ACTIONS(4964), 1, + STATE(3407), 1, + aux_sym_extends_clause_repeat1, + STATE(3579), 1, + sym_type_arguments, + [141655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 1, + anon_sym_typeof, + ACTIONS(5532), 1, + sym_identifier, + STATE(2507), 1, + sym_nested_type_identifier, + STATE(4018), 1, + sym_nested_identifier, + STATE(545), 2, + sym_generic_type, + sym_type_query, + [141675] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + anon_sym_COLON, + ACTIONS(5508), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5510), 1, + anon_sym_QMARK_COLON, + STATE(3221), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [141693] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, anon_sym_extends, - STATE(2690), 1, - sym_type_parameters, - STATE(2799), 1, - sym_object_type, - STATE(3192), 1, - sym_extends_clause, - [118748] = 4, + ACTIONS(5580), 1, + anon_sym_QMARK, + ACTIONS(5578), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [141713] = 7, ACTIONS(3), 1, sym_comment, - STATE(2616), 1, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(5582), 1, + anon_sym_LBRACE, + ACTIONS(5584), 1, + anon_sym_COMMA, + STATE(3584), 1, + aux_sym_implements_clause_repeat1, + [141735] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2917), 1, aux_sym_object_type_repeat1, - ACTIONS(5004), 2, + ACTIONS(5588), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5002), 3, + ACTIONS(5586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118764] = 7, + [141751] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + anon_sym_typeof, + ACTIONS(5590), 1, + sym_identifier, + STATE(2532), 1, + sym_nested_type_identifier, + STATE(4099), 1, + sym_nested_identifier, + STATE(2594), 2, + sym_generic_type, + sym_type_query, + [141771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_default, + ACTIONS(5594), 1, + anon_sym_RBRACE, + ACTIONS(5596), 1, + anon_sym_case, + STATE(2947), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141789] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_GT, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + ACTIONS(5598), 1, + anon_sym_COMMA, + STATE(3629), 1, + aux_sym_implements_clause_repeat1, + [141811] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5006), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2748), 1, + STATE(3080), 1, sym__call_signature, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - [118786] = 7, + [141833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5008), 1, - sym_identifier, - ACTIONS(5010), 1, - anon_sym_LBRACK, - STATE(1178), 1, - sym_arguments, - STATE(3361), 1, - sym_type_arguments, - [118808] = 7, + STATE(2944), 1, + aux_sym_object_type_repeat1, + ACTIONS(5604), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, + STATE(2945), 1, + aux_sym_object_type_repeat1, + ACTIONS(3540), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5606), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141865] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5608), 1, + anon_sym_BQUOTE, + ACTIONS(5552), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3020), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141883] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5008), 1, - sym_identifier, - ACTIONS(5010), 1, - anon_sym_LBRACK, - STATE(1831), 1, - sym_arguments, - STATE(3419), 1, - sym_type_arguments, - [118830] = 5, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5610), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3285), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [141905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - ACTIONS(5012), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, - anon_sym_QMARK_COLON, - STATE(2705), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [118848] = 7, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3540), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5606), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141921] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3542), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141937] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5614), 1, + anon_sym_export, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_abstract, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + [141959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5016), 1, - sym_identifier, - ACTIONS(5018), 1, - anon_sym_LBRACK, - STATE(1781), 1, - sym_arguments, - STATE(3236), 1, - sym_type_arguments, - [118870] = 6, + ACTIONS(5592), 1, + anon_sym_default, + ACTIONS(5596), 1, + anon_sym_case, + ACTIONS(5620), 1, + anon_sym_RBRACE, + STATE(2968), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141977] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 1, - anon_sym_typeof, - ACTIONS(5020), 1, - sym_identifier, - STATE(1234), 1, - sym_nested_type_identifier, - STATE(3505), 1, - sym_nested_identifier, - STATE(1266), 2, - sym_generic_type, - sym_type_query, - [118890] = 5, + ACTIONS(5408), 1, + anon_sym_GT, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + ACTIONS(5622), 1, + anon_sym_COMMA, + STATE(3654), 1, + aux_sym_implements_clause_repeat1, + [141999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - anon_sym_BQUOTE, - ACTIONS(5026), 1, + ACTIONS(5522), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5022), 2, + ACTIONS(5624), 1, + anon_sym_BQUOTE, + ACTIONS(5552), 2, sym__template_chars, sym_escape_sequence, - STATE(2599), 2, + STATE(3020), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [118908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5028), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118920] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_QMARK, - STATE(2776), 1, - sym_formal_parameters, - STATE(3401), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [118942] = 6, + [142017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(629), 1, anon_sym_typeof, - ACTIONS(5032), 1, + ACTIONS(5532), 1, sym_identifier, - STATE(2182), 1, + STATE(2507), 1, sym_nested_type_identifier, - STATE(3486), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(467), 2, + STATE(545), 2, sym_generic_type, sym_type_query, - [118962] = 6, + [142037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(2831), 1, anon_sym_typeof, - ACTIONS(5032), 1, + ACTIONS(5626), 1, sym_identifier, - STATE(2182), 1, + STATE(1643), 1, sym_nested_type_identifier, - STATE(3486), 1, + STATE(4226), 1, sym_nested_identifier, - STATE(467), 2, + STATE(1719), 2, sym_generic_type, sym_type_query, - [118982] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5034), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118994] = 7, + [142057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5036), 1, - sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3269), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [119016] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3276), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5038), 3, - sym__automatic_semicolon, + ACTIONS(5344), 1, + anon_sym_GT, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + ACTIONS(5628), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119032] = 6, + STATE(3640), 1, + aux_sym_implements_clause_repeat1, + [142079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(3357), 1, anon_sym_typeof, - ACTIONS(5040), 1, + ACTIONS(5590), 1, sym_identifier, - STATE(2283), 1, + STATE(2532), 1, sym_nested_type_identifier, - STATE(3509), 1, + STATE(4099), 1, sym_nested_identifier, - STATE(2338), 2, + STATE(2594), 2, sym_generic_type, sym_type_query, - [119052] = 7, + [142099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5042), 1, + ACTIONS(5630), 1, sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3399), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [119074] = 7, + ACTIONS(5632), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(3704), 1, + sym__import_export_specifier, + ACTIONS(5636), 2, + anon_sym_type, + anon_sym_typeof, + [142119] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, - anon_sym_LBRACE, - ACTIONS(4860), 1, - anon_sym_LBRACK, + ACTIONS(5332), 1, + anon_sym_GT, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(3601), 1, + aux_sym_implements_clause_repeat1, + [142141] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2631), 1, + anon_sym_COMMA, ACTIONS(5044), 1, - sym_identifier, - STATE(2402), 1, - sym_object, - STATE(2407), 1, - sym_array, - STATE(2936), 1, - sym_variable_declarator, - [119096] = 7, + anon_sym_LT, + STATE(521), 1, + sym_type_arguments, + STATE(3473), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4465), 2, + anon_sym_LBRACE, + anon_sym_implements, + [142161] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(5046), 1, - anon_sym_QMARK, - STATE(2290), 1, + ACTIONS(5640), 1, + sym_identifier, + STATE(3220), 1, sym_formal_parameters, - STATE(2781), 1, + STATE(3845), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [119118] = 7, + [142183] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(5048), 1, + ACTIONS(5642), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2710), 1, + STATE(3935), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [119140] = 5, + [142205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - ACTIONS(5012), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, - anon_sym_QMARK_COLON, - STATE(2698), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [119158] = 7, + ACTIONS(2877), 1, + anon_sym_typeof, + ACTIONS(5566), 1, + sym_identifier, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(4063), 1, + sym_nested_identifier, + STATE(1528), 2, + sym_generic_type, + sym_type_query, + [142225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4910), 1, + ACTIONS(3313), 1, + anon_sym_typeof, + ACTIONS(5532), 1, sym_identifier, - STATE(557), 1, + STATE(2507), 1, + sym_nested_type_identifier, + STATE(4018), 1, sym_nested_identifier, - STATE(559), 1, - sym_string, - STATE(630), 1, - sym__module, - [119180] = 5, + STATE(545), 2, + sym_generic_type, + sym_type_query, + [142245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5522), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, + ACTIONS(5646), 1, anon_sym_BQUOTE, - ACTIONS(5050), 2, + ACTIONS(5644), 2, sym__template_chars, sym_escape_sequence, - STATE(2579), 2, + STATE(2942), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [119198] = 7, + [142263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5054), 1, + ACTIONS(3295), 1, + anon_sym_typeof, + ACTIONS(5532), 1, sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3411), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [119220] = 4, + STATE(2507), 1, + sym_nested_type_identifier, + STATE(4018), 1, + sym_nested_identifier, + STATE(545), 2, + sym_generic_type, + sym_type_query, + [142283] = 6, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3274), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5056), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [119236] = 4, + ACTIONS(2957), 1, + anon_sym_typeof, + ACTIONS(5626), 1, + sym_identifier, + STATE(1643), 1, + sym_nested_type_identifier, + STATE(4226), 1, + sym_nested_identifier, + STATE(1719), 2, + sym_generic_type, + sym_type_query, + [142303] = 5, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3282), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5058), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [119252] = 7, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5648), 1, + anon_sym_BQUOTE, + ACTIONS(5552), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3020), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5060), 1, - anon_sym_QMARK, - STATE(2776), 1, - sym_formal_parameters, - STATE(3354), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [119274] = 4, + ACTIONS(2781), 1, + anon_sym_typeof, + ACTIONS(5572), 1, + sym_identifier, + STATE(2643), 1, + sym_nested_type_identifier, + STATE(4125), 1, + sym_nested_identifier, + STATE(2876), 2, + sym_generic_type, + sym_type_query, + [142341] = 4, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, + STATE(2966), 1, aux_sym_object_type_repeat1, - ACTIONS(3260), 2, + ACTIONS(5653), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5062), 3, + ACTIONS(5650), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119290] = 7, + [142357] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, + ACTIONS(5340), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(5655), 1, anon_sym_COMMA, - ACTIONS(5066), 1, - anon_sym_GT, - ACTIONS(5068), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5070), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5072), 1, + ACTIONS(5661), 1, anon_sym_extends, - STATE(3116), 1, + STATE(3580), 1, aux_sym_implements_clause_repeat1, - [119312] = 5, + [142379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5074), 1, - anon_sym_BQUOTE, - ACTIONS(5050), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2579), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [119330] = 7, + ACTIONS(5663), 1, + anon_sym_default, + ACTIONS(5666), 1, + anon_sym_RBRACE, + ACTIONS(5668), 1, + anon_sym_case, + STATE(2968), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142397] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5076), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5618), 1, + anon_sym_abstract, + ACTIONS(5671), 1, + anon_sym_export, + ACTIONS(5673), 1, + anon_sym_class, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + [142419] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_typeof, + ACTIONS(5675), 1, sym_identifier, - ACTIONS(5078), 1, - anon_sym_LBRACK, - STATE(1576), 1, - sym_arguments, - STATE(3349), 1, - sym_type_arguments, - [119352] = 6, + STATE(2619), 1, + sym_nested_type_identifier, + STATE(4013), 1, + sym_nested_identifier, + STATE(2673), 2, + sym_generic_type, + sym_type_query, + [142439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_COMMA, - ACTIONS(4624), 1, - anon_sym_LT, - STATE(409), 1, - sym_type_arguments, - STATE(2923), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3587), 2, - anon_sym_LBRACE, - anon_sym_implements, - [119372] = 7, + ACTIONS(3138), 1, + anon_sym_typeof, + ACTIONS(5566), 1, + sym_identifier, + STATE(1459), 1, + sym_nested_type_identifier, + STATE(4063), 1, + sym_nested_identifier, + STATE(1528), 2, + sym_generic_type, + sym_type_query, + [142459] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, - anon_sym_extends, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_GT, - STATE(3215), 1, - aux_sym_implements_clause_repeat1, - [119394] = 4, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(5360), 1, + sym_identifier, + STATE(636), 1, + sym_nested_identifier, + STATE(657), 1, + sym_string, + STATE(667), 1, + sym__module, + [142481] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5677), 1, + anon_sym_BQUOTE, + ACTIONS(5552), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3020), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142499] = 4, ACTIONS(3), 1, sym_comment, - STATE(2591), 1, + STATE(2966), 1, aux_sym_object_type_repeat1, - ACTIONS(5086), 2, + ACTIONS(3558), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5084), 3, + ACTIONS(5679), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119410] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5088), 1, - sym_identifier, - ACTIONS(5090), 1, - anon_sym_LBRACK, - STATE(1330), 1, - sym_arguments, - STATE(3449), 1, - sym_type_arguments, - [119432] = 5, + [142515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - ACTIONS(5012), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, - anon_sym_QMARK_COLON, - STATE(2766), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [119450] = 6, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3504), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5681), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(3333), 1, anon_sym_typeof, - ACTIONS(5092), 1, + ACTIONS(5683), 1, sym_identifier, - STATE(2212), 1, + STATE(622), 1, sym_nested_type_identifier, - STATE(3578), 1, + STATE(4018), 1, sym_nested_identifier, - STATE(2236), 2, + STATE(545), 2, sym_generic_type, sym_type_query, - [119470] = 6, + [142551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, + ACTIONS(2975), 1, anon_sym_typeof, - ACTIONS(5094), 1, + ACTIONS(5685), 1, sym_identifier, - STATE(522), 1, + STATE(1701), 1, sym_nested_type_identifier, - STATE(3486), 1, + STATE(4256), 1, sym_nested_identifier, - STATE(467), 2, + STATE(1930), 2, sym_generic_type, sym_type_query, - [119490] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5076), 1, - sym_identifier, - ACTIONS(5078), 1, - anon_sym_LBRACK, - STATE(1781), 1, - sym_arguments, - STATE(3236), 1, - sym_type_arguments, - [119512] = 6, + [142571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2753), 1, + ACTIONS(3126), 1, anon_sym_typeof, - ACTIONS(5096), 1, + ACTIONS(5685), 1, sym_identifier, - STATE(1669), 1, + STATE(1701), 1, sym_nested_type_identifier, - STATE(3527), 1, + STATE(4256), 1, sym_nested_identifier, - STATE(1754), 2, + STATE(1930), 2, sym_generic_type, sym_type_query, - [119532] = 7, + [142591] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, - anon_sym_extends, - ACTIONS(5098), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_GT, - STATE(3179), 1, - aux_sym_implements_clause_repeat1, - [119554] = 7, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5687), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3303), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [142613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, + ACTIONS(5350), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + ACTIONS(5352), 1, anon_sym_LBRACK, - ACTIONS(5044), 1, + ACTIONS(5568), 1, sym_identifier, - STATE(2402), 1, + STATE(2874), 1, sym_object, - STATE(2407), 1, + STATE(2875), 1, sym_array, - STATE(2941), 1, + STATE(3519), 1, sym_variable_declarator, - [119576] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5102), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_LBRACK, - STATE(1305), 1, - sym_arguments, - STATE(3341), 1, - sym_type_arguments, - [119598] = 7, + [142635] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, + ACTIONS(5350), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + ACTIONS(5352), 1, anon_sym_LBRACK, - ACTIONS(5044), 1, + ACTIONS(5568), 1, sym_identifier, - STATE(2402), 1, + STATE(2874), 1, sym_object, - STATE(2407), 1, + STATE(2875), 1, sym_array, - STATE(2942), 1, + STATE(3518), 1, sym_variable_declarator, - [119620] = 6, + [142657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, - anon_sym_typeof, - ACTIONS(5032), 1, - sym_identifier, - STATE(2182), 1, - sym_nested_type_identifier, - STATE(3486), 1, - sym_nested_identifier, - STATE(467), 2, - sym_generic_type, - sym_type_query, - [119640] = 2, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3554), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5689), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 6, + ACTIONS(5482), 1, anon_sym_EQ, + ACTIONS(5486), 1, + anon_sym_COLON, + STATE(3357), 1, + sym_type_annotation, + STATE(3782), 1, + sym__initializer, + ACTIONS(5691), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [119652] = 4, + anon_sym_RPAREN, + [142693] = 4, ACTIONS(3), 1, sym_comment, - STATE(2495), 1, + STATE(2974), 1, aux_sym_object_type_repeat1, - ACTIONS(3282), 2, + ACTIONS(3554), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5058), 3, + ACTIONS(5689), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119668] = 6, + [142709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, - anon_sym_typeof, - ACTIONS(5032), 1, - sym_identifier, - STATE(2182), 1, - sym_nested_type_identifier, - STATE(3486), 1, - sym_nested_identifier, - STATE(467), 2, - sym_generic_type, - sym_type_query, - [119688] = 5, + STATE(2966), 1, + aux_sym_object_type_repeat1, + ACTIONS(3550), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(5012), 1, + ACTIONS(5508), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, + ACTIONS(5510), 1, anon_sym_QMARK_COLON, - STATE(2769), 3, + STATE(3282), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [119706] = 5, + [142743] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3018), 1, + aux_sym_object_type_repeat1, + ACTIONS(5697), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(5012), 1, + ACTIONS(5508), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, + ACTIONS(5510), 1, anon_sym_QMARK_COLON, - STATE(2773), 3, + STATE(3278), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [119724] = 4, + [142777] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(5442), 1, + sym_identifier, + STATE(2719), 1, + sym_nested_identifier, + STATE(2758), 1, + sym_string, + STATE(3117), 1, + sym__module, + [142799] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5699), 1, + anon_sym_QMARK, + STATE(3220), 1, + sym_formal_parameters, + STATE(3821), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [142821] = 4, ACTIONS(3), 1, sym_comment, - STATE(2594), 1, + STATE(2903), 1, aux_sym_object_type_repeat1, - ACTIONS(3262), 2, + ACTIONS(3548), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5106), 3, + ACTIONS(5701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119740] = 4, + [142837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + anon_sym_COLON, + ACTIONS(5508), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5510), 1, + anon_sym_QMARK_COLON, + STATE(3275), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [142855] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5703), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3163), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [142877] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + ACTIONS(5442), 1, + sym_identifier, + STATE(2719), 1, + sym_nested_identifier, + STATE(2758), 1, + sym_string, + STATE(3272), 1, + sym__module, + [142899] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5705), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3302), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [142921] = 4, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, + STATE(3039), 1, aux_sym_object_type_repeat1, - ACTIONS(3262), 2, + ACTIONS(5709), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5106), 3, + ACTIONS(5707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119756] = 6, + [142937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5713), 1, + anon_sym_BQUOTE, + ACTIONS(5711), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2949), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(5630), 1, sym_identifier, - ACTIONS(5110), 1, + ACTIONS(5715), 1, anon_sym_COMMA, - ACTIONS(5112), 1, + ACTIONS(5717), 1, anon_sym_RBRACE, - STATE(3191), 1, + STATE(3602), 1, sym__import_export_specifier, - ACTIONS(5114), 2, + ACTIONS(5636), 2, anon_sym_type, anon_sym_typeof, - [119776] = 7, + [142975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(5116), 1, + ACTIONS(5719), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2760), 1, + STATE(3919), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [119798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - anon_sym_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE, - ACTIONS(2000), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_extends, - [119814] = 4, + [142997] = 7, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(5121), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5118), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [119830] = 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5721), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3823), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [143019] = 4, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, + STATE(2982), 1, aux_sym_object_type_repeat1, - ACTIONS(3264), 2, + ACTIONS(5725), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5123), 3, + ACTIONS(5723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119846] = 7, + [143035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5125), 1, - anon_sym_QMARK, - STATE(2776), 1, - sym_formal_parameters, - STATE(3316), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [119868] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4680), 1, + ACTIONS(5130), 1, anon_sym_COLON, - ACTIONS(5012), 1, + ACTIONS(5508), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, + ACTIONS(5510), 1, anon_sym_QMARK_COLON, - STATE(2709), 3, + STATE(3188), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [119886] = 7, + [143053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5661), 1, anon_sym_extends, - ACTIONS(5127), 1, - anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(2098), 3, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - STATE(3088), 1, - aux_sym_implements_clause_repeat1, - [119908] = 7, + anon_sym_LBRACK, + [143071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5131), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2627), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [119930] = 5, + ACTIONS(5256), 1, + anon_sym_is, + ACTIONS(2052), 5, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143085] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - ACTIONS(5012), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, - anon_sym_QMARK_COLON, - STATE(2723), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [119948] = 6, + ACTIONS(5350), 1, + anon_sym_LBRACE, + ACTIONS(5352), 1, + anon_sym_LBRACK, + ACTIONS(5568), 1, + sym_identifier, + STATE(2874), 1, + sym_object, + STATE(2875), 1, + sym_array, + STATE(3712), 1, + sym_variable_declarator, + [143107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(3952), 6, anon_sym_EQ, - ACTIONS(4940), 1, - anon_sym_COLON, - STATE(2928), 1, - sym_type_annotation, - STATE(3384), 1, - sym__initializer, - ACTIONS(5133), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [119968] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - ACTIONS(5012), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, - anon_sym_QMARK_COLON, - STATE(2729), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [119986] = 7, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [143119] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5135), 1, - anon_sym_export, - ACTIONS(5137), 1, - anon_sym_class, - ACTIONS(5139), 1, - anon_sym_abstract, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - [120008] = 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5727), 1, + sym_identifier, + STATE(3220), 1, + sym_formal_parameters, + STATE(3901), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [143141] = 5, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3258), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5141), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120024] = 4, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5731), 1, + anon_sym_BQUOTE, + ACTIONS(5729), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2964), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [143159] = 5, ACTIONS(3), 1, sym_comment, - STATE(2508), 1, - aux_sym_object_type_repeat1, - ACTIONS(3274), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5056), 3, - sym__automatic_semicolon, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE, + ACTIONS(5414), 1, + anon_sym_extends, + ACTIONS(5262), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [120040] = 4, + anon_sym_RPAREN, + [143177] = 5, ACTIONS(3), 1, sym_comment, - STATE(2505), 1, - aux_sym_object_type_repeat1, - ACTIONS(5145), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5143), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120056] = 7, + ACTIONS(5522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5733), 1, + anon_sym_BQUOTE, + ACTIONS(5552), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3020), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [143195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3437), 1, + STATE(3157), 1, sym__call_signature, - [120078] = 2, + STATE(3916), 1, + sym_type_parameters, + [143217] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5737), 1, anon_sym_QMARK, - [120090] = 3, + STATE(3220), 1, + sym_formal_parameters, + STATE(3753), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [143239] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_is, - ACTIONS(1962), 5, - anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(5502), 1, + anon_sym_GT, + ACTIONS(5526), 1, anon_sym_AMP, + ACTIONS(5528), 1, anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_extends, - [120104] = 5, + ACTIONS(5739), 1, + anon_sym_COMMA, + STATE(3571), 1, + aux_sym_implements_clause_repeat1, + [143261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5151), 1, - anon_sym_BQUOTE, - ACTIONS(5149), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2564), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [120122] = 7, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5741), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3227), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [143283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - ACTIONS(4910), 1, + ACTIONS(2508), 1, + anon_sym_typeof, + ACTIONS(5532), 1, sym_identifier, - STATE(557), 1, + STATE(2507), 1, + sym_nested_type_identifier, + STATE(4018), 1, sym_nested_identifier, - STATE(559), 1, - sym_string, - STATE(607), 1, - sym__module, - [120144] = 7, + STATE(545), 2, + sym_generic_type, + sym_type_query, + [143303] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5008), 1, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5743), 1, sym_identifier, - ACTIONS(5010), 1, - anon_sym_LBRACK, - STATE(1550), 1, - sym_arguments, - STATE(3450), 1, - sym_type_arguments, - [120166] = 4, + STATE(3220), 1, + sym_formal_parameters, + STATE(3860), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [143325] = 7, ACTIONS(3), 1, sym_comment, - STATE(2537), 1, - aux_sym_object_type_repeat1, - ACTIONS(3258), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5141), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120182] = 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5745), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(2841), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [143347] = 4, ACTIONS(3), 1, sym_comment, - STATE(2506), 1, + STATE(2966), 1, aux_sym_object_type_repeat1, - ACTIONS(5155), 2, + ACTIONS(3548), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5153), 3, + ACTIONS(5701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120198] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5157), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(3128), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [120220] = 7, + [143363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5008), 1, - sym_identifier, - ACTIONS(5010), 1, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + ACTIONS(2102), 3, + anon_sym_COMMA, anon_sym_LBRACK, - STATE(1330), 1, - sym_arguments, - STATE(3449), 1, - sym_type_arguments, - [120242] = 5, + anon_sym_GT, + [143381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5159), 1, + ACTIONS(5750), 1, anon_sym_BQUOTE, - ACTIONS(5050), 2, + ACTIONS(5752), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5747), 2, sym__template_chars, sym_escape_sequence, - STATE(2579), 2, + STATE(3020), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [120260] = 7, + [143399] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5161), 1, + ACTIONS(5755), 1, anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2818), 1, + STATE(2861), 1, sym__call_signature, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - [120282] = 7, + [143421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5070), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5072), 1, + ACTIONS(5661), 1, anon_sym_extends, - ACTIONS(5163), 1, + ACTIONS(2102), 3, + sym__call_type_arguments_closing_bracket, anon_sym_COMMA, - ACTIONS(5165), 1, - anon_sym_GT, - STATE(3137), 1, - aux_sym_implements_clause_repeat1, - [120304] = 6, + anon_sym_LBRACK, + [143439] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, - anon_sym_typeof, - ACTIONS(5167), 1, - sym_identifier, - STATE(1524), 1, - sym_nested_type_identifier, - STATE(3752), 1, - sym_nested_identifier, - STATE(1606), 2, - sym_generic_type, - sym_type_query, - [120324] = 5, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5757), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(2867), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [143461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5522), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5171), 1, + ACTIONS(5761), 1, anon_sym_BQUOTE, - ACTIONS(5169), 2, + ACTIONS(5759), 2, sym__template_chars, sym_escape_sequence, - STATE(2510), 2, + STATE(3010), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [120342] = 5, + [143479] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5173), 1, - anon_sym_BQUOTE, - ACTIONS(5050), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2579), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [120360] = 7, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5763), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(2870), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [143501] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5175), 1, - sym_identifier, - STATE(2776), 1, + ACTIONS(5765), 1, + anon_sym_QMARK, + STATE(2611), 1, sym_formal_parameters, - STATE(3353), 1, + STATE(2872), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [120382] = 7, + [143523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, - sym_identifier, - STATE(2776), 1, + ACTIONS(5767), 1, + anon_sym_QMARK, + STATE(2611), 1, sym_formal_parameters, - STATE(3353), 1, + STATE(3616), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [120404] = 6, + [143545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, - anon_sym_typeof, - ACTIONS(5032), 1, - sym_identifier, - STATE(2182), 1, - sym_nested_type_identifier, - STATE(3486), 1, - sym_nested_identifier, - STATE(467), 2, - sym_generic_type, - sym_type_query, - [120424] = 7, + ACTIONS(3451), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [143557] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(3587), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3667), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5769), 1, + anon_sym_QMARK, + STATE(3220), 1, + sym_formal_parameters, + STATE(3764), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [143579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5771), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5179), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5657), 1, + anon_sym_AMP, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(2106), 4, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + [143607] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, anon_sym_LT, - STATE(2901), 1, - aux_sym_extends_clause_repeat1, - STATE(3065), 1, - sym_type_arguments, - [120446] = 4, + ACTIONS(3160), 1, + anon_sym_LPAREN, + ACTIONS(5773), 1, + anon_sym_QMARK, + STATE(2611), 1, + sym_formal_parameters, + STATE(3124), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [143629] = 5, ACTIONS(3), 1, sym_comment, - STATE(2532), 1, + ACTIONS(5334), 1, + anon_sym_AMP, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + ACTIONS(5775), 3, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + anon_sym_GT, + [143647] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2966), 1, aux_sym_object_type_repeat1, - ACTIONS(5183), 2, + ACTIONS(3530), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5181), 3, + ACTIONS(5777), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120462] = 7, + [143663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5382), 1, + anon_sym_GT, + ACTIONS(5526), 1, anon_sym_AMP, - ACTIONS(5070), 1, + ACTIONS(5528), 1, anon_sym_PIPE, - ACTIONS(5072), 1, + ACTIONS(5530), 1, anon_sym_extends, - ACTIONS(5185), 1, + ACTIONS(5779), 1, anon_sym_COMMA, - ACTIONS(5187), 1, - anon_sym_GT, - STATE(3181), 1, + STATE(3691), 1, aux_sym_implements_clause_repeat1, - [120484] = 7, + [143685] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 1, + anon_sym_typeof, + ACTIONS(5532), 1, + sym_identifier, + STATE(2507), 1, + sym_nested_type_identifier, + STATE(4018), 1, + sym_nested_identifier, + STATE(545), 2, + sym_generic_type, + sym_type_query, + [143705] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3034), 1, + aux_sym_object_type_repeat1, + ACTIONS(3519), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5781), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143721] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(5189), 1, - anon_sym_QMARK, - STATE(2776), 1, + ACTIONS(5783), 1, + sym_identifier, + STATE(3220), 1, sym_formal_parameters, - STATE(3351), 1, + STATE(3845), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [120506] = 4, + [143743] = 4, ACTIONS(3), 1, sym_comment, - STATE(2546), 1, + STATE(2966), 1, aux_sym_object_type_repeat1, - ACTIONS(5193), 2, + ACTIONS(3519), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5191), 3, + ACTIONS(5781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120522] = 7, + [143759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5008), 1, - sym_identifier, - ACTIONS(5010), 1, - anon_sym_LBRACK, - STATE(123), 1, - sym_arguments, - STATE(3247), 1, - sym_type_arguments, - [120544] = 2, + STATE(2985), 1, + aux_sym_object_type_repeat1, + ACTIONS(5787), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5785), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 6, + STATE(2975), 1, + aux_sym_object_type_repeat1, + ACTIONS(3550), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5693), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [120556] = 7, + [143791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, + ACTIONS(5789), 5, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(4860), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - sym_identifier, - STATE(2402), 1, - sym_object, - STATE(2407), 1, - sym_array, - STATE(2930), 1, - sym_variable_declarator, - [120578] = 7, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [143802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [143813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - ACTIONS(5197), 1, - anon_sym_QMARK, - STATE(2290), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(3077), 1, + STATE(3218), 1, sym__call_signature, - STATE(3397), 1, + STATE(3796), 1, sym_type_parameters, - [120600] = 7, + [143832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, - anon_sym_extends, - ACTIONS(5199), 1, + ACTIONS(1084), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5201), 1, - anon_sym_GT, - STATE(3078), 1, - aux_sym_implements_clause_repeat1, - [120622] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, - anon_sym_AMP, - ACTIONS(4978), 1, - anon_sym_PIPE, - ACTIONS(4980), 1, - anon_sym_extends, - ACTIONS(5203), 3, - anon_sym_EQ, + ACTIONS(2370), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [120640] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, - anon_sym_BQUOTE, - ACTIONS(5210), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5205), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2579), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [120658] = 7, + ACTIONS(2386), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_LBRACE, + ACTIONS(1600), 3, + anon_sym_COMMA, anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5213), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2445), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [120680] = 6, + anon_sym_LBRACE_PIPE, + [143880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 1, - anon_sym_typeof, - ACTIONS(5092), 1, - sym_identifier, - STATE(2212), 1, - sym_nested_type_identifier, - STATE(3578), 1, - sym_nested_identifier, - STATE(2236), 2, - sym_generic_type, - sym_type_query, - [120700] = 7, + ACTIONS(1072), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [143891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5139), 1, - anon_sym_abstract, - ACTIONS(5215), 1, - anon_sym_export, - ACTIONS(5217), 1, - anon_sym_class, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - [120722] = 7, + ACTIONS(2298), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5219), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2810), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [120744] = 7, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5795), 1, + anon_sym_EQ_GT, + STATE(3997), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [143917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - ACTIONS(5221), 1, - anon_sym_QMARK, - STATE(2290), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(2441), 1, + STATE(3065), 1, sym__call_signature, - STATE(3397), 1, + STATE(3796), 1, sym_type_parameters, - [120766] = 6, + [143936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - sym_identifier, - ACTIONS(5223), 1, + ACTIONS(2306), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5225), 1, anon_sym_RBRACE, - STATE(3208), 1, - sym__import_export_specifier, - ACTIONS(5114), 2, - anon_sym_type, - anon_sym_typeof, - [120786] = 5, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, - anon_sym_extends, - ACTIONS(1992), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [120804] = 5, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3931), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [143966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 1, - anon_sym_default, - ACTIONS(5230), 1, - anon_sym_RBRACE, - ACTIONS(5232), 1, - anon_sym_case, - STATE(2587), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [120822] = 7, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + STATE(2611), 1, + sym_formal_parameters, + STATE(3645), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [143985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - ACTIONS(5235), 1, - anon_sym_QMARK, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2433), 1, + STATE(3929), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [120844] = 4, + [144004] = 2, ACTIONS(3), 1, sym_comment, - STATE(2598), 1, - aux_sym_object_type_repeat1, - ACTIONS(3270), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5237), 3, + ACTIONS(1148), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [120860] = 5, + anon_sym_PIPE_RBRACE, + [144015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, - anon_sym_default, - ACTIONS(5241), 1, + ACTIONS(5482), 1, + anon_sym_EQ, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5799), 1, anon_sym_RBRACE, - ACTIONS(5243), 1, - anon_sym_case, - STATE(2618), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [120878] = 4, + STATE(3702), 1, + aux_sym_enum_body_repeat1, + STATE(3762), 1, + sym__initializer, + [144034] = 4, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3270), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5237), 3, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1794), 1, + sym_statement_block, + ACTIONS(5801), 3, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, anon_sym_SEMI, - [120894] = 7, + [144049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, - sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3269), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [120916] = 7, + ACTIONS(2302), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(5247), 1, - sym_identifier, - STATE(2776), 1, - sym_formal_parameters, - STATE(3353), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [120938] = 4, + ACTIONS(5288), 1, + anon_sym_LBRACE, + STATE(3192), 1, + sym_statement_block, + ACTIONS(5803), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [144075] = 2, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3286), 2, + ACTIONS(2178), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(5249), 3, + [144086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [120954] = 7, + anon_sym_PIPE_RBRACE, + [144097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5251), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2429), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [120976] = 7, + ACTIONS(3566), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [144108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - sym_identifier, - STATE(2402), 1, - sym_object, - STATE(2407), 1, - sym_array, - STATE(3125), 1, - sym_variable_declarator, - [120998] = 7, + STATE(1874), 1, + sym_statement_block, + ACTIONS(5803), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [144123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5253), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2794), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [121020] = 4, + ACTIONS(2294), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144134] = 2, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3284), 2, + ACTIONS(2274), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(5255), 3, + [144145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2270), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [121036] = 5, + anon_sym_PIPE_RBRACE, + [144156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5257), 1, - anon_sym_BQUOTE, - ACTIONS(5050), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2579), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [121054] = 7, + ACTIONS(1210), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4996), 1, - sym_identifier, - STATE(2387), 1, - sym_nested_identifier, - STATE(2450), 1, - sym_string, - STATE(2653), 1, - sym__module, - [121076] = 5, + ACTIONS(2414), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5202), 1, anon_sym_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, + ACTIONS(5206), 1, anon_sym_extends, - ACTIONS(1996), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [121094] = 7, + ACTIONS(5809), 1, + anon_sym_PIPE, + ACTIONS(5807), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5259), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2418), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [121116] = 7, + ACTIONS(2214), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5076), 1, - sym_identifier, - ACTIONS(5078), 1, - anon_sym_LBRACK, - STATE(1179), 1, - sym_arguments, - STATE(3431), 1, - sym_type_arguments, - [121138] = 7, + ACTIONS(2210), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - ACTIONS(5261), 1, - anon_sym_QMARK, - STATE(2290), 1, - sym_formal_parameters, - STATE(2874), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [121160] = 3, + ACTIONS(3562), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [144228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, - anon_sym_is, - ACTIONS(1962), 5, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121174] = 7, + ACTIONS(2202), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - ACTIONS(4996), 1, - sym_identifier, - STATE(2387), 1, - sym_nested_identifier, - STATE(2450), 1, - sym_string, - STATE(2855), 1, - sym__module, - [121196] = 5, + ACTIONS(5811), 1, + sym__automatic_semicolon, + ACTIONS(1168), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, - anon_sym_AMP, - ACTIONS(4972), 1, - anon_sym_PIPE, - ACTIONS(4974), 1, - anon_sym_extends, - ACTIONS(4810), 3, - anon_sym_EQ, + ACTIONS(2158), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [121214] = 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5263), 1, - sym_identifier, - ACTIONS(5265), 1, - anon_sym_LBRACK, - STATE(1831), 1, - sym_arguments, - STATE(3419), 1, - sym_type_arguments, - [121236] = 7, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1038), 1, + anon_sym_LBRACE, + ACTIONS(5358), 1, + anon_sym_extends, + STATE(670), 1, + sym_object_type, + STATE(3569), 1, + sym_extends_clause, + [144282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5076), 1, - sym_identifier, - ACTIONS(5078), 1, - anon_sym_LBRACK, - STATE(127), 1, - sym_arguments, - STATE(3390), 1, - sym_type_arguments, - [121258] = 5, + ACTIONS(5482), 1, + anon_sym_EQ, + ACTIONS(5813), 1, + anon_sym_COMMA, + ACTIONS(5815), 1, + anon_sym_RBRACE, + STATE(3746), 1, + aux_sym_enum_body_repeat1, + STATE(3762), 1, + sym__initializer, + [144301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5269), 1, - anon_sym_BQUOTE, - ACTIONS(5267), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2503), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [121276] = 7, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2435), 1, + sym_statement_block, + ACTIONS(5434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5271), 1, - sym_identifier, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3284), 1, + STATE(3130), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [121298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4886), 1, - anon_sym_AMP, - ACTIONS(4888), 1, - anon_sym_PIPE, - ACTIONS(4890), 1, - anon_sym_extends, - ACTIONS(5275), 1, - anon_sym_QMARK, - ACTIONS(5273), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [121318] = 4, + [144335] = 4, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3278), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5277), 3, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3648), 1, + sym__initializer, + ACTIONS(5819), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121334] = 7, + [144350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5279), 1, - sym_identifier, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3278), 1, + STATE(2873), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [121356] = 5, + [144369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5283), 1, - anon_sym_BQUOTE, - ACTIONS(5281), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2559), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [121374] = 4, + ACTIONS(1056), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON, + [144380] = 2, ACTIONS(3), 1, sym_comment, - STATE(2536), 1, - aux_sym_object_type_repeat1, - ACTIONS(3268), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5285), 3, + ACTIONS(2454), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [121390] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - ACTIONS(5012), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5014), 1, - anon_sym_QMARK_COLON, - STATE(2813), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [121408] = 5, + anon_sym_PIPE_RBRACE, + [144391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, - anon_sym_default, - ACTIONS(5243), 1, - anon_sym_case, - ACTIONS(5287), 1, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5821), 1, anon_sym_RBRACE, - STATE(2587), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [121426] = 4, + STATE(3896), 1, + sym__import_export_specifier, + ACTIONS(5636), 2, + anon_sym_type, + anon_sym_typeof, + [144408] = 4, ACTIONS(3), 1, sym_comment, - STATE(2613), 1, - aux_sym_object_type_repeat1, - ACTIONS(3268), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5285), 3, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3633), 1, + sym__initializer, + ACTIONS(5823), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121442] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, - anon_sym_LT, - ACTIONS(5076), 1, - sym_identifier, - ACTIONS(5078), 1, - anon_sym_LBRACK, - STATE(1305), 1, - sym_arguments, - STATE(3341), 1, - sym_type_arguments, - [121464] = 7, + [144423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5289), 1, - sym_identifier, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3269), 1, + STATE(2871), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [121486] = 7, + [144442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5202), 1, anon_sym_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, + ACTIONS(5206), 1, anon_sym_extends, - ACTIONS(5291), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_GT, - STATE(3048), 1, - aux_sym_implements_clause_repeat1, - [121508] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_typeof, - ACTIONS(5032), 1, - sym_identifier, - STATE(2182), 1, - sym_nested_type_identifier, - STATE(3486), 1, - sym_nested_identifier, - STATE(467), 2, - sym_generic_type, - sym_type_query, - [121528] = 7, + ACTIONS(5809), 1, + anon_sym_PIPE, + ACTIONS(5825), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - ACTIONS(5295), 1, - anon_sym_QMARK, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2708), 1, + STATE(2869), 1, sym__call_signature, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - [121550] = 2, + [144478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COLON, - [121561] = 6, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(2086), 2, + anon_sym_else, + anon_sym_while, + [144495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ, - ACTIONS(5297), 1, + ACTIONS(2450), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5299), 1, anon_sym_RBRACE, - STATE(3218), 1, - aux_sym_enum_body_repeat1, - STATE(3266), 1, - sym__initializer, - [121580] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1722), 1, + sym_statement_block, + ACTIONS(5827), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [144521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 5, + ACTIONS(2446), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121591] = 4, + [144532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(2098), 2, anon_sym_COLON, - ACTIONS(5303), 1, - anon_sym_EQ_GT, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [121606] = 6, + anon_sym_LBRACK, + [144549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2638), 1, + STATE(2866), 1, sym__call_signature, - STATE(3389), 1, + STATE(3916), 1, sym_type_parameters, - [121625] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5108), 1, - sym_identifier, - ACTIONS(5307), 1, - anon_sym_RBRACE, - STATE(3440), 1, - sym__import_export_specifier, - ACTIONS(5114), 2, - anon_sym_type, - anon_sym_typeof, - [121642] = 4, + [144568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, + ACTIONS(5793), 1, anon_sym_COLON, - ACTIONS(5309), 1, + ACTIONS(5835), 1, anon_sym_EQ_GT, - STATE(3441), 3, + STATE(3751), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [121657] = 4, + [144583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_EQ_GT, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [121672] = 6, + ACTIONS(2442), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3430), 1, + STATE(2860), 1, sym__call_signature, - [121691] = 6, + STATE(3916), 1, + sym_type_parameters, + [144613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2366), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3281), 1, + STATE(3826), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [121710] = 6, + [144643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3311), 1, + STATE(3833), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [121729] = 5, + [144662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - sym_identifier, - ACTIONS(5313), 1, - anon_sym_RBRACE, - STATE(3443), 1, - sym__import_export_specifier, - ACTIONS(5114), 2, - anon_sym_type, - anon_sym_typeof, - [121746] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(2755), 1, + STATE(3059), 1, sym__call_signature, - STATE(3389), 1, + STATE(3796), 1, sym_type_parameters, - [121765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1703), 1, - sym_statement_block, - ACTIONS(5315), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [121780] = 4, + [144681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, - anon_sym_LBRACE, - STATE(2666), 1, - sym_statement_block, - ACTIONS(5317), 3, + ACTIONS(2182), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [121795] = 3, + anon_sym_PIPE_RBRACE, + [144692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(2354), 5, sym__automatic_semicolon, - ACTIONS(1119), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [121808] = 6, + [144703] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(2102), 2, + anon_sym_COLON, + anon_sym_LBRACK, + [144720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2639), 1, + STATE(3756), 1, sym__call_signature, - STATE(3389), 1, + STATE(3965), 1, sym_type_parameters, - [121827] = 6, + [144739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3464), 1, + STATE(3841), 1, sym__call_signature, - [121846] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 1, - anon_sym_AMP, - ACTIONS(4786), 1, - anon_sym_extends, - ACTIONS(5323), 1, - anon_sym_PIPE, - ACTIONS(5321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [121863] = 6, + STATE(3965), 1, + sym_type_parameters, + [144758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3259), 1, + STATE(3842), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [121882] = 6, + [144777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3256), 1, + STATE(3806), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [121901] = 6, + [144796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5837), 1, + anon_sym_RBRACE, + STATE(3896), 1, + sym__import_export_specifier, + ACTIONS(5636), 2, + anon_sym_type, + anon_sym_typeof, + [144813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(2680), 1, + STATE(3061), 1, sym__call_signature, - STATE(3389), 1, + STATE(3796), 1, sym_type_parameters, - [121920] = 4, + [144832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(5288), 1, anon_sym_LBRACE, - STATE(1750), 1, + STATE(644), 1, sym_statement_block, - ACTIONS(5315), 3, + ACTIONS(5827), 3, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_SEMI, - [121935] = 5, + [144847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5325), 2, + ACTIONS(5839), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [144858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, anon_sym_LBRACE, + ACTIONS(5576), 1, + anon_sym_LT, + STATE(3579), 1, + sym_type_arguments, + ACTIONS(4659), 2, anon_sym_COMMA, - [121952] = 6, + anon_sym_LBRACE_PIPE, + [144875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3248), 1, + STATE(3164), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [121971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - anon_sym_COLON, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [121986] = 4, + [144894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(3129), 1, - sym__initializer, - ACTIONS(5329), 3, + ACTIONS(2186), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [122001] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3299), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [122020] = 2, + anon_sym_PIPE_RBRACE, + [144905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 5, + ACTIONS(2190), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122031] = 6, + [144916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2428), 1, + STATE(3859), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [122050] = 6, + [144935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(3398), 1, + STATE(3182), 1, sym__call_signature, - STATE(3427), 1, + STATE(3796), 1, sym_type_parameters, - [122069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 1, - anon_sym_LBRACE, - STATE(560), 1, - sym_statement_block, - ACTIONS(5331), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [122084] = 4, + [144954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(3119), 1, - sym__initializer, - ACTIONS(5333), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122099] = 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(2711), 1, + sym_formal_parameters, + STATE(3093), 1, + sym__call_signature, + STATE(3796), 1, + sym_type_parameters, + [144973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(3118), 1, + STATE(3614), 1, sym__initializer, - ACTIONS(5335), 3, + ACTIONS(5841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122114] = 2, + [144988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 5, + ACTIONS(2374), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122125] = 2, + [144999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 5, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym_statement_block, + ACTIONS(5452), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122136] = 4, + [145014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, + ACTIONS(5793), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(5843), 1, anon_sym_EQ_GT, - STATE(3441), 3, + STATE(3997), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [122151] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_formal_parameters, - STATE(2431), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [122170] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(5305), 1, - anon_sym_LPAREN, - STATE(2343), 1, - sym_formal_parameters, - STATE(2695), 1, - sym__call_signature, - STATE(3389), 1, - sym_type_parameters, - [122189] = 2, + [145029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 5, + ACTIONS(5432), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COLON, - [122200] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3322), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [122219] = 3, + [145040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5339), 1, + ACTIONS(2174), 5, sym__automatic_semicolon, - ACTIONS(1093), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122232] = 3, + [145051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 1, - sym__automatic_semicolon, - ACTIONS(1083), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122245] = 6, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(2106), 3, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_extends, + [145066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2439), 1, + STATE(3225), 1, sym__call_signature, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - [122264] = 6, + [145085] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2422), 1, + sym_statement_block, + ACTIONS(5450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2444), 1, + STATE(3888), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [122283] = 2, + [145119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 5, + ACTIONS(2426), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5793), 1, anon_sym_COLON, - [122294] = 5, + ACTIONS(5845), 1, + anon_sym_EQ_GT, + STATE(3997), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [145145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4786), 1, - anon_sym_extends, - ACTIONS(5323), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(5343), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122311] = 6, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(5775), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + [145162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(5305), 1, - anon_sym_LPAREN, - STATE(2343), 1, - sym_formal_parameters, - STATE(2767), 1, - sym__call_signature, - STATE(3389), 1, - sym_type_parameters, - [122330] = 6, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5847), 1, + anon_sym_class, + ACTIONS(5849), 1, + anon_sym_abstract, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + [145181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(2446), 1, + STATE(3210), 1, sym__call_signature, - STATE(3397), 1, + STATE(3796), 1, sym_type_parameters, - [122349] = 2, + [145200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [122360] = 2, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5851), 1, + anon_sym_RBRACE, + STATE(3937), 1, + sym__import_export_specifier, + ACTIONS(5636), 2, + anon_sym_type, + anon_sym_typeof, + [145217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 5, + ACTIONS(1062), 1, + anon_sym_LBRACE, + STATE(89), 1, + sym_statement_block, + ACTIONS(5827), 3, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_SEMI, + [145232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5198), 1, + anon_sym_LBRACE, + ACTIONS(5853), 1, anon_sym_COLON, - [122371] = 2, + STATE(3997), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [145247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_LBRACK, + ACTIONS(5855), 1, + sym_identifier, + STATE(4078), 1, + sym_object, + STATE(4081), 1, + sym_array, + [145266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 5, + ACTIONS(3890), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [122382] = 2, + [145277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 5, + ACTIONS(3895), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [122393] = 3, + [145288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5347), 1, + ACTIONS(5857), 5, sym__automatic_semicolon, - ACTIONS(1165), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5349), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [122417] = 4, + [145299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, - ACTIONS(5351), 3, + ACTIONS(5458), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [122432] = 6, + anon_sym_COLON, + [145310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(3344), 1, + STATE(3262), 1, sym__call_signature, - STATE(3427), 1, + STATE(3796), 1, sym_type_parameters, - [122451] = 6, + [145329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(2870), 1, + STATE(3194), 1, sym__call_signature, - STATE(3389), 1, + STATE(3796), 1, sym_type_parameters, - [122470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 5, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [122481] = 5, + [145348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, - anon_sym_AMP, - ACTIONS(4786), 1, - anon_sym_extends, - ACTIONS(5323), 1, - anon_sym_PIPE, - ACTIONS(5353), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122498] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5301), 1, + ACTIONS(5793), 1, anon_sym_COLON, - ACTIONS(5355), 1, + ACTIONS(5859), 1, anon_sym_EQ_GT, - STATE(3377), 3, + STATE(3751), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [122513] = 2, + [145363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 5, + ACTIONS(5861), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122524] = 6, + [145374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(676), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145385] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2656), 1, + STATE(3813), 1, sym__call_signature, - STATE(3389), 1, + STATE(3965), 1, sym_type_parameters, - [122543] = 2, + [145404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 5, - anon_sym_EQ, + ACTIONS(5863), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [122554] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 5, + ACTIONS(3576), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [122565] = 6, + [145426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2655), 1, + ACTIONS(5865), 1, + anon_sym_is, + ACTIONS(5438), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4964), 1, - anon_sym_extends, - STATE(2884), 1, - sym_object_type, - STATE(3222), 1, - sym_extends_clause, - [122584] = 4, + anon_sym_SEMI, + [145439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5480), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2103), 1, - sym_statement_block, - ACTIONS(4950), 3, + anon_sym_SEMI, + anon_sym_COLON, + [145450] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5657), 1, + anon_sym_AMP, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(5661), 1, + anon_sym_extends, + ACTIONS(5775), 2, + sym__call_type_arguments_closing_bracket, + anon_sym_COMMA, + [145467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5452), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5202), 1, + anon_sym_AMP, + ACTIONS(5206), 1, + anon_sym_extends, + ACTIONS(5809), 1, + anon_sym_PIPE, + ACTIONS(5867), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [122599] = 6, + [145506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(2611), 1, + sym_formal_parameters, + STATE(3295), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [145525] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + STATE(2611), 1, sym_formal_parameters, - STATE(3320), 1, + STATE(3156), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [122618] = 2, + [145544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 5, + ACTIONS(5428), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122629] = 2, + anon_sym_COLON, + [145555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 5, + ACTIONS(5869), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122640] = 4, + [145566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1645), 1, - sym_statement_block, - ACTIONS(5331), 3, + ACTIONS(5462), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [122655] = 2, + anon_sym_PIPE_RBRACE, + [145577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 5, + ACTIONS(5450), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - anon_sym_EQ_GT, - ACTIONS(5301), 1, - anon_sym_COLON, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [122681] = 2, + [145588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 5, + ACTIONS(5871), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122692] = 6, + [145599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3371), 1, + STATE(3793), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [122711] = 4, + [145618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_LBRACE, - STATE(2100), 1, - sym_statement_block, - ACTIONS(4954), 3, + ACTIONS(2170), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [122726] = 2, + anon_sym_PIPE_RBRACE, + [145629] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3832), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [145648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1950), 5, + ACTIONS(5873), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [122737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COLON, - [122748] = 2, + [145659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 5, + ACTIONS(5436), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122759] = 2, + [145670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 5, - sym__automatic_semicolon, + ACTIONS(5875), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122770] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5363), 5, + ACTIONS(5877), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122781] = 2, + [145692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 5, + ACTIONS(1094), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122792] = 6, + [145703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_formal_parameters, - STATE(2694), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [122811] = 2, + ACTIONS(5158), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 5, + ACTIONS(2238), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122822] = 2, + [145725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5365), 5, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3703), 1, + sym__initializer, + ACTIONS(5879), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122833] = 4, + [145751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5817), 1, anon_sym_LBRACE, - STATE(2102), 1, + STATE(2439), 1, sym_statement_block, - ACTIONS(4952), 3, + ACTIONS(5436), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122848] = 6, + [145766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5881), 1, + anon_sym_EQ_GT, + STATE(3997), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [145781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(2700), 1, + STATE(3113), 1, sym__call_signature, - STATE(3397), 1, + STATE(3796), 1, sym_type_parameters, - [122867] = 6, + [145800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3232), 1, + STATE(3909), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [122886] = 2, + [145819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4878), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122897] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 1, + ACTIONS(5288), 1, anon_sym_LBRACE, - STATE(574), 1, + STATE(646), 1, sym_statement_block, - ACTIONS(5315), 3, + ACTIONS(5801), 3, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_SEMI, - [122912] = 2, + [145834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 5, - anon_sym_EQ, + ACTIONS(1192), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [122923] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 5, + ACTIONS(5318), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122934] = 2, + [145856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 5, + ACTIONS(3566), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [122945] = 6, + [145867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3309), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [122964] = 2, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1794), 1, + sym_statement_block, + ACTIONS(5883), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [145882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 5, + ACTIONS(2262), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3292), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [122994] = 6, + [145893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3298), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [123013] = 6, + ACTIONS(5885), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_formal_parameters, - STATE(2703), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [123032] = 2, + ACTIONS(2258), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 5, + ACTIONS(5887), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123043] = 2, + [145926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 5, + ACTIONS(5653), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123054] = 2, + [145937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 5, + ACTIONS(5889), 1, sym__automatic_semicolon, + ACTIONS(1110), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123065] = 2, + [145950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 5, + ACTIONS(5891), 1, sym__automatic_semicolon, + ACTIONS(1120), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123076] = 4, + [145963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1062), 1, + anon_sym_LBRACE, + STATE(96), 1, + sym_statement_block, + ACTIONS(5801), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [145978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5893), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3701), 1, + sym__initializer, + ACTIONS(5895), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5897), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5899), 1, + anon_sym_EQ_GT, + STATE(3997), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [146041] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, anon_sym_LT, - STATE(409), 1, - sym_type_arguments, - ACTIONS(3763), 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3846), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [146060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, anon_sym_LBRACE, + STATE(2430), 1, + sym_statement_block, + ACTIONS(5318), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [123091] = 5, + anon_sym_SEMI, + [146075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5901), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146086] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(2711), 1, + sym_formal_parameters, + STATE(3138), 1, + sym__call_signature, + STATE(3796), 1, + sym_type_parameters, + [146105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - sym_identifier, - ACTIONS(5371), 1, - anon_sym_RBRACE, - STATE(3440), 1, - sym__import_export_specifier, - ACTIONS(5114), 2, - anon_sym_type, - anon_sym_typeof, - [123108] = 2, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5903), 1, + anon_sym_EQ_GT, + STATE(3997), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [146120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 5, + ACTIONS(5202), 1, + anon_sym_AMP, + ACTIONS(5206), 1, + anon_sym_extends, + ACTIONS(5809), 1, + anon_sym_PIPE, + ACTIONS(5905), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123119] = 2, + [146137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 5, + ACTIONS(1192), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123130] = 2, + [146148] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3947), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [146167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 5, + ACTIONS(5907), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123141] = 2, + [146178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 5, - sym__automatic_semicolon, + ACTIONS(3562), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [123152] = 2, + anon_sym_QMARK, + [146189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 5, + ACTIONS(5288), 1, + anon_sym_LBRACE, + STATE(3076), 1, + sym_statement_block, + ACTIONS(5883), 3, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_SEMI, + [146204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - [123163] = 2, + anon_sym_QMARK, + [146215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 5, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2434), 1, + sym_statement_block, + ACTIONS(5478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123174] = 2, + [146230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 5, - sym__automatic_semicolon, + ACTIONS(3403), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123185] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 5, + ACTIONS(3606), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123196] = 6, + anon_sym_COLON, + [146252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3254), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [123215] = 2, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5909), 1, + anon_sym_EQ_GT, + STATE(3751), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [146267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 5, + ACTIONS(5478), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123226] = 5, + [146278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5911), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5913), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5915), 1, anon_sym_extends, - ACTIONS(1980), 2, - anon_sym_else, - anon_sym_while, - [123243] = 2, + ACTIONS(2098), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + [146295] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1874), 1, + sym_statement_block, + ACTIONS(5827), 3, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_SEMI, + [146310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 1, + anon_sym_LBRACE, + ACTIONS(5853), 1, + anon_sym_COLON, + STATE(3751), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [146336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 5, + ACTIONS(5917), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123254] = 2, + [146347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 5, + ACTIONS(5919), 1, sym__automatic_semicolon, + ACTIONS(1130), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123265] = 2, + [146360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 5, + ACTIONS(5921), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123276] = 6, + [146371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(5305), 1, - anon_sym_LPAREN, - STATE(2343), 1, - sym_formal_parameters, - STATE(2714), 1, - sym__call_signature, - STATE(3389), 1, - sym_type_parameters, - [123295] = 6, + ACTIONS(3602), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2437), 1, + sym_statement_block, + ACTIONS(5460), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2888), 1, + STATE(3287), 1, sym__call_signature, - STATE(3389), 1, + STATE(3916), 1, sym_type_parameters, - [123314] = 4, + [146416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5375), 1, - anon_sym_EQ_GT, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [123329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(3173), 1, - sym__initializer, - ACTIONS(5377), 3, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2438), 1, + sym_statement_block, + ACTIONS(5462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123344] = 2, + [146431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 5, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2436), 1, + sym_statement_block, + ACTIONS(5476), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123355] = 4, + [146446] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + STATE(2611), 1, + sym_formal_parameters, + STATE(3212), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [146465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5817), 1, anon_sym_LBRACE, - STATE(2105), 1, + STATE(2442), 1, sym_statement_block, - ACTIONS(4946), 3, + ACTIONS(5474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123370] = 2, + [146480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123381] = 6, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5923), 1, + anon_sym_EQ_GT, + STATE(3751), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [146495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2691), 1, - sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [123400] = 2, + STATE(3981), 1, + sym__call_signature, + [146514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123411] = 4, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5925), 1, + anon_sym_EQ_GT, + STATE(3751), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [146529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_LBRACE, - STATE(2106), 1, - sym_statement_block, - ACTIONS(4944), 3, - sym__automatic_semicolon, + ACTIONS(3606), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [123426] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5044), 1, + anon_sym_LT, + STATE(521), 1, + sym_type_arguments, + ACTIONS(4659), 3, anon_sym_LBRACE, - STATE(2112), 1, - sym_statement_block, - ACTIONS(4914), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [123441] = 2, + anon_sym_implements, + [146555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1129), 5, + ACTIONS(5476), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_statement_block, - ACTIONS(5317), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [123467] = 4, + [146566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(3080), 1, + STATE(3743), 1, sym__initializer, - ACTIONS(5379), 3, + ACTIONS(5927), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(901), 1, - anon_sym_DOT, - ACTIONS(1640), 1, - anon_sym_LBRACE, - ACTIONS(1638), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [123497] = 2, + [146581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 5, + ACTIONS(2402), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 1, - anon_sym_AMP, - ACTIONS(4786), 1, - anon_sym_extends, - ACTIONS(5323), 1, - anon_sym_PIPE, - ACTIONS(5381), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [123525] = 2, + [146592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 5, + ACTIONS(2398), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123536] = 2, + [146603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 5, + ACTIONS(5929), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123547] = 6, + [146614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(2711), 1, sym_formal_parameters, - STATE(2734), 1, + STATE(3186), 1, sym__call_signature, - STATE(3397), 1, + STATE(3796), 1, sym_type_parameters, - [123566] = 2, + [146633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 5, + ACTIONS(2382), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123577] = 2, + [146644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 5, + ACTIONS(2198), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123588] = 4, + [146655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5385), 1, + ACTIONS(5911), 1, + anon_sym_AMP, + ACTIONS(5913), 1, + anon_sym_PIPE, + ACTIONS(5915), 1, + anon_sym_extends, + ACTIONS(2102), 2, + anon_sym_LBRACK, anon_sym_EQ_GT, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [123603] = 2, + [146672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5931), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123614] = 4, + STATE(3937), 1, + sym__import_export_specifier, + ACTIONS(5636), 2, + anon_sym_type, + anon_sym_typeof, + [146689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2915), 1, anon_sym_LBRACE, - STATE(1843), 1, - sym_statement_block, - ACTIONS(5331), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [123629] = 6, + ACTIONS(5358), 1, + anon_sym_extends, + STATE(3062), 1, + sym_object_type, + STATE(3688), 1, + sym_extends_clause, + [146708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3306), 1, + STATE(3216), 1, sym__call_signature, - STATE(3427), 1, + STATE(3916), 1, sym_type_parameters, - [123648] = 2, + [146727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5389), 5, + ACTIONS(5933), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123659] = 6, + [146738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(3602), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [146749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_EQ, + ACTIONS(3952), 4, anon_sym_LPAREN, - STATE(2343), 1, - sym_formal_parameters, - STATE(2647), 1, - sym__call_signature, - STATE(3389), 1, - sym_type_parameters, - [123678] = 2, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [146762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5911), 1, + anon_sym_AMP, + ACTIONS(5913), 1, + anon_sym_PIPE, + ACTIONS(2106), 3, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + [146777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 5, + ACTIONS(5935), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123689] = 6, + [146788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3302), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [123708] = 2, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3723), 1, + sym__initializer, + ACTIONS(5937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 5, + ACTIONS(5474), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123719] = 6, + [146814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3444), 1, + STATE(3710), 1, sym__call_signature, - [123738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(3076), 1, - sym__initializer, - ACTIONS(5393), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123753] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - anon_sym_COLON, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [123768] = 6, + STATE(3916), 1, + sym_type_parameters, + [146833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2844), 1, + STATE(3907), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [123787] = 5, + [146852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - sym_identifier, - ACTIONS(5395), 1, - anon_sym_RBRACE, - STATE(3443), 1, - sym__import_export_specifier, - ACTIONS(5114), 2, - anon_sym_type, - anon_sym_typeof, - [123804] = 2, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3618), 1, + sym__initializer, + ACTIONS(5939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 5, + ACTIONS(2234), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123815] = 6, + [146878] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5397), 1, - anon_sym_class, - ACTIONS(5399), 1, + ACTIONS(5618), 1, anon_sym_abstract, - STATE(2136), 1, + ACTIONS(5941), 1, + anon_sym_class, + STATE(2463), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - [123834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4926), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123845] = 6, + [146897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ, - ACTIONS(5401), 1, - anon_sym_COMMA, - ACTIONS(5403), 1, - anon_sym_RBRACE, - STATE(3221), 1, - aux_sym_enum_body_repeat1, - STATE(3266), 1, - sym__initializer, - [123864] = 2, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3913), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [146916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 5, + ACTIONS(2226), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123875] = 3, + [146927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, - anon_sym_is, - ACTIONS(4902), 4, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1676), 1, + sym_statement_block, + ACTIONS(5801), 3, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_SEMI, - [123888] = 2, + [146942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123899] = 2, + ACTIONS(5793), 1, + anon_sym_COLON, + ACTIONS(5943), 1, + anon_sym_EQ_GT, + STATE(3751), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [146957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 5, + ACTIONS(5346), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123910] = 6, + [146968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3294), 1, + STATE(3961), 1, sym__call_signature, - STATE(3427), 1, + STATE(3965), 1, sym_type_parameters, - [123929] = 6, + [146987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(3162), 1, + STATE(3958), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [123948] = 4, + [147006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(3160), 1, - sym__initializer, - ACTIONS(5409), 3, + ACTIONS(3598), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [123963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3303), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [123982] = 2, + anon_sym_COLON, + [147017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 5, + ACTIONS(2406), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(3154), 1, - sym__initializer, - ACTIONS(5411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124008] = 2, + [147028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 5, + ACTIONS(1158), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124019] = 4, + [147039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5945), 5, + anon_sym_EQ, anon_sym_LBRACE, - STATE(2115), 1, - sym_statement_block, - ACTIONS(4934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124034] = 2, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [147050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 5, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3716), 1, + sym__initializer, + ACTIONS(5947), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124045] = 2, + [147065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 5, + ACTIONS(1188), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124056] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3359), 1, - sym__call_signature, - STATE(3427), 1, - sym_type_parameters, - [124075] = 6, + [147076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2752), 1, + STATE(3763), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [124094] = 2, + [147095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 5, + ACTIONS(2266), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124105] = 2, + [147106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 5, + ACTIONS(5949), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5359), 1, - anon_sym_LBRACE, - STATE(2116), 1, - sym_statement_block, - ACTIONS(4928), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5415), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124142] = 2, + [147117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5419), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5421), 5, - anon_sym_EQ, + ACTIONS(5526), 1, + anon_sym_AMP, + ACTIONS(5528), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + ACTIONS(5775), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124175] = 2, + anon_sym_GT, + [147134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5423), 5, + ACTIONS(2390), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124186] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1039), 1, - anon_sym_LBRACE, - ACTIONS(4964), 1, - anon_sym_extends, - STATE(615), 1, - sym_object_type, - STATE(3098), 1, - sym_extends_clause, - [124205] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, - anon_sym_LBRACK, - ACTIONS(5425), 1, - sym_identifier, - STATE(3617), 1, - sym_object, - STATE(3692), 1, - sym_array, - [124224] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_LBRACE, - ACTIONS(5179), 1, - anon_sym_LT, - STATE(3065), 1, - sym_type_arguments, - ACTIONS(3763), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [124241] = 4, + [147145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_LBRACE, - STATE(2111), 1, - sym_statement_block, - ACTIONS(4906), 3, + ACTIONS(5951), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124256] = 6, + anon_sym_PIPE_RBRACE, + [147156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(3220), 1, sym_formal_parameters, - STATE(2882), 1, + STATE(3959), 1, sym__call_signature, - STATE(3397), 1, + STATE(3965), 1, sym_type_parameters, - [124275] = 2, + [147175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5427), 5, + ACTIONS(5076), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [124286] = 2, + STATE(3609), 1, + sym__initializer, + ACTIONS(5953), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5198), 1, + anon_sym_EQ_GT, + ACTIONS(5793), 1, + anon_sym_COLON, + STATE(3997), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [147205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 5, + ACTIONS(5955), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124297] = 4, + [147216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5431), 1, + ACTIONS(5208), 1, anon_sym_EQ_GT, - STATE(3377), 3, + ACTIONS(5793), 1, + anon_sym_COLON, + STATE(3751), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [124312] = 2, + [147231] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3943), 1, + sym__call_signature, + STATE(3965), 1, + sym_type_parameters, + [147250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 5, + ACTIONS(5817), 1, + anon_sym_LBRACE, + STATE(2440), 1, + sym_statement_block, + ACTIONS(5472), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124323] = 2, + [147265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + STATE(2611), 1, + sym_formal_parameters, + STATE(3230), 1, + sym__call_signature, + STATE(3916), 1, + sym_type_parameters, + [147284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, anon_sym_LBRACE, + STATE(2419), 1, + sym_statement_block, + ACTIONS(5470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [124334] = 2, + [147299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 5, + ACTIONS(5076), 1, + anon_sym_EQ, + STATE(3715), 1, + sym__initializer, + ACTIONS(5957), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124345] = 2, + [147314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 5, + ACTIONS(1178), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124356] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5437), 1, - anon_sym_EQ_GT, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [124371] = 2, + [147325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5439), 5, + ACTIONS(1226), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124382] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124393] = 6, + [147336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(2611), 1, sym_formal_parameters, - STATE(2763), 1, + STATE(3254), 1, sym__call_signature, - STATE(3397), 1, + STATE(3916), 1, sym_type_parameters, - [124412] = 2, + [147355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5959), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [147366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 5, + ACTIONS(2166), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124423] = 4, + [147377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_PIPE, - ACTIONS(2000), 3, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_extends, - [124438] = 2, + ACTIONS(2378), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 5, + ACTIONS(5470), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124449] = 2, + [147399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3965), 1, + sym_type_parameters, + STATE(3970), 1, + sym__call_signature, + [147418] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_formal_parameters, + STATE(3965), 1, + sym_type_parameters, + STATE(3979), 1, + sym__call_signature, + [147437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 5, + ACTIONS(1196), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124460] = 2, + [147448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 5, + ACTIONS(2194), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124471] = 5, + [147459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 1, + ACTIONS(5526), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5528), 1, anon_sym_PIPE, - ACTIONS(5445), 1, + ACTIONS(5530), 1, anon_sym_extends, - ACTIONS(1996), 2, - anon_sym_LBRACK, - anon_sym_EQ_GT, - [124488] = 2, + ACTIONS(5961), 2, + anon_sym_COMMA, + anon_sym_GT, + [147476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5447), 5, - sym__automatic_semicolon, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(5963), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124499] = 2, + anon_sym_RBRACK, + [147493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5121), 5, + ACTIONS(5434), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124510] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5449), 1, - anon_sym_EQ_GT, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [124525] = 2, + [147504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2345), 5, + ACTIONS(5472), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124536] = 2, + [147515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1195), 5, + ACTIONS(1222), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124547] = 2, + [147526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 5, + ACTIONS(5965), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [124558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5451), 1, - anon_sym_EQ_GT, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [124573] = 5, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [147537] = 5, + ACTIONS(5967), 1, + anon_sym_DQUOTE, + ACTIONS(5969), 1, + aux_sym_string_token1, + ACTIONS(5971), 1, + sym_escape_sequence, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_PIPE, - ACTIONS(5445), 1, - anon_sym_extends, - ACTIONS(1992), 2, - anon_sym_LBRACK, - anon_sym_EQ_GT, - [124590] = 3, + STATE(3324), 1, + aux_sym_string_repeat1, + [147553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, - anon_sym_EQ, - ACTIONS(3868), 4, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [124603] = 2, + STATE(1929), 2, + sym_template_string, + sym_arguments, + [147567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 5, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4439), 1, anon_sym_COLON, - [124614] = 6, + STATE(3917), 1, + sym_type_annotation, + ACTIONS(5975), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [147581] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5139), 1, - anon_sym_abstract, - ACTIONS(5453), 1, + ACTIONS(5977), 1, anon_sym_class, - STATE(2136), 1, + STATE(2463), 1, aux_sym_export_statement_repeat1, - STATE(2168), 1, + STATE(2501), 1, sym_decorator, - [124633] = 2, + [147597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 5, - anon_sym_EQ, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3084), 1, + anon_sym_GT, + ACTIONS(5979), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124644] = 2, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [147613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124655] = 2, + ACTIONS(5260), 1, + anon_sym_EQ_GT, + ACTIONS(5911), 1, + anon_sym_AMP, + ACTIONS(5913), 1, + anon_sym_PIPE, + ACTIONS(5915), 1, + anon_sym_extends, + [147629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(5981), 1, anon_sym_COLON, - anon_sym_QMARK, - [124666] = 2, + [147645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5983), 1, + anon_sym_EQ_GT, + ACTIONS(3451), 3, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_QMARK, - [124677] = 2, - ACTIONS(3), 1, + [147657] = 5, + ACTIONS(5967), 1, + anon_sym_SQUOTE, + ACTIONS(5973), 1, sym_comment, - ACTIONS(4928), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124688] = 2, + ACTIONS(5985), 1, + aux_sym_string_token2, + ACTIONS(5987), 1, + sym_escape_sequence, + STATE(3325), 1, + aux_sym_string_repeat2, + [147673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124699] = 2, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(118), 2, + sym_template_string, + sym_arguments, + [147687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(5989), 1, anon_sym_COLON, - anon_sym_QMARK, - [124710] = 2, + [147703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124721] = 2, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(5991), 1, + anon_sym_COLON, + [147719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124732] = 2, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + STATE(2045), 2, + sym_template_string, + sym_arguments, + [147733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(5993), 1, anon_sym_COLON, - anon_sym_QMARK, - [124743] = 2, + [147749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 5, - anon_sym_EQ, + ACTIONS(2654), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [124754] = 4, + ACTIONS(4465), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4493), 1, + anon_sym_LBRACE, + STATE(3407), 1, + aux_sym_extends_clause_repeat1, + [147765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LBRACE, - STATE(92), 1, - sym_statement_block, - ACTIONS(5315), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [124769] = 6, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(5995), 1, + anon_sym_RBRACK, + [147781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(5997), 1, + anon_sym_RBRACK, + [147797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3233), 1, - sym__call_signature, - STATE(3427), 1, + STATE(3800), 1, sym_type_parameters, - [124788] = 2, + STATE(4004), 1, + sym_formal_parameters, + [147813] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(5999), 1, + anon_sym_DQUOTE, + ACTIONS(6001), 1, + aux_sym_string_token1, + ACTIONS(6003), 1, + sym_escape_sequence, + STATE(3507), 1, + aux_sym_string_repeat1, + [147829] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(5999), 1, + anon_sym_SQUOTE, + ACTIONS(6005), 1, + aux_sym_string_token2, + ACTIONS(6007), 1, + sym_escape_sequence, + STATE(3499), 1, + aux_sym_string_repeat2, + [147845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124799] = 2, + ACTIONS(5630), 1, + sym_identifier, + STATE(3896), 1, + sym__import_export_specifier, + ACTIONS(5636), 2, + anon_sym_type, + anon_sym_typeof, + [147859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124810] = 2, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(2076), 2, + sym_template_string, + sym_arguments, + [147873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124821] = 6, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(112), 2, + sym_template_string, + sym_arguments, + [147887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - STATE(3427), 1, - sym_type_parameters, - STATE(3432), 1, - sym__call_signature, - [124840] = 2, + STATE(2070), 2, + sym_template_string, + sym_arguments, + [147901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 5, - sym__automatic_semicolon, + ACTIONS(6009), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124851] = 5, + STATE(3330), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4659), 2, + anon_sym_LBRACE, + anon_sym_implements, + [147915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6012), 1, + anon_sym_LBRACK, + ACTIONS(1856), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147927] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(110), 2, + sym_template_string, + sym_arguments, + [147941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5455), 2, - anon_sym_COMMA, + ACTIONS(6014), 1, + anon_sym_COLON, + [147957] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6016), 1, anon_sym_RBRACK, - [124868] = 2, + [147973] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6018), 1, + anon_sym_SQUOTE, + ACTIONS(6020), 1, + aux_sym_string_token2, + ACTIONS(6022), 1, + sym_escape_sequence, + STATE(3353), 1, + aux_sym_string_repeat2, + [147989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 5, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6024), 1, + anon_sym_RPAREN, + [148005] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6018), 1, + anon_sym_DQUOTE, + ACTIONS(6026), 1, + aux_sym_string_token1, + ACTIONS(6028), 1, + sym_escape_sequence, + STATE(3352), 1, + aux_sym_string_repeat1, + [148021] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3017), 1, + anon_sym_GT, + ACTIONS(6030), 1, + anon_sym_COMMA, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [148037] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 1, anon_sym_COMMA, + STATE(3339), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6035), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - [124879] = 4, + [148051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4782), 1, - anon_sym_EQ_GT, - ACTIONS(5301), 1, + ACTIONS(4548), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [124894] = 4, + anon_sym_RBRACK, + [148061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(6037), 1, anon_sym_COLON, - ACTIONS(5457), 1, - anon_sym_EQ_GT, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [124909] = 2, + [148077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 5, - sym__automatic_semicolon, + ACTIONS(6039), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3513), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6041), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124920] = 4, + [148091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5459), 1, + ACTIONS(4897), 1, anon_sym_EQ_GT, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [124935] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(3451), 3, anon_sym_LPAREN, - STATE(2290), 1, - sym_formal_parameters, - STATE(3124), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [124954] = 4, + anon_sym_LT, + anon_sym_QMARK, + [148103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(5102), 1, anon_sym_EQ, - STATE(3123), 1, - sym__initializer, - ACTIONS(5461), 3, - sym__automatic_semicolon, + STATE(3770), 1, + sym_default_type, + ACTIONS(6043), 2, + anon_sym_COMMA, + anon_sym_GT, + [148117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6039), 1, anon_sym_COMMA, + STATE(3433), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6045), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [124969] = 4, + [148131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(6047), 1, + anon_sym_COLON, + [148147] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(2071), 2, + sym_template_string, + sym_arguments, + [148161] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 1, + sym_identifier, + STATE(3937), 1, + sym__import_export_specifier, + ACTIONS(5636), 2, + anon_sym_type, + anon_sym_typeof, + [148175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(2068), 2, + sym_template_string, + sym_arguments, + [148189] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_BQUOTE, + ACTIONS(2606), 1, + anon_sym_LPAREN, + STATE(116), 2, + sym_template_string, + sym_arguments, + [148203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6049), 1, + anon_sym_class, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + [148219] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6001), 1, + aux_sym_string_token1, + ACTIONS(6003), 1, + sym_escape_sequence, + ACTIONS(6051), 1, + anon_sym_DQUOTE, + STATE(3507), 1, + aux_sym_string_repeat1, + [148235] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6005), 1, + aux_sym_string_token2, + ACTIONS(6007), 1, + sym_escape_sequence, + ACTIONS(6051), 1, + anon_sym_SQUOTE, + STATE(3499), 1, + aux_sym_string_repeat2, + [148251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + STATE(1997), 2, + sym_template_string, + sym_arguments, + [148265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1587), 2, + sym_template_string, + sym_arguments, + [148279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1589), 2, + sym_template_string, + sym_arguments, + [148293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5482), 1, anon_sym_EQ, - STATE(3121), 1, + STATE(3939), 1, sym__initializer, - ACTIONS(5463), 3, - sym__automatic_semicolon, + ACTIONS(6053), 2, anon_sym_COMMA, - anon_sym_SEMI, - [124984] = 4, + anon_sym_RPAREN, + [148307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6055), 1, + anon_sym_RBRACK, + [148323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + STATE(1983), 2, + sym_template_string, + sym_arguments, + [148337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + STATE(1727), 2, + sym_template_string, + sym_arguments, + [148351] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6057), 1, + anon_sym_RBRACK, + [148367] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(2062), 2, + sym_template_string, + sym_arguments, + [148381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, - anon_sym_EQ, - STATE(3097), 1, - sym__initializer, - ACTIONS(5465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124999] = 6, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(2058), 2, + sym_template_string, + sym_arguments, + [148395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(5305), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, anon_sym_LPAREN, - STATE(2343), 1, - sym_formal_parameters, - STATE(2851), 1, - sym__call_signature, - STATE(3389), 1, - sym_type_parameters, - [125018] = 4, + STATE(2040), 2, + sym_template_string, + sym_arguments, + [148409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_LBRACE, - STATE(2110), 1, - sym_statement_block, - ACTIONS(4884), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125033] = 4, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(2031), 2, + sym_template_string, + sym_arguments, + [148423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3411), 1, anon_sym_LBRACE, - STATE(1843), 1, - sym_statement_block, - ACTIONS(5351), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [125048] = 5, + ACTIONS(5232), 1, + anon_sym_STAR, + STATE(4174), 2, + sym_namespace_import, + sym_named_imports, + [148437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(5070), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(5072), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5467), 2, - anon_sym_COMMA, - anon_sym_GT, - [125065] = 2, + ACTIONS(6059), 1, + anon_sym_COLON, + [148453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1161), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125076] = 5, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6061), 1, + anon_sym_RBRACK, + [148469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(5070), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(5072), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5325), 2, - anon_sym_COMMA, - anon_sym_GT, - [125093] = 4, + ACTIONS(6063), 1, + anon_sym_RBRACK, + [148485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_LBRACE, - STATE(2096), 1, - sym_statement_block, - ACTIONS(4926), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125108] = 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3767), 1, + sym_type_parameters, + STATE(4283), 1, + sym_formal_parameters, + [148501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5469), 1, - anon_sym_EQ_GT, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [125123] = 2, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1404), 2, + sym_template_string, + sym_arguments, + [148515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125134] = 6, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1467), 2, + sym_template_string, + sym_arguments, + [148529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, anon_sym_LPAREN, - STATE(2290), 1, - sym_formal_parameters, - STATE(2801), 1, - sym__call_signature, - STATE(3397), 1, - sym_type_parameters, - [125153] = 2, + STATE(1468), 2, + sym_template_string, + sym_arguments, + [148543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5471), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125164] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6065), 1, + anon_sym_RPAREN, + [148559] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6067), 1, + anon_sym_DQUOTE, + ACTIONS(6069), 1, + aux_sym_string_token1, + ACTIONS(6071), 1, + sym_escape_sequence, + STATE(3391), 1, + aux_sym_string_repeat1, + [148575] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6067), 1, + anon_sym_SQUOTE, + ACTIONS(6073), 1, + aux_sym_string_token2, + ACTIONS(6075), 1, + sym_escape_sequence, + STATE(3392), 1, + aux_sym_string_repeat2, + [148591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5473), 1, - anon_sym_EQ_GT, - STATE(3441), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [125179] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6077), 1, + anon_sym_RBRACK, + [148607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(5475), 1, - anon_sym_EQ_GT, - STATE(3377), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [125194] = 2, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6079), 1, + anon_sym_QMARK, + [148623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 5, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [125205] = 4, + STATE(1579), 2, + sym_template_string, + sym_arguments, + [148637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_LBRACE, - STATE(2097), 1, - sym_statement_block, - ACTIONS(4924), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125220] = 2, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6081), 1, + anon_sym_RPAREN, + [148653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125231] = 2, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1596), 2, + sym_template_string, + sym_arguments, + [148667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125242] = 2, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6083), 1, + anon_sym_QMARK, + [148683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 5, - sym__automatic_semicolon, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2945), 1, + anon_sym_GT, + ACTIONS(6085), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125253] = 2, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [148699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 5, - sym__automatic_semicolon, + ACTIONS(2787), 1, + anon_sym_GT, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(6087), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125264] = 2, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [148715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125275] = 4, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6089), 1, + anon_sym_QMARK, + [148731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LBRACE, - STATE(97), 1, - sym_statement_block, - ACTIONS(5331), 3, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_SEMI, - [125290] = 5, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1480), 2, + sym_template_string, + sym_arguments, + [148745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5479), 1, - anon_sym_RBRACK, - [125306] = 5, + ACTIONS(6091), 1, + anon_sym_QMARK, + [148761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5481), 1, - anon_sym_RPAREN, - [125322] = 5, + ACTIONS(6093), 1, + anon_sym_QMARK, + [148777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5911), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5913), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5915), 1, anon_sym_extends, - ACTIONS(5483), 1, - anon_sym_QMARK, - [125338] = 5, - ACTIONS(5485), 1, - anon_sym_DQUOTE, - ACTIONS(5487), 1, + [148793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6095), 1, + anon_sym_from, + STATE(3792), 1, + sym__from_clause, + ACTIONS(6097), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148807] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6001), 1, aux_sym_string_token1, - ACTIONS(5490), 1, + ACTIONS(6003), 1, sym_escape_sequence, - ACTIONS(5493), 1, - sym_comment, - STATE(2892), 1, + ACTIONS(6099), 1, + anon_sym_DQUOTE, + STATE(3507), 1, aux_sym_string_repeat1, - [125354] = 5, + [148823] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6005), 1, + aux_sym_string_token2, + ACTIONS(6007), 1, + sym_escape_sequence, + ACTIONS(6099), 1, + anon_sym_SQUOTE, + STATE(3499), 1, + aux_sym_string_repeat2, + [148839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5495), 1, - anon_sym_QMARK, - [125370] = 5, + ACTIONS(6101), 1, + anon_sym_COLON, + [148855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5497), 1, + ACTIONS(6103), 1, anon_sym_QMARK, - [125386] = 5, + [148871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5499), 1, + ACTIONS(6105), 1, anon_sym_COLON, - [125402] = 5, + [148887] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3922), 1, + sym_type_parameters, + STATE(4131), 1, + sym_formal_parameters, + [148903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + STATE(1752), 2, + sym_template_string, + sym_arguments, + [148917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5501), 1, - anon_sym_QMARK, - [125418] = 5, + ACTIONS(6107), 1, + anon_sym_RBRACK, + [148933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5503), 1, - anon_sym_COLON, - [125434] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5505), 1, - anon_sym_DQUOTE, - ACTIONS(5507), 1, - aux_sym_string_token1, - ACTIONS(5509), 1, - sym_escape_sequence, - STATE(2916), 1, - aux_sym_string_repeat1, - [125450] = 5, + ACTIONS(6109), 1, + anon_sym_RPAREN, + [148949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(1856), 3, anon_sym_AMP, - ACTIONS(4750), 1, anon_sym_PIPE, - ACTIONS(4752), 1, anon_sym_extends, - ACTIONS(5511), 1, - anon_sym_RBRACK, - [125466] = 5, + [148961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5513), 1, + ACTIONS(6113), 1, anon_sym_QMARK, - [125482] = 5, + [148977] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(6115), 1, + anon_sym_COLON, + [148993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1956), 2, + sym_template_string, + sym_arguments, + [149007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1958), 2, + sym_template_string, + sym_arguments, + [149021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 1, + anon_sym_BQUOTE, + ACTIONS(2623), 1, + anon_sym_LPAREN, + STATE(1986), 2, + sym_template_string, + sym_arguments, + [149035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, + ACTIONS(2654), 1, anon_sym_COMMA, - ACTIONS(5515), 1, + ACTIONS(6117), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(6119), 1, anon_sym_LBRACE_PIPE, - STATE(3020), 1, + STATE(3516), 1, aux_sym_extends_clause_repeat1, - [125498] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5505), 1, - anon_sym_SQUOTE, - ACTIONS(5519), 1, - aux_sym_string_token2, - ACTIONS(5521), 1, - sym_escape_sequence, - STATE(2917), 1, - aux_sym_string_repeat2, - [125514] = 5, - ACTIONS(5493), 1, + [149051] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 1, - anon_sym_DQUOTE, - ACTIONS(5525), 1, - aux_sym_string_token1, - ACTIONS(5527), 1, - sym_escape_sequence, - STATE(2969), 1, - aux_sym_string_repeat1, - [125530] = 5, + ACTIONS(2654), 1, + anon_sym_COMMA, + ACTIONS(6121), 1, + anon_sym_LBRACE, + ACTIONS(6123), 1, + anon_sym_LBRACE_PIPE, + STATE(3516), 1, + aux_sym_extends_clause_repeat1, + [149067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5529), 1, - anon_sym_QMARK, - [125546] = 5, - ACTIONS(5493), 1, + ACTIONS(6125), 1, + anon_sym_RPAREN, + [149083] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 1, - anon_sym_SQUOTE, - ACTIONS(5531), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3950), 1, + sym_type_parameters, + STATE(4265), 1, + sym_formal_parameters, + [149099] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + STATE(1753), 2, + sym_template_string, + sym_arguments, + [149113] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6005), 1, aux_sym_string_token2, - ACTIONS(5533), 1, + ACTIONS(6007), 1, sym_escape_sequence, - STATE(2971), 1, + ACTIONS(6127), 1, + anon_sym_SQUOTE, + STATE(3499), 1, aux_sym_string_repeat2, - [125562] = 5, + [149129] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6001), 1, + aux_sym_string_token1, + ACTIONS(6003), 1, + sym_escape_sequence, + ACTIONS(6127), 1, + anon_sym_DQUOTE, + STATE(3507), 1, + aux_sym_string_repeat1, + [149145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5535), 1, + ACTIONS(6129), 1, anon_sym_QMARK, - [125578] = 5, + [149161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(6131), 1, + anon_sym_LBRACK, + ACTIONS(1856), 3, anon_sym_AMP, - ACTIONS(4888), 1, anon_sym_PIPE, - ACTIONS(4890), 1, anon_sym_extends, - ACTIONS(5537), 1, - anon_sym_QMARK, - [125594] = 5, + [149173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5539), 1, - anon_sym_QMARK, - [125610] = 5, + ACTIONS(6133), 1, + anon_sym_RBRACK, + [149189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, anon_sym_LPAREN, - STATE(3295), 1, - sym_type_parameters, - STATE(3513), 1, - sym_formal_parameters, - [125626] = 5, + STATE(1970), 2, + sym_template_string, + sym_arguments, + [149203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5541), 1, - anon_sym_QMARK, - [125642] = 5, + ACTIONS(6135), 1, + anon_sym_RPAREN, + [149219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3305), 1, - sym_type_parameters, - STATE(3493), 1, - sym_formal_parameters, - [125658] = 5, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6137), 1, + anon_sym_RBRACK, + [149235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5543), 1, + ACTIONS(6139), 1, anon_sym_QMARK, - [125674] = 5, + [149251] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3313), 1, - sym_type_parameters, - STATE(3488), 1, - sym_formal_parameters, - [125690] = 5, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6141), 1, + anon_sym_QMARK, + [149267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(5545), 1, - anon_sym_LBRACE, - ACTIONS(5547), 1, - anon_sym_LBRACE_PIPE, - STATE(3020), 1, - aux_sym_extends_clause_repeat1, - [125706] = 5, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1971), 2, + sym_template_string, + sym_arguments, + [149281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4888), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4890), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5549), 1, - anon_sym_QMARK, - [125722] = 5, - ACTIONS(5493), 1, + ACTIONS(6143), 1, + anon_sym_COLON, + [149297] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(6145), 1, anon_sym_DQUOTE, - ACTIONS(5553), 1, + ACTIONS(6147), 1, aux_sym_string_token1, - ACTIONS(5555), 1, + ACTIONS(6149), 1, sym_escape_sequence, - STATE(2892), 1, + STATE(3431), 1, aux_sym_string_repeat1, - [125738] = 5, - ACTIONS(5493), 1, + [149313] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(6145), 1, anon_sym_SQUOTE, - ACTIONS(5557), 1, + ACTIONS(6151), 1, aux_sym_string_token2, - ACTIONS(5559), 1, + ACTIONS(6153), 1, sym_escape_sequence, - STATE(3013), 1, + STATE(3432), 1, aux_sym_string_repeat2, - [125754] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3321), 1, - sym_type_parameters, - STATE(3570), 1, - sym_formal_parameters, - [125770] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ, - STATE(3266), 1, - sym__initializer, - ACTIONS(5561), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [125784] = 5, + [149329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_EQ_GT, - ACTIONS(5441), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5445), 1, + ACTIONS(5468), 1, anon_sym_extends, - [125800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4261), 1, - anon_sym_LPAREN, - ACTIONS(4263), 1, - anon_sym_BQUOTE, - STATE(1545), 2, - sym_template_string, - sym_arguments, - [125814] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(2998), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5547), 2, - anon_sym_LBRACE, - anon_sym_implements, - [125828] = 4, + ACTIONS(6155), 1, + anon_sym_QMARK, + [149345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(2998), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5517), 2, - anon_sym_LBRACE, - anon_sym_implements, - [125842] = 2, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6157), 1, + anon_sym_QMARK, + [149361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [125852] = 4, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6159), 1, + anon_sym_QMARK, + [149377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_from, - STATE(3364), 1, - sym__from_clause, - ACTIONS(5567), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [125866] = 5, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6161), 1, + anon_sym_QMARK, + [149393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5569), 1, - anon_sym_RBRACK, - [125882] = 5, + ACTIONS(6163), 1, + anon_sym_QMARK, + [149409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5571), 1, - anon_sym_RBRACK, - [125898] = 4, - ACTIONS(3), 1, + ACTIONS(6165), 1, + anon_sym_COLON, + [149425] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ, - STATE(3421), 1, - sym__initializer, - ACTIONS(5573), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [125912] = 5, - ACTIONS(3), 1, + ACTIONS(6001), 1, + aux_sym_string_token1, + ACTIONS(6003), 1, + sym_escape_sequence, + ACTIONS(6167), 1, + anon_sym_DQUOTE, + STATE(3507), 1, + aux_sym_string_repeat1, + [149441] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5575), 1, - anon_sym_class, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - [125928] = 4, + ACTIONS(6005), 1, + aux_sym_string_token2, + ACTIONS(6007), 1, + sym_escape_sequence, + ACTIONS(6167), 1, + anon_sym_SQUOTE, + STATE(3499), 1, + aux_sym_string_repeat2, + [149457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6039), 1, anon_sym_COMMA, - STATE(2992), 1, + STATE(3339), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5579), 2, + ACTIONS(6169), 2, sym__automatic_semicolon, anon_sym_SEMI, - [125942] = 4, + [149471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(6039), 1, anon_sym_COMMA, - STATE(2931), 1, + STATE(3339), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5584), 2, + ACTIONS(6171), 2, sym__automatic_semicolon, anon_sym_SEMI, - [125956] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5586), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - aux_sym_string_token1, - ACTIONS(5590), 1, - sym_escape_sequence, - STATE(2958), 1, - aux_sym_string_repeat1, - [125972] = 5, + [149485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_RPAREN, - [125988] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5586), 1, - anon_sym_SQUOTE, - ACTIONS(5594), 1, - aux_sym_string_token2, - ACTIONS(5596), 1, - sym_escape_sequence, - STATE(2960), 1, - aux_sym_string_repeat2, - [126004] = 5, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3788), 1, + sym_type_parameters, + STATE(4009), 1, + sym_formal_parameters, + [149501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, - anon_sym_AMP, - ACTIONS(4888), 1, - anon_sym_PIPE, - ACTIONS(4890), 1, - anon_sym_extends, - ACTIONS(5598), 1, - anon_sym_QMARK, - [126020] = 4, + ACTIONS(5482), 1, + anon_sym_EQ, + STATE(3762), 1, + sym__initializer, + ACTIONS(6173), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [149515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6039), 1, anon_sym_COMMA, - STATE(2993), 1, + STATE(3339), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5600), 2, + ACTIONS(6175), 2, sym__automatic_semicolon, anon_sym_SEMI, - [126034] = 4, + [149529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(2923), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3587), 2, - anon_sym_LBRACE, - anon_sym_implements, - [126048] = 4, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6177), 1, + anon_sym_QMARK, + [149545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_from, - STATE(3435), 1, - sym__from_clause, - ACTIONS(5602), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [126062] = 5, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3978), 1, + sym_type_parameters, + STATE(4267), 1, + sym_formal_parameters, + [149561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3795), 1, sym_type_parameters, - STATE(3727), 1, + STATE(4151), 1, sym_formal_parameters, - [126078] = 5, + [149577] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1908), 2, + sym_template_string, + sym_arguments, + [149591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(6179), 1, + anon_sym_LBRACK, + ACTIONS(1856), 3, anon_sym_AMP, - ACTIONS(4750), 1, anon_sym_PIPE, - ACTIONS(4752), 1, anon_sym_extends, - ACTIONS(5604), 1, - anon_sym_RBRACK, - [126094] = 4, + [149603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - anon_sym_COMMA, - STATE(2965), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [126108] = 4, + ACTIONS(2050), 1, + anon_sym_BQUOTE, + ACTIONS(2608), 1, + anon_sym_LPAREN, + STATE(1679), 2, + sym_template_string, + sym_arguments, + [149617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - anon_sym_COMMA, - STATE(2966), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5608), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [126122] = 4, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6181), 1, + anon_sym_QMARK, + [149633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, - anon_sym_COLON, - STATE(3405), 1, - sym_type_annotation, - ACTIONS(5610), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [126136] = 5, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3798), 1, + sym_type_parameters, + STATE(4022), 1, + sym_formal_parameters, + [149649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5612), 1, - anon_sym_RBRACK, - [126152] = 5, + ACTIONS(6183), 1, + anon_sym_COLON, + [149665] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6185), 1, + anon_sym_SQUOTE, + ACTIONS(6187), 1, + aux_sym_string_token2, + ACTIONS(6189), 1, + sym_escape_sequence, + STATE(3411), 1, + aux_sym_string_repeat2, + [149681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5614), 1, - anon_sym_RBRACK, - [126168] = 5, - ACTIONS(3), 1, + ACTIONS(6191), 1, + anon_sym_QMARK, + [149697] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3451), 1, - sym_type_parameters, - STATE(3612), 1, - sym_formal_parameters, - [126184] = 5, + ACTIONS(6185), 1, + anon_sym_DQUOTE, + ACTIONS(6193), 1, + aux_sym_string_token1, + ACTIONS(6195), 1, + sym_escape_sequence, + STATE(3412), 1, + aux_sym_string_repeat1, + [149713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(3802), 1, sym_type_parameters, - STATE(3687), 1, + STATE(4054), 1, sym_formal_parameters, - [126200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5616), 1, - anon_sym_COLON, - [126216] = 3, + [149729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_LBRACK, - ACTIONS(1739), 3, + ACTIONS(5464), 1, anon_sym_AMP, + ACTIONS(5466), 1, anon_sym_PIPE, + ACTIONS(5468), 1, anon_sym_extends, - [126228] = 5, + ACTIONS(6197), 1, + anon_sym_QMARK, + [149745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3807), 1, sym_type_parameters, - STATE(3754), 1, + STATE(4088), 1, sym_formal_parameters, - [126244] = 5, + [149761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3237), 1, + STATE(3993), 1, sym_type_parameters, - STATE(3704), 1, + STATE(4275), 1, sym_formal_parameters, - [126260] = 5, + [149777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(6199), 1, + anon_sym_LBRACK, + ACTIONS(1856), 3, anon_sym_AMP, - ACTIONS(4750), 1, anon_sym_PIPE, - ACTIONS(4752), 1, anon_sym_extends, - ACTIONS(5620), 1, - anon_sym_COLON, - [126276] = 3, + [149789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 1, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1392), 2, + sym_template_string, + sym_arguments, + [149803] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2631), 1, + anon_sym_COMMA, + STATE(3473), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(4465), 2, + anon_sym_LBRACE, + anon_sym_implements, + [149817] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(2909), 1, + anon_sym_GT, + ACTIONS(6201), 1, + anon_sym_COMMA, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [149833] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6203), 1, + anon_sym_export, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + [149849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6205), 1, anon_sym_LBRACK, - ACTIONS(1739), 3, + ACTIONS(1856), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [126288] = 5, - ACTIONS(3), 1, + [149861] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3471), 1, - sym_type_parameters, - STATE(3594), 1, - sym_formal_parameters, - [126304] = 5, + ACTIONS(6005), 1, + aux_sym_string_token2, + ACTIONS(6007), 1, + sym_escape_sequence, + ACTIONS(6207), 1, + anon_sym_SQUOTE, + STATE(3499), 1, + aux_sym_string_repeat2, + [149877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5624), 1, + ACTIONS(6209), 1, anon_sym_COLON, - [126320] = 3, + [149893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5626), 1, - anon_sym_LBRACK, - ACTIONS(1739), 3, + ACTIONS(5236), 1, + anon_sym_EQ_GT, + ACTIONS(5911), 1, anon_sym_AMP, + ACTIONS(5913), 1, anon_sym_PIPE, + ACTIONS(5915), 1, anon_sym_extends, - [126332] = 5, + [149909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3474), 1, - sym_type_parameters, - STATE(3606), 1, - sym_formal_parameters, - [126348] = 5, - ACTIONS(5493), 1, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3112), 1, + anon_sym_GT, + ACTIONS(6211), 1, + anon_sym_COMMA, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [149925] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(6001), 1, aux_sym_string_token1, - ACTIONS(5555), 1, + ACTIONS(6003), 1, sym_escape_sequence, - ACTIONS(5628), 1, + ACTIONS(6207), 1, anon_sym_DQUOTE, - STATE(2892), 1, + STATE(3507), 1, aux_sym_string_repeat1, - [126364] = 5, + [149941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5630), 1, + ACTIONS(6213), 1, + anon_sym_COLON, + [149957] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5831), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + ACTIONS(6215), 1, + anon_sym_COLON, + [149973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(6217), 1, anon_sym_RBRACK, - [126380] = 5, - ACTIONS(5493), 1, + [149989] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, - aux_sym_string_token2, - ACTIONS(5559), 1, - sym_escape_sequence, - ACTIONS(5628), 1, - anon_sym_SQUOTE, - STATE(3013), 1, - aux_sym_string_repeat2, - [126396] = 5, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3999), 1, + sym_type_parameters, + STATE(4163), 1, + sym_formal_parameters, + [150005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5632), 1, - anon_sym_COLON, - [126412] = 4, + ACTIONS(6219), 1, + anon_sym_RBRACK, + [150021] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(2425), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - STATE(1186), 2, + STATE(1606), 2, sym_template_string, sym_arguments, - [126426] = 3, + [150035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, - anon_sym_LBRACK, - ACTIONS(1739), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126438] = 2, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3013), 1, + anon_sym_GT, + ACTIONS(6221), 1, + anon_sym_COMMA, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [150051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2631), 1, + anon_sym_COMMA, + STATE(3330), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6119), 2, anon_sym_LBRACE, - anon_sym_SEMI, - [126448] = 4, + anon_sym_implements, + [150065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(2631), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5636), 2, + STATE(3330), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6123), 2, + anon_sym_LBRACE, + anon_sym_implements, + [150079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1904), 2, + sym_template_string, + sym_arguments, + [150093] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3992), 1, + sym_type_parameters, + STATE(4292), 1, + sym_formal_parameters, + [150109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [126462] = 4, + [150119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5638), 2, + ACTIONS(5504), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [126476] = 5, + [150129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1605), 2, + sym_template_string, + sym_arguments, + [150143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5640), 1, - anon_sym_COLON, - [126492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5028), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [126502] = 5, - ACTIONS(5493), 1, + ACTIONS(6223), 1, + anon_sym_RBRACK, + [150159] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(6225), 1, + anon_sym_DQUOTE, + ACTIONS(6227), 1, aux_sym_string_token1, - ACTIONS(5555), 1, + ACTIONS(6229), 1, sym_escape_sequence, - ACTIONS(5642), 1, - anon_sym_DQUOTE, - STATE(2892), 1, + STATE(3529), 1, aux_sym_string_repeat1, - [126518] = 5, - ACTIONS(3), 1, + [150175] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3423), 1, - sym_type_parameters, - STATE(3741), 1, - sym_formal_parameters, - [126534] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5557), 1, + ACTIONS(6225), 1, + anon_sym_SQUOTE, + ACTIONS(6231), 1, aux_sym_string_token2, - ACTIONS(5559), 1, + ACTIONS(6233), 1, sym_escape_sequence, - ACTIONS(5642), 1, - anon_sym_SQUOTE, - STATE(3013), 1, + STATE(3532), 1, aux_sym_string_repeat2, - [126550] = 5, + [150191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5644), 1, - anon_sym_class, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - [126566] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5646), 1, - anon_sym_RPAREN, - [126582] = 5, - ACTIONS(5493), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3986), 1, + sym_type_parameters, + STATE(4254), 1, + sym_formal_parameters, + [150207] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5648), 1, + ACTIONS(6235), 1, anon_sym_DQUOTE, - ACTIONS(5650), 1, + ACTIONS(6237), 1, aux_sym_string_token1, - ACTIONS(5652), 1, + ACTIONS(6239), 1, sym_escape_sequence, - STATE(3002), 1, + STATE(3464), 1, aux_sym_string_repeat1, - [126598] = 5, - ACTIONS(5493), 1, + [150223] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(1769), 2, + sym_template_string, + sym_arguments, + [150237] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(5654), 1, + ACTIONS(6241), 1, aux_sym_string_token2, - ACTIONS(5656), 1, + ACTIONS(6243), 1, sym_escape_sequence, - STATE(3003), 1, + STATE(3460), 1, aux_sym_string_repeat2, - [126614] = 5, + [150253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1933), 2, + sym_template_string, + sym_arguments, + [150267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5464), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5468), 1, anon_sym_extends, - ACTIONS(5658), 1, - anon_sym_COLON, - [126630] = 5, + ACTIONS(6245), 1, + anon_sym_QMARK, + [150283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5660), 1, - anon_sym_RBRACK, - [126646] = 4, + ACTIONS(6247), 1, + anon_sym_COLON, + [150299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3856), 1, + sym_type_parameters, + STATE(4216), 1, + sym_formal_parameters, + [150315] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3982), 1, + sym_type_parameters, + STATE(4110), 1, + sym_formal_parameters, + [150331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, anon_sym_BQUOTE, - ACTIONS(2437), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - STATE(1320), 2, + STATE(1848), 2, sym_template_string, sym_arguments, - [126660] = 5, + [150345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5662), 1, - anon_sym_RBRACK, - [126676] = 4, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1575), 2, + sym_template_string, + sym_arguments, + [150359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - sym_identifier, - STATE(3443), 1, - sym__import_export_specifier, - ACTIONS(5114), 2, - anon_sym_type, - anon_sym_typeof, - [126690] = 3, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1570), 2, + sym_template_string, + sym_arguments, + [150373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_EQ_GT, - ACTIONS(3203), 3, - anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_QMARK, - [126702] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3977), 1, + sym_type_parameters, + STATE(4153), 1, + sym_formal_parameters, + [150389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - anon_sym_EQ_GT, - ACTIONS(3203), 3, - anon_sym_LPAREN, + ACTIONS(1928), 1, anon_sym_LT, - anon_sym_QMARK, - [126714] = 5, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3865), 1, + sym_type_parameters, + STATE(4148), 1, + sym_formal_parameters, + [150405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(4826), 1, - anon_sym_LBRACE, - [126730] = 5, + ACTIONS(6249), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [150415] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(5666), 1, + ACTIONS(6251), 1, anon_sym_COLON, - [126746] = 5, + [150431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5833), 1, anon_sym_extends, - ACTIONS(4808), 1, - anon_sym_LBRACE, - [126762] = 2, + ACTIONS(6253), 1, + anon_sym_COLON, + [150447] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6255), 1, + anon_sym_SQUOTE, + ACTIONS(6257), 1, + aux_sym_string_token2, + ACTIONS(6260), 1, + sym_escape_sequence, + STATE(3499), 1, + aux_sym_string_repeat2, + [150463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 4, + ACTIONS(5771), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [126772] = 5, + [150473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5668), 1, - anon_sym_RBRACK, - [126788] = 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3972), 1, + sym_type_parameters, + STATE(4246), 1, + sym_formal_parameters, + [150489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - sym_identifier, - STATE(3440), 1, - sym__import_export_specifier, - ACTIONS(5114), 2, - anon_sym_type, - anon_sym_typeof, - [126802] = 5, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1399), 1, + anon_sym_LPAREN, + STATE(1508), 2, + sym_template_string, + sym_arguments, + [150503] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 1, - anon_sym_EQ_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_PIPE, - ACTIONS(5445), 1, - anon_sym_extends, - [126818] = 3, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6263), 1, + anon_sym_class, + STATE(2463), 1, + aux_sym_export_statement_repeat1, + STATE(2501), 1, + sym_decorator, + [150519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACK, - ACTIONS(1739), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126830] = 4, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1395), 2, + sym_template_string, + sym_arguments, + [150533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACE, - ACTIONS(4798), 1, - anon_sym_STAR, - STATE(3580), 2, - sym_namespace_import, - sym_named_imports, - [126844] = 4, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_LPAREN, + STATE(2810), 1, + sym_formal_parameters, + STATE(3957), 1, + sym_type_parameters, + [150549] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6005), 1, + aux_sym_string_token2, + ACTIONS(6007), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + anon_sym_SQUOTE, + STATE(3499), 1, + aux_sym_string_repeat2, + [150565] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6267), 1, + anon_sym_DQUOTE, + ACTIONS(6269), 1, + aux_sym_string_token1, + ACTIONS(6272), 1, + sym_escape_sequence, + STATE(3507), 1, + aux_sym_string_repeat1, + [150581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(3019), 1, + anon_sym_GT, + ACTIONS(6275), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [126858] = 4, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + [150597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3920), 1, + sym_type_parameters, + STATE(4071), 1, + sym_formal_parameters, + [150613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6277), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5674), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [126872] = 5, + STATE(3510), 1, + aux_sym_array_repeat1, + ACTIONS(4673), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [150627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1928), 1, anon_sym_LT, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3268), 1, + STATE(3952), 1, sym_type_parameters, - STATE(3592), 1, + STATE(4093), 1, sym_formal_parameters, - [126888] = 3, + [150643] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6001), 1, + aux_sym_string_token1, + ACTIONS(6003), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + anon_sym_DQUOTE, + STATE(3507), 1, + aux_sym_string_repeat1, + [150659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5676), 1, - anon_sym_LBRACK, - ACTIONS(1739), 3, + ACTIONS(6039), 1, + anon_sym_COMMA, + STATE(3339), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6280), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, anon_sym_AMP, + ACTIONS(5194), 1, anon_sym_PIPE, + ACTIONS(5196), 1, anon_sym_extends, - [126900] = 5, + ACTIONS(6282), 1, + anon_sym_RPAREN, + [150689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5678), 1, - anon_sym_class, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - [126916] = 5, + ACTIONS(5464), 1, + anon_sym_AMP, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + ACTIONS(6284), 1, + anon_sym_QMARK, + [150705] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6286), 1, + anon_sym_COMMA, + STATE(3516), 1, + aux_sym_extends_clause_repeat1, + [150721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5192), 1, anon_sym_AMP, - ACTIONS(4750), 1, + ACTIONS(5194), 1, anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(5196), 1, anon_sym_extends, - ACTIONS(5680), 1, - anon_sym_COLON, - [126932] = 4, + ACTIONS(5260), 1, + anon_sym_LBRACE, + [150737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, + ACTIONS(6039), 1, anon_sym_COMMA, - STATE(2998), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3763), 2, + STATE(3434), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6289), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6039), 1, + anon_sym_COMMA, + STATE(3437), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6291), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + ACTIONS(5236), 1, anon_sym_LBRACE, - anon_sym_implements, - [126946] = 5, + [150781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(6293), 1, + anon_sym_LBRACK, + ACTIONS(1856), 3, anon_sym_AMP, - ACTIONS(4750), 1, anon_sym_PIPE, - ACTIONS(4752), 1, anon_sym_extends, - ACTIONS(5685), 1, - anon_sym_RPAREN, - [126962] = 4, + [150793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ, - STATE(3382), 1, - sym__initializer, - ACTIONS(5687), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [126976] = 2, + ACTIONS(481), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1397), 2, + sym_template_string, + sym_arguments, + [150807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [126986] = 5, - ACTIONS(5493), 1, + ACTIONS(6095), 1, + anon_sym_from, + STATE(3990), 1, + sym__from_clause, + ACTIONS(6295), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150821] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(6297), 1, + anon_sym_DQUOTE, + ACTIONS(6299), 1, aux_sym_string_token1, - ACTIONS(5555), 1, + ACTIONS(6301), 1, sym_escape_sequence, - ACTIONS(5689), 1, - anon_sym_DQUOTE, - STATE(2892), 1, + STATE(3512), 1, aux_sym_string_repeat1, - [127002] = 5, - ACTIONS(5493), 1, + [150837] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(6303), 1, + anon_sym_COMMA, + STATE(3525), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5775), 2, + sym__call_type_arguments_closing_bracket, + anon_sym_GT, + [150851] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6297), 1, + anon_sym_SQUOTE, + ACTIONS(6306), 1, aux_sym_string_token2, - ACTIONS(5559), 1, + ACTIONS(6308), 1, sym_escape_sequence, - ACTIONS(5689), 1, - anon_sym_SQUOTE, - STATE(3013), 1, + STATE(3506), 1, aux_sym_string_repeat2, - [127018] = 5, + [150867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4810), 1, - anon_sym_EQ_GT, - ACTIONS(5441), 1, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5831), 1, anon_sym_PIPE, - ACTIONS(5445), 1, + ACTIONS(5833), 1, anon_sym_extends, - [127034] = 5, - ACTIONS(5493), 1, + ACTIONS(6310), 1, + anon_sym_COLON, + [150883] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 1, - anon_sym_DQUOTE, - ACTIONS(5693), 1, + ACTIONS(974), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(1821), 2, + sym_template_string, + sym_arguments, + [150897] = 5, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(6001), 1, aux_sym_string_token1, - ACTIONS(5695), 1, + ACTIONS(6003), 1, sym_escape_sequence, - STATE(3028), 1, + ACTIONS(6312), 1, + anon_sym_DQUOTE, + STATE(3507), 1, aux_sym_string_repeat1, - [127050] = 4, + [150913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, + ACTIONS(5482), 1, anon_sym_EQ, - STATE(3271), 1, - sym_default_type, - ACTIONS(5697), 2, + STATE(3864), 1, + sym__initializer, + ACTIONS(6314), 2, anon_sym_COMMA, - anon_sym_GT, - [127064] = 4, + anon_sym_RPAREN, + [150927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 1, - anon_sym_LPAREN, - ACTIONS(4247), 1, + ACTIONS(974), 1, anon_sym_BQUOTE, - STATE(118), 2, + ACTIONS(2548), 1, + anon_sym_LPAREN, + STATE(1816), 2, sym_template_string, sym_arguments, - [127078] = 5, - ACTIONS(5493), 1, + [150941] = 5, + ACTIONS(5973), 1, sym_comment, - ACTIONS(5691), 1, - anon_sym_SQUOTE, - ACTIONS(5699), 1, + ACTIONS(6005), 1, aux_sym_string_token2, - ACTIONS(5701), 1, + ACTIONS(6007), 1, sym_escape_sequence, - STATE(3027), 1, + ACTIONS(6312), 1, + anon_sym_SQUOTE, + STATE(3499), 1, aux_sym_string_repeat2, - [127094] = 5, + [150957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5703), 1, - anon_sym_COLON, - [127110] = 4, + ACTIONS(2144), 1, + anon_sym_while, + ACTIONS(6316), 1, + anon_sym_else, + STATE(731), 1, + sym_else_clause, + [150970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 1, + ACTIONS(433), 1, anon_sym_COMMA, - STATE(3010), 1, - aux_sym_array_repeat1, - ACTIONS(3761), 2, + ACTIONS(4613), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [127124] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5557), 1, - aux_sym_string_token2, - ACTIONS(5559), 1, - sym_escape_sequence, - ACTIONS(5708), 1, - anon_sym_SQUOTE, - STATE(3013), 1, - aux_sym_string_repeat2, - [127140] = 5, - ACTIONS(5493), 1, + STATE(3574), 1, + aux_sym_array_repeat1, + [150983] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - aux_sym_string_token1, - ACTIONS(5555), 1, - sym_escape_sequence, - ACTIONS(5708), 1, - anon_sym_DQUOTE, - STATE(2892), 1, - aux_sym_string_repeat1, - [127156] = 5, - ACTIONS(5493), 1, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(4613), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_array_repeat1, + [150996] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5710), 1, - anon_sym_SQUOTE, - ACTIONS(5712), 1, - aux_sym_string_token2, - ACTIONS(5715), 1, - sym_escape_sequence, - STATE(3013), 1, - aux_sym_string_repeat2, - [127172] = 5, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6318), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [151009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(2795), 1, + ACTIONS(2112), 1, + anon_sym_LBRACE, + ACTIONS(6320), 1, anon_sym_LPAREN, - STATE(2456), 1, - sym_formal_parameters, - STATE(3374), 1, - sym_type_parameters, - [127188] = 5, - ACTIONS(5493), 1, + STATE(654), 1, + sym_statement_block, + [151022] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5718), 1, - anon_sym_SQUOTE, - ACTIONS(5720), 1, - aux_sym_string_token2, - ACTIONS(5722), 1, - sym_escape_sequence, - STATE(3011), 1, - aux_sym_string_repeat2, - [127204] = 5, - ACTIONS(5493), 1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [151035] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5718), 1, - anon_sym_DQUOTE, - ACTIONS(5724), 1, - aux_sym_string_token1, - ACTIONS(5726), 1, - sym_escape_sequence, - STATE(3012), 1, - aux_sym_string_repeat1, - [127220] = 5, + ACTIONS(4827), 1, + anon_sym_RPAREN, + ACTIONS(6324), 1, + anon_sym_COMMA, + STATE(3730), 1, + aux_sym_formal_parameters_repeat1, + [151048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5728), 1, + ACTIONS(5432), 3, + anon_sym_LBRACE, anon_sym_COLON, - [127236] = 5, + anon_sym_EQ_GT, + [151057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, + ACTIONS(6326), 1, + anon_sym_LBRACE, + ACTIONS(5789), 2, anon_sym_extends, - ACTIONS(5730), 1, - anon_sym_RBRACK, - [127252] = 5, + anon_sym_LBRACE_PIPE, + [151068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5732), 1, + ACTIONS(2667), 3, + anon_sym_COMMA, anon_sym_RPAREN, - [127268] = 5, + anon_sym_COLON, + [151077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3784), 1, + ACTIONS(4657), 1, anon_sym_LBRACE, - ACTIONS(5734), 1, + ACTIONS(4659), 2, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_extends_clause_repeat1, - [127284] = 5, + anon_sym_LBRACE_PIPE, + [151088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5737), 1, - anon_sym_RBRACK, - [127300] = 5, + ACTIONS(5837), 1, + anon_sym_RBRACE, + ACTIONS(6328), 1, + anon_sym_COMMA, + STATE(3549), 1, + aux_sym_export_clause_repeat1, + [151101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5739), 1, - anon_sym_COLON, - [127316] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5741), 1, - anon_sym_DQUOTE, - ACTIONS(5743), 1, - aux_sym_string_token1, - ACTIONS(5745), 1, - sym_escape_sequence, - STATE(3029), 1, - aux_sym_string_repeat1, - [127332] = 5, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(5741), 1, - anon_sym_SQUOTE, - ACTIONS(5747), 1, - aux_sym_string_token2, - ACTIONS(5749), 1, - sym_escape_sequence, - STATE(3030), 1, - aux_sym_string_repeat2, - [127348] = 4, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6330), 1, + anon_sym_RBRACE, + STATE(3597), 1, + aux_sym_object_repeat1, + [151114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - anon_sym_BQUOTE, - ACTIONS(2441), 1, - anon_sym_LPAREN, - STATE(1837), 2, - sym_template_string, - sym_arguments, - [127362] = 5, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6330), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [151127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - ACTIONS(5751), 1, - anon_sym_RPAREN, - [127378] = 5, - ACTIONS(5493), 1, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(6332), 1, + anon_sym_RBRACK, + STATE(3510), 1, + aux_sym_array_repeat1, + [151140] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, - aux_sym_string_token2, - ACTIONS(5559), 1, - sym_escape_sequence, - ACTIONS(5753), 1, - anon_sym_SQUOTE, - STATE(3013), 1, - aux_sym_string_repeat2, - [127394] = 5, - ACTIONS(5493), 1, + ACTIONS(6334), 1, + sym_identifier, + STATE(2343), 1, + sym_decorator_member_expression, + STATE(2409), 1, + sym_decorator_call_expression, + [151153] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - aux_sym_string_token1, - ACTIONS(5555), 1, - sym_escape_sequence, - ACTIONS(5753), 1, - anon_sym_DQUOTE, - STATE(2892), 1, - aux_sym_string_repeat1, - [127410] = 5, - ACTIONS(5493), 1, + ACTIONS(6336), 1, + anon_sym_COMMA, + ACTIONS(6339), 1, + anon_sym_RBRACE, + STATE(3549), 1, + aux_sym_export_clause_repeat1, + [151166] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - aux_sym_string_token1, - ACTIONS(5555), 1, - sym_escape_sequence, - ACTIONS(5755), 1, - anon_sym_DQUOTE, - STATE(2892), 1, - aux_sym_string_repeat1, - [127426] = 5, - ACTIONS(5493), 1, + ACTIONS(6341), 1, + anon_sym_COMMA, + ACTIONS(6343), 1, + anon_sym_RPAREN, + STATE(3605), 1, + aux_sym_formal_parameters_repeat1, + [151179] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, - aux_sym_string_token2, - ACTIONS(5559), 1, - sym_escape_sequence, - ACTIONS(5755), 1, - anon_sym_SQUOTE, - STATE(3013), 1, - aux_sym_string_repeat2, - [127442] = 5, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(4571), 1, + anon_sym_RBRACK, + STATE(3617), 1, + aux_sym_array_repeat1, + [151192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, + ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3587), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3667), 1, - anon_sym_LBRACE, - STATE(2901), 1, - aux_sym_extends_clause_repeat1, - [127458] = 5, + ACTIONS(4571), 1, + anon_sym_RBRACK, + STATE(3510), 1, + aux_sym_array_repeat1, + [151205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5757), 1, - anon_sym_export, - STATE(2136), 1, - aux_sym_export_statement_repeat1, - STATE(2168), 1, - sym_decorator, - [127474] = 4, + ACTIONS(5238), 1, + anon_sym_implements, + ACTIONS(6345), 1, + anon_sym_LBRACE, + STATE(4195), 1, + sym_implements_clause, + [151218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6347), 1, + anon_sym_as, + ACTIONS(6349), 2, anon_sym_COMMA, - ACTIONS(5759), 1, anon_sym_RBRACE, - STATE(3071), 1, - aux_sym_object_repeat1, - [127487] = 2, + [151229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 3, + ACTIONS(6351), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [127496] = 4, + [151238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4980), 1, - anon_sym_extends, - [127509] = 4, + ACTIONS(6353), 1, + anon_sym_COMMA, + ACTIONS(6355), 1, + anon_sym_GT, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, + [151251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5765), 1, + ACTIONS(6359), 1, anon_sym_RBRACK, - STATE(3197), 1, + STATE(3578), 1, aux_sym__tuple_type_body_repeat1, - [127522] = 4, + [151264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4974), 1, - anon_sym_extends, - [127535] = 4, + ACTIONS(6361), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [151273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(5445), 1, - anon_sym_extends, - [127548] = 4, + ACTIONS(6363), 1, + anon_sym_COMMA, + ACTIONS(6366), 1, + anon_sym_RBRACE, + STATE(3559), 1, + aux_sym_named_imports_repeat1, + [151286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(6368), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5767), 1, - anon_sym_RBRACK, - STATE(3075), 1, - aux_sym__tuple_type_body_repeat1, - [127561] = 4, + anon_sym_SEMI, + [151295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4890), 1, - anon_sym_extends, - [127574] = 4, + ACTIONS(5775), 1, + anon_sym_LBRACE, + ACTIONS(6370), 1, + anon_sym_COMMA, + STATE(3561), 1, + aux_sym_implements_clause_repeat1, + [151308] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5769), 1, - anon_sym_RPAREN, - STATE(3010), 1, + ACTIONS(4641), 1, + anon_sym_RBRACK, + STATE(3510), 1, aux_sym_array_repeat1, - [127587] = 4, + [151321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4752), 1, - anon_sym_extends, - [127600] = 4, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(4641), 1, + anon_sym_RBRACK, + STATE(3547), 1, + aux_sym_array_repeat1, + [151334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_extends, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - [127613] = 4, + ACTIONS(4673), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [151343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(5771), 1, - anon_sym_extends, - [127626] = 3, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(6373), 1, + anon_sym_RBRACK, + STATE(3510), 1, + aux_sym_array_repeat1, + [151356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, - anon_sym_LBRACE, - ACTIONS(1707), 2, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(6375), 1, + anon_sym_EQ, + STATE(4045), 1, + sym_type_parameters, + [151369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5813), 1, anon_sym_COMMA, + ACTIONS(5815), 1, + anon_sym_RBRACE, + STATE(3746), 1, + aux_sym_enum_body_repeat1, + [151382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, anon_sym_LBRACE_PIPE, - [127637] = 4, + ACTIONS(1038), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_object_type, + [151395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4846), 1, - anon_sym_extends, - [127650] = 4, + ACTIONS(499), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1038), 1, + anon_sym_LBRACE, + STATE(740), 1, + sym_object_type, + [151408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, - anon_sym_COMMA, - STATE(3111), 1, - aux_sym_formal_parameters_repeat1, - [127663] = 4, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + STATE(4183), 1, + sym_string, + [151421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 1, + ACTIONS(3017), 1, anon_sym_GT, - ACTIONS(5775), 1, + ACTIONS(6377), 1, anon_sym_COMMA, - STATE(3063), 1, + STATE(3643), 1, aux_sym_implements_clause_repeat1, - [127676] = 4, + [151434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, - anon_sym_extends, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - [127689] = 4, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6379), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [151447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4844), 1, - anon_sym_extends, - [127702] = 4, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(6381), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_array_repeat1, + [151460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(4786), 1, - anon_sym_extends, - [127715] = 4, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(6383), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_array_repeat1, + [151473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1736), 1, + anon_sym_LBRACE, + ACTIONS(1734), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [151484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(6379), 1, + anon_sym_RBRACE, + STATE(3538), 1, + aux_sym_object_repeat1, + [151497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5777), 1, + ACTIONS(6385), 1, anon_sym_LPAREN, - ACTIONS(5779), 1, + ACTIONS(6387), 1, anon_sym_await, - STATE(38), 1, + STATE(33), 1, sym__for_header, - [127728] = 4, + [151510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5781), 1, + ACTIONS(6389), 1, anon_sym_RBRACK, - STATE(3036), 1, + STATE(3681), 1, aux_sym__tuple_type_body_repeat1, - [127741] = 4, + [151523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3944), 1, - anon_sym_extends, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - [127754] = 4, + ACTIONS(1752), 1, + anon_sym_LBRACE, + ACTIONS(1750), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [151534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2819), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(6391), 1, + anon_sym_COMMA, + STATE(3664), 1, + aux_sym_implements_clause_repeat1, + [151547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(4577), 1, + anon_sym_RPAREN, + STATE(3660), 1, + aux_sym_array_repeat1, + [151560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1748), 1, + anon_sym_LBRACE, + ACTIONS(1746), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [151571] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5783), 1, + ACTIONS(6393), 1, anon_sym_RBRACE, - STATE(3214), 1, + STATE(3733), 1, aux_sym_object_repeat1, - [127767] = 2, + [151584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5785), 3, - sym__automatic_semicolon, + ACTIONS(5584), 1, anon_sym_COMMA, - anon_sym_SEMI, - [127776] = 3, + ACTIONS(6395), 1, + anon_sym_LBRACE, + STATE(3561), 1, + aux_sym_implements_clause_repeat1, + [151597] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(4577), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_array_repeat1, + [151610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5787), 1, + ACTIONS(6397), 1, sym_identifier, - ACTIONS(5789), 2, + ACTIONS(6399), 2, sym__automatic_semicolon, anon_sym_SEMI, - [127787] = 3, + [151621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, + ACTIONS(6401), 1, sym_identifier, - ACTIONS(5793), 2, + ACTIONS(6403), 2, sym__automatic_semicolon, anon_sym_SEMI, - [127798] = 3, + [151632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1695), 2, + ACTIONS(4827), 1, + anon_sym_RPAREN, + ACTIONS(6324), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [127809] = 4, + STATE(3680), 1, + aux_sym_formal_parameters_repeat1, + [151645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(6173), 1, + anon_sym_RBRACE, + ACTIONS(6405), 1, anon_sym_COMMA, - ACTIONS(3795), 1, - anon_sym_RBRACK, - STATE(3105), 1, - aux_sym_array_repeat1, - [127822] = 3, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [151658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(6408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1732), 1, anon_sym_LBRACE, - ACTIONS(1689), 2, + ACTIONS(1730), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [127833] = 4, + [151678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(3795), 1, - anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [127846] = 4, + ACTIONS(6410), 1, + anon_sym_LPAREN, + ACTIONS(6412), 1, + anon_sym_await, + STATE(42), 1, + sym__for_header, + [151691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 1, - anon_sym_GT, - ACTIONS(5795), 1, + ACTIONS(6414), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_implements_clause_repeat1, - [127859] = 4, + ACTIONS(6416), 1, + anon_sym_GT, + STATE(3651), 1, + aux_sym_type_parameters_repeat1, + [151704] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3715), 1, + ACTIONS(4595), 1, anon_sym_RPAREN, - STATE(3041), 1, + STATE(3510), 1, aux_sym_array_repeat1, - [127872] = 3, + [151717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, - anon_sym_LBRACE, - ACTIONS(1711), 2, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [127883] = 3, + ACTIONS(6418), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [151730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(5345), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [127894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, + ACTIONS(1754), 2, anon_sym_COMMA, - ACTIONS(3715), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [127907] = 2, + anon_sym_LBRACE_PIPE, + [151741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 3, - sym__automatic_semicolon, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [127916] = 3, + ACTIONS(6420), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [151754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_LBRACE, - ACTIONS(1715), 2, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [127927] = 2, + ACTIONS(6422), 1, + anon_sym_RBRACE, + STATE(3642), 1, + aux_sym_object_repeat1, + [151767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 3, + ACTIONS(6424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127936] = 4, + [151776] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5804), 1, + ACTIONS(6422), 1, anon_sym_RBRACE, - STATE(3214), 1, + STATE(3733), 1, aux_sym_object_repeat1, - [127949] = 4, + [151789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 1, - sym_identifier, - STATE(2049), 1, - sym_decorator_member_expression, - STATE(2087), 1, - sym_decorator_call_expression, - [127962] = 2, + ACTIONS(3084), 1, + anon_sym_GT, + ACTIONS(6426), 1, + anon_sym_COMMA, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [151802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 3, - sym__automatic_semicolon, + ACTIONS(6428), 1, anon_sym_COMMA, - anon_sym_SEMI, - [127971] = 4, + ACTIONS(6430), 1, + anon_sym_RBRACE, + STATE(3544), 1, + aux_sym_export_clause_repeat1, + [151815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5810), 1, + ACTIONS(4581), 1, anon_sym_RBRACK, - STATE(3089), 1, - aux_sym__tuple_type_body_repeat1, - [127984] = 4, + STATE(3644), 1, + aux_sym_array_repeat1, + [151828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5812), 1, + ACTIONS(4581), 1, anon_sym_RBRACK, - STATE(3197), 1, - aux_sym__tuple_type_body_repeat1, - [127997] = 2, + STATE(3510), 1, + aux_sym_array_repeat1, + [151841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 3, - sym__automatic_semicolon, + ACTIONS(4779), 1, + anon_sym_RPAREN, + ACTIONS(6432), 1, + anon_sym_COMMA, + STATE(3730), 1, + aux_sym_formal_parameters_repeat1, + [151854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4779), 1, + anon_sym_RPAREN, + ACTIONS(6432), 1, + anon_sym_COMMA, + STATE(3662), 1, + aux_sym_formal_parameters_repeat1, + [151867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6434), 1, + anon_sym_as, + ACTIONS(6436), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [151878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6438), 3, + sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [128006] = 2, + [151887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 3, + ACTIONS(6440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128015] = 4, + [151896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 1, + ACTIONS(5480), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [151905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6442), 1, + anon_sym_COMMA, + ACTIONS(6445), 1, anon_sym_GT, - ACTIONS(5818), 1, + STATE(3611), 1, + aux_sym_type_parameters_repeat1, + [151918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6357), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_implements_clause_repeat1, - [128028] = 2, + ACTIONS(6447), 1, + anon_sym_RBRACK, + STATE(3681), 1, + aux_sym__tuple_type_body_repeat1, + [151931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6357), 1, + anon_sym_COMMA, + ACTIONS(6449), 1, + anon_sym_RBRACK, + STATE(3681), 1, + aux_sym__tuple_type_body_repeat1, + [151944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6451), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 3, + ACTIONS(6453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128037] = 2, + [151962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 3, + ACTIONS(6455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128046] = 3, + [151971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, - anon_sym_LBRACE, - ACTIONS(5427), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [128057] = 2, + ACTIONS(433), 1, + anon_sym_COMMA, + ACTIONS(6457), 1, + anon_sym_RBRACK, + STATE(3510), 1, + aux_sym_array_repeat1, + [151984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128066] = 4, + [151993] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3797), 1, + ACTIONS(4573), 1, anon_sym_RPAREN, - STATE(3094), 1, + STATE(3676), 1, aux_sym_array_repeat1, - [128079] = 4, + [152006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(3797), 1, + ACTIONS(4813), 1, anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [128092] = 4, + ACTIONS(6461), 1, + anon_sym_COMMA, + STATE(3730), 1, + aux_sym_formal_parameters_repeat1, + [152019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6463), 1, + anon_sym_EQ, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6467), 1, + anon_sym_from, + [152032] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5828), 1, + ACTIONS(6469), 1, anon_sym_RPAREN, - STATE(3010), 1, + STATE(3510), 1, aux_sym_array_repeat1, - [128105] = 4, + [152045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, - anon_sym_RBRACE, - ACTIONS(5830), 1, + ACTIONS(6471), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3086), 1, - aux_sym_enum_body_repeat1, - [128118] = 4, + anon_sym_SEMI, + [152054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6357), 1, + anon_sym_COMMA, + ACTIONS(6473), 1, + anon_sym_RBRACK, + STATE(3674), 1, + aux_sym__tuple_type_body_repeat1, + [152067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152076] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3776), 1, + ACTIONS(6477), 1, anon_sym_RPAREN, - STATE(3100), 1, + STATE(3510), 1, aux_sym_array_repeat1, - [128131] = 4, + [152089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6481), 1, + anon_sym_GT, + STATE(3776), 1, + sym_type_parameter, + [152102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(6483), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(3224), 1, - aux_sym_implements_clause_repeat1, - [128144] = 4, + anon_sym_SEMI, + [152111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(2909), 1, + anon_sym_GT, + ACTIONS(6485), 1, anon_sym_COMMA, - ACTIONS(5835), 1, - anon_sym_RBRACK, - STATE(3197), 1, - aux_sym__tuple_type_body_repeat1, - [128157] = 4, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [152124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(3019), 1, + anon_sym_GT, + ACTIONS(6487), 1, anon_sym_COMMA, - ACTIONS(5837), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [128170] = 4, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [152137] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3776), 1, + ACTIONS(4573), 1, anon_sym_RPAREN, - STATE(3010), 1, + STATE(3510), 1, aux_sym_array_repeat1, - [128183] = 4, + [152150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(3774), 1, + ACTIONS(6489), 1, anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [128196] = 4, + STATE(3667), 1, + aux_sym__tuple_type_body_repeat1, + [152163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_AMP, - ACTIONS(4750), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, - anon_sym_extends, - [128209] = 4, + ACTIONS(6491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5839), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [128222] = 4, + ACTIONS(6493), 1, + anon_sym_RBRACK, + STATE(3612), 1, + aux_sym__tuple_type_body_repeat1, + [152185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6495), 1, + anon_sym_GT, + STATE(3776), 1, + sym_type_parameter, + [152198] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3774), 1, - anon_sym_RBRACK, - STATE(3138), 1, + ACTIONS(4639), 1, + anon_sym_RPAREN, + STATE(3510), 1, aux_sym_array_repeat1, - [128235] = 4, + [152211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, + ACTIONS(6495), 1, + anon_sym_GT, + ACTIONS(6497), 1, anon_sym_COMMA, - ACTIONS(5843), 1, - anon_sym_RPAREN, - STATE(3047), 1, - aux_sym_formal_parameters_repeat1, - [128248] = 2, + STATE(3611), 1, + aux_sym_type_parameters_repeat1, + [152224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 3, - sym__automatic_semicolon, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_SEMI, - [128257] = 4, + ACTIONS(4639), 1, + anon_sym_RPAREN, + STATE(3622), 1, + aux_sym_array_repeat1, + [152237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1039), 1, + ACTIONS(6499), 1, anon_sym_LBRACE, - STATE(653), 1, - sym_object_type, - [128270] = 4, + ACTIONS(5945), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [152248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, + ACTIONS(2945), 1, + anon_sym_GT, + ACTIONS(6501), 1, anon_sym_COMMA, - ACTIONS(5403), 1, - anon_sym_RBRACE, - STATE(3221), 1, - aux_sym_enum_body_repeat1, - [128283] = 4, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [152261] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5847), 1, + ACTIONS(4595), 1, anon_sym_RPAREN, - STATE(3010), 1, + STATE(3573), 1, aux_sym_array_repeat1, - [128296] = 4, + [152274] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5849), 1, + ACTIONS(6503), 1, anon_sym_RBRACE, - STATE(3214), 1, + STATE(3733), 1, aux_sym_object_repeat1, - [128309] = 4, + [152287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - ACTIONS(5853), 1, + ACTIONS(5775), 1, anon_sym_GT, - STATE(3267), 1, - sym_type_parameter, - [128322] = 4, + ACTIONS(6505), 1, + anon_sym_COMMA, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [152300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, + ACTIONS(433), 1, anon_sym_COMMA, - STATE(3149), 1, - aux_sym_formal_parameters_repeat1, - [128335] = 4, + ACTIONS(6508), 1, + anon_sym_RBRACK, + STATE(3510), 1, + aux_sym_array_repeat1, + [152313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6510), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5855), 1, - anon_sym_RBRACE, - STATE(3212), 1, - aux_sym_object_repeat1, - [128348] = 4, + anon_sym_SEMI, + [152322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(4929), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5857), 1, - anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [128361] = 4, + anon_sym_SEMI, + [152331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5859), 1, + ACTIONS(6512), 1, anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [128374] = 4, + STATE(3696), 1, + aux_sym__tuple_type_body_repeat1, + [152344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(5861), 1, - anon_sym_EQ, - STATE(3718), 1, - sym_type_parameters, - [128387] = 4, + ACTIONS(6514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5863), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [128400] = 4, + ACTIONS(4717), 1, + anon_sym_RBRACK, + STATE(3656), 1, + aux_sym_array_repeat1, + [152366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 1, - anon_sym_RPAREN, - ACTIONS(5865), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - STATE(3111), 1, - aux_sym_formal_parameters_repeat1, - [128413] = 4, + ACTIONS(6516), 1, + anon_sym_RBRACK, + STATE(3613), 1, + aux_sym__tuple_type_body_repeat1, + [152379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6518), 1, anon_sym_COMMA, - ACTIONS(5783), 1, - anon_sym_RBRACE, - STATE(3101), 1, - aux_sym_object_repeat1, - [128426] = 4, + ACTIONS(6520), 1, + anon_sym_GT, + STATE(3611), 1, + aux_sym_type_parameters_repeat1, + [152392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - anon_sym_COMMA, - ACTIONS(5870), 1, - anon_sym_RPAREN, - STATE(3111), 1, - aux_sym_formal_parameters_repeat1, - [128439] = 4, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6520), 1, + anon_sym_GT, + STATE(3776), 1, + sym_type_parameter, + [152405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6522), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5872), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [128452] = 4, + anon_sym_SEMI, + [152414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 1, - anon_sym_EQ, - ACTIONS(5876), 1, + ACTIONS(3013), 1, + anon_sym_GT, + ACTIONS(6524), 1, anon_sym_COMMA, - ACTIONS(5878), 1, - anon_sym_from, - [128465] = 2, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [152427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 3, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2915), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [128474] = 4, + STATE(3127), 1, + sym_object_type, + [152440] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5880), 1, + ACTIONS(6526), 1, anon_sym_RBRACK, - STATE(3010), 1, + STATE(3510), 1, aux_sym_array_repeat1, - [128487] = 4, + [152453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, - anon_sym_GT, - ACTIONS(5882), 1, + ACTIONS(433), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_implements_clause_repeat1, - [128500] = 4, + ACTIONS(4681), 1, + anon_sym_RBRACK, + STATE(3510), 1, + aux_sym_array_repeat1, + [152466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5855), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [128513] = 2, + ACTIONS(4681), 1, + anon_sym_RBRACK, + STATE(3565), 1, + aux_sym_array_repeat1, + [152479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5884), 3, - sym__automatic_semicolon, + ACTIONS(4823), 1, + anon_sym_RPAREN, + ACTIONS(6528), 1, anon_sym_COMMA, - anon_sym_SEMI, - [128522] = 2, + STATE(3620), 1, + aux_sym_formal_parameters_repeat1, + [152492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 3, - sym__automatic_semicolon, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_SEMI, - [128531] = 2, + ACTIONS(6530), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_array_repeat1, + [152505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 3, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(6532), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [128540] = 2, + [152516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 3, - sym__automatic_semicolon, + ACTIONS(4751), 1, + anon_sym_RPAREN, + ACTIONS(6534), 1, anon_sym_COMMA, - anon_sym_SEMI, - [128549] = 2, + STATE(3730), 1, + aux_sym_formal_parameters_repeat1, + [152529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 3, - anon_sym_COMMA, + ACTIONS(4823), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [128558] = 2, + ACTIONS(6528), 1, + anon_sym_COMMA, + STATE(3730), 1, + aux_sym_formal_parameters_repeat1, + [152542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5892), 3, - sym__automatic_semicolon, + ACTIONS(5775), 1, + sym__call_type_arguments_closing_bracket, + ACTIONS(6536), 1, anon_sym_COMMA, - anon_sym_SEMI, - [128567] = 2, + STATE(3664), 1, + aux_sym_implements_clause_repeat1, + [152555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 3, - sym__automatic_semicolon, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [128576] = 2, + ACTIONS(6539), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [152568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 3, - sym__automatic_semicolon, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [128585] = 4, + ACTIONS(6541), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [152581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5896), 1, + ACTIONS(6543), 1, anon_sym_RBRACK, - STATE(3152), 1, + STATE(3681), 1, aux_sym__tuple_type_body_repeat1, - [128598] = 2, + [152594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5458), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [152603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 3, + ACTIONS(6545), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128607] = 2, + [152612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5900), 3, + ACTIONS(6547), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128616] = 2, + [152621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 3, + ACTIONS(6549), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128625] = 4, + [152630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - ACTIONS(5904), 1, - anon_sym_LPAREN, - STATE(571), 1, - sym_statement_block, - [128638] = 2, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5661), 1, + anon_sym_extends, + [152643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128647] = 4, + ACTIONS(6551), 1, + sym_identifier, + ACTIONS(6553), 1, + anon_sym_require, + STATE(3682), 1, + sym_nested_identifier, + [152656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5908), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5910), 1, - anon_sym_GT, - STATE(3182), 1, - aux_sym_type_parameters_repeat1, - [128660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4854), 1, - anon_sym_DOT, - ACTIONS(5912), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [128671] = 2, + ACTIONS(6555), 1, + anon_sym_RBRACK, + STATE(3681), 1, + aux_sym__tuple_type_body_repeat1, + [152669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 3, + ACTIONS(5428), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [128680] = 4, + [152678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4401), 1, - anon_sym_RPAREN, - ACTIONS(5914), 1, + ACTIONS(433), 1, anon_sym_COMMA, - STATE(3109), 1, - aux_sym_formal_parameters_repeat1, - [128693] = 4, + ACTIONS(6557), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_array_repeat1, + [152691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 1, + ACTIONS(5851), 1, anon_sym_RBRACE, - ACTIONS(5916), 1, + ACTIONS(6559), 1, anon_sym_COMMA, - STATE(3206), 1, + STATE(3559), 1, aux_sym_named_imports_repeat1, - [128706] = 4, + [152704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 1, - anon_sym_GT, - ACTIONS(5918), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_implements_clause_repeat1, - [128719] = 4, + ACTIONS(4301), 1, + anon_sym_extends, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [152717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(5920), 1, - anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [128732] = 4, + ACTIONS(6479), 1, + sym_identifier, + ACTIONS(6561), 1, + anon_sym_GT, + STATE(3776), 1, + sym_type_parameter, + [152730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_LT, - ACTIONS(5922), 1, - anon_sym_EQ, - STATE(3575), 1, - sym_type_parameters, - [128745] = 4, + ACTIONS(4819), 1, + anon_sym_RPAREN, + ACTIONS(6563), 1, + anon_sym_COMMA, + STATE(3730), 1, + aux_sym_formal_parameters_repeat1, + [152743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6565), 1, anon_sym_COMMA, - ACTIONS(5924), 1, - anon_sym_RBRACE, - STATE(3166), 1, - aux_sym_object_repeat1, - [128758] = 4, + ACTIONS(6568), 1, + anon_sym_RBRACK, + STATE(3681), 1, + aux_sym__tuple_type_body_repeat1, + [152756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5924), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [128771] = 4, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(6570), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5926), 1, + ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(5928), 1, + ACTIONS(4719), 1, anon_sym_RPAREN, - STATE(3185), 1, - aux_sym_formal_parameters_repeat1, - [128784] = 4, + STATE(3510), 1, + aux_sym_array_repeat1, + [152780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5930), 1, + ACTIONS(6572), 1, anon_sym_RBRACK, - STATE(3197), 1, + STATE(3681), 1, aux_sym__tuple_type_body_repeat1, - [128797] = 4, + [152793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5206), 1, + anon_sym_extends, + [152806] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3799), 1, + ACTIONS(4719), 1, anon_sym_RPAREN, - STATE(3161), 1, + STATE(3626), 1, aux_sym_array_repeat1, - [128810] = 4, + [152819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 1, - anon_sym_COMMA, - ACTIONS(5934), 1, - anon_sym_RPAREN, - STATE(3171), 1, - aux_sym_formal_parameters_repeat1, - [128823] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_extends, + [152832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [128836] = 4, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2915), 1, + anon_sym_LBRACE, + STATE(3094), 1, + sym_object_type, + [152845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(3736), 1, - anon_sym_RBRACK, - STATE(3176), 1, - aux_sym_array_repeat1, - [128849] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5300), 1, + anon_sym_extends, + [152858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(3736), 1, - anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [128862] = 4, + ACTIONS(5799), 1, + anon_sym_RBRACE, + STATE(3702), 1, + aux_sym_enum_body_repeat1, + [152871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4435), 1, - anon_sym_RPAREN, - ACTIONS(5936), 1, + ACTIONS(2787), 1, + anon_sym_GT, + ACTIONS(6574), 1, anon_sym_COMMA, - STATE(3111), 1, - aux_sym_formal_parameters_repeat1, - [128875] = 4, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [152884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3793), 1, - anon_sym_RBRACK, - STATE(3115), 1, - aux_sym_array_repeat1, - [128888] = 4, + ACTIONS(6576), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [152897] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(3793), 1, - anon_sym_RBRACK, - STATE(3010), 1, + ACTIONS(6578), 1, + anon_sym_RPAREN, + STATE(3510), 1, aux_sym_array_repeat1, - [128901] = 4, + [152910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(1928), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_EQ, + STATE(4229), 1, + sym_type_parameters, + [152923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6582), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5938), 1, - anon_sym_RBRACK, - STATE(3197), 1, - aux_sym__tuple_type_body_repeat1, - [128914] = 4, + anon_sym_SEMI, + [152932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - ACTIONS(5942), 1, - anon_sym_GT, - STATE(3186), 1, - aux_sym_type_parameters_repeat1, - [128927] = 2, + ACTIONS(6584), 1, + anon_sym_RBRACK, + STATE(3681), 1, + aux_sym__tuple_type_body_repeat1, + [152945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5944), 3, + ACTIONS(6586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128936] = 4, + [152954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5946), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5948), 1, - anon_sym_GT, - STATE(3132), 1, - aux_sym_type_parameters_repeat1, - [128949] = 3, + ACTIONS(6576), 1, + anon_sym_RBRACE, + STATE(3744), 1, + aux_sym_object_repeat1, + [152967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5950), 1, - anon_sym_LBRACE, - ACTIONS(5477), 2, + ACTIONS(4521), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [128960] = 2, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [152980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5952), 3, + ACTIONS(6588), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128969] = 2, + [152989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 3, + ACTIONS(6590), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [128978] = 4, + [152998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_implements, - ACTIONS(5956), 1, - anon_sym_LBRACE, - STATE(3604), 1, - sym_implements_clause, - [128991] = 2, + ACTIONS(4983), 1, + anon_sym_RBRACE, + ACTIONS(6592), 1, + anon_sym_COMMA, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [153011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 3, + ACTIONS(6594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129000] = 4, + [153020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(6596), 1, anon_sym_COMMA, - ACTIONS(5960), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [129013] = 2, + ACTIONS(6598), 1, + anon_sym_RBRACE, + STATE(3677), 1, + aux_sym_named_imports_repeat1, + [153033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129022] = 2, + ACTIONS(3947), 1, + anon_sym_extends, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [153046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4537), 3, - sym__automatic_semicolon, + ACTIONS(6465), 1, anon_sym_COMMA, - anon_sym_SEMI, - [129031] = 4, + ACTIONS(6467), 1, + anon_sym_from, + ACTIONS(6600), 1, + anon_sym_EQ, + [153059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(5967), 1, - anon_sym_RBRACE, - STATE(3164), 1, - aux_sym_export_clause_repeat1, - [129044] = 4, + ACTIONS(3941), 1, + anon_sym_extends, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [153072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5969), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [129057] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_extends, + [153085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(3112), 1, + anon_sym_GT, + ACTIONS(6602), 1, anon_sym_COMMA, - ACTIONS(5971), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [129070] = 2, + STATE(3643), 1, + aux_sym_implements_clause_repeat1, + [153098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5973), 3, + ACTIONS(6604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(3791), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [129092] = 2, + [153107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 3, + ACTIONS(4659), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - [129101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(3791), 1, - anon_sym_RPAREN, - STATE(3085), 1, - aux_sym_array_repeat1, - [129114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 1, - anon_sym_RPAREN, - ACTIONS(5975), 1, - anon_sym_COMMA, - STATE(3111), 1, - aux_sym_formal_parameters_repeat1, - [129127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [129136] = 2, + [153116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 3, + ACTIONS(6035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 1, - anon_sym_RPAREN, - ACTIONS(5975), 1, - anon_sym_COMMA, - STATE(3201), 1, - aux_sym_formal_parameters_repeat1, - [129158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5979), 1, - anon_sym_LPAREN, - ACTIONS(5981), 1, - anon_sym_await, - STATE(43), 1, - sym__for_header, - [129171] = 4, + [153125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(5983), 1, - anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [129184] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5282), 1, + anon_sym_extends, + [153138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_COMMA, - ACTIONS(5985), 1, - anon_sym_RBRACK, - STATE(3205), 1, - aux_sym__tuple_type_body_repeat1, - [129197] = 4, + ACTIONS(4097), 1, + anon_sym_extends, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [153151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6606), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5987), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [129210] = 4, + anon_sym_SEMI, + [153160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 1, - anon_sym_GT, - ACTIONS(5989), 1, + ACTIONS(6608), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_implements_clause_repeat1, - [129223] = 4, + anon_sym_SEMI, + [153169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5991), 1, - anon_sym_RBRACE, - STATE(3108), 1, - aux_sym_object_repeat1, - [129236] = 4, + ACTIONS(3675), 1, + anon_sym_extends, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [153182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_GT, - ACTIONS(5993), 1, + ACTIONS(6357), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_implements_clause_repeat1, - [129249] = 4, + ACTIONS(6610), 1, + anon_sym_RBRACK, + STATE(3684), 1, + aux_sym__tuple_type_body_repeat1, + [153195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5995), 1, - anon_sym_COMMA, - ACTIONS(5998), 1, - anon_sym_GT, - STATE(3182), 1, - aux_sym_type_parameters_repeat1, - [129262] = 4, + ACTIONS(4539), 1, + anon_sym_extends, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [153208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - ACTIONS(6000), 1, - anon_sym_GT, - STATE(3267), 1, - sym_type_parameter, - [129275] = 3, + ACTIONS(4125), 1, + anon_sym_extends, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + [153221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 1, - anon_sym_LBRACE, - ACTIONS(3763), 2, + ACTIONS(433), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [129286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 1, + ACTIONS(4569), 1, anon_sym_RPAREN, - ACTIONS(5914), 1, - anon_sym_COMMA, - STATE(3111), 1, - aux_sym_formal_parameters_repeat1, - [129299] = 4, + STATE(3510), 1, + aux_sym_array_repeat1, + [153234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 1, - anon_sym_GT, - ACTIONS(6002), 1, + ACTIONS(433), 1, anon_sym_COMMA, - STATE(3182), 1, - aux_sym_type_parameters_repeat1, - [129312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_SQUOTE, - STATE(3350), 1, - sym_string, - [129325] = 2, + ACTIONS(4569), 1, + anon_sym_RPAREN, + STATE(3693), 1, + aux_sym_array_repeat1, + [153247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 3, + ACTIONS(6612), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [129334] = 2, + [153256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 3, + ACTIONS(1056), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [129343] = 3, + [153265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 1, - anon_sym_as, - ACTIONS(6008), 2, + ACTIONS(6614), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [153274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6616), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [129354] = 4, + ACTIONS(6618), 1, + anon_sym_RPAREN, + STATE(3663), 1, + aux_sym_formal_parameters_repeat1, + [153287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6010), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6012), 1, + ACTIONS(6620), 1, anon_sym_RBRACE, - STATE(3225), 1, - aux_sym_export_clause_repeat1, - [129367] = 4, + STATE(3733), 1, + aux_sym_object_repeat1, + [153300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2655), 1, + ACTIONS(6622), 1, anon_sym_LBRACE, - STATE(2885), 1, - sym_object_type, - [129380] = 4, + ACTIONS(5959), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [153311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_extends, + [153324] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6624), 1, anon_sym_COMMA, - ACTIONS(3753), 1, + ACTIONS(6627), 1, anon_sym_RPAREN, - STATE(3217), 1, - aux_sym_array_repeat1, - [129393] = 2, + STATE(3730), 1, + aux_sym_formal_parameters_repeat1, + [153337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [129402] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5468), 1, + anon_sym_extends, + [153350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5915), 1, + anon_sym_extends, + [153363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6629), 1, + anon_sym_COMMA, + ACTIONS(6632), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [153376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5414), 1, + anon_sym_extends, + [153389] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(6014), 1, + ACTIONS(6634), 1, anon_sym_RBRACE, - STATE(3214), 1, + STATE(3733), 1, aux_sym_object_repeat1, - [129415] = 4, + [153402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(6636), 1, anon_sym_COMMA, - ACTIONS(3753), 1, + ACTIONS(6638), 1, anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [129428] = 4, + STATE(3539), 1, + aux_sym_formal_parameters_repeat1, + [153415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6016), 1, - anon_sym_COMMA, - ACTIONS(6019), 1, - anon_sym_RBRACK, - STATE(3197), 1, - aux_sym__tuple_type_body_repeat1, - [129441] = 4, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5426), 1, + anon_sym_extends, + [153428] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5759), 1, + ACTIONS(6634), 1, anon_sym_RBRACE, - STATE(3214), 1, + STATE(3665), 1, aux_sym_object_repeat1, - [129454] = 4, + [153441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_extends, + [153454] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_DQUOTE, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + STATE(3962), 1, + sym_string, + [153467] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE, + ACTIONS(6640), 1, + anon_sym_extends, + [153480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, anon_sym_COMMA, - ACTIONS(6021), 1, + ACTIONS(4717), 1, anon_sym_RBRACK, - STATE(3143), 1, - aux_sym__tuple_type_body_repeat1, - [129467] = 3, + STATE(3510), 1, + aux_sym_array_repeat1, + [153493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, - anon_sym_DOT, - ACTIONS(6023), 2, + ACTIONS(6642), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [129478] = 4, + [153502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4417), 1, - anon_sym_RPAREN, - ACTIONS(6025), 1, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(3111), 1, - aux_sym_formal_parameters_repeat1, - [129491] = 2, + ACTIONS(6644), 1, + anon_sym_RBRACE, + STATE(3733), 1, + aux_sym_object_repeat1, + [153515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 3, + ACTIONS(6646), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [129500] = 4, + anon_sym_SEMI, + [153524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(4979), 1, + anon_sym_RBRACE, + ACTIONS(6648), 1, anon_sym_COMMA, - ACTIONS(3805), 1, - anon_sym_RBRACK, - STATE(3106), 1, - aux_sym_array_repeat1, - [129513] = 4, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [153537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(3805), 1, - anon_sym_RBRACK, - STATE(3010), 1, - aux_sym_array_repeat1, - [129526] = 4, + ACTIONS(6650), 1, + anon_sym_LBRACE, + STATE(738), 1, + sym_switch_body, + [153547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_COMMA, - ACTIONS(6027), 1, - anon_sym_RBRACK, - STATE(3197), 1, - aux_sym__tuple_type_body_repeat1, - [129539] = 4, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4212), 1, + sym_formal_parameters, + [153557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6029), 1, + ACTIONS(6652), 2, anon_sym_COMMA, - ACTIONS(6032), 1, anon_sym_RBRACE, - STATE(3206), 1, - aux_sym_named_imports_repeat1, - [129552] = 4, + [153565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5876), 1, - anon_sym_COMMA, - ACTIONS(5878), 1, - anon_sym_from, - ACTIONS(6034), 1, - anon_sym_EQ, - [129565] = 4, + ACTIONS(5212), 1, + anon_sym_LBRACE, + STATE(2038), 1, + sym_class_body, + [153575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6036), 1, - anon_sym_COMMA, - ACTIONS(6038), 1, - anon_sym_RBRACE, - STATE(3136), 1, - aux_sym_named_imports_repeat1, - [129578] = 4, + ACTIONS(5771), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [153583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - ACTIONS(5910), 1, - anon_sym_GT, - STATE(3267), 1, - sym_type_parameter, - [129591] = 3, + ACTIONS(5165), 1, + anon_sym_LT, + STATE(2674), 1, + sym_type_arguments, + [153593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6040), 1, - anon_sym_as, - ACTIONS(6042), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [129602] = 4, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3898), 1, + sym_statement_block, + [153603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_SQUOTE, - STATE(3671), 1, - sym_string, - [129615] = 4, + ACTIONS(6654), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(4959), 2, anon_sym_COMMA, - ACTIONS(6044), 1, anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [129628] = 4, + [153619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - ACTIONS(6046), 1, - anon_sym_GT, - STATE(3267), 1, - sym_type_parameter, - [129641] = 4, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3757), 1, + sym_statement_block, + [153629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6048), 1, + ACTIONS(4965), 2, anon_sym_COMMA, - ACTIONS(6051), 1, anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [129654] = 4, + [153637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_GT, - ACTIONS(6053), 1, + ACTIONS(6043), 2, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_implements_clause_repeat1, - [129667] = 4, + anon_sym_GT, + [153645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1039), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - STATE(612), 1, - sym_object_type, - [129680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 1, - anon_sym_COMMA, - ACTIONS(6055), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_array_repeat1, - [129693] = 4, + STATE(696), 1, + sym_class_body, + [153655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, - anon_sym_RBRACE, - ACTIONS(6057), 1, - anon_sym_COMMA, - STATE(3086), 1, - aux_sym_enum_body_repeat1, - [129706] = 4, + ACTIONS(5248), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_class_body, + [153665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5297), 1, + ACTIONS(4885), 2, anon_sym_COMMA, - ACTIONS(5299), 1, anon_sym_RBRACE, - STATE(3218), 1, - aux_sym_enum_body_repeat1, - [129719] = 2, + [153673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6059), 3, - sym__automatic_semicolon, + ACTIONS(6656), 2, anon_sym_COMMA, - anon_sym_SEMI, - [129728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4559), 1, anon_sym_RBRACE, - ACTIONS(6061), 1, - anon_sym_COMMA, - STATE(3086), 1, - aux_sym_enum_body_repeat1, - [129741] = 4, + [153681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2655), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(2779), 1, - sym_object_type, - [129754] = 2, + STATE(3783), 1, + sym_statement_block, + [153691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129763] = 4, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3954), 1, + sym_statement_block, + [153701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_COMMA, - STATE(3224), 1, - aux_sym_implements_clause_repeat1, - [129776] = 4, + STATE(703), 1, + sym_class_body, + [153711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5307), 1, - anon_sym_RBRACE, - ACTIONS(6068), 1, + ACTIONS(6658), 2, anon_sym_COMMA, - STATE(3164), 1, - aux_sym_export_clause_repeat1, - [129789] = 2, + anon_sym_RBRACK, + [153719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6070), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [129798] = 2, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4269), 1, + sym_formal_parameters, + [153729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6072), 3, - sym__automatic_semicolon, + ACTIONS(6660), 2, anon_sym_COMMA, - anon_sym_SEMI, - [129807] = 4, + anon_sym_RBRACK, + [153737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_while, - ACTIONS(6074), 1, - anon_sym_else, - STATE(637), 1, - sym_else_clause, - [129820] = 4, + ACTIONS(5306), 1, + sym_identifier, + ACTIONS(5308), 1, + anon_sym_LBRACK, + [153747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(6662), 2, anon_sym_COMMA, - ACTIONS(5991), 1, - anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_object_repeat1, - [129833] = 4, + anon_sym_GT, + [153755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, - sym_identifier, - ACTIONS(6078), 1, - anon_sym_require, - STATE(3133), 1, - sym_nested_identifier, - [129846] = 3, + ACTIONS(6664), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_enum_body, + [153765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_statement_block, - [129856] = 3, + ACTIONS(6666), 1, + anon_sym_LT, + STATE(1529), 1, + sym_type_arguments, + [153775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(1941), 1, + STATE(730), 1, sym_statement_block, - [129866] = 3, + [153785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, + anon_sym_LT, + STATE(1788), 1, + sym_type_arguments, + [153795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - STATE(103), 1, - sym_statement_block, - [129876] = 3, + STATE(101), 1, + sym_class_body, + [153805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - STATE(3153), 1, - sym_type_parameter, - [129886] = 3, + ACTIONS(6445), 2, + anon_sym_COMMA, + anon_sym_GT, + [153813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(4439), 1, anon_sym_COLON, - STATE(3327), 1, + STATE(3768), 1, sym_type_annotation, - [129896] = 3, + [153823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(1838), 1, - sym_arguments, - [129906] = 3, + STATE(3179), 1, + sym_formal_parameters, + [153833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3710), 1, + STATE(3199), 1, sym_formal_parameters, - [129916] = 3, + [153843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(6670), 1, anon_sym_LPAREN, - STATE(3627), 1, - sym_formal_parameters, - [129926] = 3, + STATE(39), 1, + sym_parenthesized_expression, + [153853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(2736), 1, - sym_class_body, - [129936] = 3, + ACTIONS(6672), 2, + sym_identifier, + sym_this, + [153861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_class_body, - [129946] = 3, + ACTIONS(6674), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [153869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LBRACE, - STATE(633), 1, - sym_enum_body, - [129956] = 3, + ACTIONS(4935), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [153877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, - sym_identifier, - ACTIONS(5265), 1, - anon_sym_LBRACK, - [129966] = 3, + ACTIONS(6676), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [153885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(592), 1, - sym_class_body, - [129976] = 3, + STATE(3967), 1, + sym_statement_block, + [153895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(6670), 1, anon_sym_LPAREN, - STATE(40), 1, + STATE(3747), 1, sym_parenthesized_expression, - [129986] = 3, + [153905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(2740), 1, - sym_class_body, - [129996] = 3, + ACTIONS(5044), 1, + anon_sym_LT, + STATE(521), 1, + sym_type_arguments, + [153915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3415), 1, - sym_parenthesized_expression, - [130006] = 3, + STATE(4006), 1, + sym_formal_parameters, + [153925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(129), 1, - sym_arguments, - [130016] = 3, + STATE(4007), 1, + sym_formal_parameters, + [153935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym_statement_block, - [130026] = 3, + ACTIONS(2464), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, - [130036] = 2, + STATE(4172), 1, + sym_formal_parameters, + [153953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6086), 2, + ACTIONS(2733), 2, sym__automatic_semicolon, anon_sym_SEMI, - [130044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 1, - anon_sym_from, - STATE(3422), 1, - sym__from_clause, - [130054] = 3, + [153961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(1062), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(91), 1, sym_statement_block, - [130064] = 3, + [153971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(6678), 1, anon_sym_LPAREN, - STATE(37), 1, - sym_parenthesized_expression, - [130074] = 3, + STATE(38), 1, + sym__for_header, + [153981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, - anon_sym_LBRACE, - STATE(1915), 1, - sym_statement_block, - [130084] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4155), 1, + sym_formal_parameters, + [153991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_LBRACE, - STATE(1353), 1, - sym_class_body, - [130094] = 3, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(2727), 1, + sym_formal_parameters, + [154001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_statement_block, - [130104] = 2, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4154), 1, + sym_formal_parameters, + [154011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6088), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [130112] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4020), 1, + sym_formal_parameters, + [154021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, - anon_sym_LBRACE, - STATE(1904), 1, - sym_statement_block, - [130122] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4021), 1, + sym_formal_parameters, + [154031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_statement_block, - [130132] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4042), 1, + sym_formal_parameters, + [154041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_LBRACE, - STATE(1336), 1, - sym_class_body, - [130142] = 3, + ACTIONS(6680), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + [154049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(2751), 1, - sym_class_body, - [130152] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4044), 1, + sym_formal_parameters, + [154059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(2754), 1, - sym_class_body, - [130162] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4047), 1, + sym_formal_parameters, + [154069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_LBRACE, - STATE(1334), 1, - sym_class_body, - [130172] = 3, + ACTIONS(2496), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6682), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5288), 1, anon_sym_LBRACE, - STATE(1676), 1, - sym_class_body, - [130182] = 3, + STATE(656), 1, + sym_statement_block, + [154095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2765), 1, + STATE(4086), 1, sym_formal_parameters, - [130192] = 2, + [154105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6090), 2, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(647), 1, + sym_class_body, + [154123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4891), 2, anon_sym_COMMA, anon_sym_RBRACE, - [130200] = 2, + [154131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5998), 2, + ACTIONS(6632), 2, anon_sym_COMMA, - anon_sym_GT, - [130208] = 3, + anon_sym_RBRACE, + [154139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3702), 1, + STATE(4087), 1, sym_formal_parameters, - [130218] = 3, + [154149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(1736), 1, + STATE(3948), 1, sym_statement_block, - [130228] = 3, + [154159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, - anon_sym_LT, - STATE(409), 1, - sym_type_arguments, - [130238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6092), 2, - anon_sym_COMMA, - anon_sym_GT, - [130246] = 3, + ACTIONS(6670), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym_parenthesized_expression, + [154169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(1914), 1, - sym_class_body, - [130256] = 3, + STATE(620), 1, + sym_statement_block, + [154179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, - anon_sym_LBRACE, - STATE(113), 1, - sym_class_body, - [130266] = 3, + ACTIONS(4895), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [154187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(2786), 1, + STATE(1946), 1, sym_class_body, - [130276] = 3, + [154197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1725), 1, - sym_statement_block, - [130286] = 3, + ACTIONS(6684), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - STATE(646), 1, - sym_class_body, - [130296] = 3, + STATE(1941), 1, + sym_statement_block, + [154215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2631), 1, - sym_formal_parameters, - [130306] = 3, + ACTIONS(6095), 1, + anon_sym_from, + STATE(3861), 1, + sym__from_clause, + [154225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(1357), 1, + STATE(3942), 1, sym_statement_block, - [130316] = 3, + [154235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(3463), 1, - sym_statement_block, - [130326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6094), 2, - sym_identifier, - sym_this, - [130334] = 3, + STATE(3075), 1, + sym_class_body, + [154245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - STATE(1704), 1, + STATE(1913), 1, sym_statement_block, - [130344] = 3, + [154255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6096), 1, - sym_identifier, - STATE(3200), 1, - sym_nested_identifier, - [130354] = 3, + ACTIONS(6670), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, + [154265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(1882), 1, + STATE(1609), 1, sym_class_body, - [130364] = 3, + [154275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1340), 1, + STATE(1607), 1, sym_statement_block, - [130374] = 3, + [154285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, - sym_identifier, - STATE(3133), 1, - sym_nested_identifier, - [130384] = 3, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(3069), 1, + sym_class_body, + [154295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(3067), 1, sym_class_body, - [130394] = 3, + [154305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(572), 1, + STATE(1754), 1, sym_class_body, - [130404] = 2, + [154315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130412] = 3, + ACTIONS(6686), 1, + anon_sym_LBRACE, + STATE(1972), 1, + sym_statement_block, + [154325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_LT, - STATE(1753), 1, - sym_type_arguments, - [130422] = 3, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(3050), 1, + sym_class_body, + [154335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - STATE(1922), 1, - sym_class_body, - [130432] = 3, + STATE(1760), 1, + sym_statement_block, + [154345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1749), 1, + sym_statement_block, + [154355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(3051), 1, sym_formal_parameters, - [130442] = 3, + [154365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(568), 1, - sym_statement_block, - [130452] = 3, + STATE(1759), 1, + sym_class_body, + [154375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(569), 1, + STATE(649), 1, sym_class_body, - [130462] = 3, + [154385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - STATE(2667), 1, - sym_statement_block, - [130472] = 3, + STATE(94), 1, + sym_class_body, + [154395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3517), 1, - sym_formal_parameters, - [130482] = 2, + ACTIONS(6688), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4483), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130490] = 3, + ACTIONS(6095), 1, + anon_sym_from, + STATE(3868), 1, + sym__from_clause, + [154413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3516), 1, - sym_formal_parameters, - [130500] = 3, + ACTIONS(5218), 1, + anon_sym_LBRACE, + STATE(1547), 1, + sym_class_body, + [154423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1925), 1, + STATE(1549), 1, sym_statement_block, - [130510] = 3, + [154433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1386), 1, + STATE(1552), 1, sym_statement_block, - [130520] = 3, + [154443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(1555), 1, sym_class_body, - [130530] = 3, + [154453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(1387), 1, + STATE(3173), 1, sym_class_body, - [130540] = 3, + [154463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - STATE(1749), 1, + STATE(1945), 1, sym_statement_block, - [130550] = 3, + [154473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(1062), 1, anon_sym_LBRACE, - STATE(2678), 1, + STATE(90), 1, sym_statement_block, - [130560] = 3, + [154483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - STATE(3267), 1, - sym_type_parameter, - [130570] = 3, + ACTIONS(6670), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, + [154493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3497), 1, - sym_formal_parameters, - [130580] = 3, + ACTIONS(5242), 1, + anon_sym_LBRACE, + STATE(3057), 1, + sym_class_body, + [154503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(1750), 1, - sym_statement_block, - [130590] = 3, + STATE(1562), 1, + sym_class_body, + [154513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3496), 1, - sym_formal_parameters, - [130600] = 3, + ACTIONS(5186), 1, + anon_sym_LBRACE, + STATE(1732), 1, + sym_class_body, + [154523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6104), 1, + ACTIONS(6670), 1, anon_sym_LPAREN, - STATE(36), 1, - sym__for_header, - [130610] = 3, + STATE(31), 1, + sym_parenthesized_expression, + [154533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, - anon_sym_LBRACE, - STATE(1926), 1, - sym_statement_block, - [130620] = 2, + ACTIONS(6670), 1, + anon_sym_LPAREN, + STATE(30), 1, + sym_parenthesized_expression, + [154543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [130628] = 3, + ACTIONS(6690), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + [154551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(1343), 1, - sym_statement_block, - [130638] = 3, + STATE(3123), 1, + sym_class_body, + [154561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(1614), 1, sym_class_body, - [130648] = 3, + [154571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3530), 1, + STATE(4207), 1, sym_formal_parameters, - [130658] = 2, + [154581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130666] = 3, + ACTIONS(5310), 1, + sym_identifier, + ACTIONS(5312), 1, + anon_sym_LBRACK, + [154591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3481), 1, - sym_formal_parameters, - [130676] = 3, + ACTIONS(6479), 1, + sym_identifier, + STATE(3776), 1, + sym_type_parameter, + [154601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(1723), 1, sym_statement_block, - [130686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6019), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [130694] = 3, + [154611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(2857), 1, - sym_class_body, - [130704] = 3, + STATE(1595), 1, + sym_statement_block, + [154621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_LBRACE, - STATE(1927), 1, - sym_class_body, - [130714] = 3, + ACTIONS(6692), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(3342), 1, - sym_statement_block, - [130724] = 3, + STATE(1715), 1, + sym_class_body, + [154639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3547), 1, + STATE(3125), 1, sym_formal_parameters, - [130734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1760), 1, - sym_statement_block, - [130744] = 3, + [154649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_LBRACE, - STATE(1762), 1, - sym_class_body, - [130754] = 3, + ACTIONS(6694), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [154657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3562), 1, + STATE(4150), 1, sym_formal_parameters, - [130764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6051), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130772] = 3, + [154667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_LBRACE, - STATE(1928), 1, - sym_class_body, - [130782] = 2, + ACTIONS(4605), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 2, + ACTIONS(6568), 2, anon_sym_COMMA, anon_sym_RBRACK, - [130790] = 2, + [154683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6696), 2, sym__automatic_semicolon, anon_sym_SEMI, - [130798] = 2, + [154691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 2, + ACTIONS(6698), 2, sym__automatic_semicolon, anon_sym_SEMI, - [130806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6112), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [130814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 1, - anon_sym_LBRACE, - STATE(1351), 1, - sym_class_body, - [130824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4824), 1, - anon_sym_LBRACE, - STATE(98), 1, - sym_class_body, - [130834] = 3, + [154699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2697), 1, + STATE(4149), 1, sym_formal_parameters, - [130844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 2, - sym_identifier, - sym_this, - [130852] = 3, + [154709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2879), 1, + STATE(3133), 1, sym_formal_parameters, - [130862] = 2, + [154719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [130870] = 3, + ACTIONS(6095), 1, + anon_sym_from, + STATE(3990), 1, + sym__from_clause, + [154729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - STATE(2719), 1, + STATE(722), 1, sym_class_body, - [130880] = 2, + [154739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130888] = 3, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1863), 1, + sym_statement_block, + [154749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_LBRACE, - STATE(1761), 1, - sym_class_body, - [130898] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3204), 1, + sym_formal_parameters, + [154759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(601), 1, - sym_class_body, - [130908] = 3, + STATE(639), 1, + sym_statement_block, + [154769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, + ACTIONS(6678), 1, anon_sym_LPAREN, - STATE(1310), 1, - sym_arguments, - [130918] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130926] = 3, + STATE(40), 1, + sym__for_header, + [154779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(581), 1, + STATE(640), 1, sym_statement_block, - [130936] = 3, + [154789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3429), 1, + STATE(641), 1, sym_statement_block, - [130946] = 2, + [154799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130954] = 2, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(3671), 1, + sym_type_annotation, + [154809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [130962] = 3, + ACTIONS(4548), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, - sym_identifier, - ACTIONS(6118), 1, - anon_sym_STAR, - [130972] = 3, + ACTIONS(5438), 1, + anon_sym_EQ_GT, + ACTIONS(6700), 1, + anon_sym_is, + [154827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - STATE(1741), 1, + STATE(86), 1, sym_class_body, - [130982] = 3, + [154837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_LPAREN, - STATE(1583), 1, - sym_arguments, - [130992] = 2, + ACTIONS(6479), 1, + sym_identifier, + STATE(3556), 1, + sym_type_parameter, + [154847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131000] = 3, + ACTIONS(5186), 1, + anon_sym_LBRACE, + STATE(1782), 1, + sym_class_body, + [154857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(3434), 1, - sym_statement_block, - [131010] = 2, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4085), 1, + sym_formal_parameters, + [154867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6122), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131018] = 3, + ACTIONS(6702), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [154875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1842), 1, + STATE(1621), 1, sym_statement_block, - [131028] = 3, + [154885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(3314), 1, - sym_statement_block, - [131038] = 3, + STATE(1624), 1, + sym_class_body, + [154895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_from, - STATE(3364), 1, - sym__from_clause, - [131048] = 3, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_STAR, + [154905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(582), 1, - sym_statement_block, - [131058] = 3, + STATE(3298), 1, + sym_class_body, + [154915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(561), 1, - sym_statement_block, - [131068] = 2, + ACTIONS(6708), 1, + anon_sym_in, + ACTIONS(6710), 1, + anon_sym_COLON, + [154925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(6712), 2, sym__automatic_semicolon, anon_sym_SEMI, - [131076] = 3, + [154933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(91), 1, - sym_statement_block, - [131086] = 3, + STATE(1553), 1, + sym_class_body, + [154943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(584), 1, - sym_class_body, - [131096] = 3, + ACTIONS(6714), 2, + sym_identifier, + sym_this, + [154951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, - anon_sym_LPAREN, - STATE(1183), 1, - sym_arguments, - [131106] = 3, + ACTIONS(6716), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [154959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6479), 1, sym_identifier, - ACTIONS(6126), 1, - anon_sym_STAR, - [131116] = 2, + STATE(3593), 1, + sym_type_parameter, + [154969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 2, + ACTIONS(4943), 2, anon_sym_COMMA, anon_sym_RBRACE, - [131124] = 2, + [154977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131132] = 3, + ACTIONS(6718), 1, + anon_sym_LT, + STATE(1720), 1, + sym_type_arguments, + [154987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_from, - STATE(3435), 1, - sym__from_clause, - [131142] = 2, + ACTIONS(5070), 1, + anon_sym_LT, + STATE(2564), 1, + sym_type_arguments, + [154997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131150] = 3, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym_statement_block, + [155007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6720), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + [155015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1362), 1, + STATE(1612), 1, sym_statement_block, - [131160] = 3, + [155025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_LT, - STATE(2340), 1, - sym_type_arguments, - [131170] = 3, + ACTIONS(6722), 2, + sym_identifier, + sym_this, + [155033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(1365), 1, + STATE(645), 1, sym_class_body, - [131180] = 3, + [155043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(1631), 1, + STATE(1684), 1, sym_class_body, - [131190] = 3, + [155053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(6686), 1, anon_sym_LBRACE, - STATE(3296), 1, + STATE(2027), 1, sym_statement_block, - [131200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2632), 1, - sym_formal_parameters, - [131210] = 3, + [155063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 1, - anon_sym_EQ_GT, - ACTIONS(6128), 1, - anon_sym_is, - [131220] = 3, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(710), 1, + sym_statement_block, + [155073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, - anon_sym_LPAREN, - STATE(2403), 1, - sym_formal_parameters, - [131230] = 3, + ACTIONS(5288), 1, + anon_sym_LBRACE, + STATE(643), 1, + sym_statement_block, + [155083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(105), 1, + STATE(642), 1, sym_class_body, - [131240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2819), 1, - sym_formal_parameters, - [131250] = 2, + [155093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [131258] = 2, + ACTIONS(6724), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [155101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131266] = 3, + ACTIONS(6726), 1, + anon_sym_LPAREN, + STATE(3869), 1, + sym_parenthesized_expression, + [155111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4642), 1, - anon_sym_LT, - STATE(2241), 1, - sym_type_arguments, - [131276] = 2, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3810), 1, + sym_statement_block, + [155121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6728), 2, sym__automatic_semicolon, anon_sym_SEMI, - [131284] = 3, + [155129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON, - STATE(3131), 1, - sym_type_annotation, - [131294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131302] = 3, + ACTIONS(5504), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [155137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6136), 1, - anon_sym_in, - ACTIONS(6138), 1, - anon_sym_COLON, - [131312] = 2, + ACTIONS(3160), 1, + anon_sym_LPAREN, + STATE(2607), 1, + sym_formal_parameters, + [155147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 2, + ACTIONS(6730), 2, anon_sym_COMMA, anon_sym_RPAREN, - [131320] = 3, + [155155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(577), 1, - sym_class_body, - [131330] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4162), 1, + sym_formal_parameters, + [155165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_from, - STATE(3250), 1, - sym__from_clause, - [131340] = 2, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3816), 1, + sym_statement_block, + [155175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131348] = 2, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4156), 1, + sym_formal_parameters, + [155185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6144), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131356] = 3, + ACTIONS(4955), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [155193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5305), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2355), 1, + STATE(4046), 1, sym_formal_parameters, - [131366] = 3, + [155203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 1, - anon_sym_LPAREN, - STATE(125), 1, - sym_arguments, - [131376] = 3, + ACTIONS(5212), 1, + anon_sym_LBRACE, + STATE(2013), 1, + sym_class_body, + [155213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 1, - anon_sym_LBRACE, - ACTIONS(6146), 1, - anon_sym_is, - [131386] = 3, + ACTIONS(6732), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [155221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, + ACTIONS(6734), 1, sym_identifier, - ACTIONS(5090), 1, - anon_sym_LBRACK, - [131396] = 3, + STATE(3682), 1, + sym_nested_identifier, + [155231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(608), 1, - sym_enum_body, - [131406] = 3, + STATE(1877), 1, + sym_class_body, + [155241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(6686), 1, anon_sym_LBRACE, - STATE(616), 1, + STATE(1975), 1, sym_statement_block, - [131416] = 3, + [155251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(6686), 1, anon_sym_LBRACE, - STATE(1770), 1, - sym_class_body, - [131426] = 3, + STATE(1980), 1, + sym_statement_block, + [155261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, - [131436] = 3, + ACTIONS(3620), 1, + anon_sym_LBRACE, + STATE(1874), 1, + sym_statement_block, + [155271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, - anon_sym_LPAREN, - STATE(2293), 1, - sym_formal_parameters, - [131446] = 3, + ACTIONS(6736), 2, + sym_identifier, + sym_this, + [155279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - STATE(575), 1, + STATE(1871), 1, sym_statement_block, - [131456] = 3, + [155289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(1931), 1, - sym_statement_block, - [131466] = 2, + STATE(1868), 1, + sym_class_body, + [155299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [131474] = 3, + ACTIONS(4585), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [155307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6738), 1, + sym_identifier, + STATE(3661), 1, + sym_nested_identifier, + [155317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(3363), 1, + STATE(3755), 1, sym_statement_block, - [131484] = 3, + [155327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6148), 1, - anon_sym_LT, - STATE(1604), 1, - sym_type_arguments, - [131494] = 2, + ACTIONS(5212), 1, + anon_sym_LBRACE, + STATE(1989), 1, + sym_class_body, + [155337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 2, + ACTIONS(6740), 2, anon_sym_COMMA, - anon_sym_GT, - [131502] = 3, + anon_sym_RBRACE, + [155345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, - [131512] = 2, + ACTIONS(5212), 1, + anon_sym_LBRACE, + STATE(1993), 1, + sym_class_body, + [155355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6150), 2, + ACTIONS(6742), 2, anon_sym_COMMA, anon_sym_RPAREN, - [131520] = 3, + [155363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6152), 1, - anon_sym_LPAREN, - STATE(3380), 1, - sym_parenthesized_expression, - [131530] = 3, + ACTIONS(5109), 1, + anon_sym_LT, + STATE(2879), 1, + sym_type_arguments, + [155373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(30), 1, - sym_parenthesized_expression, - [131540] = 2, + ACTIONS(6744), 1, + sym_identifier, + ACTIONS(6746), 1, + anon_sym_STAR, + [155383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6154), 2, + ACTIONS(4951), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [131548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 1, - anon_sym_LBRACE, - STATE(1957), 1, - sym_class_body, - [131558] = 3, + anon_sym_RBRACE, + [155391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, + ACTIONS(6686), 1, anon_sym_LBRACE, - STATE(1960), 1, + STATE(1995), 1, sym_statement_block, - [131568] = 3, + [155401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, + ACTIONS(6664), 1, anon_sym_LBRACE, - STATE(1956), 1, - sym_statement_block, - [131578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6156), 2, - sym_identifier, - sym_this, - [131586] = 3, + STATE(729), 1, + sym_enum_body, + [155411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3712), 1, - sym_formal_parameters, - [131596] = 3, + ACTIONS(5438), 1, + anon_sym_LBRACE, + ACTIONS(6748), 1, + anon_sym_is, + [155421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3587), 1, + STATE(4264), 1, sym_formal_parameters, - [131606] = 3, + [155431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6158), 1, + ACTIONS(2112), 1, anon_sym_LBRACE, - STATE(617), 1, - sym_switch_body, - [131616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6160), 1, - sym_identifier, - ACTIONS(6162), 1, - anon_sym_STAR, - [131626] = 3, + STATE(3761), 1, + sym_statement_block, + [155441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6104), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym__for_header, - [131636] = 3, + ACTIONS(4947), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [155449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6164), 1, + ACTIONS(5218), 1, anon_sym_LBRACE, - STATE(2854), 1, - sym_enum_body, - [131646] = 3, + STATE(1560), 1, + sym_class_body, + [155459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(1850), 1, - sym_arguments, - [131656] = 3, + STATE(4259), 1, + sym_formal_parameters, + [155469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1796), 1, - sym_class_body, - [131666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6166), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6168), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131682] = 3, + STATE(1566), 1, + sym_statement_block, + [155479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3539), 1, + STATE(4051), 1, sym_formal_parameters, - [131692] = 3, + [155489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3722), 1, - sym_formal_parameters, - [131702] = 2, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, + anon_sym_STAR, + [155499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [131710] = 3, + ACTIONS(4939), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [155507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - sym_identifier, - ACTIONS(6172), 1, - anon_sym_STAR, - [131720] = 3, + ACTIONS(6686), 1, + anon_sym_LBRACE, + STATE(2009), 1, + sym_statement_block, + [155517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(2650), 1, - sym_formal_parameters, - [131730] = 3, + ACTIONS(6754), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [155525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2863), 1, + STATE(2763), 1, sym_formal_parameters, - [131740] = 2, + [155535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [131748] = 3, + ACTIONS(2112), 1, + anon_sym_LBRACE, + STATE(3921), 1, + sym_statement_block, + [155545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3620), 1, anon_sym_LBRACE, - STATE(1843), 1, + STATE(1794), 1, sym_statement_block, - [131758] = 3, + [155555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(1177), 1, - sym_arguments, - [131768] = 3, + STATE(4089), 1, + sym_formal_parameters, + [155565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5288), 1, anon_sym_LBRACE, - STATE(3445), 1, + STATE(3193), 1, sym_statement_block, - [131778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4812), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_class_body, - [131788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4511), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [131796] = 2, + [155575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 2, + ACTIONS(6756), 2, sym__automatic_semicolon, anon_sym_SEMI, - [131804] = 2, + [155583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 2, + ACTIONS(6758), 1, sym_identifier, - sym_this, - [131812] = 3, + ACTIONS(6760), 1, + anon_sym_STAR, + [155593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - STATE(3442), 1, - sym_statement_block, - [131822] = 3, + STATE(2015), 1, + sym_class_body, + [155603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(2875), 1, + STATE(3139), 1, sym_formal_parameters, - [131832] = 3, + [155613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, - sym_identifier, - ACTIONS(5010), 1, - anon_sym_LBRACK, - [131842] = 2, + ACTIONS(6762), 1, + anon_sym_LBRACE, + STATE(3238), 1, + sym_enum_body, + [155623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6176), 2, + ACTIONS(4917), 2, anon_sym_COMMA, anon_sym_RBRACE, - [131850] = 2, + [155631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 2, + ACTIONS(5212), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [131858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4503), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [131866] = 2, + STATE(2016), 1, + sym_class_body, + [155641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [131874] = 3, + ACTIONS(5288), 1, + anon_sym_LBRACE, + STATE(3268), 1, + sym_statement_block, + [155651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(6686), 1, anon_sym_LBRACE, - STATE(3400), 1, + STATE(2017), 1, sym_statement_block, - [131884] = 2, + [155661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 2, + ACTIONS(6173), 2, anon_sym_COMMA, anon_sym_RBRACE, - [131892] = 3, + [155669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1795), 1, - sym_statement_block, - [131902] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4243), 1, + sym_formal_parameters, + [155679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6164), 1, - anon_sym_LBRACE, - STATE(2800), 1, - sym_enum_body, - [131912] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4245), 1, + sym_formal_parameters, + [155689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, - anon_sym_LBRACE, - STATE(2796), 1, - sym_statement_block, - [131922] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4274), 1, + sym_formal_parameters, + [155699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - STATE(1264), 1, - sym_arguments, - [131932] = 3, + ACTIONS(5246), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_class_body, + [155709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_LPAREN, - STATE(1627), 1, - sym_arguments, - [131942] = 3, + ACTIONS(6762), 1, + anon_sym_LBRACE, + STATE(3294), 1, + sym_enum_body, + [155719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3603), 1, + STATE(4247), 1, sym_formal_parameters, - [131952] = 3, + [155729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3608), 1, + STATE(4284), 1, sym_formal_parameters, - [131962] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6180), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131970] = 2, + [155739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [131978] = 3, + ACTIONS(6686), 1, + anon_sym_LBRACE, + STATE(2018), 1, + sym_statement_block, + [155749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3663), 1, + STATE(4253), 1, sym_formal_parameters, - [131988] = 3, + [155759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(5288), 1, anon_sym_LBRACE, - STATE(1948), 1, - sym_class_body, - [131998] = 3, + STATE(3222), 1, + sym_statement_block, + [155769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3674), 1, + STATE(4108), 1, sym_formal_parameters, - [132008] = 2, + [155779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [132016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4772), 1, - anon_sym_LBRACE, - STATE(1858), 1, - sym_class_body, - [132026] = 2, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4109), 1, + sym_formal_parameters, + [155789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [132034] = 3, + ACTIONS(5264), 1, + sym_identifier, + ACTIONS(5266), 1, + anon_sym_LBRACK, + [155799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - STATE(1816), 1, + STATE(2019), 1, sym_class_body, - [132044] = 3, + [155809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, - anon_sym_LBRACE, - STATE(1412), 1, - sym_statement_block, - [132054] = 2, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4251), 1, + sym_formal_parameters, + [155819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [132062] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(3281), 1, + sym_formal_parameters, + [155829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_LBRACE, - STATE(3345), 1, - sym_statement_block, - [132072] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4252), 1, + sym_formal_parameters, + [155839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, - anon_sym_LBRACE, - STATE(100), 1, - sym_class_body, - [132082] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4273), 1, + sym_formal_parameters, + [155849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2705), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [155857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3756), 1, + STATE(4272), 1, sym_formal_parameters, - [132092] = 3, + [155867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3742), 1, + STATE(4278), 1, sym_formal_parameters, - [132102] = 3, + [155877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - STATE(3155), 1, - sym_type_parameter, - [132112] = 3, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(4271), 1, + sym_formal_parameters, + [155887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(2730), 1, + STATE(1892), 1, sym_class_body, - [132122] = 3, + [155897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3599), 1, + STATE(4288), 1, sym_formal_parameters, - [132132] = 3, + [155907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3630), 1, - sym_formal_parameters, - [132142] = 3, + ACTIONS(5186), 1, + anon_sym_LBRACE, + STATE(1839), 1, + sym_class_body, + [155917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_LPAREN, - STATE(3541), 1, - sym_formal_parameters, - [132152] = 3, + ACTIONS(5512), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [155925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 1, - anon_sym_LT, - STATE(1265), 1, - sym_type_arguments, - [132162] = 3, + ACTIONS(5212), 1, + anon_sym_LBRACE, + STATE(2028), 1, + sym_class_body, + [155935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3597), 1, + STATE(4286), 1, sym_formal_parameters, - [132172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [132180] = 3, + [155945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - STATE(1414), 1, + STATE(1819), 1, sym_class_body, - [132190] = 3, + [155955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_LBRACE, - STATE(1945), 1, - sym_class_body, - [132200] = 3, + ACTIONS(6095), 1, + anon_sym_from, + STATE(3792), 1, + sym__from_clause, + [155965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5324), 1, anon_sym_LPAREN, - STATE(3720), 1, + STATE(4293), 1, sym_formal_parameters, - [132210] = 2, + [155975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_COLON, - [132217] = 2, + ACTIONS(6764), 1, + anon_sym_target, + [155982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 1, + ACTIONS(6766), 1, anon_sym_EQ_GT, - [132224] = 2, + [155989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6190), 1, - anon_sym_EQ_GT, - [132231] = 2, + ACTIONS(4793), 1, + anon_sym_RBRACK, + [155996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6192), 1, - sym_identifier, - [132238] = 2, + ACTIONS(6768), 1, + anon_sym_EQ_GT, + [156003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3973), 1, - anon_sym_RBRACK, - [132245] = 2, + ACTIONS(6770), 1, + anon_sym_EQ_GT, + [156010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6194), 1, + ACTIONS(6772), 1, anon_sym_SLASH2, - [132252] = 2, + [156017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6196), 1, + ACTIONS(6774), 1, anon_sym_EQ_GT, - [132259] = 2, + [156024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - anon_sym_DOT, - [132266] = 2, + ACTIONS(6776), 1, + sym_identifier, + [156031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6198), 1, + ACTIONS(6778), 1, sym_identifier, - [132273] = 2, + [156038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 1, + ACTIONS(6780), 1, anon_sym_EQ_GT, - [132280] = 2, + [156045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, + ACTIONS(5167), 1, anon_sym_DOT, - [132287] = 2, + [156052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 1, + ACTIONS(6782), 1, anon_sym_EQ_GT, - [132294] = 2, + [156059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, + ACTIONS(6784), 1, sym_identifier, - [132301] = 2, + [156066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, + ACTIONS(6786), 1, sym_identifier, - [132308] = 2, + [156073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, + ACTIONS(6788), 1, anon_sym_EQ_GT, - [132315] = 2, + [156080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 1, - anon_sym_SLASH2, - [132322] = 2, + ACTIONS(5046), 1, + anon_sym_DOT, + [156087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, - anon_sym_EQ_GT, - [132329] = 2, + ACTIONS(4815), 1, + anon_sym_COLON, + [156094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(6790), 1, anon_sym_EQ_GT, - [132336] = 2, + [156101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 1, + ACTIONS(6792), 1, anon_sym_EQ_GT, - [132343] = 2, + [156108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 1, - anon_sym_from, - [132350] = 2, + ACTIONS(6794), 1, + anon_sym_EQ_GT, + [156115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, + ACTIONS(6796), 1, sym_identifier, - [132357] = 2, + [156122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(6798), 1, sym_identifier, - [132364] = 2, + [156129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6224), 1, - sym_number, - [132371] = 2, + ACTIONS(6800), 1, + anon_sym_EQ_GT, + [156136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 1, - sym_identifier, - [132378] = 2, + ACTIONS(6802), 1, + anon_sym_DOT, + [156143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6228), 1, - sym_number, - [132385] = 2, + ACTIONS(6804), 1, + sym_identifier, + [156150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 1, + ACTIONS(5302), 1, sym_identifier, - [132392] = 2, + [156157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_DOT, - [132399] = 2, + ACTIONS(6806), 1, + anon_sym_class, + [156164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, - anon_sym_RBRACK, - [132406] = 2, + ACTIONS(4789), 1, + anon_sym_RPAREN, + [156171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6232), 1, - sym_identifier, - [132413] = 2, + ACTIONS(6808), 1, + anon_sym_LBRACK, + [156178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 1, - sym_identifier, - [132420] = 2, + ACTIONS(4755), 1, + anon_sym_RPAREN, + [156185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, - anon_sym_DOT, - [132427] = 2, + ACTIONS(6810), 1, + anon_sym_namespace, + [156192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6236), 1, - anon_sym_EQ_GT, - [132434] = 2, + ACTIONS(6812), 1, + anon_sym_RPAREN, + [156199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 1, - sym_identifier, - [132441] = 2, + ACTIONS(4785), 1, + anon_sym_RPAREN, + [156206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6240), 1, - sym_identifier, - [132448] = 2, + ACTIONS(6814), 1, + anon_sym_COLON, + [156213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 1, - anon_sym_EQ_GT, - [132455] = 2, + ACTIONS(4769), 1, + anon_sym_RBRACK, + [156220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - [132462] = 2, - ACTIONS(5493), 1, + ACTIONS(4781), 1, + anon_sym_RPAREN, + [156227] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 1, - sym_regex_pattern, - [132469] = 2, + ACTIONS(4777), 1, + anon_sym_RPAREN, + [156234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, - anon_sym_EQ_GT, - [132476] = 2, + ACTIONS(6816), 1, + anon_sym_target, + [156241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 1, - anon_sym_EQ_GT, - [132483] = 2, + ACTIONS(6818), 1, + anon_sym_class, + [156248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 1, + ACTIONS(6820), 1, anon_sym_EQ_GT, - [132490] = 2, + [156255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 1, - sym_identifier, - [132497] = 2, + ACTIONS(6822), 1, + anon_sym_EQ, + [156262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 1, + ACTIONS(6824), 1, anon_sym_EQ_GT, - [132504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6258), 1, - sym_identifier, - [132511] = 2, + [156269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 1, - sym_identifier, - [132518] = 2, + ACTIONS(6826), 1, + anon_sym_EQ, + [156276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6262), 1, - anon_sym_target, - [132525] = 2, + ACTIONS(5795), 1, + anon_sym_EQ_GT, + [156283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, - sym_identifier, - [132532] = 2, + ACTIONS(6828), 1, + anon_sym_EQ_GT, + [156290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5956), 1, - anon_sym_LBRACE, - [132539] = 2, + ACTIONS(6830), 1, + anon_sym_EQ, + [156297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6266), 1, - anon_sym_RPAREN, - [132546] = 2, + ACTIONS(6832), 1, + anon_sym_EQ_GT, + [156304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3965), 1, - anon_sym_DOT, - [132553] = 2, + ACTIONS(6834), 1, + sym_identifier, + [156311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 1, - sym_identifier, - [132560] = 2, + ACTIONS(5881), 1, + anon_sym_EQ_GT, + [156318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(6836), 1, anon_sym_EQ_GT, - [132567] = 2, + [156325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, + ACTIONS(6838), 1, anon_sym_EQ_GT, - [132574] = 2, + [156332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6272), 1, - sym_identifier, - [132581] = 2, + ACTIONS(6840), 1, + anon_sym_EQ_GT, + [156339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - sym_identifier, - [132588] = 2, + ACTIONS(6345), 1, + anon_sym_LBRACE, + [156346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6276), 1, - anon_sym_while, - [132595] = 2, + ACTIONS(6842), 1, + anon_sym_SLASH2, + [156353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 1, + ACTIONS(6844), 1, sym_identifier, - [132602] = 2, + [156360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - anon_sym_EQ_GT, - [132609] = 2, + ACTIONS(6846), 1, + sym_identifier, + [156367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6280), 1, + ACTIONS(6848), 1, anon_sym_EQ_GT, - [132616] = 2, + [156374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6282), 1, + ACTIONS(6850), 1, sym_identifier, - [132623] = 2, + [156381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6284), 1, - sym_identifier, - [132630] = 2, + ACTIONS(6852), 1, + sym_number, + [156388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(6854), 1, anon_sym_EQ_GT, - [132637] = 2, + [156395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 1, - anon_sym_RPAREN, - [132644] = 2, + ACTIONS(3588), 1, + anon_sym_DOT, + [156402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_EQ_GT, - [132651] = 2, + ACTIONS(6856), 1, + anon_sym_function, + [156409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, + ACTIONS(6858), 1, sym_identifier, - [132658] = 2, + [156416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6288), 1, - anon_sym_target, - [132665] = 2, + ACTIONS(4817), 1, + anon_sym_RBRACK, + [156423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6860), 1, + sym_number, + [156430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(4562), 1, anon_sym_RPAREN, - [132672] = 2, + [156437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6862), 1, + anon_sym_from, + [156444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6290), 1, + ACTIONS(6864), 1, sym_identifier, - [132679] = 2, + [156451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - anon_sym_class, - [132686] = 2, + ACTIONS(6866), 1, + anon_sym_EQ_GT, + [156458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 1, + ACTIONS(5835), 1, anon_sym_EQ_GT, - [132693] = 2, + [156465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6868), 1, + anon_sym_RPAREN, + [156472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6870), 1, + anon_sym_SLASH2, + [156479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 1, + ACTIONS(6872), 1, sym_identifier, - [132700] = 2, + [156486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6296), 1, + ACTIONS(6874), 1, sym_identifier, - [132707] = 2, + [156493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 1, + ACTIONS(4897), 1, anon_sym_EQ_GT, - [132714] = 2, + [156500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6876), 1, + anon_sym_RPAREN, + [156507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 1, + ACTIONS(6878), 1, + anon_sym_RPAREN, + [156514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6880), 1, anon_sym_EQ_GT, - [132721] = 2, + [156521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6302), 1, - sym_identifier, - [132728] = 2, + ACTIONS(6882), 1, + anon_sym_RPAREN, + [156528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, + ACTIONS(6884), 1, sym_identifier, - [132735] = 2, + [156535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - anon_sym_from, - [132742] = 2, + ACTIONS(4821), 1, + anon_sym_RBRACK, + [156542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6308), 1, + ACTIONS(6886), 1, sym_identifier, - [132749] = 2, + [156549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 1, - anon_sym_from, - [132756] = 2, + ACTIONS(6888), 1, + anon_sym_EQ_GT, + [156556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6312), 1, - anon_sym_namespace, - [132763] = 2, + ACTIONS(6890), 1, + anon_sym_EQ_GT, + [156563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6314), 1, - sym_identifier, - [132770] = 2, + ACTIONS(6892), 1, + anon_sym_EQ_GT, + [156570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6316), 1, - anon_sym_from, - [132777] = 2, + ACTIONS(6894), 1, + anon_sym_EQ_GT, + [156577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6318), 1, + ACTIONS(5899), 1, + anon_sym_EQ_GT, + [156584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6896), 1, sym_identifier, - [132784] = 2, + [156591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6320), 1, + ACTIONS(5270), 1, sym_identifier, - [132791] = 2, + [156598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_RPAREN, + [156605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5309), 1, + ACTIONS(5923), 1, anon_sym_EQ_GT, - [132798] = 2, + [156612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6322), 1, - sym_identifier, - [132805] = 2, + ACTIONS(6898), 1, + ts_builtin_sym_end, + [156619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6324), 1, + ACTIONS(6900), 1, anon_sym_EQ_GT, - [132812] = 2, + [156626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6326), 1, + ACTIONS(6902), 1, sym_identifier, - [132819] = 2, + [156633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6328), 1, - anon_sym_EQ_GT, - [132826] = 2, + ACTIONS(6904), 1, + sym_identifier, + [156640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6330), 1, + ACTIONS(6906), 1, + anon_sym_class, + [156647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5072), 1, + anon_sym_DOT, + [156654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, anon_sym_EQ_GT, - [132833] = 2, + [156661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 1, - anon_sym_require, - [132840] = 2, + ACTIONS(6910), 1, + anon_sym_from, + [156668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6334), 1, + ACTIONS(6912), 1, sym_identifier, - [132847] = 2, + [156675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, + ACTIONS(5983), 1, anon_sym_EQ_GT, - [132854] = 2, + [156682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6336), 1, - anon_sym_class, - [132861] = 2, + ACTIONS(6914), 1, + anon_sym_from, + [156689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6338), 1, - anon_sym_RPAREN, - [132868] = 2, - ACTIONS(3), 1, + ACTIONS(6916), 1, + sym_identifier, + [156696] = 2, + ACTIONS(5973), 1, sym_comment, - ACTIONS(6340), 1, - anon_sym_EQ, - [132875] = 2, + ACTIONS(6918), 1, + sym_regex_pattern, + [156703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3979), 1, - anon_sym_RBRACK, - [132882] = 2, + ACTIONS(6920), 1, + anon_sym_EQ_GT, + [156710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6342), 1, - anon_sym_EQ, - [132889] = 2, + ACTIONS(6922), 1, + anon_sym_EQ_GT, + [156717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, - anon_sym_RBRACK, - [132896] = 2, + ACTIONS(6924), 1, + anon_sym_EQ_GT, + [156724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(6926), 1, anon_sym_EQ_GT, - [132903] = 2, + [156731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, - anon_sym_DOT, - [132910] = 2, + ACTIONS(6928), 1, + sym_identifier, + [156738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 1, - anon_sym_LPAREN, - [132917] = 2, + ACTIONS(6930), 1, + anon_sym_EQ_GT, + [156745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6348), 1, - anon_sym_from, - [132924] = 2, - ACTIONS(5493), 1, - sym_comment, - ACTIONS(6350), 1, - sym_regex_pattern, - [132931] = 2, + ACTIONS(5264), 1, + sym_identifier, + [156752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5076), 1, + ACTIONS(6932), 1, sym_identifier, - [132938] = 2, + [156759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6352), 1, - sym_identifier, - [132945] = 2, + ACTIONS(6934), 1, + sym_number, + [156766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6354), 1, - sym_identifier, - [132952] = 2, + ACTIONS(4739), 1, + anon_sym_RBRACK, + [156773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, - sym_identifier, - [132959] = 2, + ACTIONS(6936), 1, + anon_sym_RBRACK, + [156780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 1, - sym_identifier, - [132966] = 2, + ACTIONS(4741), 1, + anon_sym_RBRACK, + [156787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_EQ_GT, - [132973] = 2, + ACTIONS(6938), 1, + anon_sym_RBRACK, + [156794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, + ACTIONS(6940), 1, sym_identifier, - [132980] = 2, + [156801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, + ACTIONS(6942), 1, sym_identifier, - [132987] = 2, - ACTIONS(5493), 1, + [156808] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 1, - sym_regex_pattern, - [132994] = 2, + ACTIONS(6944), 1, + anon_sym_RBRACK, + [156815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6364), 1, + ACTIONS(5943), 1, anon_sym_EQ_GT, - [133001] = 2, + [156822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6366), 1, - anon_sym_EQ_GT, - [133008] = 2, + ACTIONS(6946), 1, + anon_sym_COLON, + [156829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 1, - sym_identifier, - [133015] = 2, + ACTIONS(5113), 1, + anon_sym_DOT, + [156836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_EQ_GT, - [133022] = 2, + ACTIONS(6948), 1, + anon_sym_RPAREN, + [156843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6372), 1, - sym_identifier, - [133029] = 2, + ACTIONS(6950), 1, + anon_sym_from, + [156850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 1, - sym_identifier, - [133036] = 2, + ACTIONS(6952), 1, + sym_readonly, + [156857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(6954), 1, anon_sym_EQ_GT, - [133043] = 2, + [156864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 1, - anon_sym_EQ_GT, - [133050] = 2, + ACTIONS(6956), 1, + sym_identifier, + [156871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, + ACTIONS(5909), 1, anon_sym_EQ_GT, - [133057] = 2, + [156878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, - anon_sym_RBRACK, - [133064] = 2, + ACTIONS(6958), 1, + sym_identifier, + [156885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 1, - sym_identifier, - [133071] = 2, + ACTIONS(6960), 1, + anon_sym_EQ_GT, + [156892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, - sym_identifier, - [133078] = 2, + ACTIONS(6962), 1, + anon_sym_EQ_GT, + [156899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6384), 1, + ACTIONS(6964), 1, anon_sym_EQ_GT, - [133085] = 2, + [156906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, - anon_sym_LBRACE, - [133092] = 2, + ACTIONS(6966), 1, + anon_sym_namespace, + [156913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_require, + [156920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6388), 1, + ACTIONS(6970), 1, anon_sym_COLON, - [133099] = 2, + [156927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, - anon_sym_EQ_GT, - [133106] = 2, + ACTIONS(6972), 1, + sym_identifier, + [156934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6392), 1, + ACTIONS(6974), 1, sym_identifier, - [133113] = 2, + [156941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_EQ_GT, - [133120] = 2, + ACTIONS(6976), 1, + sym_identifier, + [156948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 1, - anon_sym_EQ_GT, - [133127] = 2, + ACTIONS(6978), 1, + sym_identifier, + [156955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 1, + anon_sym_RBRACK, + [156962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_RBRACK, + [156969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 1, + ACTIONS(6980), 1, sym_identifier, - [133134] = 2, + [156976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6400), 1, + ACTIONS(6982), 1, sym_identifier, - [133141] = 2, + [156983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6402), 1, + ACTIONS(6984), 1, anon_sym_EQ_GT, - [133148] = 2, + [156990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6404), 1, + ACTIONS(6986), 1, anon_sym_EQ_GT, - [133155] = 2, + [156997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 1, - anon_sym_as, - [133162] = 2, + ACTIONS(6988), 1, + anon_sym_EQ_GT, + [157004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6408), 1, - sym_identifier, - [133169] = 2, + ACTIONS(6990), 1, + anon_sym_EQ_GT, + [157011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 1, + ACTIONS(6992), 1, anon_sym_EQ_GT, - [133176] = 2, + [157018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6412), 1, + ACTIONS(4795), 1, anon_sym_RPAREN, - [133183] = 2, + [157025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 1, + ACTIONS(6994), 1, anon_sym_EQ_GT, - [133190] = 2, + [157032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6416), 1, - sym_number, - [133197] = 2, + ACTIONS(6996), 1, + anon_sym_EQ_GT, + [157039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 1, + ACTIONS(6998), 1, anon_sym_EQ_GT, - [133204] = 2, + [157046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_RPAREN, - [133211] = 2, + ACTIONS(7000), 1, + anon_sym_EQ_GT, + [157053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6420), 1, - anon_sym_LBRACK, - [133218] = 2, + ACTIONS(7002), 1, + sym_identifier, + [157060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 1, - anon_sym_RPAREN, - [133225] = 2, + ACTIONS(7004), 1, + sym_identifier, + [157067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6424), 1, + ACTIONS(4825), 1, anon_sym_RBRACK, - [133232] = 2, + [157074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 1, + ACTIONS(7006), 1, + anon_sym_LPAREN, + [157081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4829), 1, anon_sym_RPAREN, - [133239] = 2, + [157088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(5903), 1, anon_sym_EQ_GT, - [133246] = 2, + [157095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, + ACTIONS(7008), 1, anon_sym_EQ_GT, - [133253] = 2, + [157102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, - sym_identifier, - [133260] = 2, + ACTIONS(4833), 1, + anon_sym_RPAREN, + [157109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, - sym_identifier, - [133267] = 2, - ACTIONS(3), 1, + ACTIONS(7010), 1, + anon_sym_COLON, + [157116] = 2, + ACTIONS(5973), 1, sym_comment, - ACTIONS(6436), 1, - anon_sym_EQ_GT, - [133274] = 2, + ACTIONS(7012), 1, + sym_regex_pattern, + [157123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6438), 1, + ACTIONS(5310), 1, sym_identifier, - [133281] = 2, + [157130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6440), 1, - sym_readonly, - [133288] = 2, + ACTIONS(4737), 1, + anon_sym_RBRACE, + [157137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(4835), 1, anon_sym_RPAREN, - [133295] = 2, + [157144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_class, - [133302] = 2, + ACTIONS(7014), 1, + sym_identifier, + [157151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, - anon_sym_RBRACK, - [133309] = 2, + ACTIONS(4837), 1, + anon_sym_RPAREN, + [157158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, - anon_sym_RBRACK, - [133316] = 2, + ACTIONS(7016), 1, + anon_sym_EQ_GT, + [157165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, - anon_sym_RBRACK, - [133323] = 2, + ACTIONS(7018), 1, + anon_sym_EQ, + [157172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - anon_sym_COLON, - [133330] = 2, + ACTIONS(7020), 1, + anon_sym_from, + [157179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, + ACTIONS(7022), 1, sym_identifier, - [133337] = 2, + [157186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6450), 1, - anon_sym_function, - [133344] = 2, + ACTIONS(7024), 1, + sym_identifier, + [157193] = 2, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(7026), 1, + sym_regex_pattern, + [157200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 1, + ACTIONS(7028), 1, sym_identifier, - [133351] = 2, + [157207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(7030), 1, sym_identifier, - [133358] = 2, + [157214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6454), 1, - anon_sym_COLON, - [133365] = 2, + ACTIONS(7032), 1, + sym_identifier, + [157221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 1, + ACTIONS(7034), 1, sym_identifier, - [133372] = 2, + [157228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3977), 1, - anon_sym_RBRACK, - [133379] = 2, + ACTIONS(7036), 1, + anon_sym_target, + [157235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6458), 1, - sym_identifier, - [133386] = 2, + ACTIONS(7038), 1, + anon_sym_RPAREN, + [157242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 1, + ACTIONS(7040), 1, sym_identifier, - [133393] = 2, + [157249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6462), 1, - sym_identifier, - [133400] = 2, + ACTIONS(7042), 1, + anon_sym_from, + [157256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6012), 1, - anon_sym_RBRACE, - [133407] = 2, + ACTIONS(7044), 1, + anon_sym_EQ_GT, + [157263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 1, + ACTIONS(7046), 1, sym_identifier, - [133414] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_namespace, - [133421] = 2, + [157270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, + ACTIONS(7048), 1, sym_identifier, - [133428] = 2, + [157277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6470), 1, + ACTIONS(7050), 1, sym_identifier, - [133435] = 2, + [157284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 1, - anon_sym_RPAREN, - [133442] = 2, + ACTIONS(7052), 1, + anon_sym_EQ_GT, + [157291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, - sym_identifier, - [133449] = 2, + ACTIONS(6467), 1, + anon_sym_from, + [157298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, - anon_sym_EQ, - [133456] = 2, + ACTIONS(7054), 1, + sym_identifier, + [157305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 1, - anon_sym_RBRACK, - [133463] = 2, + ACTIONS(7056), 1, + sym_identifier, + [157312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6478), 1, - sym_identifier, - [133470] = 2, + ACTIONS(7058), 1, + anon_sym_from, + [157319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3934), 1, - anon_sym_RPAREN, - [133477] = 2, + ACTIONS(7060), 1, + anon_sym_LBRACE, + [157326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, - anon_sym_RPAREN, - [133484] = 2, + ACTIONS(7062), 1, + anon_sym_RBRACE, + [157333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, + ACTIONS(7064), 1, sym_identifier, - [133491] = 2, + [157340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, + ACTIONS(7066), 1, sym_identifier, - [133498] = 2, + [157347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6484), 1, - anon_sym_EQ_GT, - [133505] = 2, + ACTIONS(4745), 1, + anon_sym_RBRACK, + [157354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(7068), 1, sym_identifier, - [133512] = 2, + [157361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, - anon_sym_RPAREN, - [133519] = 2, + ACTIONS(7070), 1, + anon_sym_EQ_GT, + [157368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 1, - anon_sym_RPAREN, - [133526] = 2, + ACTIONS(7072), 1, + anon_sym_EQ_GT, + [157375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_RPAREN, - [133533] = 2, + ACTIONS(7074), 1, + anon_sym_EQ_GT, + [157382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, - anon_sym_RPAREN, - [133540] = 2, + ACTIONS(7076), 1, + anon_sym_EQ_GT, + [157389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6488), 1, - anon_sym_COLON, - [133547] = 2, + ACTIONS(7078), 1, + sym_identifier, + [157396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_RPAREN, - [133554] = 2, + ACTIONS(7080), 1, + sym_identifier, + [157403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_RPAREN, - [133561] = 2, + ACTIONS(5845), 1, + anon_sym_EQ_GT, + [157410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6492), 1, - sym_number, - [133568] = 2, + ACTIONS(7082), 1, + anon_sym_RPAREN, + [157417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, + ACTIONS(7084), 1, anon_sym_EQ_GT, - [133575] = 2, + [157424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 1, - anon_sym_EQ_GT, - [133582] = 2, + ACTIONS(7086), 1, + sym_identifier, + [157431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_EQ_GT, - [133589] = 2, + ACTIONS(7088), 1, + anon_sym_COLON, + [157438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 1, + ACTIONS(5843), 1, anon_sym_EQ_GT, - [133596] = 2, + [157445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, - anon_sym_EQ_GT, - [133603] = 2, + ACTIONS(7090), 1, + sym_identifier, + [157452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 1, + ACTIONS(5306), 1, sym_identifier, - [133610] = 2, + [157459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 1, - anon_sym_EQ_GT, - [133617] = 2, + ACTIONS(4749), 1, + anon_sym_RBRACK, + [157466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 1, - anon_sym_EQ, - [133624] = 2, + ACTIONS(5859), 1, + anon_sym_EQ_GT, + [157473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 1, + ACTIONS(7092), 1, anon_sym_EQ_GT, - [133631] = 2, + [157480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 1, - anon_sym_from, - [133638] = 2, + ACTIONS(7094), 1, + sym_identifier, + [157487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 1, - anon_sym_EQ, - [133645] = 2, + ACTIONS(7096), 1, + sym_identifier, + [157494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6516), 1, + ACTIONS(7098), 1, sym_identifier, - [133652] = 2, + [157501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5431), 1, + ACTIONS(7100), 1, anon_sym_EQ_GT, - [133659] = 2, + [157508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 1, + ACTIONS(5292), 1, sym_identifier, - [133666] = 2, + [157515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(7102), 1, + anon_sym_EQ, + [157522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5925), 1, anon_sym_EQ_GT, - [133673] = 2, + [157529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - ts_builtin_sym_end, - [133680] = 2, + ACTIONS(4541), 1, + anon_sym_RPAREN, + [157536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 1, + ACTIONS(3910), 1, + anon_sym_DOT, + [157543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7104), 1, sym_identifier, - [133687] = 2, + [157550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_RPAREN, - [133694] = 2, + ACTIONS(7106), 1, + sym_identifier, + [157557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym_RBRACK, - [133701] = 2, + ACTIONS(7108), 1, + anon_sym_EQ, + [157564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, - anon_sym_RPAREN, - [133708] = 2, + ACTIONS(7110), 1, + sym_identifier, + [157571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, - anon_sym_SLASH2, - [133715] = 2, + ACTIONS(7112), 1, + sym_number, + [157578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, + ACTIONS(7114), 1, sym_identifier, - [133722] = 2, + [157585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_RBRACK, - [133729] = 2, + ACTIONS(7116), 1, + sym_identifier, + [157592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7118), 1, + anon_sym_EQ_GT, + [157599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6430), 1, + anon_sym_RBRACE, + [157606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 1, + ACTIONS(7120), 1, sym_identifier, - [133736] = 2, + [157613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6534), 1, + ACTIONS(7122), 1, sym_identifier, - [133743] = 2, + [157620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 1, - anon_sym_EQ_GT, - [133750] = 2, + ACTIONS(7124), 1, + anon_sym_function, + [157627] = 2, + ACTIONS(5973), 1, + sym_comment, + ACTIONS(7126), 1, + sym_regex_pattern, + [157634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6538), 1, - anon_sym_class, - [133757] = 2, + ACTIONS(7128), 1, + sym_identifier, + [157641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(7130), 1, sym_identifier, - [133764] = 2, + [157648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3971), 1, - anon_sym_RPAREN, - [133771] = 2, + ACTIONS(4767), 1, + anon_sym_RBRACK, + [157655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, + ACTIONS(7132), 1, anon_sym_EQ_GT, - [133778] = 2, + [157662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 1, + ACTIONS(7134), 1, sym_identifier, - [133785] = 2, + [157669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5451), 1, + ACTIONS(7136), 1, anon_sym_EQ_GT, - [133792] = 2, + [157676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, - sym_identifier, - [133799] = 2, + ACTIONS(7138), 1, + anon_sym_EQ_GT, + [157683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 1, - sym_number, - [133806] = 2, + ACTIONS(7140), 1, + anon_sym_EQ_GT, + [157690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - sym_identifier, - [133813] = 2, + ACTIONS(7142), 1, + anon_sym_EQ_GT, + [157697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 1, + ACTIONS(7144), 1, sym_identifier, - [133820] = 2, + [157704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_function, - [133827] = 2, + ACTIONS(7146), 1, + anon_sym_COLON, + [157711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, + ACTIONS(7148), 1, anon_sym_EQ_GT, - [133834] = 2, + [157718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 1, - anon_sym_SLASH2, - [133841] = 2, + ACTIONS(7150), 1, + anon_sym_EQ_GT, + [157725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, + ACTIONS(7152), 1, anon_sym_EQ_GT, - [133848] = 2, + [157732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 1, - anon_sym_from, - [133855] = 2, + ACTIONS(7154), 1, + anon_sym_EQ_GT, + [157739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 1, + ACTIONS(7156), 1, sym_identifier, - [133862] = 2, + [157746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6562), 1, - sym_identifier, - [133869] = 2, + ACTIONS(3930), 1, + anon_sym_DOT, + [157753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, - sym_identifier, - [133876] = 2, + ACTIONS(7158), 1, + anon_sym_EQ_GT, + [157760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 1, + ACTIONS(7160), 1, sym_identifier, - [133883] = 2, + [157767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 1, - anon_sym_EQ, - [133890] = 2, + ACTIONS(7162), 1, + anon_sym_EQ_GT, + [157774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 1, - sym_identifier, - [133897] = 2, + ACTIONS(7164), 1, + anon_sym_RPAREN, + [157781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5437), 1, + ACTIONS(7166), 1, anon_sym_EQ_GT, - [133904] = 2, + [157788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 1, - anon_sym_COLON, - [133911] = 2, + ACTIONS(7168), 1, + sym_identifier, + [157795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5459), 1, - anon_sym_EQ_GT, - [133918] = 2, + ACTIONS(7170), 1, + sym_number, + [157802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6574), 1, + ACTIONS(7172), 1, anon_sym_EQ_GT, - [133925] = 2, + [157809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 1, - anon_sym_RPAREN, - [133932] = 2, + ACTIONS(7174), 1, + anon_sym_EQ_GT, + [157816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 1, + ACTIONS(7176), 1, anon_sym_EQ_GT, - [133939] = 2, + [157823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, + ACTIONS(7178), 1, anon_sym_EQ_GT, - [133946] = 2, + [157830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, - anon_sym_EQ_GT, - [133953] = 2, - ACTIONS(5493), 1, + ACTIONS(4523), 1, + anon_sym_RPAREN, + [157837] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 1, - sym_regex_pattern, - [133960] = 2, + ACTIONS(7180), 1, + anon_sym_EQ_GT, + [157844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(7182), 1, sym_identifier, - [133967] = 2, + [157851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 1, - sym_identifier, - [133974] = 2, + ACTIONS(7184), 1, + anon_sym_EQ_GT, + [157858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, - sym_identifier, - [133981] = 2, + ACTIONS(7186), 1, + anon_sym_EQ_GT, + [157865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 1, + ACTIONS(7188), 1, anon_sym_EQ_GT, - [133988] = 2, + [157872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 1, - anon_sym_RPAREN, - [133995] = 2, + ACTIONS(7190), 1, + anon_sym_EQ_GT, + [157879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, - anon_sym_target, - [134002] = 2, + ACTIONS(7192), 1, + anon_sym_EQ_GT, + [157886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_RBRACE, - [134009] = 2, + ACTIONS(7194), 1, + anon_sym_EQ_GT, + [157893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, - anon_sym_RBRACK, - [134016] = 2, + ACTIONS(7196), 1, + anon_sym_COLON, + [157900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_EQ_GT, + [157907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 1, + ACTIONS(7200), 1, sym_identifier, - [134023] = 2, + [157914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 1, - anon_sym_from, - [134030] = 2, + ACTIONS(4435), 1, + anon_sym_RPAREN, + [157921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 1, - anon_sym_RBRACE, - [134037] = 2, + ACTIONS(7202), 1, + anon_sym_as, + [157928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, - sym_number, - [134044] = 2, + ACTIONS(7204), 1, + sym_identifier, + [157935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5475), 1, + ACTIONS(7206), 1, anon_sym_EQ_GT, - [134051] = 2, + [157942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 1, + ACTIONS(7208), 1, anon_sym_EQ_GT, - [134058] = 2, + [157949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - sym_identifier, - [134065] = 2, + ACTIONS(7210), 1, + sym_number, + [157956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7212), 1, + anon_sym_EQ_GT, + [157963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, + ACTIONS(7214), 1, sym_identifier, - [134072] = 2, + [157970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3900), 1, - anon_sym_COLON, - [134079] = 2, + ACTIONS(7216), 1, + anon_sym_EQ_GT, + [157977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3938), 1, - anon_sym_RPAREN, - [134086] = 2, + ACTIONS(7218), 1, + anon_sym_while, + [157984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(7220), 1, sym_identifier, - [134093] = 2, + [157991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 1, + ACTIONS(7222), 1, anon_sym_EQ_GT, - [134100] = 2, + [157998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_COLON, - [134107] = 2, + ACTIONS(7224), 1, + anon_sym_EQ_GT, + [158005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(7226), 1, + anon_sym_EQ_GT, + [158012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7228), 1, sym_identifier, - [134114] = 2, + [158019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3983), 1, - anon_sym_RBRACK, - [134121] = 2, + ACTIONS(7230), 1, + anon_sym_SLASH2, + [158026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3789), 1, - anon_sym_DOT, - [134128] = 2, + ACTIONS(7232), 1, + anon_sym_EQ_GT, + [158033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, + ACTIONS(7234), 1, sym_identifier, - [134135] = 2, + [158040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 1, - anon_sym_EQ_GT, - [134142] = 2, + ACTIONS(7236), 1, + sym_number, + [158047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 1, - sym_identifier, - [134149] = 2, + ACTIONS(7238), 1, + anon_sym_class, + [158054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_EQ_GT, + ACTIONS(7240), 1, + sym_identifier, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(693)] = 0, - [SMALL_STATE(694)] = 103, - [SMALL_STATE(695)] = 198, - [SMALL_STATE(696)] = 301, - [SMALL_STATE(697)] = 403, - [SMALL_STATE(698)] = 499, - [SMALL_STATE(699)] = 593, - [SMALL_STATE(700)] = 695, - [SMALL_STATE(701)] = 791, - [SMALL_STATE(702)] = 887, - [SMALL_STATE(703)] = 985, - [SMALL_STATE(704)] = 1081, - [SMALL_STATE(705)] = 1180, - [SMALL_STATE(706)] = 1263, - [SMALL_STATE(707)] = 1358, - [SMALL_STATE(708)] = 1451, - [SMALL_STATE(709)] = 1540, - [SMALL_STATE(710)] = 1633, - [SMALL_STATE(711)] = 1730, - [SMALL_STATE(712)] = 1822, - [SMALL_STATE(713)] = 1908, - [SMALL_STATE(714)] = 2000, - [SMALL_STATE(715)] = 2126, - [SMALL_STATE(716)] = 2214, - [SMALL_STATE(717)] = 2308, - [SMALL_STATE(718)] = 2402, - [SMALL_STATE(719)] = 2478, - [SMALL_STATE(720)] = 2570, - [SMALL_STATE(721)] = 2657, - [SMALL_STATE(722)] = 2724, - [SMALL_STATE(723)] = 2811, - [SMALL_STATE(724)] = 2906, - [SMALL_STATE(725)] = 2997, - [SMALL_STATE(726)] = 3084, - [SMALL_STATE(727)] = 3171, - [SMALL_STATE(728)] = 3262, - [SMALL_STATE(729)] = 3329, - [SMALL_STATE(730)] = 3396, - [SMALL_STATE(731)] = 3463, - [SMALL_STATE(732)] = 3530, - [SMALL_STATE(733)] = 3619, - [SMALL_STATE(734)] = 3694, - [SMALL_STATE(735)] = 3761, - [SMALL_STATE(736)] = 3850, - [SMALL_STATE(737)] = 3945, - [SMALL_STATE(738)] = 4012, - [SMALL_STATE(739)] = 4105, - [SMALL_STATE(740)] = 4172, - [SMALL_STATE(741)] = 4247, - [SMALL_STATE(742)] = 4322, - [SMALL_STATE(743)] = 4413, - [SMALL_STATE(744)] = 4480, - [SMALL_STATE(745)] = 4566, - [SMALL_STATE(746)] = 4656, - [SMALL_STATE(747)] = 4782, - [SMALL_STATE(748)] = 4870, - [SMALL_STATE(749)] = 4958, - [SMALL_STATE(750)] = 5044, - [SMALL_STATE(751)] = 5170, - [SMALL_STATE(752)] = 5258, - [SMALL_STATE(753)] = 5384, - [SMALL_STATE(754)] = 5458, - [SMALL_STATE(755)] = 5548, - [SMALL_STATE(756)] = 5674, - [SMALL_STATE(757)] = 5762, - [SMALL_STATE(758)] = 5888, - [SMALL_STATE(759)] = 5976, - [SMALL_STATE(760)] = 6060, - [SMALL_STATE(761)] = 6150, - [SMALL_STATE(762)] = 6234, - [SMALL_STATE(763)] = 6314, - [SMALL_STATE(764)] = 6440, - [SMALL_STATE(765)] = 6528, - [SMALL_STATE(766)] = 6618, - [SMALL_STATE(767)] = 6704, - [SMALL_STATE(768)] = 6790, - [SMALL_STATE(769)] = 6878, - [SMALL_STATE(770)] = 7004, - [SMALL_STATE(771)] = 7135, - [SMALL_STATE(772)] = 7220, - [SMALL_STATE(773)] = 7301, - [SMALL_STATE(774)] = 7374, - [SMALL_STATE(775)] = 7497, - [SMALL_STATE(776)] = 7620, - [SMALL_STATE(777)] = 7751, - [SMALL_STATE(778)] = 7836, - [SMALL_STATE(779)] = 7967, - [SMALL_STATE(780)] = 8090, - [SMALL_STATE(781)] = 8213, - [SMALL_STATE(782)] = 8336, - [SMALL_STATE(783)] = 8459, - [SMALL_STATE(784)] = 8590, - [SMALL_STATE(785)] = 8667, - [SMALL_STATE(786)] = 8790, - [SMALL_STATE(787)] = 8867, - [SMALL_STATE(788)] = 8952, - [SMALL_STATE(789)] = 9075, - [SMALL_STATE(790)] = 9198, - [SMALL_STATE(791)] = 9329, - [SMALL_STATE(792)] = 9452, - [SMALL_STATE(793)] = 9535, - [SMALL_STATE(794)] = 9658, - [SMALL_STATE(795)] = 9789, - [SMALL_STATE(796)] = 9912, - [SMALL_STATE(797)] = 10035, - [SMALL_STATE(798)] = 10158, - [SMALL_STATE(799)] = 10245, - [SMALL_STATE(800)] = 10330, - [SMALL_STATE(801)] = 10417, - [SMALL_STATE(802)] = 10540, - [SMALL_STATE(803)] = 10671, - [SMALL_STATE(804)] = 10752, - [SMALL_STATE(805)] = 10875, - [SMALL_STATE(806)] = 10998, - [SMALL_STATE(807)] = 11089, - [SMALL_STATE(808)] = 11220, - [SMALL_STATE(809)] = 11293, - [SMALL_STATE(810)] = 11382, - [SMALL_STATE(811)] = 11505, - [SMALL_STATE(812)] = 11584, - [SMALL_STATE(813)] = 11707, - [SMALL_STATE(814)] = 11830, - [SMALL_STATE(815)] = 11961, - [SMALL_STATE(816)] = 12046, - [SMALL_STATE(817)] = 12135, - [SMALL_STATE(818)] = 12220, - [SMALL_STATE(819)] = 12305, - [SMALL_STATE(820)] = 12428, - [SMALL_STATE(821)] = 12551, - [SMALL_STATE(822)] = 12634, - [SMALL_STATE(823)] = 12721, - [SMALL_STATE(824)] = 12844, - [SMALL_STATE(825)] = 12927, - [SMALL_STATE(826)] = 13050, - [SMALL_STATE(827)] = 13173, - [SMALL_STATE(828)] = 13296, - [SMALL_STATE(829)] = 13381, - [SMALL_STATE(830)] = 13472, - [SMALL_STATE(831)] = 13557, - [SMALL_STATE(832)] = 13642, - [SMALL_STATE(833)] = 13727, - [SMALL_STATE(834)] = 13850, - [SMALL_STATE(835)] = 13932, - [SMALL_STATE(836)] = 14052, - [SMALL_STATE(837)] = 14124, - [SMALL_STATE(838)] = 14244, - [SMALL_STATE(839)] = 14364, - [SMALL_STATE(840)] = 14484, - [SMALL_STATE(841)] = 14604, - [SMALL_STATE(842)] = 14724, - [SMALL_STATE(843)] = 14844, - [SMALL_STATE(844)] = 14964, - [SMALL_STATE(845)] = 15084, - [SMALL_STATE(846)] = 15204, - [SMALL_STATE(847)] = 15324, - [SMALL_STATE(848)] = 15444, - [SMALL_STATE(849)] = 15564, - [SMALL_STATE(850)] = 15684, - [SMALL_STATE(851)] = 15756, - [SMALL_STATE(852)] = 15876, - [SMALL_STATE(853)] = 15996, - [SMALL_STATE(854)] = 16116, - [SMALL_STATE(855)] = 16236, - [SMALL_STATE(856)] = 16316, - [SMALL_STATE(857)] = 16436, - [SMALL_STATE(858)] = 16556, - [SMALL_STATE(859)] = 16628, - [SMALL_STATE(860)] = 16692, - [SMALL_STATE(861)] = 16812, - [SMALL_STATE(862)] = 16932, - [SMALL_STATE(863)] = 17052, - [SMALL_STATE(864)] = 17172, - [SMALL_STATE(865)] = 17292, - [SMALL_STATE(866)] = 17412, - [SMALL_STATE(867)] = 17532, - [SMALL_STATE(868)] = 17652, - [SMALL_STATE(869)] = 17772, - [SMALL_STATE(870)] = 17892, - [SMALL_STATE(871)] = 18012, - [SMALL_STATE(872)] = 18132, - [SMALL_STATE(873)] = 18252, - [SMALL_STATE(874)] = 18372, - [SMALL_STATE(875)] = 18492, - [SMALL_STATE(876)] = 18612, - [SMALL_STATE(877)] = 18732, - [SMALL_STATE(878)] = 18852, - [SMALL_STATE(879)] = 18972, - [SMALL_STATE(880)] = 19092, - [SMALL_STATE(881)] = 19212, - [SMALL_STATE(882)] = 19332, - [SMALL_STATE(883)] = 19452, - [SMALL_STATE(884)] = 19572, - [SMALL_STATE(885)] = 19692, - [SMALL_STATE(886)] = 19812, - [SMALL_STATE(887)] = 19892, - [SMALL_STATE(888)] = 20012, - [SMALL_STATE(889)] = 20132, - [SMALL_STATE(890)] = 20252, - [SMALL_STATE(891)] = 20372, - [SMALL_STATE(892)] = 20492, - [SMALL_STATE(893)] = 20576, - [SMALL_STATE(894)] = 20658, - [SMALL_STATE(895)] = 20722, - [SMALL_STATE(896)] = 20800, - [SMALL_STATE(897)] = 20920, - [SMALL_STATE(898)] = 21040, - [SMALL_STATE(899)] = 21160, - [SMALL_STATE(900)] = 21280, - [SMALL_STATE(901)] = 21400, - [SMALL_STATE(902)] = 21520, - [SMALL_STATE(903)] = 21640, - [SMALL_STATE(904)] = 21760, - [SMALL_STATE(905)] = 21880, - [SMALL_STATE(906)] = 22000, - [SMALL_STATE(907)] = 22120, - [SMALL_STATE(908)] = 22240, - [SMALL_STATE(909)] = 22360, - [SMALL_STATE(910)] = 22480, - [SMALL_STATE(911)] = 22600, - [SMALL_STATE(912)] = 22720, - [SMALL_STATE(913)] = 22840, - [SMALL_STATE(914)] = 22926, - [SMALL_STATE(915)] = 22990, - [SMALL_STATE(916)] = 23110, - [SMALL_STATE(917)] = 23230, - [SMALL_STATE(918)] = 23350, - [SMALL_STATE(919)] = 23470, - [SMALL_STATE(920)] = 23590, - [SMALL_STATE(921)] = 23710, - [SMALL_STATE(922)] = 23830, - [SMALL_STATE(923)] = 23950, - [SMALL_STATE(924)] = 24070, - [SMALL_STATE(925)] = 24190, - [SMALL_STATE(926)] = 24310, - [SMALL_STATE(927)] = 24382, - [SMALL_STATE(928)] = 24502, - [SMALL_STATE(929)] = 24622, - [SMALL_STATE(930)] = 24742, - [SMALL_STATE(931)] = 24862, - [SMALL_STATE(932)] = 24982, - [SMALL_STATE(933)] = 25102, - [SMALL_STATE(934)] = 25222, - [SMALL_STATE(935)] = 25342, - [SMALL_STATE(936)] = 25416, - [SMALL_STATE(937)] = 25484, - [SMALL_STATE(938)] = 25604, - [SMALL_STATE(939)] = 25724, - [SMALL_STATE(940)] = 25844, - [SMALL_STATE(941)] = 25928, - [SMALL_STATE(942)] = 26048, - [SMALL_STATE(943)] = 26168, - [SMALL_STATE(944)] = 26288, - [SMALL_STATE(945)] = 26408, - [SMALL_STATE(946)] = 26528, - [SMALL_STATE(947)] = 26648, - [SMALL_STATE(948)] = 26712, - [SMALL_STATE(949)] = 26832, - [SMALL_STATE(950)] = 26952, - [SMALL_STATE(951)] = 27072, - [SMALL_STATE(952)] = 27192, - [SMALL_STATE(953)] = 27312, - [SMALL_STATE(954)] = 27396, - [SMALL_STATE(955)] = 27516, - [SMALL_STATE(956)] = 27636, - [SMALL_STATE(957)] = 27756, - [SMALL_STATE(958)] = 27876, - [SMALL_STATE(959)] = 27996, - [SMALL_STATE(960)] = 28116, - [SMALL_STATE(961)] = 28236, - [SMALL_STATE(962)] = 28356, - [SMALL_STATE(963)] = 28476, - [SMALL_STATE(964)] = 28596, - [SMALL_STATE(965)] = 28680, - [SMALL_STATE(966)] = 28800, - [SMALL_STATE(967)] = 28920, - [SMALL_STATE(968)] = 29040, - [SMALL_STATE(969)] = 29160, - [SMALL_STATE(970)] = 29280, - [SMALL_STATE(971)] = 29400, - [SMALL_STATE(972)] = 29520, - [SMALL_STATE(973)] = 29640, - [SMALL_STATE(974)] = 29760, - [SMALL_STATE(975)] = 29880, - [SMALL_STATE(976)] = 30000, - [SMALL_STATE(977)] = 30082, - [SMALL_STATE(978)] = 30202, - [SMALL_STATE(979)] = 30322, - [SMALL_STATE(980)] = 30442, - [SMALL_STATE(981)] = 30562, - [SMALL_STATE(982)] = 30682, - [SMALL_STATE(983)] = 30802, - [SMALL_STATE(984)] = 30922, - [SMALL_STATE(985)] = 31042, - [SMALL_STATE(986)] = 31162, - [SMALL_STATE(987)] = 31282, - [SMALL_STATE(988)] = 31346, - [SMALL_STATE(989)] = 31466, - [SMALL_STATE(990)] = 31586, - [SMALL_STATE(991)] = 31706, - [SMALL_STATE(992)] = 31826, - [SMALL_STATE(993)] = 31946, - [SMALL_STATE(994)] = 32066, - [SMALL_STATE(995)] = 32186, - [SMALL_STATE(996)] = 32306, - [SMALL_STATE(997)] = 32426, - [SMALL_STATE(998)] = 32504, - [SMALL_STATE(999)] = 32624, - [SMALL_STATE(1000)] = 32702, - [SMALL_STATE(1001)] = 32822, - [SMALL_STATE(1002)] = 32942, - [SMALL_STATE(1003)] = 33062, - [SMALL_STATE(1004)] = 33182, - [SMALL_STATE(1005)] = 33302, - [SMALL_STATE(1006)] = 33422, - [SMALL_STATE(1007)] = 33542, - [SMALL_STATE(1008)] = 33662, - [SMALL_STATE(1009)] = 33782, - [SMALL_STATE(1010)] = 33902, - [SMALL_STATE(1011)] = 34022, - [SMALL_STATE(1012)] = 34106, - [SMALL_STATE(1013)] = 34188, - [SMALL_STATE(1014)] = 34308, - [SMALL_STATE(1015)] = 34428, - [SMALL_STATE(1016)] = 34548, - [SMALL_STATE(1017)] = 34668, - [SMALL_STATE(1018)] = 34788, - [SMALL_STATE(1019)] = 34908, - [SMALL_STATE(1020)] = 35028, - [SMALL_STATE(1021)] = 35148, - [SMALL_STATE(1022)] = 35268, - [SMALL_STATE(1023)] = 35388, - [SMALL_STATE(1024)] = 35508, - [SMALL_STATE(1025)] = 35586, - [SMALL_STATE(1026)] = 35706, - [SMALL_STATE(1027)] = 35770, - [SMALL_STATE(1028)] = 35890, - [SMALL_STATE(1029)] = 36010, - [SMALL_STATE(1030)] = 36130, - [SMALL_STATE(1031)] = 36250, - [SMALL_STATE(1032)] = 36370, - [SMALL_STATE(1033)] = 36490, - [SMALL_STATE(1034)] = 36610, - [SMALL_STATE(1035)] = 36730, - [SMALL_STATE(1036)] = 36850, - [SMALL_STATE(1037)] = 36970, - [SMALL_STATE(1038)] = 37090, - [SMALL_STATE(1039)] = 37174, - [SMALL_STATE(1040)] = 37294, - [SMALL_STATE(1041)] = 37372, - [SMALL_STATE(1042)] = 37492, - [SMALL_STATE(1043)] = 37612, - [SMALL_STATE(1044)] = 37690, - [SMALL_STATE(1045)] = 37754, - [SMALL_STATE(1046)] = 37874, - [SMALL_STATE(1047)] = 37958, - [SMALL_STATE(1048)] = 38078, - [SMALL_STATE(1049)] = 38160, - [SMALL_STATE(1050)] = 38240, - [SMALL_STATE(1051)] = 38360, - [SMALL_STATE(1052)] = 38480, - [SMALL_STATE(1053)] = 38556, - [SMALL_STATE(1054)] = 38676, - [SMALL_STATE(1055)] = 38796, - [SMALL_STATE(1056)] = 38916, - [SMALL_STATE(1057)] = 39036, - [SMALL_STATE(1058)] = 39156, - [SMALL_STATE(1059)] = 39236, - [SMALL_STATE(1060)] = 39356, - [SMALL_STATE(1061)] = 39476, - [SMALL_STATE(1062)] = 39596, - [SMALL_STATE(1063)] = 39716, - [SMALL_STATE(1064)] = 39836, - [SMALL_STATE(1065)] = 39900, - [SMALL_STATE(1066)] = 40020, - [SMALL_STATE(1067)] = 40084, - [SMALL_STATE(1068)] = 40204, - [SMALL_STATE(1069)] = 40324, - [SMALL_STATE(1070)] = 40444, - [SMALL_STATE(1071)] = 40564, - [SMALL_STATE(1072)] = 40640, - [SMALL_STATE(1073)] = 40760, - [SMALL_STATE(1074)] = 40880, - [SMALL_STATE(1075)] = 41000, - [SMALL_STATE(1076)] = 41120, - [SMALL_STATE(1077)] = 41204, - [SMALL_STATE(1078)] = 41324, - [SMALL_STATE(1079)] = 41403, - [SMALL_STATE(1080)] = 41484, - [SMALL_STATE(1081)] = 41565, - [SMALL_STATE(1082)] = 41642, - [SMALL_STATE(1083)] = 41713, - [SMALL_STATE(1084)] = 41794, - [SMALL_STATE(1085)] = 41875, - [SMALL_STATE(1086)] = 41946, - [SMALL_STATE(1087)] = 42017, - [SMALL_STATE(1088)] = 42090, - [SMALL_STATE(1089)] = 42161, - [SMALL_STATE(1090)] = 42232, - [SMALL_STATE(1091)] = 42307, - [SMALL_STATE(1092)] = 42388, - [SMALL_STATE(1093)] = 42459, - [SMALL_STATE(1094)] = 42538, - [SMALL_STATE(1095)] = 42609, - [SMALL_STATE(1096)] = 42676, - [SMALL_STATE(1097)] = 42749, - [SMALL_STATE(1098)] = 42826, - [SMALL_STATE(1099)] = 42897, - [SMALL_STATE(1100)] = 42968, - [SMALL_STATE(1101)] = 43043, - [SMALL_STATE(1102)] = 43118, - [SMALL_STATE(1103)] = 43189, - [SMALL_STATE(1104)] = 43268, - [SMALL_STATE(1105)] = 43343, - [SMALL_STATE(1106)] = 43422, - [SMALL_STATE(1107)] = 43484, - [SMALL_STATE(1108)] = 43558, - [SMALL_STATE(1109)] = 43620, - [SMALL_STATE(1110)] = 43740, - [SMALL_STATE(1111)] = 43802, - [SMALL_STATE(1112)] = 43870, - [SMALL_STATE(1113)] = 43932, - [SMALL_STATE(1114)] = 43994, - [SMALL_STATE(1115)] = 44068, - [SMALL_STATE(1116)] = 44130, - [SMALL_STATE(1117)] = 44192, - [SMALL_STATE(1118)] = 44256, - [SMALL_STATE(1119)] = 44334, - [SMALL_STATE(1120)] = 44410, - [SMALL_STATE(1121)] = 44472, - [SMALL_STATE(1122)] = 44540, - [SMALL_STATE(1123)] = 44616, - [SMALL_STATE(1124)] = 44686, - [SMALL_STATE(1125)] = 44760, - [SMALL_STATE(1126)] = 44830, - [SMALL_STATE(1127)] = 44902, - [SMALL_STATE(1128)] = 44964, - [SMALL_STATE(1129)] = 45030, - [SMALL_STATE(1130)] = 45108, - [SMALL_STATE(1131)] = 45178, - [SMALL_STATE(1132)] = 45240, - [SMALL_STATE(1133)] = 45314, - [SMALL_STATE(1134)] = 45434, - [SMALL_STATE(1135)] = 45514, - [SMALL_STATE(1136)] = 45584, - [SMALL_STATE(1137)] = 45650, - [SMALL_STATE(1138)] = 45722, - [SMALL_STATE(1139)] = 45792, - [SMALL_STATE(1140)] = 45862, - [SMALL_STATE(1141)] = 45936, - [SMALL_STATE(1142)] = 45998, - [SMALL_STATE(1143)] = 46069, - [SMALL_STATE(1144)] = 46134, - [SMALL_STATE(1145)] = 46205, - [SMALL_STATE(1146)] = 46282, - [SMALL_STATE(1147)] = 46359, - [SMALL_STATE(1148)] = 46428, - [SMALL_STATE(1149)] = 46493, - [SMALL_STATE(1150)] = 46570, - [SMALL_STATE(1151)] = 46647, - [SMALL_STATE(1152)] = 46718, - [SMALL_STATE(1153)] = 46792, - [SMALL_STATE(1154)] = 46866, - [SMALL_STATE(1155)] = 46938, - [SMALL_STATE(1156)] = 47010, - [SMALL_STATE(1157)] = 47078, - [SMALL_STATE(1158)] = 47146, - [SMALL_STATE(1159)] = 47218, - [SMALL_STATE(1160)] = 47290, - [SMALL_STATE(1161)] = 47359, - [SMALL_STATE(1162)] = 47428, - [SMALL_STATE(1163)] = 47497, - [SMALL_STATE(1164)] = 47566, - [SMALL_STATE(1165)] = 47641, - [SMALL_STATE(1166)] = 47747, - [SMALL_STATE(1167)] = 47857, - [SMALL_STATE(1168)] = 47967, - [SMALL_STATE(1169)] = 48073, - [SMALL_STATE(1170)] = 48179, - [SMALL_STATE(1171)] = 48285, - [SMALL_STATE(1172)] = 48395, - [SMALL_STATE(1173)] = 48505, - [SMALL_STATE(1174)] = 48611, - [SMALL_STATE(1175)] = 48717, - [SMALL_STATE(1176)] = 48824, - [SMALL_STATE(1177)] = 48879, - [SMALL_STATE(1178)] = 48934, - [SMALL_STATE(1179)] = 48989, - [SMALL_STATE(1180)] = 49044, - [SMALL_STATE(1181)] = 49153, - [SMALL_STATE(1182)] = 49208, - [SMALL_STATE(1183)] = 49263, - [SMALL_STATE(1184)] = 49318, - [SMALL_STATE(1185)] = 49373, - [SMALL_STATE(1186)] = 49428, - [SMALL_STATE(1187)] = 49483, - [SMALL_STATE(1188)] = 49538, - [SMALL_STATE(1189)] = 49640, - [SMALL_STATE(1190)] = 49742, - [SMALL_STATE(1191)] = 49844, - [SMALL_STATE(1192)] = 49946, - [SMALL_STATE(1193)] = 50048, - [SMALL_STATE(1194)] = 50150, - [SMALL_STATE(1195)] = 50252, - [SMALL_STATE(1196)] = 50354, - [SMALL_STATE(1197)] = 50456, - [SMALL_STATE(1198)] = 50558, - [SMALL_STATE(1199)] = 50660, - [SMALL_STATE(1200)] = 50762, - [SMALL_STATE(1201)] = 50864, - [SMALL_STATE(1202)] = 50966, - [SMALL_STATE(1203)] = 51068, - [SMALL_STATE(1204)] = 51170, - [SMALL_STATE(1205)] = 51272, - [SMALL_STATE(1206)] = 51374, - [SMALL_STATE(1207)] = 51437, - [SMALL_STATE(1208)] = 51500, - [SMALL_STATE(1209)] = 51553, - [SMALL_STATE(1210)] = 51610, - [SMALL_STATE(1211)] = 51663, - [SMALL_STATE(1212)] = 51732, - [SMALL_STATE(1213)] = 51801, - [SMALL_STATE(1214)] = 51853, - [SMALL_STATE(1215)] = 51909, - [SMALL_STATE(1216)] = 51967, - [SMALL_STATE(1217)] = 52019, - [SMALL_STATE(1218)] = 52117, - [SMALL_STATE(1219)] = 52215, - [SMALL_STATE(1220)] = 52313, - [SMALL_STATE(1221)] = 52365, - [SMALL_STATE(1222)] = 52417, - [SMALL_STATE(1223)] = 52473, - [SMALL_STATE(1224)] = 52571, - [SMALL_STATE(1225)] = 52627, - [SMALL_STATE(1226)] = 52679, - [SMALL_STATE(1227)] = 52777, - [SMALL_STATE(1228)] = 52835, - [SMALL_STATE(1229)] = 52901, - [SMALL_STATE(1230)] = 52963, - [SMALL_STATE(1231)] = 53015, - [SMALL_STATE(1232)] = 53113, - [SMALL_STATE(1233)] = 53165, - [SMALL_STATE(1234)] = 53217, - [SMALL_STATE(1235)] = 53271, - [SMALL_STATE(1236)] = 53369, - [SMALL_STATE(1237)] = 53425, - [SMALL_STATE(1238)] = 53476, - [SMALL_STATE(1239)] = 53567, - [SMALL_STATE(1240)] = 53628, - [SMALL_STATE(1241)] = 53681, - [SMALL_STATE(1242)] = 53738, - [SMALL_STATE(1243)] = 53793, - [SMALL_STATE(1244)] = 53888, - [SMALL_STATE(1245)] = 53939, - [SMALL_STATE(1246)] = 53990, - [SMALL_STATE(1247)] = 54041, - [SMALL_STATE(1248)] = 54098, - [SMALL_STATE(1249)] = 54149, - [SMALL_STATE(1250)] = 54204, - [SMALL_STATE(1251)] = 54255, - [SMALL_STATE(1252)] = 54306, - [SMALL_STATE(1253)] = 54357, - [SMALL_STATE(1254)] = 54408, - [SMALL_STATE(1255)] = 54459, - [SMALL_STATE(1256)] = 54510, - [SMALL_STATE(1257)] = 54567, - [SMALL_STATE(1258)] = 54618, - [SMALL_STATE(1259)] = 54669, - [SMALL_STATE(1260)] = 54720, - [SMALL_STATE(1261)] = 54789, - [SMALL_STATE(1262)] = 54884, - [SMALL_STATE(1263)] = 54935, - [SMALL_STATE(1264)] = 54986, - [SMALL_STATE(1265)] = 55037, - [SMALL_STATE(1266)] = 55088, - [SMALL_STATE(1267)] = 55139, - [SMALL_STATE(1268)] = 55190, - [SMALL_STATE(1269)] = 55241, - [SMALL_STATE(1270)] = 55292, - [SMALL_STATE(1271)] = 55343, - [SMALL_STATE(1272)] = 55394, - [SMALL_STATE(1273)] = 55445, - [SMALL_STATE(1274)] = 55498, - [SMALL_STATE(1275)] = 55549, - [SMALL_STATE(1276)] = 55600, - [SMALL_STATE(1277)] = 55653, - [SMALL_STATE(1278)] = 55748, - [SMALL_STATE(1279)] = 55799, - [SMALL_STATE(1280)] = 55852, - [SMALL_STATE(1281)] = 55947, - [SMALL_STATE(1282)] = 56042, - [SMALL_STATE(1283)] = 56093, - [SMALL_STATE(1284)] = 56148, - [SMALL_STATE(1285)] = 56199, - [SMALL_STATE(1286)] = 56250, - [SMALL_STATE(1287)] = 56303, - [SMALL_STATE(1288)] = 56354, - [SMALL_STATE(1289)] = 56405, - [SMALL_STATE(1290)] = 56458, - [SMALL_STATE(1291)] = 56509, - [SMALL_STATE(1292)] = 56580, - [SMALL_STATE(1293)] = 56635, - [SMALL_STATE(1294)] = 56692, - [SMALL_STATE(1295)] = 56763, - [SMALL_STATE(1296)] = 56814, - [SMALL_STATE(1297)] = 56869, - [SMALL_STATE(1298)] = 56940, - [SMALL_STATE(1299)] = 57011, - [SMALL_STATE(1300)] = 57064, - [SMALL_STATE(1301)] = 57159, - [SMALL_STATE(1302)] = 57210, - [SMALL_STATE(1303)] = 57305, - [SMALL_STATE(1304)] = 57378, - [SMALL_STATE(1305)] = 57435, - [SMALL_STATE(1306)] = 57486, - [SMALL_STATE(1307)] = 57583, - [SMALL_STATE(1308)] = 57662, - [SMALL_STATE(1309)] = 57725, - [SMALL_STATE(1310)] = 57788, - [SMALL_STATE(1311)] = 57839, - [SMALL_STATE(1312)] = 57892, - [SMALL_STATE(1313)] = 57947, - [SMALL_STATE(1314)] = 58004, - [SMALL_STATE(1315)] = 58087, - [SMALL_STATE(1316)] = 58174, - [SMALL_STATE(1317)] = 58251, - [SMALL_STATE(1318)] = 58322, - [SMALL_STATE(1319)] = 58417, - [SMALL_STATE(1320)] = 58468, - [SMALL_STATE(1321)] = 58519, - [SMALL_STATE(1322)] = 58614, - [SMALL_STATE(1323)] = 58709, - [SMALL_STATE(1324)] = 58804, - [SMALL_STATE(1325)] = 58855, - [SMALL_STATE(1326)] = 58950, - [SMALL_STATE(1327)] = 59045, - [SMALL_STATE(1328)] = 59140, - [SMALL_STATE(1329)] = 59201, - [SMALL_STATE(1330)] = 59252, - [SMALL_STATE(1331)] = 59303, - [SMALL_STATE(1332)] = 59354, - [SMALL_STATE(1333)] = 59449, - [SMALL_STATE(1334)] = 59549, - [SMALL_STATE(1335)] = 59599, - [SMALL_STATE(1336)] = 59677, - [SMALL_STATE(1337)] = 59727, - [SMALL_STATE(1338)] = 59827, - [SMALL_STATE(1339)] = 59899, - [SMALL_STATE(1340)] = 59993, - [SMALL_STATE(1341)] = 60043, - [SMALL_STATE(1342)] = 60137, - [SMALL_STATE(1343)] = 60187, - [SMALL_STATE(1344)] = 60237, - [SMALL_STATE(1345)] = 60331, - [SMALL_STATE(1346)] = 60381, - [SMALL_STATE(1347)] = 60431, - [SMALL_STATE(1348)] = 60481, - [SMALL_STATE(1349)] = 60575, - [SMALL_STATE(1350)] = 60625, - [SMALL_STATE(1351)] = 60675, - [SMALL_STATE(1352)] = 60725, - [SMALL_STATE(1353)] = 60775, - [SMALL_STATE(1354)] = 60825, - [SMALL_STATE(1355)] = 60925, - [SMALL_STATE(1356)] = 60975, - [SMALL_STATE(1357)] = 61025, - [SMALL_STATE(1358)] = 61075, - [SMALL_STATE(1359)] = 61125, - [SMALL_STATE(1360)] = 61175, - [SMALL_STATE(1361)] = 61257, - [SMALL_STATE(1362)] = 61307, - [SMALL_STATE(1363)] = 61357, - [SMALL_STATE(1364)] = 61427, - [SMALL_STATE(1365)] = 61477, - [SMALL_STATE(1366)] = 61527, - [SMALL_STATE(1367)] = 61577, - [SMALL_STATE(1368)] = 61627, - [SMALL_STATE(1369)] = 61693, - [SMALL_STATE(1370)] = 61759, - [SMALL_STATE(1371)] = 61827, - [SMALL_STATE(1372)] = 61887, - [SMALL_STATE(1373)] = 61973, - [SMALL_STATE(1374)] = 62071, - [SMALL_STATE(1375)] = 62121, - [SMALL_STATE(1376)] = 62197, - [SMALL_STATE(1377)] = 62267, - [SMALL_STATE(1378)] = 62317, - [SMALL_STATE(1379)] = 62407, - [SMALL_STATE(1380)] = 62501, - [SMALL_STATE(1381)] = 62555, - [SMALL_STATE(1382)] = 62649, - [SMALL_STATE(1383)] = 62705, - [SMALL_STATE(1384)] = 62799, - [SMALL_STATE(1385)] = 62893, - [SMALL_STATE(1386)] = 62943, - [SMALL_STATE(1387)] = 62993, - [SMALL_STATE(1388)] = 63043, - [SMALL_STATE(1389)] = 63137, - [SMALL_STATE(1390)] = 63231, - [SMALL_STATE(1391)] = 63331, - [SMALL_STATE(1392)] = 63429, - [SMALL_STATE(1393)] = 63479, - [SMALL_STATE(1394)] = 63577, - [SMALL_STATE(1395)] = 63647, - [SMALL_STATE(1396)] = 63741, - [SMALL_STATE(1397)] = 63791, - [SMALL_STATE(1398)] = 63841, - [SMALL_STATE(1399)] = 63939, - [SMALL_STATE(1400)] = 63989, - [SMALL_STATE(1401)] = 64039, - [SMALL_STATE(1402)] = 64137, - [SMALL_STATE(1403)] = 64187, - [SMALL_STATE(1404)] = 64237, - [SMALL_STATE(1405)] = 64337, - [SMALL_STATE(1406)] = 64387, - [SMALL_STATE(1407)] = 64443, - [SMALL_STATE(1408)] = 64493, - [SMALL_STATE(1409)] = 64543, - [SMALL_STATE(1410)] = 64593, - [SMALL_STATE(1411)] = 64647, - [SMALL_STATE(1412)] = 64697, - [SMALL_STATE(1413)] = 64747, - [SMALL_STATE(1414)] = 64797, - [SMALL_STATE(1415)] = 64847, - [SMALL_STATE(1416)] = 64947, - [SMALL_STATE(1417)] = 64997, - [SMALL_STATE(1418)] = 65047, - [SMALL_STATE(1419)] = 65097, - [SMALL_STATE(1420)] = 65147, - [SMALL_STATE(1421)] = 65241, - [SMALL_STATE(1422)] = 65335, - [SMALL_STATE(1423)] = 65385, - [SMALL_STATE(1424)] = 65479, - [SMALL_STATE(1425)] = 65573, - [SMALL_STATE(1426)] = 65623, - [SMALL_STATE(1427)] = 65673, - [SMALL_STATE(1428)] = 65723, - [SMALL_STATE(1429)] = 65773, - [SMALL_STATE(1430)] = 65823, - [SMALL_STATE(1431)] = 65917, - [SMALL_STATE(1432)] = 65967, - [SMALL_STATE(1433)] = 66064, - [SMALL_STATE(1434)] = 66161, - [SMALL_STATE(1435)] = 66220, - [SMALL_STATE(1436)] = 66269, - [SMALL_STATE(1437)] = 66336, - [SMALL_STATE(1438)] = 66429, - [SMALL_STATE(1439)] = 66522, - [SMALL_STATE(1440)] = 66591, - [SMALL_STATE(1441)] = 66644, - [SMALL_STATE(1442)] = 66713, - [SMALL_STATE(1443)] = 66774, - [SMALL_STATE(1444)] = 66869, - [SMALL_STATE(1445)] = 66920, - [SMALL_STATE(1446)] = 67013, - [SMALL_STATE(1447)] = 67106, - [SMALL_STATE(1448)] = 67199, - [SMALL_STATE(1449)] = 67296, - [SMALL_STATE(1450)] = 67389, - [SMALL_STATE(1451)] = 67482, - [SMALL_STATE(1452)] = 67575, - [SMALL_STATE(1453)] = 67668, - [SMALL_STATE(1454)] = 67761, - [SMALL_STATE(1455)] = 67850, - [SMALL_STATE(1456)] = 67911, - [SMALL_STATE(1457)] = 67980, - [SMALL_STATE(1458)] = 68055, - [SMALL_STATE(1459)] = 68140, - [SMALL_STATE(1460)] = 68221, - [SMALL_STATE(1461)] = 68298, - [SMALL_STATE(1462)] = 68369, - [SMALL_STATE(1463)] = 68462, - [SMALL_STATE(1464)] = 68555, - [SMALL_STATE(1465)] = 68648, - [SMALL_STATE(1466)] = 68741, - [SMALL_STATE(1467)] = 68834, - [SMALL_STATE(1468)] = 68929, - [SMALL_STATE(1469)] = 69024, - [SMALL_STATE(1470)] = 69119, - [SMALL_STATE(1471)] = 69214, - [SMALL_STATE(1472)] = 69307, - [SMALL_STATE(1473)] = 69404, - [SMALL_STATE(1474)] = 69501, - [SMALL_STATE(1475)] = 69596, - [SMALL_STATE(1476)] = 69691, - [SMALL_STATE(1477)] = 69786, - [SMALL_STATE(1478)] = 69881, - [SMALL_STATE(1479)] = 69970, - [SMALL_STATE(1480)] = 70039, - [SMALL_STATE(1481)] = 70114, - [SMALL_STATE(1482)] = 70199, - [SMALL_STATE(1483)] = 70248, - [SMALL_STATE(1484)] = 70329, - [SMALL_STATE(1485)] = 70380, - [SMALL_STATE(1486)] = 70457, - [SMALL_STATE(1487)] = 70528, - [SMALL_STATE(1488)] = 70623, - [SMALL_STATE(1489)] = 70718, - [SMALL_STATE(1490)] = 70815, - [SMALL_STATE(1491)] = 70910, - [SMALL_STATE(1492)] = 70961, - [SMALL_STATE(1493)] = 71058, - [SMALL_STATE(1494)] = 71107, - [SMALL_STATE(1495)] = 71200, - [SMALL_STATE(1496)] = 71295, - [SMALL_STATE(1497)] = 71388, - [SMALL_STATE(1498)] = 71483, - [SMALL_STATE(1499)] = 71536, - [SMALL_STATE(1500)] = 71595, - [SMALL_STATE(1501)] = 71662, - [SMALL_STATE(1502)] = 71727, - [SMALL_STATE(1503)] = 71792, - [SMALL_STATE(1504)] = 71887, - [SMALL_STATE(1505)] = 71982, - [SMALL_STATE(1506)] = 72051, - [SMALL_STATE(1507)] = 72120, - [SMALL_STATE(1508)] = 72169, - [SMALL_STATE(1509)] = 72266, - [SMALL_STATE(1510)] = 72363, - [SMALL_STATE(1511)] = 72458, - [SMALL_STATE(1512)] = 72553, - [SMALL_STATE(1513)] = 72648, - [SMALL_STATE(1514)] = 72745, - [SMALL_STATE(1515)] = 72840, - [SMALL_STATE(1516)] = 72895, - [SMALL_STATE(1517)] = 72992, - [SMALL_STATE(1518)] = 73089, - [SMALL_STATE(1519)] = 73152, - [SMALL_STATE(1520)] = 73249, - [SMALL_STATE(1521)] = 73304, - [SMALL_STATE(1522)] = 73357, - [SMALL_STATE(1523)] = 73450, - [SMALL_STATE(1524)] = 73503, - [SMALL_STATE(1525)] = 73554, - [SMALL_STATE(1526)] = 73603, - [SMALL_STATE(1527)] = 73700, - [SMALL_STATE(1528)] = 73797, - [SMALL_STATE(1529)] = 73846, - [SMALL_STATE(1530)] = 73903, - [SMALL_STATE(1531)] = 73960, - [SMALL_STATE(1532)] = 74057, - [SMALL_STATE(1533)] = 74108, - [SMALL_STATE(1534)] = 74201, - [SMALL_STATE(1535)] = 74294, - [SMALL_STATE(1536)] = 74387, - [SMALL_STATE(1537)] = 74440, - [SMALL_STATE(1538)] = 74492, - [SMALL_STATE(1539)] = 74560, - [SMALL_STATE(1540)] = 74612, - [SMALL_STATE(1541)] = 74706, - [SMALL_STATE(1542)] = 74800, - [SMALL_STATE(1543)] = 74866, - [SMALL_STATE(1544)] = 74960, - [SMALL_STATE(1545)] = 75054, - [SMALL_STATE(1546)] = 75102, - [SMALL_STATE(1547)] = 75194, - [SMALL_STATE(1548)] = 75264, - [SMALL_STATE(1549)] = 75332, - [SMALL_STATE(1550)] = 75424, - [SMALL_STATE(1551)] = 75472, - [SMALL_STATE(1552)] = 75564, - [SMALL_STATE(1553)] = 75640, - [SMALL_STATE(1554)] = 75688, - [SMALL_STATE(1555)] = 75768, - [SMALL_STATE(1556)] = 75852, - [SMALL_STATE(1557)] = 75926, - [SMALL_STATE(1558)] = 75994, - [SMALL_STATE(1559)] = 76062, - [SMALL_STATE(1560)] = 76150, - [SMALL_STATE(1561)] = 76242, - [SMALL_STATE(1562)] = 76334, - [SMALL_STATE(1563)] = 76426, - [SMALL_STATE(1564)] = 76518, - [SMALL_STATE(1565)] = 76610, - [SMALL_STATE(1566)] = 76702, - [SMALL_STATE(1567)] = 76796, - [SMALL_STATE(1568)] = 76856, - [SMALL_STATE(1569)] = 76910, - [SMALL_STATE(1570)] = 77002, - [SMALL_STATE(1571)] = 77050, - [SMALL_STATE(1572)] = 77144, - [SMALL_STATE(1573)] = 77238, - [SMALL_STATE(1574)] = 77330, - [SMALL_STATE(1575)] = 77384, - [SMALL_STATE(1576)] = 77478, - [SMALL_STATE(1577)] = 77526, - [SMALL_STATE(1578)] = 77576, - [SMALL_STATE(1579)] = 77636, - [SMALL_STATE(1580)] = 77728, - [SMALL_STATE(1581)] = 77822, - [SMALL_STATE(1582)] = 77914, - [SMALL_STATE(1583)] = 77964, - [SMALL_STATE(1584)] = 78012, - [SMALL_STATE(1585)] = 78104, - [SMALL_STATE(1586)] = 78198, - [SMALL_STATE(1587)] = 78290, - [SMALL_STATE(1588)] = 78382, - [SMALL_STATE(1589)] = 78474, - [SMALL_STATE(1590)] = 78566, - [SMALL_STATE(1591)] = 78614, - [SMALL_STATE(1592)] = 78706, - [SMALL_STATE(1593)] = 78800, - [SMALL_STATE(1594)] = 78852, - [SMALL_STATE(1595)] = 78906, - [SMALL_STATE(1596)] = 78998, - [SMALL_STATE(1597)] = 79092, - [SMALL_STATE(1598)] = 79142, - [SMALL_STATE(1599)] = 79234, - [SMALL_STATE(1600)] = 79284, - [SMALL_STATE(1601)] = 79378, - [SMALL_STATE(1602)] = 79470, - [SMALL_STATE(1603)] = 79518, - [SMALL_STATE(1604)] = 79612, - [SMALL_STATE(1605)] = 79660, - [SMALL_STATE(1606)] = 79752, - [SMALL_STATE(1607)] = 79800, - [SMALL_STATE(1608)] = 79894, - [SMALL_STATE(1609)] = 79942, - [SMALL_STATE(1610)] = 80008, - [SMALL_STATE(1611)] = 80102, - [SMALL_STATE(1612)] = 80164, - [SMALL_STATE(1613)] = 80232, - [SMALL_STATE(1614)] = 80326, - [SMALL_STATE(1615)] = 80374, - [SMALL_STATE(1616)] = 80422, - [SMALL_STATE(1617)] = 80470, - [SMALL_STATE(1618)] = 80518, - [SMALL_STATE(1619)] = 80566, - [SMALL_STATE(1620)] = 80624, - [SMALL_STATE(1621)] = 80716, - [SMALL_STATE(1622)] = 80770, - [SMALL_STATE(1623)] = 80818, - [SMALL_STATE(1624)] = 80866, - [SMALL_STATE(1625)] = 80914, - [SMALL_STATE(1626)] = 80962, - [SMALL_STATE(1627)] = 81010, - [SMALL_STATE(1628)] = 81058, - [SMALL_STATE(1629)] = 81150, - [SMALL_STATE(1630)] = 81242, - [SMALL_STATE(1631)] = 81334, - [SMALL_STATE(1632)] = 81386, - [SMALL_STATE(1633)] = 81478, - [SMALL_STATE(1634)] = 81570, - [SMALL_STATE(1635)] = 81618, - [SMALL_STATE(1636)] = 81688, - [SMALL_STATE(1637)] = 81764, - [SMALL_STATE(1638)] = 81856, - [SMALL_STATE(1639)] = 81936, - [SMALL_STATE(1640)] = 81984, - [SMALL_STATE(1641)] = 82038, - [SMALL_STATE(1642)] = 82122, - [SMALL_STATE(1643)] = 82196, - [SMALL_STATE(1644)] = 82248, - [SMALL_STATE(1645)] = 82300, - [SMALL_STATE(1646)] = 82352, - [SMALL_STATE(1647)] = 82404, - [SMALL_STATE(1648)] = 82472, - [SMALL_STATE(1649)] = 82560, - [SMALL_STATE(1650)] = 82652, - [SMALL_STATE(1651)] = 82744, - [SMALL_STATE(1652)] = 82836, - [SMALL_STATE(1653)] = 82928, - [SMALL_STATE(1654)] = 82980, - [SMALL_STATE(1655)] = 83038, - [SMALL_STATE(1656)] = 83130, - [SMALL_STATE(1657)] = 83222, - [SMALL_STATE(1658)] = 83314, - [SMALL_STATE(1659)] = 83380, - [SMALL_STATE(1660)] = 83432, - [SMALL_STATE(1661)] = 83526, - [SMALL_STATE(1662)] = 83580, - [SMALL_STATE(1663)] = 83632, - [SMALL_STATE(1664)] = 83684, - [SMALL_STATE(1665)] = 83736, - [SMALL_STATE(1666)] = 83828, - [SMALL_STATE(1667)] = 83922, - [SMALL_STATE(1668)] = 84016, - [SMALL_STATE(1669)] = 84110, - [SMALL_STATE(1670)] = 84160, - [SMALL_STATE(1671)] = 84218, - [SMALL_STATE(1672)] = 84266, - [SMALL_STATE(1673)] = 84360, - [SMALL_STATE(1674)] = 84412, - [SMALL_STATE(1675)] = 84460, - [SMALL_STATE(1676)] = 84554, - [SMALL_STATE(1677)] = 84606, - [SMALL_STATE(1678)] = 84654, - [SMALL_STATE(1679)] = 84702, - [SMALL_STATE(1680)] = 84750, - [SMALL_STATE(1681)] = 84798, - [SMALL_STATE(1682)] = 84846, - [SMALL_STATE(1683)] = 84940, - [SMALL_STATE(1684)] = 84988, - [SMALL_STATE(1685)] = 85038, - [SMALL_STATE(1686)] = 85090, - [SMALL_STATE(1687)] = 85138, - [SMALL_STATE(1688)] = 85186, - [SMALL_STATE(1689)] = 85238, - [SMALL_STATE(1690)] = 85290, - [SMALL_STATE(1691)] = 85338, - [SMALL_STATE(1692)] = 85386, - [SMALL_STATE(1693)] = 85440, - [SMALL_STATE(1694)] = 85488, - [SMALL_STATE(1695)] = 85542, - [SMALL_STATE(1696)] = 85594, - [SMALL_STATE(1697)] = 85654, - [SMALL_STATE(1698)] = 85704, - [SMALL_STATE(1699)] = 85760, - [SMALL_STATE(1700)] = 85808, - [SMALL_STATE(1701)] = 85856, - [SMALL_STATE(1702)] = 85906, - [SMALL_STATE(1703)] = 85954, - [SMALL_STATE(1704)] = 86006, - [SMALL_STATE(1705)] = 86058, - [SMALL_STATE(1706)] = 86152, - [SMALL_STATE(1707)] = 86204, - [SMALL_STATE(1708)] = 86258, - [SMALL_STATE(1709)] = 86318, - [SMALL_STATE(1710)] = 86366, - [SMALL_STATE(1711)] = 86458, - [SMALL_STATE(1712)] = 86514, - [SMALL_STATE(1713)] = 86562, - [SMALL_STATE(1714)] = 86630, - [SMALL_STATE(1715)] = 86684, - [SMALL_STATE(1716)] = 86734, - [SMALL_STATE(1717)] = 86817, - [SMALL_STATE(1718)] = 86908, - [SMALL_STATE(1719)] = 86955, - [SMALL_STATE(1720)] = 87038, - [SMALL_STATE(1721)] = 87085, - [SMALL_STATE(1722)] = 87140, - [SMALL_STATE(1723)] = 87195, - [SMALL_STATE(1724)] = 87252, - [SMALL_STATE(1725)] = 87299, - [SMALL_STATE(1726)] = 87346, - [SMALL_STATE(1727)] = 87393, - [SMALL_STATE(1728)] = 87446, - [SMALL_STATE(1729)] = 87497, - [SMALL_STATE(1730)] = 87548, - [SMALL_STATE(1731)] = 87595, - [SMALL_STATE(1732)] = 87654, - [SMALL_STATE(1733)] = 87713, - [SMALL_STATE(1734)] = 87798, - [SMALL_STATE(1735)] = 87845, - [SMALL_STATE(1736)] = 87936, - [SMALL_STATE(1737)] = 87983, - [SMALL_STATE(1738)] = 88040, - [SMALL_STATE(1739)] = 88099, - [SMALL_STATE(1740)] = 88146, - [SMALL_STATE(1741)] = 88203, - [SMALL_STATE(1742)] = 88250, - [SMALL_STATE(1743)] = 88297, - [SMALL_STATE(1744)] = 88344, - [SMALL_STATE(1745)] = 88435, - [SMALL_STATE(1746)] = 88488, - [SMALL_STATE(1747)] = 88579, - [SMALL_STATE(1748)] = 88626, - [SMALL_STATE(1749)] = 88683, - [SMALL_STATE(1750)] = 88730, - [SMALL_STATE(1751)] = 88777, - [SMALL_STATE(1752)] = 88824, - [SMALL_STATE(1753)] = 88877, - [SMALL_STATE(1754)] = 88924, - [SMALL_STATE(1755)] = 88971, - [SMALL_STATE(1756)] = 89022, - [SMALL_STATE(1757)] = 89069, - [SMALL_STATE(1758)] = 89116, - [SMALL_STATE(1759)] = 89163, - [SMALL_STATE(1760)] = 89222, - [SMALL_STATE(1761)] = 89269, - [SMALL_STATE(1762)] = 89316, - [SMALL_STATE(1763)] = 89363, - [SMALL_STATE(1764)] = 89410, - [SMALL_STATE(1765)] = 89463, - [SMALL_STATE(1766)] = 89510, - [SMALL_STATE(1767)] = 89559, - [SMALL_STATE(1768)] = 89606, - [SMALL_STATE(1769)] = 89653, - [SMALL_STATE(1770)] = 89700, - [SMALL_STATE(1771)] = 89747, - [SMALL_STATE(1772)] = 89802, - [SMALL_STATE(1773)] = 89857, - [SMALL_STATE(1774)] = 89942, - [SMALL_STATE(1775)] = 90025, - [SMALL_STATE(1776)] = 90072, - [SMALL_STATE(1777)] = 90119, - [SMALL_STATE(1778)] = 90166, - [SMALL_STATE(1779)] = 90225, - [SMALL_STATE(1780)] = 90274, - [SMALL_STATE(1781)] = 90331, - [SMALL_STATE(1782)] = 90378, - [SMALL_STATE(1783)] = 90425, - [SMALL_STATE(1784)] = 90472, - [SMALL_STATE(1785)] = 90519, - [SMALL_STATE(1786)] = 90576, - [SMALL_STATE(1787)] = 90623, - [SMALL_STATE(1788)] = 90676, - [SMALL_STATE(1789)] = 90725, - [SMALL_STATE(1790)] = 90772, - [SMALL_STATE(1791)] = 90821, - [SMALL_STATE(1792)] = 90870, - [SMALL_STATE(1793)] = 90929, - [SMALL_STATE(1794)] = 90976, - [SMALL_STATE(1795)] = 91023, - [SMALL_STATE(1796)] = 91070, - [SMALL_STATE(1797)] = 91117, - [SMALL_STATE(1798)] = 91164, - [SMALL_STATE(1799)] = 91213, - [SMALL_STATE(1800)] = 91296, - [SMALL_STATE(1801)] = 91351, - [SMALL_STATE(1802)] = 91406, - [SMALL_STATE(1803)] = 91453, - [SMALL_STATE(1804)] = 91500, - [SMALL_STATE(1805)] = 91547, - [SMALL_STATE(1806)] = 91630, - [SMALL_STATE(1807)] = 91677, - [SMALL_STATE(1808)] = 91728, - [SMALL_STATE(1809)] = 91775, - [SMALL_STATE(1810)] = 91822, - [SMALL_STATE(1811)] = 91869, - [SMALL_STATE(1812)] = 91922, - [SMALL_STATE(1813)] = 91969, - [SMALL_STATE(1814)] = 92054, - [SMALL_STATE(1815)] = 92139, - [SMALL_STATE(1816)] = 92186, - [SMALL_STATE(1817)] = 92233, - [SMALL_STATE(1818)] = 92280, - [SMALL_STATE(1819)] = 92327, - [SMALL_STATE(1820)] = 92410, - [SMALL_STATE(1821)] = 92457, - [SMALL_STATE(1822)] = 92540, - [SMALL_STATE(1823)] = 92587, - [SMALL_STATE(1824)] = 92634, - [SMALL_STATE(1825)] = 92681, - [SMALL_STATE(1826)] = 92728, - [SMALL_STATE(1827)] = 92775, - [SMALL_STATE(1828)] = 92822, - [SMALL_STATE(1829)] = 92905, - [SMALL_STATE(1830)] = 92952, - [SMALL_STATE(1831)] = 93035, - [SMALL_STATE(1832)] = 93082, - [SMALL_STATE(1833)] = 93141, - [SMALL_STATE(1834)] = 93188, - [SMALL_STATE(1835)] = 93279, - [SMALL_STATE(1836)] = 93326, - [SMALL_STATE(1837)] = 93383, - [SMALL_STATE(1838)] = 93430, - [SMALL_STATE(1839)] = 93477, - [SMALL_STATE(1840)] = 93534, - [SMALL_STATE(1841)] = 93581, - [SMALL_STATE(1842)] = 93628, - [SMALL_STATE(1843)] = 93675, - [SMALL_STATE(1844)] = 93722, - [SMALL_STATE(1845)] = 93807, - [SMALL_STATE(1846)] = 93868, - [SMALL_STATE(1847)] = 93921, - [SMALL_STATE(1848)] = 94012, - [SMALL_STATE(1849)] = 94059, - [SMALL_STATE(1850)] = 94106, - [SMALL_STATE(1851)] = 94153, - [SMALL_STATE(1852)] = 94206, - [SMALL_STATE(1853)] = 94257, - [SMALL_STATE(1854)] = 94304, - [SMALL_STATE(1855)] = 94351, - [SMALL_STATE(1856)] = 94398, - [SMALL_STATE(1857)] = 94449, - [SMALL_STATE(1858)] = 94496, - [SMALL_STATE(1859)] = 94543, - [SMALL_STATE(1860)] = 94626, - [SMALL_STATE(1861)] = 94673, - [SMALL_STATE(1862)] = 94756, - [SMALL_STATE(1863)] = 94807, - [SMALL_STATE(1864)] = 94856, - [SMALL_STATE(1865)] = 94903, - [SMALL_STATE(1866)] = 94986, - [SMALL_STATE(1867)] = 95033, - [SMALL_STATE(1868)] = 95082, - [SMALL_STATE(1869)] = 95129, - [SMALL_STATE(1870)] = 95176, - [SMALL_STATE(1871)] = 95267, - [SMALL_STATE(1872)] = 95316, - [SMALL_STATE(1873)] = 95377, - [SMALL_STATE(1874)] = 95424, - [SMALL_STATE(1875)] = 95471, - [SMALL_STATE(1876)] = 95554, - [SMALL_STATE(1877)] = 95601, - [SMALL_STATE(1878)] = 95648, - [SMALL_STATE(1879)] = 95739, - [SMALL_STATE(1880)] = 95786, - [SMALL_STATE(1881)] = 95847, - [SMALL_STATE(1882)] = 95896, - [SMALL_STATE(1883)] = 95942, - [SMALL_STATE(1884)] = 95988, - [SMALL_STATE(1885)] = 96034, - [SMALL_STATE(1886)] = 96088, - [SMALL_STATE(1887)] = 96134, - [SMALL_STATE(1888)] = 96188, - [SMALL_STATE(1889)] = 96276, - [SMALL_STATE(1890)] = 96342, - [SMALL_STATE(1891)] = 96400, - [SMALL_STATE(1892)] = 96468, - [SMALL_STATE(1893)] = 96532, - [SMALL_STATE(1894)] = 96588, - [SMALL_STATE(1895)] = 96642, - [SMALL_STATE(1896)] = 96696, - [SMALL_STATE(1897)] = 96742, - [SMALL_STATE(1898)] = 96830, - [SMALL_STATE(1899)] = 96876, - [SMALL_STATE(1900)] = 96942, - [SMALL_STATE(1901)] = 96988, - [SMALL_STATE(1902)] = 97056, - [SMALL_STATE(1903)] = 97120, - [SMALL_STATE(1904)] = 97166, - [SMALL_STATE(1905)] = 97212, - [SMALL_STATE(1906)] = 97258, - [SMALL_STATE(1907)] = 97304, - [SMALL_STATE(1908)] = 97350, - [SMALL_STATE(1909)] = 97406, - [SMALL_STATE(1910)] = 97458, - [SMALL_STATE(1911)] = 97504, - [SMALL_STATE(1912)] = 97570, - [SMALL_STATE(1913)] = 97616, - [SMALL_STATE(1914)] = 97662, - [SMALL_STATE(1915)] = 97708, - [SMALL_STATE(1916)] = 97754, - [SMALL_STATE(1917)] = 97808, - [SMALL_STATE(1918)] = 97862, - [SMALL_STATE(1919)] = 97920, - [SMALL_STATE(1920)] = 97978, - [SMALL_STATE(1921)] = 98024, - [SMALL_STATE(1922)] = 98070, - [SMALL_STATE(1923)] = 98116, - [SMALL_STATE(1924)] = 98162, - [SMALL_STATE(1925)] = 98208, - [SMALL_STATE(1926)] = 98254, - [SMALL_STATE(1927)] = 98300, - [SMALL_STATE(1928)] = 98346, - [SMALL_STATE(1929)] = 98392, - [SMALL_STATE(1930)] = 98438, - [SMALL_STATE(1931)] = 98526, - [SMALL_STATE(1932)] = 98572, - [SMALL_STATE(1933)] = 98636, - [SMALL_STATE(1934)] = 98694, - [SMALL_STATE(1935)] = 98740, - [SMALL_STATE(1936)] = 98808, - [SMALL_STATE(1937)] = 98876, - [SMALL_STATE(1938)] = 98956, - [SMALL_STATE(1939)] = 99002, - [SMALL_STATE(1940)] = 99066, - [SMALL_STATE(1941)] = 99154, - [SMALL_STATE(1942)] = 99200, - [SMALL_STATE(1943)] = 99288, - [SMALL_STATE(1944)] = 99334, - [SMALL_STATE(1945)] = 99400, - [SMALL_STATE(1946)] = 99446, - [SMALL_STATE(1947)] = 99492, - [SMALL_STATE(1948)] = 99538, - [SMALL_STATE(1949)] = 99584, - [SMALL_STATE(1950)] = 99640, - [SMALL_STATE(1951)] = 99686, - [SMALL_STATE(1952)] = 99774, - [SMALL_STATE(1953)] = 99820, - [SMALL_STATE(1954)] = 99908, - [SMALL_STATE(1955)] = 99954, - [SMALL_STATE(1956)] = 100000, - [SMALL_STATE(1957)] = 100046, - [SMALL_STATE(1958)] = 100092, - [SMALL_STATE(1959)] = 100138, - [SMALL_STATE(1960)] = 100184, - [SMALL_STATE(1961)] = 100230, - [SMALL_STATE(1962)] = 100276, - [SMALL_STATE(1963)] = 100333, - [SMALL_STATE(1964)] = 100396, - [SMALL_STATE(1965)] = 100455, - [SMALL_STATE(1966)] = 100512, - [SMALL_STATE(1967)] = 100569, - [SMALL_STATE(1968)] = 100628, - [SMALL_STATE(1969)] = 100695, - [SMALL_STATE(1970)] = 100758, - [SMALL_STATE(1971)] = 100823, - [SMALL_STATE(1972)] = 100882, - [SMALL_STATE(1973)] = 100945, - [SMALL_STATE(1974)] = 101004, - [SMALL_STATE(1975)] = 101061, - [SMALL_STATE(1976)] = 101112, - [SMALL_STATE(1977)] = 101172, - [SMALL_STATE(1978)] = 101232, - [SMALL_STATE(1979)] = 101284, - [SMALL_STATE(1980)] = 101344, - [SMALL_STATE(1981)] = 101406, - [SMALL_STATE(1982)] = 101458, - [SMALL_STATE(1983)] = 101516, - [SMALL_STATE(1984)] = 101568, - [SMALL_STATE(1985)] = 101620, - [SMALL_STATE(1986)] = 101678, - [SMALL_STATE(1987)] = 101740, - [SMALL_STATE(1988)] = 101798, - [SMALL_STATE(1989)] = 101850, - [SMALL_STATE(1990)] = 101910, - [SMALL_STATE(1991)] = 101962, - [SMALL_STATE(1992)] = 102020, - [SMALL_STATE(1993)] = 102078, - [SMALL_STATE(1994)] = 102124, - [SMALL_STATE(1995)] = 102184, - [SMALL_STATE(1996)] = 102242, - [SMALL_STATE(1997)] = 102300, - [SMALL_STATE(1998)] = 102358, - [SMALL_STATE(1999)] = 102420, - [SMALL_STATE(2000)] = 102478, - [SMALL_STATE(2001)] = 102530, - [SMALL_STATE(2002)] = 102582, - [SMALL_STATE(2003)] = 102644, - [SMALL_STATE(2004)] = 102702, - [SMALL_STATE(2005)] = 102764, - [SMALL_STATE(2006)] = 102822, - [SMALL_STATE(2007)] = 102882, - [SMALL_STATE(2008)] = 102942, - [SMALL_STATE(2009)] = 103000, - [SMALL_STATE(2010)] = 103067, - [SMALL_STATE(2011)] = 103134, - [SMALL_STATE(2012)] = 103187, - [SMALL_STATE(2013)] = 103240, - [SMALL_STATE(2014)] = 103305, - [SMALL_STATE(2015)] = 103374, - [SMALL_STATE(2016)] = 103447, - [SMALL_STATE(2017)] = 103500, - [SMALL_STATE(2018)] = 103569, - [SMALL_STATE(2019)] = 103634, - [SMALL_STATE(2020)] = 103699, - [SMALL_STATE(2021)] = 103764, - [SMALL_STATE(2022)] = 103833, - [SMALL_STATE(2023)] = 103882, - [SMALL_STATE(2024)] = 103935, - [SMALL_STATE(2025)] = 103988, - [SMALL_STATE(2026)] = 104037, - [SMALL_STATE(2027)] = 104110, - [SMALL_STATE(2028)] = 104179, - [SMALL_STATE(2029)] = 104228, - [SMALL_STATE(2030)] = 104281, - [SMALL_STATE(2031)] = 104330, - [SMALL_STATE(2032)] = 104383, - [SMALL_STATE(2033)] = 104456, - [SMALL_STATE(2034)] = 104529, - [SMALL_STATE(2035)] = 104582, - [SMALL_STATE(2036)] = 104635, - [SMALL_STATE(2037)] = 104684, - [SMALL_STATE(2038)] = 104733, - [SMALL_STATE(2039)] = 104786, - [SMALL_STATE(2040)] = 104851, - [SMALL_STATE(2041)] = 104920, - [SMALL_STATE(2042)] = 104993, - [SMALL_STATE(2043)] = 105042, - [SMALL_STATE(2044)] = 105109, - [SMALL_STATE(2045)] = 105176, - [SMALL_STATE(2046)] = 105249, - [SMALL_STATE(2047)] = 105322, - [SMALL_STATE(2048)] = 105395, - [SMALL_STATE(2049)] = 105448, - [SMALL_STATE(2050)] = 105497, - [SMALL_STATE(2051)] = 105570, - [SMALL_STATE(2052)] = 105643, - [SMALL_STATE(2053)] = 105716, - [SMALL_STATE(2054)] = 105789, - [SMALL_STATE(2055)] = 105862, - [SMALL_STATE(2056)] = 105915, - [SMALL_STATE(2057)] = 105968, - [SMALL_STATE(2058)] = 106035, - [SMALL_STATE(2059)] = 106088, - [SMALL_STATE(2060)] = 106141, - [SMALL_STATE(2061)] = 106201, - [SMALL_STATE(2062)] = 106263, - [SMALL_STATE(2063)] = 106327, - [SMALL_STATE(2064)] = 106397, - [SMALL_STATE(2065)] = 106467, - [SMALL_STATE(2066)] = 106527, - [SMALL_STATE(2067)] = 106597, - [SMALL_STATE(2068)] = 106639, - [SMALL_STATE(2069)] = 106699, - [SMALL_STATE(2070)] = 106769, - [SMALL_STATE(2071)] = 106829, - [SMALL_STATE(2072)] = 106889, - [SMALL_STATE(2073)] = 106937, - [SMALL_STATE(2074)] = 106997, - [SMALL_STATE(2075)] = 107067, - [SMALL_STATE(2076)] = 107146, - [SMALL_STATE(2077)] = 107201, - [SMALL_STATE(2078)] = 107280, - [SMALL_STATE(2079)] = 107359, - [SMALL_STATE(2080)] = 107438, - [SMALL_STATE(2081)] = 107517, - [SMALL_STATE(2082)] = 107596, - [SMALL_STATE(2083)] = 107636, - [SMALL_STATE(2084)] = 107676, - [SMALL_STATE(2085)] = 107726, - [SMALL_STATE(2086)] = 107776, - [SMALL_STATE(2087)] = 107826, - [SMALL_STATE(2088)] = 107866, - [SMALL_STATE(2089)] = 107906, - [SMALL_STATE(2090)] = 107946, - [SMALL_STATE(2091)] = 107996, - [SMALL_STATE(2092)] = 108046, - [SMALL_STATE(2093)] = 108091, - [SMALL_STATE(2094)] = 108143, - [SMALL_STATE(2095)] = 108197, - [SMALL_STATE(2096)] = 108249, - [SMALL_STATE(2097)] = 108287, - [SMALL_STATE(2098)] = 108325, - [SMALL_STATE(2099)] = 108365, - [SMALL_STATE(2100)] = 108421, - [SMALL_STATE(2101)] = 108459, - [SMALL_STATE(2102)] = 108497, - [SMALL_STATE(2103)] = 108535, - [SMALL_STATE(2104)] = 108573, - [SMALL_STATE(2105)] = 108627, - [SMALL_STATE(2106)] = 108665, - [SMALL_STATE(2107)] = 108703, - [SMALL_STATE(2108)] = 108755, - [SMALL_STATE(2109)] = 108795, - [SMALL_STATE(2110)] = 108845, - [SMALL_STATE(2111)] = 108883, - [SMALL_STATE(2112)] = 108921, - [SMALL_STATE(2113)] = 108959, - [SMALL_STATE(2114)] = 108999, - [SMALL_STATE(2115)] = 109037, - [SMALL_STATE(2116)] = 109075, - [SMALL_STATE(2117)] = 109113, - [SMALL_STATE(2118)] = 109160, - [SMALL_STATE(2119)] = 109207, - [SMALL_STATE(2120)] = 109254, - [SMALL_STATE(2121)] = 109301, - [SMALL_STATE(2122)] = 109348, - [SMALL_STATE(2123)] = 109395, - [SMALL_STATE(2124)] = 109442, - [SMALL_STATE(2125)] = 109489, - [SMALL_STATE(2126)] = 109536, - [SMALL_STATE(2127)] = 109583, - [SMALL_STATE(2128)] = 109630, - [SMALL_STATE(2129)] = 109677, - [SMALL_STATE(2130)] = 109724, - [SMALL_STATE(2131)] = 109771, - [SMALL_STATE(2132)] = 109818, - [SMALL_STATE(2133)] = 109865, - [SMALL_STATE(2134)] = 109912, - [SMALL_STATE(2135)] = 109959, - [SMALL_STATE(2136)] = 110007, - [SMALL_STATE(2137)] = 110049, - [SMALL_STATE(2138)] = 110097, - [SMALL_STATE(2139)] = 110133, - [SMALL_STATE(2140)] = 110181, - [SMALL_STATE(2141)] = 110237, - [SMALL_STATE(2142)] = 110285, - [SMALL_STATE(2143)] = 110333, - [SMALL_STATE(2144)] = 110381, - [SMALL_STATE(2145)] = 110418, - [SMALL_STATE(2146)] = 110471, - [SMALL_STATE(2147)] = 110516, - [SMALL_STATE(2148)] = 110565, - [SMALL_STATE(2149)] = 110618, - [SMALL_STATE(2150)] = 110671, - [SMALL_STATE(2151)] = 110720, - [SMALL_STATE(2152)] = 110762, - [SMALL_STATE(2153)] = 110804, - [SMALL_STATE(2154)] = 110846, - [SMALL_STATE(2155)] = 110888, - [SMALL_STATE(2156)] = 110930, - [SMALL_STATE(2157)] = 110972, - [SMALL_STATE(2158)] = 111014, - [SMALL_STATE(2159)] = 111056, - [SMALL_STATE(2160)] = 111098, - [SMALL_STATE(2161)] = 111140, - [SMALL_STATE(2162)] = 111182, - [SMALL_STATE(2163)] = 111224, - [SMALL_STATE(2164)] = 111266, - [SMALL_STATE(2165)] = 111308, - [SMALL_STATE(2166)] = 111350, - [SMALL_STATE(2167)] = 111392, - [SMALL_STATE(2168)] = 111434, - [SMALL_STATE(2169)] = 111468, - [SMALL_STATE(2170)] = 111510, - [SMALL_STATE(2171)] = 111552, - [SMALL_STATE(2172)] = 111594, - [SMALL_STATE(2173)] = 111636, - [SMALL_STATE(2174)] = 111678, - [SMALL_STATE(2175)] = 111720, - [SMALL_STATE(2176)] = 111762, - [SMALL_STATE(2177)] = 111804, - [SMALL_STATE(2178)] = 111834, - [SMALL_STATE(2179)] = 111866, - [SMALL_STATE(2180)] = 111898, - [SMALL_STATE(2181)] = 111927, - [SMALL_STATE(2182)] = 111954, - [SMALL_STATE(2183)] = 111983, - [SMALL_STATE(2184)] = 112007, - [SMALL_STATE(2185)] = 112033, - [SMALL_STATE(2186)] = 112057, - [SMALL_STATE(2187)] = 112078, - [SMALL_STATE(2188)] = 112099, - [SMALL_STATE(2189)] = 112120, - [SMALL_STATE(2190)] = 112141, - [SMALL_STATE(2191)] = 112162, - [SMALL_STATE(2192)] = 112183, - [SMALL_STATE(2193)] = 112211, - [SMALL_STATE(2194)] = 112253, - [SMALL_STATE(2195)] = 112283, - [SMALL_STATE(2196)] = 112325, - [SMALL_STATE(2197)] = 112353, - [SMALL_STATE(2198)] = 112395, - [SMALL_STATE(2199)] = 112437, - [SMALL_STATE(2200)] = 112479, - [SMALL_STATE(2201)] = 112521, - [SMALL_STATE(2202)] = 112556, - [SMALL_STATE(2203)] = 112579, - [SMALL_STATE(2204)] = 112614, - [SMALL_STATE(2205)] = 112649, - [SMALL_STATE(2206)] = 112684, - [SMALL_STATE(2207)] = 112719, - [SMALL_STATE(2208)] = 112756, - [SMALL_STATE(2209)] = 112791, - [SMALL_STATE(2210)] = 112826, - [SMALL_STATE(2211)] = 112851, - [SMALL_STATE(2212)] = 112874, - [SMALL_STATE(2213)] = 112899, - [SMALL_STATE(2214)] = 112934, - [SMALL_STATE(2215)] = 112970, - [SMALL_STATE(2216)] = 113002, - [SMALL_STATE(2217)] = 113034, - [SMALL_STATE(2218)] = 113070, - [SMALL_STATE(2219)] = 113102, - [SMALL_STATE(2220)] = 113134, - [SMALL_STATE(2221)] = 113170, - [SMALL_STATE(2222)] = 113202, - [SMALL_STATE(2223)] = 113238, - [SMALL_STATE(2224)] = 113264, - [SMALL_STATE(2225)] = 113300, - [SMALL_STATE(2226)] = 113332, - [SMALL_STATE(2227)] = 113354, - [SMALL_STATE(2228)] = 113382, - [SMALL_STATE(2229)] = 113414, - [SMALL_STATE(2230)] = 113440, - [SMALL_STATE(2231)] = 113476, - [SMALL_STATE(2232)] = 113508, - [SMALL_STATE(2233)] = 113527, - [SMALL_STATE(2234)] = 113546, - [SMALL_STATE(2235)] = 113565, - [SMALL_STATE(2236)] = 113584, - [SMALL_STATE(2237)] = 113603, - [SMALL_STATE(2238)] = 113630, - [SMALL_STATE(2239)] = 113649, - [SMALL_STATE(2240)] = 113668, - [SMALL_STATE(2241)] = 113687, - [SMALL_STATE(2242)] = 113706, - [SMALL_STATE(2243)] = 113725, - [SMALL_STATE(2244)] = 113748, - [SMALL_STATE(2245)] = 113769, - [SMALL_STATE(2246)] = 113788, - [SMALL_STATE(2247)] = 113807, - [SMALL_STATE(2248)] = 113826, - [SMALL_STATE(2249)] = 113845, - [SMALL_STATE(2250)] = 113866, - [SMALL_STATE(2251)] = 113887, - [SMALL_STATE(2252)] = 113906, - [SMALL_STATE(2253)] = 113925, - [SMALL_STATE(2254)] = 113944, - [SMALL_STATE(2255)] = 113963, - [SMALL_STATE(2256)] = 113982, - [SMALL_STATE(2257)] = 114005, - [SMALL_STATE(2258)] = 114024, - [SMALL_STATE(2259)] = 114045, - [SMALL_STATE(2260)] = 114064, - [SMALL_STATE(2261)] = 114087, - [SMALL_STATE(2262)] = 114106, - [SMALL_STATE(2263)] = 114127, - [SMALL_STATE(2264)] = 114150, - [SMALL_STATE(2265)] = 114169, - [SMALL_STATE(2266)] = 114188, - [SMALL_STATE(2267)] = 114209, - [SMALL_STATE(2268)] = 114226, - [SMALL_STATE(2269)] = 114247, - [SMALL_STATE(2270)] = 114264, - [SMALL_STATE(2271)] = 114283, - [SMALL_STATE(2272)] = 114302, - [SMALL_STATE(2273)] = 114323, - [SMALL_STATE(2274)] = 114342, - [SMALL_STATE(2275)] = 114361, - [SMALL_STATE(2276)] = 114380, - [SMALL_STATE(2277)] = 114399, - [SMALL_STATE(2278)] = 114420, - [SMALL_STATE(2279)] = 114439, - [SMALL_STATE(2280)] = 114473, - [SMALL_STATE(2281)] = 114493, - [SMALL_STATE(2282)] = 114527, - [SMALL_STATE(2283)] = 114561, - [SMALL_STATE(2284)] = 114581, - [SMALL_STATE(2285)] = 114599, - [SMALL_STATE(2286)] = 114633, - [SMALL_STATE(2287)] = 114653, - [SMALL_STATE(2288)] = 114687, - [SMALL_STATE(2289)] = 114721, - [SMALL_STATE(2290)] = 114739, - [SMALL_STATE(2291)] = 114759, - [SMALL_STATE(2292)] = 114781, - [SMALL_STATE(2293)] = 114799, - [SMALL_STATE(2294)] = 114819, - [SMALL_STATE(2295)] = 114841, - [SMALL_STATE(2296)] = 114875, - [SMALL_STATE(2297)] = 114909, - [SMALL_STATE(2298)] = 114929, - [SMALL_STATE(2299)] = 114963, - [SMALL_STATE(2300)] = 114987, - [SMALL_STATE(2301)] = 115017, - [SMALL_STATE(2302)] = 115051, - [SMALL_STATE(2303)] = 115068, - [SMALL_STATE(2304)] = 115099, - [SMALL_STATE(2305)] = 115130, - [SMALL_STATE(2306)] = 115147, - [SMALL_STATE(2307)] = 115168, - [SMALL_STATE(2308)] = 115189, - [SMALL_STATE(2309)] = 115206, - [SMALL_STATE(2310)] = 115231, - [SMALL_STATE(2311)] = 115262, - [SMALL_STATE(2312)] = 115293, - [SMALL_STATE(2313)] = 115312, - [SMALL_STATE(2314)] = 115331, - [SMALL_STATE(2315)] = 115354, - [SMALL_STATE(2316)] = 115385, - [SMALL_STATE(2317)] = 115416, - [SMALL_STATE(2318)] = 115447, - [SMALL_STATE(2319)] = 115478, - [SMALL_STATE(2320)] = 115503, - [SMALL_STATE(2321)] = 115534, - [SMALL_STATE(2322)] = 115553, - [SMALL_STATE(2323)] = 115584, - [SMALL_STATE(2324)] = 115615, - [SMALL_STATE(2325)] = 115632, - [SMALL_STATE(2326)] = 115653, - [SMALL_STATE(2327)] = 115676, - [SMALL_STATE(2328)] = 115707, - [SMALL_STATE(2329)] = 115738, - [SMALL_STATE(2330)] = 115769, - [SMALL_STATE(2331)] = 115800, - [SMALL_STATE(2332)] = 115831, - [SMALL_STATE(2333)] = 115862, - [SMALL_STATE(2334)] = 115893, - [SMALL_STATE(2335)] = 115910, - [SMALL_STATE(2336)] = 115927, - [SMALL_STATE(2337)] = 115949, - [SMALL_STATE(2338)] = 115967, - [SMALL_STATE(2339)] = 115981, - [SMALL_STATE(2340)] = 116001, - [SMALL_STATE(2341)] = 116015, - [SMALL_STATE(2342)] = 116035, - [SMALL_STATE(2343)] = 116057, - [SMALL_STATE(2344)] = 116075, - [SMALL_STATE(2345)] = 116089, - [SMALL_STATE(2346)] = 116103, - [SMALL_STATE(2347)] = 116117, - [SMALL_STATE(2348)] = 116135, - [SMALL_STATE(2349)] = 116149, - [SMALL_STATE(2350)] = 116163, - [SMALL_STATE(2351)] = 116183, - [SMALL_STATE(2352)] = 116197, - [SMALL_STATE(2353)] = 116219, - [SMALL_STATE(2354)] = 116239, - [SMALL_STATE(2355)] = 116253, - [SMALL_STATE(2356)] = 116271, - [SMALL_STATE(2357)] = 116285, - [SMALL_STATE(2358)] = 116299, - [SMALL_STATE(2359)] = 116313, - [SMALL_STATE(2360)] = 116327, - [SMALL_STATE(2361)] = 116341, - [SMALL_STATE(2362)] = 116355, - [SMALL_STATE(2363)] = 116375, - [SMALL_STATE(2364)] = 116389, - [SMALL_STATE(2365)] = 116403, - [SMALL_STATE(2366)] = 116417, - [SMALL_STATE(2367)] = 116431, - [SMALL_STATE(2368)] = 116445, - [SMALL_STATE(2369)] = 116459, - [SMALL_STATE(2370)] = 116473, - [SMALL_STATE(2371)] = 116493, - [SMALL_STATE(2372)] = 116507, - [SMALL_STATE(2373)] = 116523, - [SMALL_STATE(2374)] = 116539, - [SMALL_STATE(2375)] = 116561, - [SMALL_STATE(2376)] = 116575, - [SMALL_STATE(2377)] = 116589, - [SMALL_STATE(2378)] = 116613, - [SMALL_STATE(2379)] = 116627, - [SMALL_STATE(2380)] = 116641, - [SMALL_STATE(2381)] = 116655, - [SMALL_STATE(2382)] = 116669, - [SMALL_STATE(2383)] = 116683, - [SMALL_STATE(2384)] = 116699, - [SMALL_STATE(2385)] = 116719, - [SMALL_STATE(2386)] = 116741, - [SMALL_STATE(2387)] = 116755, - [SMALL_STATE(2388)] = 116775, - [SMALL_STATE(2389)] = 116789, - [SMALL_STATE(2390)] = 116803, - [SMALL_STATE(2391)] = 116828, - [SMALL_STATE(2392)] = 116841, - [SMALL_STATE(2393)] = 116866, - [SMALL_STATE(2394)] = 116891, - [SMALL_STATE(2395)] = 116916, - [SMALL_STATE(2396)] = 116941, - [SMALL_STATE(2397)] = 116966, - [SMALL_STATE(2398)] = 116985, - [SMALL_STATE(2399)] = 117010, - [SMALL_STATE(2400)] = 117031, - [SMALL_STATE(2401)] = 117056, - [SMALL_STATE(2402)] = 117077, - [SMALL_STATE(2403)] = 117098, - [SMALL_STATE(2404)] = 117115, - [SMALL_STATE(2405)] = 117140, - [SMALL_STATE(2406)] = 117165, - [SMALL_STATE(2407)] = 117182, - [SMALL_STATE(2408)] = 117203, - [SMALL_STATE(2409)] = 117220, - [SMALL_STATE(2410)] = 117245, - [SMALL_STATE(2411)] = 117264, - [SMALL_STATE(2412)] = 117289, - [SMALL_STATE(2413)] = 117314, - [SMALL_STATE(2414)] = 117339, - [SMALL_STATE(2415)] = 117364, - [SMALL_STATE(2416)] = 117389, - [SMALL_STATE(2417)] = 117404, - [SMALL_STATE(2418)] = 117425, - [SMALL_STATE(2419)] = 117442, - [SMALL_STATE(2420)] = 117467, - [SMALL_STATE(2421)] = 117492, - [SMALL_STATE(2422)] = 117509, - [SMALL_STATE(2423)] = 117534, - [SMALL_STATE(2424)] = 117559, - [SMALL_STATE(2425)] = 117580, - [SMALL_STATE(2426)] = 117605, - [SMALL_STATE(2427)] = 117618, - [SMALL_STATE(2428)] = 117643, - [SMALL_STATE(2429)] = 117660, - [SMALL_STATE(2430)] = 117677, - [SMALL_STATE(2431)] = 117702, - [SMALL_STATE(2432)] = 117719, - [SMALL_STATE(2433)] = 117744, - [SMALL_STATE(2434)] = 117761, - [SMALL_STATE(2435)] = 117786, - [SMALL_STATE(2436)] = 117811, - [SMALL_STATE(2437)] = 117834, - [SMALL_STATE(2438)] = 117855, - [SMALL_STATE(2439)] = 117874, - [SMALL_STATE(2440)] = 117891, - [SMALL_STATE(2441)] = 117908, - [SMALL_STATE(2442)] = 117925, - [SMALL_STATE(2443)] = 117950, - [SMALL_STATE(2444)] = 117963, - [SMALL_STATE(2445)] = 117980, - [SMALL_STATE(2446)] = 117997, - [SMALL_STATE(2447)] = 118014, - [SMALL_STATE(2448)] = 118033, - [SMALL_STATE(2449)] = 118046, - [SMALL_STATE(2450)] = 118071, - [SMALL_STATE(2451)] = 118088, - [SMALL_STATE(2452)] = 118113, - [SMALL_STATE(2453)] = 118138, - [SMALL_STATE(2454)] = 118163, - [SMALL_STATE(2455)] = 118188, - [SMALL_STATE(2456)] = 118213, - [SMALL_STATE(2457)] = 118230, - [SMALL_STATE(2458)] = 118255, - [SMALL_STATE(2459)] = 118280, - [SMALL_STATE(2460)] = 118305, - [SMALL_STATE(2461)] = 118330, - [SMALL_STATE(2462)] = 118349, - [SMALL_STATE(2463)] = 118374, - [SMALL_STATE(2464)] = 118393, - [SMALL_STATE(2465)] = 118412, - [SMALL_STATE(2466)] = 118431, - [SMALL_STATE(2467)] = 118456, - [SMALL_STATE(2468)] = 118473, - [SMALL_STATE(2469)] = 118490, - [SMALL_STATE(2470)] = 118509, - [SMALL_STATE(2471)] = 118534, - [SMALL_STATE(2472)] = 118553, - [SMALL_STATE(2473)] = 118578, - [SMALL_STATE(2474)] = 118603, - [SMALL_STATE(2475)] = 118628, - [SMALL_STATE(2476)] = 118653, - [SMALL_STATE(2477)] = 118666, - [SMALL_STATE(2478)] = 118685, - [SMALL_STATE(2479)] = 118710, - [SMALL_STATE(2480)] = 118723, - [SMALL_STATE(2481)] = 118748, - [SMALL_STATE(2482)] = 118764, - [SMALL_STATE(2483)] = 118786, - [SMALL_STATE(2484)] = 118808, - [SMALL_STATE(2485)] = 118830, - [SMALL_STATE(2486)] = 118848, - [SMALL_STATE(2487)] = 118870, - [SMALL_STATE(2488)] = 118890, - [SMALL_STATE(2489)] = 118908, - [SMALL_STATE(2490)] = 118920, - [SMALL_STATE(2491)] = 118942, - [SMALL_STATE(2492)] = 118962, - [SMALL_STATE(2493)] = 118982, - [SMALL_STATE(2494)] = 118994, - [SMALL_STATE(2495)] = 119016, - [SMALL_STATE(2496)] = 119032, - [SMALL_STATE(2497)] = 119052, - [SMALL_STATE(2498)] = 119074, - [SMALL_STATE(2499)] = 119096, - [SMALL_STATE(2500)] = 119118, - [SMALL_STATE(2501)] = 119140, - [SMALL_STATE(2502)] = 119158, - [SMALL_STATE(2503)] = 119180, - [SMALL_STATE(2504)] = 119198, - [SMALL_STATE(2505)] = 119220, - [SMALL_STATE(2506)] = 119236, - [SMALL_STATE(2507)] = 119252, - [SMALL_STATE(2508)] = 119274, - [SMALL_STATE(2509)] = 119290, - [SMALL_STATE(2510)] = 119312, - [SMALL_STATE(2511)] = 119330, - [SMALL_STATE(2512)] = 119352, - [SMALL_STATE(2513)] = 119372, - [SMALL_STATE(2514)] = 119394, - [SMALL_STATE(2515)] = 119410, - [SMALL_STATE(2516)] = 119432, - [SMALL_STATE(2517)] = 119450, - [SMALL_STATE(2518)] = 119470, - [SMALL_STATE(2519)] = 119490, - [SMALL_STATE(2520)] = 119512, - [SMALL_STATE(2521)] = 119532, - [SMALL_STATE(2522)] = 119554, - [SMALL_STATE(2523)] = 119576, - [SMALL_STATE(2524)] = 119598, - [SMALL_STATE(2525)] = 119620, - [SMALL_STATE(2526)] = 119640, - [SMALL_STATE(2527)] = 119652, - [SMALL_STATE(2528)] = 119668, - [SMALL_STATE(2529)] = 119688, - [SMALL_STATE(2530)] = 119706, - [SMALL_STATE(2531)] = 119724, - [SMALL_STATE(2532)] = 119740, - [SMALL_STATE(2533)] = 119756, - [SMALL_STATE(2534)] = 119776, - [SMALL_STATE(2535)] = 119798, - [SMALL_STATE(2536)] = 119814, - [SMALL_STATE(2537)] = 119830, - [SMALL_STATE(2538)] = 119846, - [SMALL_STATE(2539)] = 119868, - [SMALL_STATE(2540)] = 119886, - [SMALL_STATE(2541)] = 119908, - [SMALL_STATE(2542)] = 119930, - [SMALL_STATE(2543)] = 119948, - [SMALL_STATE(2544)] = 119968, - [SMALL_STATE(2545)] = 119986, - [SMALL_STATE(2546)] = 120008, - [SMALL_STATE(2547)] = 120024, - [SMALL_STATE(2548)] = 120040, - [SMALL_STATE(2549)] = 120056, - [SMALL_STATE(2550)] = 120078, - [SMALL_STATE(2551)] = 120090, - [SMALL_STATE(2552)] = 120104, - [SMALL_STATE(2553)] = 120122, - [SMALL_STATE(2554)] = 120144, - [SMALL_STATE(2555)] = 120166, - [SMALL_STATE(2556)] = 120182, - [SMALL_STATE(2557)] = 120198, - [SMALL_STATE(2558)] = 120220, - [SMALL_STATE(2559)] = 120242, - [SMALL_STATE(2560)] = 120260, - [SMALL_STATE(2561)] = 120282, - [SMALL_STATE(2562)] = 120304, - [SMALL_STATE(2563)] = 120324, - [SMALL_STATE(2564)] = 120342, - [SMALL_STATE(2565)] = 120360, - [SMALL_STATE(2566)] = 120382, - [SMALL_STATE(2567)] = 120404, - [SMALL_STATE(2568)] = 120424, - [SMALL_STATE(2569)] = 120446, - [SMALL_STATE(2570)] = 120462, - [SMALL_STATE(2571)] = 120484, - [SMALL_STATE(2572)] = 120506, - [SMALL_STATE(2573)] = 120522, - [SMALL_STATE(2574)] = 120544, - [SMALL_STATE(2575)] = 120556, - [SMALL_STATE(2576)] = 120578, - [SMALL_STATE(2577)] = 120600, - [SMALL_STATE(2578)] = 120622, - [SMALL_STATE(2579)] = 120640, - [SMALL_STATE(2580)] = 120658, - [SMALL_STATE(2581)] = 120680, - [SMALL_STATE(2582)] = 120700, - [SMALL_STATE(2583)] = 120722, - [SMALL_STATE(2584)] = 120744, - [SMALL_STATE(2585)] = 120766, - [SMALL_STATE(2586)] = 120786, - [SMALL_STATE(2587)] = 120804, - [SMALL_STATE(2588)] = 120822, - [SMALL_STATE(2589)] = 120844, - [SMALL_STATE(2590)] = 120860, - [SMALL_STATE(2591)] = 120878, - [SMALL_STATE(2592)] = 120894, - [SMALL_STATE(2593)] = 120916, - [SMALL_STATE(2594)] = 120938, - [SMALL_STATE(2595)] = 120954, - [SMALL_STATE(2596)] = 120976, - [SMALL_STATE(2597)] = 120998, - [SMALL_STATE(2598)] = 121020, - [SMALL_STATE(2599)] = 121036, - [SMALL_STATE(2600)] = 121054, - [SMALL_STATE(2601)] = 121076, - [SMALL_STATE(2602)] = 121094, - [SMALL_STATE(2603)] = 121116, - [SMALL_STATE(2604)] = 121138, - [SMALL_STATE(2605)] = 121160, - [SMALL_STATE(2606)] = 121174, - [SMALL_STATE(2607)] = 121196, - [SMALL_STATE(2608)] = 121214, - [SMALL_STATE(2609)] = 121236, - [SMALL_STATE(2610)] = 121258, - [SMALL_STATE(2611)] = 121276, - [SMALL_STATE(2612)] = 121298, - [SMALL_STATE(2613)] = 121318, - [SMALL_STATE(2614)] = 121334, - [SMALL_STATE(2615)] = 121356, - [SMALL_STATE(2616)] = 121374, - [SMALL_STATE(2617)] = 121390, - [SMALL_STATE(2618)] = 121408, - [SMALL_STATE(2619)] = 121426, - [SMALL_STATE(2620)] = 121442, - [SMALL_STATE(2621)] = 121464, - [SMALL_STATE(2622)] = 121486, - [SMALL_STATE(2623)] = 121508, - [SMALL_STATE(2624)] = 121528, - [SMALL_STATE(2625)] = 121550, - [SMALL_STATE(2626)] = 121561, - [SMALL_STATE(2627)] = 121580, - [SMALL_STATE(2628)] = 121591, - [SMALL_STATE(2629)] = 121606, - [SMALL_STATE(2630)] = 121625, - [SMALL_STATE(2631)] = 121642, - [SMALL_STATE(2632)] = 121657, - [SMALL_STATE(2633)] = 121672, - [SMALL_STATE(2634)] = 121691, - [SMALL_STATE(2635)] = 121710, - [SMALL_STATE(2636)] = 121729, - [SMALL_STATE(2637)] = 121746, - [SMALL_STATE(2638)] = 121765, - [SMALL_STATE(2639)] = 121780, - [SMALL_STATE(2640)] = 121795, - [SMALL_STATE(2641)] = 121808, - [SMALL_STATE(2642)] = 121827, - [SMALL_STATE(2643)] = 121846, - [SMALL_STATE(2644)] = 121863, - [SMALL_STATE(2645)] = 121882, - [SMALL_STATE(2646)] = 121901, - [SMALL_STATE(2647)] = 121920, - [SMALL_STATE(2648)] = 121935, - [SMALL_STATE(2649)] = 121952, - [SMALL_STATE(2650)] = 121971, - [SMALL_STATE(2651)] = 121986, - [SMALL_STATE(2652)] = 122001, - [SMALL_STATE(2653)] = 122020, - [SMALL_STATE(2654)] = 122031, - [SMALL_STATE(2655)] = 122050, - [SMALL_STATE(2656)] = 122069, - [SMALL_STATE(2657)] = 122084, - [SMALL_STATE(2658)] = 122099, - [SMALL_STATE(2659)] = 122114, - [SMALL_STATE(2660)] = 122125, - [SMALL_STATE(2661)] = 122136, - [SMALL_STATE(2662)] = 122151, - [SMALL_STATE(2663)] = 122170, - [SMALL_STATE(2664)] = 122189, - [SMALL_STATE(2665)] = 122200, - [SMALL_STATE(2666)] = 122219, - [SMALL_STATE(2667)] = 122232, - [SMALL_STATE(2668)] = 122245, - [SMALL_STATE(2669)] = 122264, - [SMALL_STATE(2670)] = 122283, - [SMALL_STATE(2671)] = 122294, - [SMALL_STATE(2672)] = 122311, - [SMALL_STATE(2673)] = 122330, - [SMALL_STATE(2674)] = 122349, - [SMALL_STATE(2675)] = 122360, - [SMALL_STATE(2676)] = 122371, - [SMALL_STATE(2677)] = 122382, - [SMALL_STATE(2678)] = 122393, - [SMALL_STATE(2679)] = 122406, - [SMALL_STATE(2680)] = 122417, - [SMALL_STATE(2681)] = 122432, - [SMALL_STATE(2682)] = 122451, - [SMALL_STATE(2683)] = 122470, - [SMALL_STATE(2684)] = 122481, - [SMALL_STATE(2685)] = 122498, - [SMALL_STATE(2686)] = 122513, - [SMALL_STATE(2687)] = 122524, - [SMALL_STATE(2688)] = 122543, - [SMALL_STATE(2689)] = 122554, - [SMALL_STATE(2690)] = 122565, - [SMALL_STATE(2691)] = 122584, - [SMALL_STATE(2692)] = 122599, - [SMALL_STATE(2693)] = 122618, - [SMALL_STATE(2694)] = 122629, - [SMALL_STATE(2695)] = 122640, - [SMALL_STATE(2696)] = 122655, - [SMALL_STATE(2697)] = 122666, - [SMALL_STATE(2698)] = 122681, - [SMALL_STATE(2699)] = 122692, - [SMALL_STATE(2700)] = 122711, - [SMALL_STATE(2701)] = 122726, - [SMALL_STATE(2702)] = 122737, - [SMALL_STATE(2703)] = 122748, - [SMALL_STATE(2704)] = 122759, - [SMALL_STATE(2705)] = 122770, - [SMALL_STATE(2706)] = 122781, - [SMALL_STATE(2707)] = 122792, - [SMALL_STATE(2708)] = 122811, - [SMALL_STATE(2709)] = 122822, - [SMALL_STATE(2710)] = 122833, - [SMALL_STATE(2711)] = 122848, - [SMALL_STATE(2712)] = 122867, - [SMALL_STATE(2713)] = 122886, - [SMALL_STATE(2714)] = 122897, - [SMALL_STATE(2715)] = 122912, - [SMALL_STATE(2716)] = 122923, - [SMALL_STATE(2717)] = 122934, - [SMALL_STATE(2718)] = 122945, - [SMALL_STATE(2719)] = 122964, - [SMALL_STATE(2720)] = 122975, - [SMALL_STATE(2721)] = 122994, - [SMALL_STATE(2722)] = 123013, - [SMALL_STATE(2723)] = 123032, - [SMALL_STATE(2724)] = 123043, - [SMALL_STATE(2725)] = 123054, - [SMALL_STATE(2726)] = 123065, - [SMALL_STATE(2727)] = 123076, - [SMALL_STATE(2728)] = 123091, - [SMALL_STATE(2729)] = 123108, - [SMALL_STATE(2730)] = 123119, - [SMALL_STATE(2731)] = 123130, - [SMALL_STATE(2732)] = 123141, - [SMALL_STATE(2733)] = 123152, - [SMALL_STATE(2734)] = 123163, - [SMALL_STATE(2735)] = 123174, - [SMALL_STATE(2736)] = 123185, - [SMALL_STATE(2737)] = 123196, - [SMALL_STATE(2738)] = 123215, - [SMALL_STATE(2739)] = 123226, - [SMALL_STATE(2740)] = 123243, - [SMALL_STATE(2741)] = 123254, - [SMALL_STATE(2742)] = 123265, - [SMALL_STATE(2743)] = 123276, - [SMALL_STATE(2744)] = 123295, - [SMALL_STATE(2745)] = 123314, - [SMALL_STATE(2746)] = 123329, - [SMALL_STATE(2747)] = 123344, - [SMALL_STATE(2748)] = 123355, - [SMALL_STATE(2749)] = 123370, - [SMALL_STATE(2750)] = 123381, - [SMALL_STATE(2751)] = 123400, - [SMALL_STATE(2752)] = 123411, - [SMALL_STATE(2753)] = 123426, - [SMALL_STATE(2754)] = 123441, - [SMALL_STATE(2755)] = 123452, - [SMALL_STATE(2756)] = 123467, - [SMALL_STATE(2757)] = 123482, - [SMALL_STATE(2758)] = 123497, - [SMALL_STATE(2759)] = 123508, - [SMALL_STATE(2760)] = 123525, - [SMALL_STATE(2761)] = 123536, - [SMALL_STATE(2762)] = 123547, - [SMALL_STATE(2763)] = 123566, - [SMALL_STATE(2764)] = 123577, - [SMALL_STATE(2765)] = 123588, - [SMALL_STATE(2766)] = 123603, - [SMALL_STATE(2767)] = 123614, - [SMALL_STATE(2768)] = 123629, - [SMALL_STATE(2769)] = 123648, - [SMALL_STATE(2770)] = 123659, - [SMALL_STATE(2771)] = 123678, - [SMALL_STATE(2772)] = 123689, - [SMALL_STATE(2773)] = 123708, - [SMALL_STATE(2774)] = 123719, - [SMALL_STATE(2775)] = 123738, - [SMALL_STATE(2776)] = 123753, - [SMALL_STATE(2777)] = 123768, - [SMALL_STATE(2778)] = 123787, - [SMALL_STATE(2779)] = 123804, - [SMALL_STATE(2780)] = 123815, - [SMALL_STATE(2781)] = 123834, - [SMALL_STATE(2782)] = 123845, - [SMALL_STATE(2783)] = 123864, - [SMALL_STATE(2784)] = 123875, - [SMALL_STATE(2785)] = 123888, - [SMALL_STATE(2786)] = 123899, - [SMALL_STATE(2787)] = 123910, - [SMALL_STATE(2788)] = 123929, - [SMALL_STATE(2789)] = 123948, - [SMALL_STATE(2790)] = 123963, - [SMALL_STATE(2791)] = 123982, - [SMALL_STATE(2792)] = 123993, - [SMALL_STATE(2793)] = 124008, - [SMALL_STATE(2794)] = 124019, - [SMALL_STATE(2795)] = 124034, - [SMALL_STATE(2796)] = 124045, - [SMALL_STATE(2797)] = 124056, - [SMALL_STATE(2798)] = 124075, - [SMALL_STATE(2799)] = 124094, - [SMALL_STATE(2800)] = 124105, - [SMALL_STATE(2801)] = 124116, - [SMALL_STATE(2802)] = 124131, - [SMALL_STATE(2803)] = 124142, - [SMALL_STATE(2804)] = 124153, - [SMALL_STATE(2805)] = 124164, - [SMALL_STATE(2806)] = 124175, - [SMALL_STATE(2807)] = 124186, - [SMALL_STATE(2808)] = 124205, - [SMALL_STATE(2809)] = 124224, - [SMALL_STATE(2810)] = 124241, - [SMALL_STATE(2811)] = 124256, - [SMALL_STATE(2812)] = 124275, - [SMALL_STATE(2813)] = 124286, - [SMALL_STATE(2814)] = 124297, - [SMALL_STATE(2815)] = 124312, - [SMALL_STATE(2816)] = 124323, - [SMALL_STATE(2817)] = 124334, - [SMALL_STATE(2818)] = 124345, - [SMALL_STATE(2819)] = 124356, - [SMALL_STATE(2820)] = 124371, - [SMALL_STATE(2821)] = 124382, - [SMALL_STATE(2822)] = 124393, - [SMALL_STATE(2823)] = 124412, - [SMALL_STATE(2824)] = 124423, - [SMALL_STATE(2825)] = 124438, - [SMALL_STATE(2826)] = 124449, - [SMALL_STATE(2827)] = 124460, - [SMALL_STATE(2828)] = 124471, - [SMALL_STATE(2829)] = 124488, - [SMALL_STATE(2830)] = 124499, - [SMALL_STATE(2831)] = 124510, - [SMALL_STATE(2832)] = 124525, - [SMALL_STATE(2833)] = 124536, - [SMALL_STATE(2834)] = 124547, - [SMALL_STATE(2835)] = 124558, - [SMALL_STATE(2836)] = 124573, - [SMALL_STATE(2837)] = 124590, - [SMALL_STATE(2838)] = 124603, - [SMALL_STATE(2839)] = 124614, - [SMALL_STATE(2840)] = 124633, - [SMALL_STATE(2841)] = 124644, - [SMALL_STATE(2842)] = 124655, - [SMALL_STATE(2843)] = 124666, - [SMALL_STATE(2844)] = 124677, - [SMALL_STATE(2845)] = 124688, - [SMALL_STATE(2846)] = 124699, - [SMALL_STATE(2847)] = 124710, - [SMALL_STATE(2848)] = 124721, - [SMALL_STATE(2849)] = 124732, - [SMALL_STATE(2850)] = 124743, - [SMALL_STATE(2851)] = 124754, - [SMALL_STATE(2852)] = 124769, - [SMALL_STATE(2853)] = 124788, - [SMALL_STATE(2854)] = 124799, - [SMALL_STATE(2855)] = 124810, - [SMALL_STATE(2856)] = 124821, - [SMALL_STATE(2857)] = 124840, - [SMALL_STATE(2858)] = 124851, - [SMALL_STATE(2859)] = 124868, - [SMALL_STATE(2860)] = 124879, - [SMALL_STATE(2861)] = 124894, - [SMALL_STATE(2862)] = 124909, - [SMALL_STATE(2863)] = 124920, - [SMALL_STATE(2864)] = 124935, - [SMALL_STATE(2865)] = 124954, - [SMALL_STATE(2866)] = 124969, - [SMALL_STATE(2867)] = 124984, - [SMALL_STATE(2868)] = 124999, - [SMALL_STATE(2869)] = 125018, - [SMALL_STATE(2870)] = 125033, - [SMALL_STATE(2871)] = 125048, - [SMALL_STATE(2872)] = 125065, - [SMALL_STATE(2873)] = 125076, - [SMALL_STATE(2874)] = 125093, - [SMALL_STATE(2875)] = 125108, - [SMALL_STATE(2876)] = 125123, - [SMALL_STATE(2877)] = 125134, - [SMALL_STATE(2878)] = 125153, - [SMALL_STATE(2879)] = 125164, - [SMALL_STATE(2880)] = 125179, - [SMALL_STATE(2881)] = 125194, - [SMALL_STATE(2882)] = 125205, - [SMALL_STATE(2883)] = 125220, - [SMALL_STATE(2884)] = 125231, - [SMALL_STATE(2885)] = 125242, - [SMALL_STATE(2886)] = 125253, - [SMALL_STATE(2887)] = 125264, - [SMALL_STATE(2888)] = 125275, - [SMALL_STATE(2889)] = 125290, - [SMALL_STATE(2890)] = 125306, - [SMALL_STATE(2891)] = 125322, - [SMALL_STATE(2892)] = 125338, - [SMALL_STATE(2893)] = 125354, - [SMALL_STATE(2894)] = 125370, - [SMALL_STATE(2895)] = 125386, - [SMALL_STATE(2896)] = 125402, - [SMALL_STATE(2897)] = 125418, - [SMALL_STATE(2898)] = 125434, - [SMALL_STATE(2899)] = 125450, - [SMALL_STATE(2900)] = 125466, - [SMALL_STATE(2901)] = 125482, - [SMALL_STATE(2902)] = 125498, - [SMALL_STATE(2903)] = 125514, - [SMALL_STATE(2904)] = 125530, - [SMALL_STATE(2905)] = 125546, - [SMALL_STATE(2906)] = 125562, - [SMALL_STATE(2907)] = 125578, - [SMALL_STATE(2908)] = 125594, - [SMALL_STATE(2909)] = 125610, - [SMALL_STATE(2910)] = 125626, - [SMALL_STATE(2911)] = 125642, - [SMALL_STATE(2912)] = 125658, - [SMALL_STATE(2913)] = 125674, - [SMALL_STATE(2914)] = 125690, - [SMALL_STATE(2915)] = 125706, - [SMALL_STATE(2916)] = 125722, - [SMALL_STATE(2917)] = 125738, - [SMALL_STATE(2918)] = 125754, - [SMALL_STATE(2919)] = 125770, - [SMALL_STATE(2920)] = 125784, - [SMALL_STATE(2921)] = 125800, - [SMALL_STATE(2922)] = 125814, - [SMALL_STATE(2923)] = 125828, - [SMALL_STATE(2924)] = 125842, - [SMALL_STATE(2925)] = 125852, - [SMALL_STATE(2926)] = 125866, - [SMALL_STATE(2927)] = 125882, - [SMALL_STATE(2928)] = 125898, - [SMALL_STATE(2929)] = 125912, - [SMALL_STATE(2930)] = 125928, - [SMALL_STATE(2931)] = 125942, - [SMALL_STATE(2932)] = 125956, - [SMALL_STATE(2933)] = 125972, - [SMALL_STATE(2934)] = 125988, - [SMALL_STATE(2935)] = 126004, - [SMALL_STATE(2936)] = 126020, - [SMALL_STATE(2937)] = 126034, - [SMALL_STATE(2938)] = 126048, - [SMALL_STATE(2939)] = 126062, - [SMALL_STATE(2940)] = 126078, - [SMALL_STATE(2941)] = 126094, - [SMALL_STATE(2942)] = 126108, - [SMALL_STATE(2943)] = 126122, - [SMALL_STATE(2944)] = 126136, - [SMALL_STATE(2945)] = 126152, - [SMALL_STATE(2946)] = 126168, - [SMALL_STATE(2947)] = 126184, - [SMALL_STATE(2948)] = 126200, - [SMALL_STATE(2949)] = 126216, - [SMALL_STATE(2950)] = 126228, - [SMALL_STATE(2951)] = 126244, - [SMALL_STATE(2952)] = 126260, - [SMALL_STATE(2953)] = 126276, - [SMALL_STATE(2954)] = 126288, - [SMALL_STATE(2955)] = 126304, - [SMALL_STATE(2956)] = 126320, - [SMALL_STATE(2957)] = 126332, - [SMALL_STATE(2958)] = 126348, - [SMALL_STATE(2959)] = 126364, - [SMALL_STATE(2960)] = 126380, - [SMALL_STATE(2961)] = 126396, - [SMALL_STATE(2962)] = 126412, - [SMALL_STATE(2963)] = 126426, - [SMALL_STATE(2964)] = 126438, - [SMALL_STATE(2965)] = 126448, - [SMALL_STATE(2966)] = 126462, - [SMALL_STATE(2967)] = 126476, - [SMALL_STATE(2968)] = 126492, - [SMALL_STATE(2969)] = 126502, - [SMALL_STATE(2970)] = 126518, - [SMALL_STATE(2971)] = 126534, - [SMALL_STATE(2972)] = 126550, - [SMALL_STATE(2973)] = 126566, - [SMALL_STATE(2974)] = 126582, - [SMALL_STATE(2975)] = 126598, - [SMALL_STATE(2976)] = 126614, - [SMALL_STATE(2977)] = 126630, - [SMALL_STATE(2978)] = 126646, - [SMALL_STATE(2979)] = 126660, - [SMALL_STATE(2980)] = 126676, - [SMALL_STATE(2981)] = 126690, - [SMALL_STATE(2982)] = 126702, - [SMALL_STATE(2983)] = 126714, - [SMALL_STATE(2984)] = 126730, - [SMALL_STATE(2985)] = 126746, - [SMALL_STATE(2986)] = 126762, - [SMALL_STATE(2987)] = 126772, - [SMALL_STATE(2988)] = 126788, - [SMALL_STATE(2989)] = 126802, - [SMALL_STATE(2990)] = 126818, - [SMALL_STATE(2991)] = 126830, - [SMALL_STATE(2992)] = 126844, - [SMALL_STATE(2993)] = 126858, - [SMALL_STATE(2994)] = 126872, - [SMALL_STATE(2995)] = 126888, - [SMALL_STATE(2996)] = 126900, - [SMALL_STATE(2997)] = 126916, - [SMALL_STATE(2998)] = 126932, - [SMALL_STATE(2999)] = 126946, - [SMALL_STATE(3000)] = 126962, - [SMALL_STATE(3001)] = 126976, - [SMALL_STATE(3002)] = 126986, - [SMALL_STATE(3003)] = 127002, - [SMALL_STATE(3004)] = 127018, - [SMALL_STATE(3005)] = 127034, - [SMALL_STATE(3006)] = 127050, - [SMALL_STATE(3007)] = 127064, - [SMALL_STATE(3008)] = 127078, - [SMALL_STATE(3009)] = 127094, - [SMALL_STATE(3010)] = 127110, - [SMALL_STATE(3011)] = 127124, - [SMALL_STATE(3012)] = 127140, - [SMALL_STATE(3013)] = 127156, - [SMALL_STATE(3014)] = 127172, - [SMALL_STATE(3015)] = 127188, - [SMALL_STATE(3016)] = 127204, - [SMALL_STATE(3017)] = 127220, - [SMALL_STATE(3018)] = 127236, - [SMALL_STATE(3019)] = 127252, - [SMALL_STATE(3020)] = 127268, - [SMALL_STATE(3021)] = 127284, - [SMALL_STATE(3022)] = 127300, - [SMALL_STATE(3023)] = 127316, - [SMALL_STATE(3024)] = 127332, - [SMALL_STATE(3025)] = 127348, - [SMALL_STATE(3026)] = 127362, - [SMALL_STATE(3027)] = 127378, - [SMALL_STATE(3028)] = 127394, - [SMALL_STATE(3029)] = 127410, - [SMALL_STATE(3030)] = 127426, - [SMALL_STATE(3031)] = 127442, - [SMALL_STATE(3032)] = 127458, - [SMALL_STATE(3033)] = 127474, - [SMALL_STATE(3034)] = 127487, - [SMALL_STATE(3035)] = 127496, - [SMALL_STATE(3036)] = 127509, - [SMALL_STATE(3037)] = 127522, - [SMALL_STATE(3038)] = 127535, - [SMALL_STATE(3039)] = 127548, - [SMALL_STATE(3040)] = 127561, - [SMALL_STATE(3041)] = 127574, - [SMALL_STATE(3042)] = 127587, - [SMALL_STATE(3043)] = 127600, - [SMALL_STATE(3044)] = 127613, - [SMALL_STATE(3045)] = 127626, - [SMALL_STATE(3046)] = 127637, - [SMALL_STATE(3047)] = 127650, - [SMALL_STATE(3048)] = 127663, - [SMALL_STATE(3049)] = 127676, - [SMALL_STATE(3050)] = 127689, - [SMALL_STATE(3051)] = 127702, - [SMALL_STATE(3052)] = 127715, - [SMALL_STATE(3053)] = 127728, - [SMALL_STATE(3054)] = 127741, - [SMALL_STATE(3055)] = 127754, - [SMALL_STATE(3056)] = 127767, - [SMALL_STATE(3057)] = 127776, - [SMALL_STATE(3058)] = 127787, - [SMALL_STATE(3059)] = 127798, - [SMALL_STATE(3060)] = 127809, - [SMALL_STATE(3061)] = 127822, - [SMALL_STATE(3062)] = 127833, - [SMALL_STATE(3063)] = 127846, - [SMALL_STATE(3064)] = 127859, - [SMALL_STATE(3065)] = 127872, - [SMALL_STATE(3066)] = 127883, - [SMALL_STATE(3067)] = 127894, - [SMALL_STATE(3068)] = 127907, - [SMALL_STATE(3069)] = 127916, - [SMALL_STATE(3070)] = 127927, - [SMALL_STATE(3071)] = 127936, - [SMALL_STATE(3072)] = 127949, - [SMALL_STATE(3073)] = 127962, - [SMALL_STATE(3074)] = 127971, - [SMALL_STATE(3075)] = 127984, - [SMALL_STATE(3076)] = 127997, - [SMALL_STATE(3077)] = 128006, - [SMALL_STATE(3078)] = 128015, - [SMALL_STATE(3079)] = 128028, - [SMALL_STATE(3080)] = 128037, - [SMALL_STATE(3081)] = 128046, - [SMALL_STATE(3082)] = 128057, - [SMALL_STATE(3083)] = 128066, - [SMALL_STATE(3084)] = 128079, - [SMALL_STATE(3085)] = 128092, - [SMALL_STATE(3086)] = 128105, - [SMALL_STATE(3087)] = 128118, - [SMALL_STATE(3088)] = 128131, - [SMALL_STATE(3089)] = 128144, - [SMALL_STATE(3090)] = 128157, - [SMALL_STATE(3091)] = 128170, - [SMALL_STATE(3092)] = 128183, - [SMALL_STATE(3093)] = 128196, - [SMALL_STATE(3094)] = 128209, - [SMALL_STATE(3095)] = 128222, - [SMALL_STATE(3096)] = 128235, - [SMALL_STATE(3097)] = 128248, - [SMALL_STATE(3098)] = 128257, - [SMALL_STATE(3099)] = 128270, - [SMALL_STATE(3100)] = 128283, - [SMALL_STATE(3101)] = 128296, - [SMALL_STATE(3102)] = 128309, - [SMALL_STATE(3103)] = 128322, - [SMALL_STATE(3104)] = 128335, - [SMALL_STATE(3105)] = 128348, - [SMALL_STATE(3106)] = 128361, - [SMALL_STATE(3107)] = 128374, - [SMALL_STATE(3108)] = 128387, - [SMALL_STATE(3109)] = 128400, - [SMALL_STATE(3110)] = 128413, - [SMALL_STATE(3111)] = 128426, - [SMALL_STATE(3112)] = 128439, - [SMALL_STATE(3113)] = 128452, - [SMALL_STATE(3114)] = 128465, - [SMALL_STATE(3115)] = 128474, - [SMALL_STATE(3116)] = 128487, - [SMALL_STATE(3117)] = 128500, - [SMALL_STATE(3118)] = 128513, - [SMALL_STATE(3119)] = 128522, - [SMALL_STATE(3120)] = 128531, - [SMALL_STATE(3121)] = 128540, - [SMALL_STATE(3122)] = 128549, - [SMALL_STATE(3123)] = 128558, - [SMALL_STATE(3124)] = 128567, - [SMALL_STATE(3125)] = 128576, - [SMALL_STATE(3126)] = 128585, - [SMALL_STATE(3127)] = 128598, - [SMALL_STATE(3128)] = 128607, - [SMALL_STATE(3129)] = 128616, - [SMALL_STATE(3130)] = 128625, - [SMALL_STATE(3131)] = 128638, - [SMALL_STATE(3132)] = 128647, - [SMALL_STATE(3133)] = 128660, - [SMALL_STATE(3134)] = 128671, - [SMALL_STATE(3135)] = 128680, - [SMALL_STATE(3136)] = 128693, - [SMALL_STATE(3137)] = 128706, - [SMALL_STATE(3138)] = 128719, - [SMALL_STATE(3139)] = 128732, - [SMALL_STATE(3140)] = 128745, - [SMALL_STATE(3141)] = 128758, - [SMALL_STATE(3142)] = 128771, - [SMALL_STATE(3143)] = 128784, - [SMALL_STATE(3144)] = 128797, - [SMALL_STATE(3145)] = 128810, - [SMALL_STATE(3146)] = 128823, - [SMALL_STATE(3147)] = 128836, - [SMALL_STATE(3148)] = 128849, - [SMALL_STATE(3149)] = 128862, - [SMALL_STATE(3150)] = 128875, - [SMALL_STATE(3151)] = 128888, - [SMALL_STATE(3152)] = 128901, - [SMALL_STATE(3153)] = 128914, - [SMALL_STATE(3154)] = 128927, - [SMALL_STATE(3155)] = 128936, - [SMALL_STATE(3156)] = 128949, - [SMALL_STATE(3157)] = 128960, - [SMALL_STATE(3158)] = 128969, - [SMALL_STATE(3159)] = 128978, - [SMALL_STATE(3160)] = 128991, - [SMALL_STATE(3161)] = 129000, - [SMALL_STATE(3162)] = 129013, - [SMALL_STATE(3163)] = 129022, - [SMALL_STATE(3164)] = 129031, - [SMALL_STATE(3165)] = 129044, - [SMALL_STATE(3166)] = 129057, - [SMALL_STATE(3167)] = 129070, - [SMALL_STATE(3168)] = 129079, - [SMALL_STATE(3169)] = 129092, - [SMALL_STATE(3170)] = 129101, - [SMALL_STATE(3171)] = 129114, - [SMALL_STATE(3172)] = 129127, - [SMALL_STATE(3173)] = 129136, - [SMALL_STATE(3174)] = 129145, - [SMALL_STATE(3175)] = 129158, - [SMALL_STATE(3176)] = 129171, - [SMALL_STATE(3177)] = 129184, - [SMALL_STATE(3178)] = 129197, - [SMALL_STATE(3179)] = 129210, - [SMALL_STATE(3180)] = 129223, - [SMALL_STATE(3181)] = 129236, - [SMALL_STATE(3182)] = 129249, - [SMALL_STATE(3183)] = 129262, - [SMALL_STATE(3184)] = 129275, - [SMALL_STATE(3185)] = 129286, - [SMALL_STATE(3186)] = 129299, - [SMALL_STATE(3187)] = 129312, - [SMALL_STATE(3188)] = 129325, - [SMALL_STATE(3189)] = 129334, - [SMALL_STATE(3190)] = 129343, - [SMALL_STATE(3191)] = 129354, - [SMALL_STATE(3192)] = 129367, - [SMALL_STATE(3193)] = 129380, - [SMALL_STATE(3194)] = 129393, - [SMALL_STATE(3195)] = 129402, - [SMALL_STATE(3196)] = 129415, - [SMALL_STATE(3197)] = 129428, - [SMALL_STATE(3198)] = 129441, - [SMALL_STATE(3199)] = 129454, - [SMALL_STATE(3200)] = 129467, - [SMALL_STATE(3201)] = 129478, - [SMALL_STATE(3202)] = 129491, - [SMALL_STATE(3203)] = 129500, - [SMALL_STATE(3204)] = 129513, - [SMALL_STATE(3205)] = 129526, - [SMALL_STATE(3206)] = 129539, - [SMALL_STATE(3207)] = 129552, - [SMALL_STATE(3208)] = 129565, - [SMALL_STATE(3209)] = 129578, - [SMALL_STATE(3210)] = 129591, - [SMALL_STATE(3211)] = 129602, - [SMALL_STATE(3212)] = 129615, - [SMALL_STATE(3213)] = 129628, - [SMALL_STATE(3214)] = 129641, - [SMALL_STATE(3215)] = 129654, - [SMALL_STATE(3216)] = 129667, - [SMALL_STATE(3217)] = 129680, - [SMALL_STATE(3218)] = 129693, - [SMALL_STATE(3219)] = 129706, - [SMALL_STATE(3220)] = 129719, - [SMALL_STATE(3221)] = 129728, - [SMALL_STATE(3222)] = 129741, - [SMALL_STATE(3223)] = 129754, - [SMALL_STATE(3224)] = 129763, - [SMALL_STATE(3225)] = 129776, - [SMALL_STATE(3226)] = 129789, - [SMALL_STATE(3227)] = 129798, - [SMALL_STATE(3228)] = 129807, - [SMALL_STATE(3229)] = 129820, - [SMALL_STATE(3230)] = 129833, - [SMALL_STATE(3231)] = 129846, - [SMALL_STATE(3232)] = 129856, - [SMALL_STATE(3233)] = 129866, - [SMALL_STATE(3234)] = 129876, - [SMALL_STATE(3235)] = 129886, - [SMALL_STATE(3236)] = 129896, - [SMALL_STATE(3237)] = 129906, - [SMALL_STATE(3238)] = 129916, - [SMALL_STATE(3239)] = 129926, - [SMALL_STATE(3240)] = 129936, - [SMALL_STATE(3241)] = 129946, - [SMALL_STATE(3242)] = 129956, - [SMALL_STATE(3243)] = 129966, - [SMALL_STATE(3244)] = 129976, - [SMALL_STATE(3245)] = 129986, - [SMALL_STATE(3246)] = 129996, - [SMALL_STATE(3247)] = 130006, - [SMALL_STATE(3248)] = 130016, - [SMALL_STATE(3249)] = 130026, - [SMALL_STATE(3250)] = 130036, - [SMALL_STATE(3251)] = 130044, - [SMALL_STATE(3252)] = 130054, - [SMALL_STATE(3253)] = 130064, - [SMALL_STATE(3254)] = 130074, - [SMALL_STATE(3255)] = 130084, - [SMALL_STATE(3256)] = 130094, - [SMALL_STATE(3257)] = 130104, - [SMALL_STATE(3258)] = 130112, - [SMALL_STATE(3259)] = 130122, - [SMALL_STATE(3260)] = 130132, - [SMALL_STATE(3261)] = 130142, - [SMALL_STATE(3262)] = 130152, - [SMALL_STATE(3263)] = 130162, - [SMALL_STATE(3264)] = 130172, - [SMALL_STATE(3265)] = 130182, - [SMALL_STATE(3266)] = 130192, - [SMALL_STATE(3267)] = 130200, - [SMALL_STATE(3268)] = 130208, - [SMALL_STATE(3269)] = 130218, - [SMALL_STATE(3270)] = 130228, - [SMALL_STATE(3271)] = 130238, - [SMALL_STATE(3272)] = 130246, - [SMALL_STATE(3273)] = 130256, - [SMALL_STATE(3274)] = 130266, - [SMALL_STATE(3275)] = 130276, - [SMALL_STATE(3276)] = 130286, - [SMALL_STATE(3277)] = 130296, - [SMALL_STATE(3278)] = 130306, - [SMALL_STATE(3279)] = 130316, - [SMALL_STATE(3280)] = 130326, - [SMALL_STATE(3281)] = 130334, - [SMALL_STATE(3282)] = 130344, - [SMALL_STATE(3283)] = 130354, - [SMALL_STATE(3284)] = 130364, - [SMALL_STATE(3285)] = 130374, - [SMALL_STATE(3286)] = 130384, - [SMALL_STATE(3287)] = 130394, - [SMALL_STATE(3288)] = 130404, - [SMALL_STATE(3289)] = 130412, - [SMALL_STATE(3290)] = 130422, - [SMALL_STATE(3291)] = 130432, - [SMALL_STATE(3292)] = 130442, - [SMALL_STATE(3293)] = 130452, - [SMALL_STATE(3294)] = 130462, - [SMALL_STATE(3295)] = 130472, - [SMALL_STATE(3296)] = 130482, - [SMALL_STATE(3297)] = 130490, - [SMALL_STATE(3298)] = 130500, - [SMALL_STATE(3299)] = 130510, - [SMALL_STATE(3300)] = 130520, - [SMALL_STATE(3301)] = 130530, - [SMALL_STATE(3302)] = 130540, - [SMALL_STATE(3303)] = 130550, - [SMALL_STATE(3304)] = 130560, - [SMALL_STATE(3305)] = 130570, - [SMALL_STATE(3306)] = 130580, - [SMALL_STATE(3307)] = 130590, - [SMALL_STATE(3308)] = 130600, - [SMALL_STATE(3309)] = 130610, - [SMALL_STATE(3310)] = 130620, - [SMALL_STATE(3311)] = 130628, - [SMALL_STATE(3312)] = 130638, - [SMALL_STATE(3313)] = 130648, - [SMALL_STATE(3314)] = 130658, - [SMALL_STATE(3315)] = 130666, - [SMALL_STATE(3316)] = 130676, - [SMALL_STATE(3317)] = 130686, - [SMALL_STATE(3318)] = 130694, - [SMALL_STATE(3319)] = 130704, - [SMALL_STATE(3320)] = 130714, - [SMALL_STATE(3321)] = 130724, - [SMALL_STATE(3322)] = 130734, - [SMALL_STATE(3323)] = 130744, - [SMALL_STATE(3324)] = 130754, - [SMALL_STATE(3325)] = 130764, - [SMALL_STATE(3326)] = 130772, - [SMALL_STATE(3327)] = 130782, - [SMALL_STATE(3328)] = 130790, - [SMALL_STATE(3329)] = 130798, - [SMALL_STATE(3330)] = 130806, - [SMALL_STATE(3331)] = 130814, - [SMALL_STATE(3332)] = 130824, - [SMALL_STATE(3333)] = 130834, - [SMALL_STATE(3334)] = 130844, - [SMALL_STATE(3335)] = 130852, - [SMALL_STATE(3336)] = 130862, - [SMALL_STATE(3337)] = 130870, - [SMALL_STATE(3338)] = 130880, - [SMALL_STATE(3339)] = 130888, - [SMALL_STATE(3340)] = 130898, - [SMALL_STATE(3341)] = 130908, - [SMALL_STATE(3342)] = 130918, - [SMALL_STATE(3343)] = 130926, - [SMALL_STATE(3344)] = 130936, - [SMALL_STATE(3345)] = 130946, - [SMALL_STATE(3346)] = 130954, - [SMALL_STATE(3347)] = 130962, - [SMALL_STATE(3348)] = 130972, - [SMALL_STATE(3349)] = 130982, - [SMALL_STATE(3350)] = 130992, - [SMALL_STATE(3351)] = 131000, - [SMALL_STATE(3352)] = 131010, - [SMALL_STATE(3353)] = 131018, - [SMALL_STATE(3354)] = 131028, - [SMALL_STATE(3355)] = 131038, - [SMALL_STATE(3356)] = 131048, - [SMALL_STATE(3357)] = 131058, - [SMALL_STATE(3358)] = 131068, - [SMALL_STATE(3359)] = 131076, - [SMALL_STATE(3360)] = 131086, - [SMALL_STATE(3361)] = 131096, - [SMALL_STATE(3362)] = 131106, - [SMALL_STATE(3363)] = 131116, - [SMALL_STATE(3364)] = 131124, - [SMALL_STATE(3365)] = 131132, - [SMALL_STATE(3366)] = 131142, - [SMALL_STATE(3367)] = 131150, - [SMALL_STATE(3368)] = 131160, - [SMALL_STATE(3369)] = 131170, - [SMALL_STATE(3370)] = 131180, - [SMALL_STATE(3371)] = 131190, - [SMALL_STATE(3372)] = 131200, - [SMALL_STATE(3373)] = 131210, - [SMALL_STATE(3374)] = 131220, - [SMALL_STATE(3375)] = 131230, - [SMALL_STATE(3376)] = 131240, - [SMALL_STATE(3377)] = 131250, - [SMALL_STATE(3378)] = 131258, - [SMALL_STATE(3379)] = 131266, - [SMALL_STATE(3380)] = 131276, - [SMALL_STATE(3381)] = 131284, - [SMALL_STATE(3382)] = 131294, - [SMALL_STATE(3383)] = 131302, - [SMALL_STATE(3384)] = 131312, - [SMALL_STATE(3385)] = 131320, - [SMALL_STATE(3386)] = 131330, - [SMALL_STATE(3387)] = 131340, - [SMALL_STATE(3388)] = 131348, - [SMALL_STATE(3389)] = 131356, - [SMALL_STATE(3390)] = 131366, - [SMALL_STATE(3391)] = 131376, - [SMALL_STATE(3392)] = 131386, - [SMALL_STATE(3393)] = 131396, - [SMALL_STATE(3394)] = 131406, - [SMALL_STATE(3395)] = 131416, - [SMALL_STATE(3396)] = 131426, - [SMALL_STATE(3397)] = 131436, - [SMALL_STATE(3398)] = 131446, - [SMALL_STATE(3399)] = 131456, - [SMALL_STATE(3400)] = 131466, - [SMALL_STATE(3401)] = 131474, - [SMALL_STATE(3402)] = 131484, - [SMALL_STATE(3403)] = 131494, - [SMALL_STATE(3404)] = 131502, - [SMALL_STATE(3405)] = 131512, - [SMALL_STATE(3406)] = 131520, - [SMALL_STATE(3407)] = 131530, - [SMALL_STATE(3408)] = 131540, - [SMALL_STATE(3409)] = 131548, - [SMALL_STATE(3410)] = 131558, - [SMALL_STATE(3411)] = 131568, - [SMALL_STATE(3412)] = 131578, - [SMALL_STATE(3413)] = 131586, - [SMALL_STATE(3414)] = 131596, - [SMALL_STATE(3415)] = 131606, - [SMALL_STATE(3416)] = 131616, - [SMALL_STATE(3417)] = 131626, - [SMALL_STATE(3418)] = 131636, - [SMALL_STATE(3419)] = 131646, - [SMALL_STATE(3420)] = 131656, - [SMALL_STATE(3421)] = 131666, - [SMALL_STATE(3422)] = 131674, - [SMALL_STATE(3423)] = 131682, - [SMALL_STATE(3424)] = 131692, - [SMALL_STATE(3425)] = 131702, - [SMALL_STATE(3426)] = 131710, - [SMALL_STATE(3427)] = 131720, - [SMALL_STATE(3428)] = 131730, - [SMALL_STATE(3429)] = 131740, - [SMALL_STATE(3430)] = 131748, - [SMALL_STATE(3431)] = 131758, - [SMALL_STATE(3432)] = 131768, - [SMALL_STATE(3433)] = 131778, - [SMALL_STATE(3434)] = 131788, - [SMALL_STATE(3435)] = 131796, - [SMALL_STATE(3436)] = 131804, - [SMALL_STATE(3437)] = 131812, - [SMALL_STATE(3438)] = 131822, - [SMALL_STATE(3439)] = 131832, - [SMALL_STATE(3440)] = 131842, - [SMALL_STATE(3441)] = 131850, - [SMALL_STATE(3442)] = 131858, - [SMALL_STATE(3443)] = 131866, - [SMALL_STATE(3444)] = 131874, - [SMALL_STATE(3445)] = 131884, - [SMALL_STATE(3446)] = 131892, - [SMALL_STATE(3447)] = 131902, - [SMALL_STATE(3448)] = 131912, - [SMALL_STATE(3449)] = 131922, - [SMALL_STATE(3450)] = 131932, - [SMALL_STATE(3451)] = 131942, - [SMALL_STATE(3452)] = 131952, - [SMALL_STATE(3453)] = 131962, - [SMALL_STATE(3454)] = 131970, - [SMALL_STATE(3455)] = 131978, - [SMALL_STATE(3456)] = 131988, - [SMALL_STATE(3457)] = 131998, - [SMALL_STATE(3458)] = 132008, - [SMALL_STATE(3459)] = 132016, - [SMALL_STATE(3460)] = 132026, - [SMALL_STATE(3461)] = 132034, - [SMALL_STATE(3462)] = 132044, - [SMALL_STATE(3463)] = 132054, - [SMALL_STATE(3464)] = 132062, - [SMALL_STATE(3465)] = 132072, - [SMALL_STATE(3466)] = 132082, - [SMALL_STATE(3467)] = 132092, - [SMALL_STATE(3468)] = 132102, - [SMALL_STATE(3469)] = 132112, - [SMALL_STATE(3470)] = 132122, - [SMALL_STATE(3471)] = 132132, - [SMALL_STATE(3472)] = 132142, - [SMALL_STATE(3473)] = 132152, - [SMALL_STATE(3474)] = 132162, - [SMALL_STATE(3475)] = 132172, - [SMALL_STATE(3476)] = 132180, - [SMALL_STATE(3477)] = 132190, - [SMALL_STATE(3478)] = 132200, - [SMALL_STATE(3479)] = 132210, - [SMALL_STATE(3480)] = 132217, - [SMALL_STATE(3481)] = 132224, - [SMALL_STATE(3482)] = 132231, - [SMALL_STATE(3483)] = 132238, - [SMALL_STATE(3484)] = 132245, - [SMALL_STATE(3485)] = 132252, - [SMALL_STATE(3486)] = 132259, - [SMALL_STATE(3487)] = 132266, - [SMALL_STATE(3488)] = 132273, - [SMALL_STATE(3489)] = 132280, - [SMALL_STATE(3490)] = 132287, - [SMALL_STATE(3491)] = 132294, - [SMALL_STATE(3492)] = 132301, - [SMALL_STATE(3493)] = 132308, - [SMALL_STATE(3494)] = 132315, - [SMALL_STATE(3495)] = 132322, - [SMALL_STATE(3496)] = 132329, - [SMALL_STATE(3497)] = 132336, - [SMALL_STATE(3498)] = 132343, - [SMALL_STATE(3499)] = 132350, - [SMALL_STATE(3500)] = 132357, - [SMALL_STATE(3501)] = 132364, - [SMALL_STATE(3502)] = 132371, - [SMALL_STATE(3503)] = 132378, - [SMALL_STATE(3504)] = 132385, - [SMALL_STATE(3505)] = 132392, - [SMALL_STATE(3506)] = 132399, - [SMALL_STATE(3507)] = 132406, - [SMALL_STATE(3508)] = 132413, - [SMALL_STATE(3509)] = 132420, - [SMALL_STATE(3510)] = 132427, - [SMALL_STATE(3511)] = 132434, - [SMALL_STATE(3512)] = 132441, - [SMALL_STATE(3513)] = 132448, - [SMALL_STATE(3514)] = 132455, - [SMALL_STATE(3515)] = 132462, - [SMALL_STATE(3516)] = 132469, - [SMALL_STATE(3517)] = 132476, - [SMALL_STATE(3518)] = 132483, - [SMALL_STATE(3519)] = 132490, - [SMALL_STATE(3520)] = 132497, - [SMALL_STATE(3521)] = 132504, - [SMALL_STATE(3522)] = 132511, - [SMALL_STATE(3523)] = 132518, - [SMALL_STATE(3524)] = 132525, - [SMALL_STATE(3525)] = 132532, - [SMALL_STATE(3526)] = 132539, - [SMALL_STATE(3527)] = 132546, - [SMALL_STATE(3528)] = 132553, - [SMALL_STATE(3529)] = 132560, - [SMALL_STATE(3530)] = 132567, - [SMALL_STATE(3531)] = 132574, - [SMALL_STATE(3532)] = 132581, - [SMALL_STATE(3533)] = 132588, - [SMALL_STATE(3534)] = 132595, - [SMALL_STATE(3535)] = 132602, - [SMALL_STATE(3536)] = 132609, - [SMALL_STATE(3537)] = 132616, - [SMALL_STATE(3538)] = 132623, - [SMALL_STATE(3539)] = 132630, - [SMALL_STATE(3540)] = 132637, - [SMALL_STATE(3541)] = 132644, - [SMALL_STATE(3542)] = 132651, - [SMALL_STATE(3543)] = 132658, - [SMALL_STATE(3544)] = 132665, - [SMALL_STATE(3545)] = 132672, - [SMALL_STATE(3546)] = 132679, - [SMALL_STATE(3547)] = 132686, - [SMALL_STATE(3548)] = 132693, - [SMALL_STATE(3549)] = 132700, - [SMALL_STATE(3550)] = 132707, - [SMALL_STATE(3551)] = 132714, - [SMALL_STATE(3552)] = 132721, - [SMALL_STATE(3553)] = 132728, - [SMALL_STATE(3554)] = 132735, - [SMALL_STATE(3555)] = 132742, - [SMALL_STATE(3556)] = 132749, - [SMALL_STATE(3557)] = 132756, - [SMALL_STATE(3558)] = 132763, - [SMALL_STATE(3559)] = 132770, - [SMALL_STATE(3560)] = 132777, - [SMALL_STATE(3561)] = 132784, - [SMALL_STATE(3562)] = 132791, - [SMALL_STATE(3563)] = 132798, - [SMALL_STATE(3564)] = 132805, - [SMALL_STATE(3565)] = 132812, - [SMALL_STATE(3566)] = 132819, - [SMALL_STATE(3567)] = 132826, - [SMALL_STATE(3568)] = 132833, - [SMALL_STATE(3569)] = 132840, - [SMALL_STATE(3570)] = 132847, - [SMALL_STATE(3571)] = 132854, - [SMALL_STATE(3572)] = 132861, - [SMALL_STATE(3573)] = 132868, - [SMALL_STATE(3574)] = 132875, - [SMALL_STATE(3575)] = 132882, - [SMALL_STATE(3576)] = 132889, - [SMALL_STATE(3577)] = 132896, - [SMALL_STATE(3578)] = 132903, - [SMALL_STATE(3579)] = 132910, - [SMALL_STATE(3580)] = 132917, - [SMALL_STATE(3581)] = 132924, - [SMALL_STATE(3582)] = 132931, - [SMALL_STATE(3583)] = 132938, - [SMALL_STATE(3584)] = 132945, - [SMALL_STATE(3585)] = 132952, - [SMALL_STATE(3586)] = 132959, - [SMALL_STATE(3587)] = 132966, - [SMALL_STATE(3588)] = 132973, - [SMALL_STATE(3589)] = 132980, - [SMALL_STATE(3590)] = 132987, - [SMALL_STATE(3591)] = 132994, - [SMALL_STATE(3592)] = 133001, - [SMALL_STATE(3593)] = 133008, - [SMALL_STATE(3594)] = 133015, - [SMALL_STATE(3595)] = 133022, - [SMALL_STATE(3596)] = 133029, - [SMALL_STATE(3597)] = 133036, - [SMALL_STATE(3598)] = 133043, - [SMALL_STATE(3599)] = 133050, - [SMALL_STATE(3600)] = 133057, - [SMALL_STATE(3601)] = 133064, - [SMALL_STATE(3602)] = 133071, - [SMALL_STATE(3603)] = 133078, - [SMALL_STATE(3604)] = 133085, - [SMALL_STATE(3605)] = 133092, - [SMALL_STATE(3606)] = 133099, - [SMALL_STATE(3607)] = 133106, - [SMALL_STATE(3608)] = 133113, - [SMALL_STATE(3609)] = 133120, - [SMALL_STATE(3610)] = 133127, - [SMALL_STATE(3611)] = 133134, - [SMALL_STATE(3612)] = 133141, - [SMALL_STATE(3613)] = 133148, - [SMALL_STATE(3614)] = 133155, - [SMALL_STATE(3615)] = 133162, - [SMALL_STATE(3616)] = 133169, - [SMALL_STATE(3617)] = 133176, - [SMALL_STATE(3618)] = 133183, - [SMALL_STATE(3619)] = 133190, - [SMALL_STATE(3620)] = 133197, - [SMALL_STATE(3621)] = 133204, - [SMALL_STATE(3622)] = 133211, - [SMALL_STATE(3623)] = 133218, - [SMALL_STATE(3624)] = 133225, - [SMALL_STATE(3625)] = 133232, - [SMALL_STATE(3626)] = 133239, - [SMALL_STATE(3627)] = 133246, - [SMALL_STATE(3628)] = 133253, - [SMALL_STATE(3629)] = 133260, - [SMALL_STATE(3630)] = 133267, - [SMALL_STATE(3631)] = 133274, - [SMALL_STATE(3632)] = 133281, - [SMALL_STATE(3633)] = 133288, - [SMALL_STATE(3634)] = 133295, - [SMALL_STATE(3635)] = 133302, - [SMALL_STATE(3636)] = 133309, - [SMALL_STATE(3637)] = 133316, - [SMALL_STATE(3638)] = 133323, - [SMALL_STATE(3639)] = 133330, - [SMALL_STATE(3640)] = 133337, - [SMALL_STATE(3641)] = 133344, - [SMALL_STATE(3642)] = 133351, - [SMALL_STATE(3643)] = 133358, - [SMALL_STATE(3644)] = 133365, - [SMALL_STATE(3645)] = 133372, - [SMALL_STATE(3646)] = 133379, - [SMALL_STATE(3647)] = 133386, - [SMALL_STATE(3648)] = 133393, - [SMALL_STATE(3649)] = 133400, - [SMALL_STATE(3650)] = 133407, - [SMALL_STATE(3651)] = 133414, - [SMALL_STATE(3652)] = 133421, - [SMALL_STATE(3653)] = 133428, - [SMALL_STATE(3654)] = 133435, - [SMALL_STATE(3655)] = 133442, - [SMALL_STATE(3656)] = 133449, - [SMALL_STATE(3657)] = 133456, - [SMALL_STATE(3658)] = 133463, - [SMALL_STATE(3659)] = 133470, - [SMALL_STATE(3660)] = 133477, - [SMALL_STATE(3661)] = 133484, - [SMALL_STATE(3662)] = 133491, - [SMALL_STATE(3663)] = 133498, - [SMALL_STATE(3664)] = 133505, - [SMALL_STATE(3665)] = 133512, - [SMALL_STATE(3666)] = 133519, - [SMALL_STATE(3667)] = 133526, - [SMALL_STATE(3668)] = 133533, - [SMALL_STATE(3669)] = 133540, - [SMALL_STATE(3670)] = 133547, - [SMALL_STATE(3671)] = 133554, - [SMALL_STATE(3672)] = 133561, - [SMALL_STATE(3673)] = 133568, - [SMALL_STATE(3674)] = 133575, - [SMALL_STATE(3675)] = 133582, - [SMALL_STATE(3676)] = 133589, - [SMALL_STATE(3677)] = 133596, - [SMALL_STATE(3678)] = 133603, - [SMALL_STATE(3679)] = 133610, - [SMALL_STATE(3680)] = 133617, - [SMALL_STATE(3681)] = 133624, - [SMALL_STATE(3682)] = 133631, - [SMALL_STATE(3683)] = 133638, - [SMALL_STATE(3684)] = 133645, - [SMALL_STATE(3685)] = 133652, - [SMALL_STATE(3686)] = 133659, - [SMALL_STATE(3687)] = 133666, - [SMALL_STATE(3688)] = 133673, - [SMALL_STATE(3689)] = 133680, - [SMALL_STATE(3690)] = 133687, - [SMALL_STATE(3691)] = 133694, - [SMALL_STATE(3692)] = 133701, - [SMALL_STATE(3693)] = 133708, - [SMALL_STATE(3694)] = 133715, - [SMALL_STATE(3695)] = 133722, - [SMALL_STATE(3696)] = 133729, - [SMALL_STATE(3697)] = 133736, - [SMALL_STATE(3698)] = 133743, - [SMALL_STATE(3699)] = 133750, - [SMALL_STATE(3700)] = 133757, - [SMALL_STATE(3701)] = 133764, - [SMALL_STATE(3702)] = 133771, - [SMALL_STATE(3703)] = 133778, - [SMALL_STATE(3704)] = 133785, - [SMALL_STATE(3705)] = 133792, - [SMALL_STATE(3706)] = 133799, - [SMALL_STATE(3707)] = 133806, - [SMALL_STATE(3708)] = 133813, - [SMALL_STATE(3709)] = 133820, - [SMALL_STATE(3710)] = 133827, - [SMALL_STATE(3711)] = 133834, - [SMALL_STATE(3712)] = 133841, - [SMALL_STATE(3713)] = 133848, - [SMALL_STATE(3714)] = 133855, - [SMALL_STATE(3715)] = 133862, - [SMALL_STATE(3716)] = 133869, - [SMALL_STATE(3717)] = 133876, - [SMALL_STATE(3718)] = 133883, - [SMALL_STATE(3719)] = 133890, - [SMALL_STATE(3720)] = 133897, - [SMALL_STATE(3721)] = 133904, - [SMALL_STATE(3722)] = 133911, - [SMALL_STATE(3723)] = 133918, - [SMALL_STATE(3724)] = 133925, - [SMALL_STATE(3725)] = 133932, - [SMALL_STATE(3726)] = 133939, - [SMALL_STATE(3727)] = 133946, - [SMALL_STATE(3728)] = 133953, - [SMALL_STATE(3729)] = 133960, - [SMALL_STATE(3730)] = 133967, - [SMALL_STATE(3731)] = 133974, - [SMALL_STATE(3732)] = 133981, - [SMALL_STATE(3733)] = 133988, - [SMALL_STATE(3734)] = 133995, - [SMALL_STATE(3735)] = 134002, - [SMALL_STATE(3736)] = 134009, - [SMALL_STATE(3737)] = 134016, - [SMALL_STATE(3738)] = 134023, - [SMALL_STATE(3739)] = 134030, - [SMALL_STATE(3740)] = 134037, - [SMALL_STATE(3741)] = 134044, - [SMALL_STATE(3742)] = 134051, - [SMALL_STATE(3743)] = 134058, - [SMALL_STATE(3744)] = 134065, - [SMALL_STATE(3745)] = 134072, - [SMALL_STATE(3746)] = 134079, - [SMALL_STATE(3747)] = 134086, - [SMALL_STATE(3748)] = 134093, - [SMALL_STATE(3749)] = 134100, - [SMALL_STATE(3750)] = 134107, - [SMALL_STATE(3751)] = 134114, - [SMALL_STATE(3752)] = 134121, - [SMALL_STATE(3753)] = 134128, - [SMALL_STATE(3754)] = 134135, - [SMALL_STATE(3755)] = 134142, - [SMALL_STATE(3756)] = 134149, + [SMALL_STATE(788)] = 0, + [SMALL_STATE(789)] = 107, + [SMALL_STATE(790)] = 204, + [SMALL_STATE(791)] = 309, + [SMALL_STATE(792)] = 411, + [SMALL_STATE(793)] = 511, + [SMALL_STATE(794)] = 617, + [SMALL_STATE(795)] = 725, + [SMALL_STATE(796)] = 821, + [SMALL_STATE(797)] = 923, + [SMALL_STATE(798)] = 1031, + [SMALL_STATE(799)] = 1133, + [SMALL_STATE(800)] = 1232, + [SMALL_STATE(801)] = 1335, + [SMALL_STATE(802)] = 1434, + [SMALL_STATE(803)] = 1537, + [SMALL_STATE(804)] = 1640, + [SMALL_STATE(805)] = 1735, + [SMALL_STATE(806)] = 1832, + [SMALL_STATE(807)] = 1913, + [SMALL_STATE(808)] = 1998, + [SMALL_STATE(809)] = 2101, + [SMALL_STATE(810)] = 2204, + [SMALL_STATE(811)] = 2307, + [SMALL_STATE(812)] = 2410, + [SMALL_STATE(813)] = 2513, + [SMALL_STATE(814)] = 2612, + [SMALL_STATE(815)] = 2711, + [SMALL_STATE(816)] = 2814, + [SMALL_STATE(817)] = 2917, + [SMALL_STATE(818)] = 3016, + [SMALL_STATE(819)] = 3115, + [SMALL_STATE(820)] = 3207, + [SMALL_STATE(821)] = 3305, + [SMALL_STATE(822)] = 3381, + [SMALL_STATE(823)] = 3475, + [SMALL_STATE(824)] = 3559, + [SMALL_STATE(825)] = 3661, + [SMALL_STATE(826)] = 3787, + [SMALL_STATE(827)] = 3887, + [SMALL_STATE(828)] = 3987, + [SMALL_STATE(829)] = 4067, + [SMALL_STATE(830)] = 4171, + [SMALL_STATE(831)] = 4273, + [SMALL_STATE(832)] = 4367, + [SMALL_STATE(833)] = 4461, + [SMALL_STATE(834)] = 4560, + [SMALL_STATE(835)] = 4627, + [SMALL_STATE(836)] = 4718, + [SMALL_STATE(837)] = 4785, + [SMALL_STATE(838)] = 4852, + [SMALL_STATE(839)] = 4919, + [SMALL_STATE(840)] = 5010, + [SMALL_STATE(841)] = 5077, + [SMALL_STATE(842)] = 5166, + [SMALL_STATE(843)] = 5257, + [SMALL_STATE(844)] = 5346, + [SMALL_STATE(845)] = 5413, + [SMALL_STATE(846)] = 5504, + [SMALL_STATE(847)] = 5597, + [SMALL_STATE(848)] = 5686, + [SMALL_STATE(849)] = 5775, + [SMALL_STATE(850)] = 5868, + [SMALL_STATE(851)] = 5935, + [SMALL_STATE(852)] = 6028, + [SMALL_STATE(853)] = 6121, + [SMALL_STATE(854)] = 6188, + [SMALL_STATE(855)] = 6277, + [SMALL_STATE(856)] = 6366, + [SMALL_STATE(857)] = 6467, + [SMALL_STATE(858)] = 6560, + [SMALL_STATE(859)] = 6653, + [SMALL_STATE(860)] = 6746, + [SMALL_STATE(861)] = 6813, + [SMALL_STATE(862)] = 6904, + [SMALL_STATE(863)] = 6995, + [SMALL_STATE(864)] = 7090, + [SMALL_STATE(865)] = 7165, + [SMALL_STATE(866)] = 7240, + [SMALL_STATE(867)] = 7329, + [SMALL_STATE(868)] = 7422, + [SMALL_STATE(869)] = 7515, + [SMALL_STATE(870)] = 7604, + [SMALL_STATE(871)] = 7695, + [SMALL_STATE(872)] = 7821, + [SMALL_STATE(873)] = 7913, + [SMALL_STATE(874)] = 8039, + [SMALL_STATE(875)] = 8165, + [SMALL_STATE(876)] = 8291, + [SMALL_STATE(877)] = 8417, + [SMALL_STATE(878)] = 8505, + [SMALL_STATE(879)] = 8631, + [SMALL_STATE(880)] = 8757, + [SMALL_STATE(881)] = 8883, + [SMALL_STATE(882)] = 9009, + [SMALL_STATE(883)] = 9097, + [SMALL_STATE(884)] = 9185, + [SMALL_STATE(885)] = 9271, + [SMALL_STATE(886)] = 9359, + [SMALL_STATE(887)] = 9447, + [SMALL_STATE(888)] = 9573, + [SMALL_STATE(889)] = 9661, + [SMALL_STATE(890)] = 9787, + [SMALL_STATE(891)] = 9913, + [SMALL_STATE(892)] = 9999, + [SMALL_STATE(893)] = 10125, + [SMALL_STATE(894)] = 10251, + [SMALL_STATE(895)] = 10377, + [SMALL_STATE(896)] = 10503, + [SMALL_STATE(897)] = 10591, + [SMALL_STATE(898)] = 10679, + [SMALL_STATE(899)] = 10805, + [SMALL_STATE(900)] = 10897, + [SMALL_STATE(901)] = 10985, + [SMALL_STATE(902)] = 11075, + [SMALL_STATE(903)] = 11201, + [SMALL_STATE(904)] = 11327, + [SMALL_STATE(905)] = 11413, + [SMALL_STATE(906)] = 11487, + [SMALL_STATE(907)] = 11577, + [SMALL_STATE(908)] = 11703, + [SMALL_STATE(909)] = 11789, + [SMALL_STATE(910)] = 11883, + [SMALL_STATE(911)] = 12009, + [SMALL_STATE(912)] = 12135, + [SMALL_STATE(913)] = 12229, + [SMALL_STATE(914)] = 12321, + [SMALL_STATE(915)] = 12411, + [SMALL_STATE(916)] = 12537, + [SMALL_STATE(917)] = 12625, + [SMALL_STATE(918)] = 12713, + [SMALL_STATE(919)] = 12807, + [SMALL_STATE(920)] = 12933, + [SMALL_STATE(921)] = 13027, + [SMALL_STATE(922)] = 13153, + [SMALL_STATE(923)] = 13279, + [SMALL_STATE(924)] = 13371, + [SMALL_STATE(925)] = 13463, + [SMALL_STATE(926)] = 13589, + [SMALL_STATE(927)] = 13715, + [SMALL_STATE(928)] = 13803, + [SMALL_STATE(929)] = 13934, + [SMALL_STATE(930)] = 14057, + [SMALL_STATE(931)] = 14180, + [SMALL_STATE(932)] = 14303, + [SMALL_STATE(933)] = 14392, + [SMALL_STATE(934)] = 14515, + [SMALL_STATE(935)] = 14638, + [SMALL_STATE(936)] = 14761, + [SMALL_STATE(937)] = 14884, + [SMALL_STATE(938)] = 15007, + [SMALL_STATE(939)] = 15092, + [SMALL_STATE(940)] = 15215, + [SMALL_STATE(941)] = 15338, + [SMALL_STATE(942)] = 15461, + [SMALL_STATE(943)] = 15584, + [SMALL_STATE(944)] = 15707, + [SMALL_STATE(945)] = 15838, + [SMALL_STATE(946)] = 15961, + [SMALL_STATE(947)] = 16046, + [SMALL_STATE(948)] = 16133, + [SMALL_STATE(949)] = 16256, + [SMALL_STATE(950)] = 16379, + [SMALL_STATE(951)] = 16502, + [SMALL_STATE(952)] = 16625, + [SMALL_STATE(953)] = 16748, + [SMALL_STATE(954)] = 16879, + [SMALL_STATE(955)] = 17002, + [SMALL_STATE(956)] = 17125, + [SMALL_STATE(957)] = 17210, + [SMALL_STATE(958)] = 17301, + [SMALL_STATE(959)] = 17390, + [SMALL_STATE(960)] = 17513, + [SMALL_STATE(961)] = 17636, + [SMALL_STATE(962)] = 17709, + [SMALL_STATE(963)] = 17832, + [SMALL_STATE(964)] = 17955, + [SMALL_STATE(965)] = 18078, + [SMALL_STATE(966)] = 18151, + [SMALL_STATE(967)] = 18282, + [SMALL_STATE(968)] = 18367, + [SMALL_STATE(969)] = 18490, + [SMALL_STATE(970)] = 18621, + [SMALL_STATE(971)] = 18706, + [SMALL_STATE(972)] = 18791, + [SMALL_STATE(973)] = 18914, + [SMALL_STATE(974)] = 19037, + [SMALL_STATE(975)] = 19168, + [SMALL_STATE(976)] = 19291, + [SMALL_STATE(977)] = 19414, + [SMALL_STATE(978)] = 19537, + [SMALL_STATE(979)] = 19660, + [SMALL_STATE(980)] = 19783, + [SMALL_STATE(981)] = 19903, + [SMALL_STATE(982)] = 20023, + [SMALL_STATE(983)] = 20143, + [SMALL_STATE(984)] = 20263, + [SMALL_STATE(985)] = 20383, + [SMALL_STATE(986)] = 20503, + [SMALL_STATE(987)] = 20623, + [SMALL_STATE(988)] = 20743, + [SMALL_STATE(989)] = 20863, + [SMALL_STATE(990)] = 20983, + [SMALL_STATE(991)] = 21103, + [SMALL_STATE(992)] = 21223, + [SMALL_STATE(993)] = 21343, + [SMALL_STATE(994)] = 21463, + [SMALL_STATE(995)] = 21583, + [SMALL_STATE(996)] = 21703, + [SMALL_STATE(997)] = 21823, + [SMALL_STATE(998)] = 21943, + [SMALL_STATE(999)] = 22063, + [SMALL_STATE(1000)] = 22183, + [SMALL_STATE(1001)] = 22303, + [SMALL_STATE(1002)] = 22423, + [SMALL_STATE(1003)] = 22507, + [SMALL_STATE(1004)] = 22627, + [SMALL_STATE(1005)] = 22747, + [SMALL_STATE(1006)] = 22867, + [SMALL_STATE(1007)] = 22987, + [SMALL_STATE(1008)] = 23107, + [SMALL_STATE(1009)] = 23227, + [SMALL_STATE(1010)] = 23347, + [SMALL_STATE(1011)] = 23467, + [SMALL_STATE(1012)] = 23587, + [SMALL_STATE(1013)] = 23707, + [SMALL_STATE(1014)] = 23827, + [SMALL_STATE(1015)] = 23947, + [SMALL_STATE(1016)] = 24067, + [SMALL_STATE(1017)] = 24187, + [SMALL_STATE(1018)] = 24307, + [SMALL_STATE(1019)] = 24397, + [SMALL_STATE(1020)] = 24517, + [SMALL_STATE(1021)] = 24637, + [SMALL_STATE(1022)] = 24757, + [SMALL_STATE(1023)] = 24877, + [SMALL_STATE(1024)] = 24997, + [SMALL_STATE(1025)] = 25117, + [SMALL_STATE(1026)] = 25237, + [SMALL_STATE(1027)] = 25357, + [SMALL_STATE(1028)] = 25477, + [SMALL_STATE(1029)] = 25597, + [SMALL_STATE(1030)] = 25717, + [SMALL_STATE(1031)] = 25837, + [SMALL_STATE(1032)] = 25957, + [SMALL_STATE(1033)] = 26077, + [SMALL_STATE(1034)] = 26197, + [SMALL_STATE(1035)] = 26317, + [SMALL_STATE(1036)] = 26437, + [SMALL_STATE(1037)] = 26557, + [SMALL_STATE(1038)] = 26677, + [SMALL_STATE(1039)] = 26797, + [SMALL_STATE(1040)] = 26917, + [SMALL_STATE(1041)] = 27037, + [SMALL_STATE(1042)] = 27157, + [SMALL_STATE(1043)] = 27277, + [SMALL_STATE(1044)] = 27397, + [SMALL_STATE(1045)] = 27517, + [SMALL_STATE(1046)] = 27637, + [SMALL_STATE(1047)] = 27757, + [SMALL_STATE(1048)] = 27877, + [SMALL_STATE(1049)] = 27997, + [SMALL_STATE(1050)] = 28117, + [SMALL_STATE(1051)] = 28237, + [SMALL_STATE(1052)] = 28357, + [SMALL_STATE(1053)] = 28477, + [SMALL_STATE(1054)] = 28597, + [SMALL_STATE(1055)] = 28717, + [SMALL_STATE(1056)] = 28837, + [SMALL_STATE(1057)] = 28901, + [SMALL_STATE(1058)] = 29021, + [SMALL_STATE(1059)] = 29141, + [SMALL_STATE(1060)] = 29261, + [SMALL_STATE(1061)] = 29381, + [SMALL_STATE(1062)] = 29501, + [SMALL_STATE(1063)] = 29621, + [SMALL_STATE(1064)] = 29741, + [SMALL_STATE(1065)] = 29861, + [SMALL_STATE(1066)] = 29981, + [SMALL_STATE(1067)] = 30101, + [SMALL_STATE(1068)] = 30221, + [SMALL_STATE(1069)] = 30341, + [SMALL_STATE(1070)] = 30461, + [SMALL_STATE(1071)] = 30581, + [SMALL_STATE(1072)] = 30701, + [SMALL_STATE(1073)] = 30821, + [SMALL_STATE(1074)] = 30941, + [SMALL_STATE(1075)] = 31061, + [SMALL_STATE(1076)] = 31181, + [SMALL_STATE(1077)] = 31301, + [SMALL_STATE(1078)] = 31421, + [SMALL_STATE(1079)] = 31541, + [SMALL_STATE(1080)] = 31661, + [SMALL_STATE(1081)] = 31781, + [SMALL_STATE(1082)] = 31901, + [SMALL_STATE(1083)] = 32021, + [SMALL_STATE(1084)] = 32141, + [SMALL_STATE(1085)] = 32261, + [SMALL_STATE(1086)] = 32381, + [SMALL_STATE(1087)] = 32501, + [SMALL_STATE(1088)] = 32621, + [SMALL_STATE(1089)] = 32741, + [SMALL_STATE(1090)] = 32861, + [SMALL_STATE(1091)] = 32981, + [SMALL_STATE(1092)] = 33101, + [SMALL_STATE(1093)] = 33221, + [SMALL_STATE(1094)] = 33341, + [SMALL_STATE(1095)] = 33461, + [SMALL_STATE(1096)] = 33581, + [SMALL_STATE(1097)] = 33701, + [SMALL_STATE(1098)] = 33821, + [SMALL_STATE(1099)] = 33941, + [SMALL_STATE(1100)] = 34061, + [SMALL_STATE(1101)] = 34181, + [SMALL_STATE(1102)] = 34301, + [SMALL_STATE(1103)] = 34421, + [SMALL_STATE(1104)] = 34541, + [SMALL_STATE(1105)] = 34661, + [SMALL_STATE(1106)] = 34781, + [SMALL_STATE(1107)] = 34901, + [SMALL_STATE(1108)] = 35021, + [SMALL_STATE(1109)] = 35141, + [SMALL_STATE(1110)] = 35261, + [SMALL_STATE(1111)] = 35381, + [SMALL_STATE(1112)] = 35501, + [SMALL_STATE(1113)] = 35621, + [SMALL_STATE(1114)] = 35741, + [SMALL_STATE(1115)] = 35861, + [SMALL_STATE(1116)] = 35981, + [SMALL_STATE(1117)] = 36101, + [SMALL_STATE(1118)] = 36221, + [SMALL_STATE(1119)] = 36341, + [SMALL_STATE(1120)] = 36461, + [SMALL_STATE(1121)] = 36581, + [SMALL_STATE(1122)] = 36701, + [SMALL_STATE(1123)] = 36821, + [SMALL_STATE(1124)] = 36941, + [SMALL_STATE(1125)] = 37061, + [SMALL_STATE(1126)] = 37181, + [SMALL_STATE(1127)] = 37301, + [SMALL_STATE(1128)] = 37421, + [SMALL_STATE(1129)] = 37541, + [SMALL_STATE(1130)] = 37661, + [SMALL_STATE(1131)] = 37781, + [SMALL_STATE(1132)] = 37901, + [SMALL_STATE(1133)] = 38021, + [SMALL_STATE(1134)] = 38141, + [SMALL_STATE(1135)] = 38261, + [SMALL_STATE(1136)] = 38381, + [SMALL_STATE(1137)] = 38501, + [SMALL_STATE(1138)] = 38621, + [SMALL_STATE(1139)] = 38685, + [SMALL_STATE(1140)] = 38805, + [SMALL_STATE(1141)] = 38925, + [SMALL_STATE(1142)] = 38989, + [SMALL_STATE(1143)] = 39109, + [SMALL_STATE(1144)] = 39229, + [SMALL_STATE(1145)] = 39349, + [SMALL_STATE(1146)] = 39469, + [SMALL_STATE(1147)] = 39589, + [SMALL_STATE(1148)] = 39709, + [SMALL_STATE(1149)] = 39773, + [SMALL_STATE(1150)] = 39893, + [SMALL_STATE(1151)] = 40013, + [SMALL_STATE(1152)] = 40133, + [SMALL_STATE(1153)] = 40253, + [SMALL_STATE(1154)] = 40373, + [SMALL_STATE(1155)] = 40493, + [SMALL_STATE(1156)] = 40583, + [SMALL_STATE(1157)] = 40703, + [SMALL_STATE(1158)] = 40823, + [SMALL_STATE(1159)] = 40943, + [SMALL_STATE(1160)] = 41063, + [SMALL_STATE(1161)] = 41183, + [SMALL_STATE(1162)] = 41303, + [SMALL_STATE(1163)] = 41423, + [SMALL_STATE(1164)] = 41543, + [SMALL_STATE(1165)] = 41663, + [SMALL_STATE(1166)] = 41783, + [SMALL_STATE(1167)] = 41903, + [SMALL_STATE(1168)] = 42023, + [SMALL_STATE(1169)] = 42143, + [SMALL_STATE(1170)] = 42263, + [SMALL_STATE(1171)] = 42383, + [SMALL_STATE(1172)] = 42503, + [SMALL_STATE(1173)] = 42623, + [SMALL_STATE(1174)] = 42743, + [SMALL_STATE(1175)] = 42863, + [SMALL_STATE(1176)] = 42983, + [SMALL_STATE(1177)] = 43103, + [SMALL_STATE(1178)] = 43223, + [SMALL_STATE(1179)] = 43343, + [SMALL_STATE(1180)] = 43463, + [SMALL_STATE(1181)] = 43583, + [SMALL_STATE(1182)] = 43703, + [SMALL_STATE(1183)] = 43823, + [SMALL_STATE(1184)] = 43943, + [SMALL_STATE(1185)] = 44063, + [SMALL_STATE(1186)] = 44183, + [SMALL_STATE(1187)] = 44303, + [SMALL_STATE(1188)] = 44423, + [SMALL_STATE(1189)] = 44543, + [SMALL_STATE(1190)] = 44663, + [SMALL_STATE(1191)] = 44783, + [SMALL_STATE(1192)] = 44903, + [SMALL_STATE(1193)] = 45023, + [SMALL_STATE(1194)] = 45143, + [SMALL_STATE(1195)] = 45263, + [SMALL_STATE(1196)] = 45383, + [SMALL_STATE(1197)] = 45447, + [SMALL_STATE(1198)] = 45567, + [SMALL_STATE(1199)] = 45687, + [SMALL_STATE(1200)] = 45807, + [SMALL_STATE(1201)] = 45927, + [SMALL_STATE(1202)] = 46047, + [SMALL_STATE(1203)] = 46167, + [SMALL_STATE(1204)] = 46287, + [SMALL_STATE(1205)] = 46351, + [SMALL_STATE(1206)] = 46471, + [SMALL_STATE(1207)] = 46591, + [SMALL_STATE(1208)] = 46711, + [SMALL_STATE(1209)] = 46831, + [SMALL_STATE(1210)] = 46951, + [SMALL_STATE(1211)] = 47071, + [SMALL_STATE(1212)] = 47191, + [SMALL_STATE(1213)] = 47311, + [SMALL_STATE(1214)] = 47431, + [SMALL_STATE(1215)] = 47551, + [SMALL_STATE(1216)] = 47671, + [SMALL_STATE(1217)] = 47791, + [SMALL_STATE(1218)] = 47911, + [SMALL_STATE(1219)] = 47975, + [SMALL_STATE(1220)] = 48095, + [SMALL_STATE(1221)] = 48215, + [SMALL_STATE(1222)] = 48335, + [SMALL_STATE(1223)] = 48455, + [SMALL_STATE(1224)] = 48575, + [SMALL_STATE(1225)] = 48639, + [SMALL_STATE(1226)] = 48759, + [SMALL_STATE(1227)] = 48879, + [SMALL_STATE(1228)] = 48999, + [SMALL_STATE(1229)] = 49119, + [SMALL_STATE(1230)] = 49239, + [SMALL_STATE(1231)] = 49359, + [SMALL_STATE(1232)] = 49479, + [SMALL_STATE(1233)] = 49599, + [SMALL_STATE(1234)] = 49719, + [SMALL_STATE(1235)] = 49839, + [SMALL_STATE(1236)] = 49959, + [SMALL_STATE(1237)] = 50079, + [SMALL_STATE(1238)] = 50199, + [SMALL_STATE(1239)] = 50319, + [SMALL_STATE(1240)] = 50439, + [SMALL_STATE(1241)] = 50559, + [SMALL_STATE(1242)] = 50679, + [SMALL_STATE(1243)] = 50799, + [SMALL_STATE(1244)] = 50919, + [SMALL_STATE(1245)] = 50991, + [SMALL_STATE(1246)] = 51111, + [SMALL_STATE(1247)] = 51231, + [SMALL_STATE(1248)] = 51351, + [SMALL_STATE(1249)] = 51471, + [SMALL_STATE(1250)] = 51591, + [SMALL_STATE(1251)] = 51711, + [SMALL_STATE(1252)] = 51831, + [SMALL_STATE(1253)] = 51951, + [SMALL_STATE(1254)] = 52071, + [SMALL_STATE(1255)] = 52191, + [SMALL_STATE(1256)] = 52311, + [SMALL_STATE(1257)] = 52431, + [SMALL_STATE(1258)] = 52551, + [SMALL_STATE(1259)] = 52671, + [SMALL_STATE(1260)] = 52791, + [SMALL_STATE(1261)] = 52911, + [SMALL_STATE(1262)] = 53031, + [SMALL_STATE(1263)] = 53151, + [SMALL_STATE(1264)] = 53271, + [SMALL_STATE(1265)] = 53391, + [SMALL_STATE(1266)] = 53511, + [SMALL_STATE(1267)] = 53631, + [SMALL_STATE(1268)] = 53751, + [SMALL_STATE(1269)] = 53871, + [SMALL_STATE(1270)] = 53961, + [SMALL_STATE(1271)] = 54081, + [SMALL_STATE(1272)] = 54201, + [SMALL_STATE(1273)] = 54321, + [SMALL_STATE(1274)] = 54441, + [SMALL_STATE(1275)] = 54505, + [SMALL_STATE(1276)] = 54625, + [SMALL_STATE(1277)] = 54745, + [SMALL_STATE(1278)] = 54865, + [SMALL_STATE(1279)] = 54985, + [SMALL_STATE(1280)] = 55105, + [SMALL_STATE(1281)] = 55225, + [SMALL_STATE(1282)] = 55297, + [SMALL_STATE(1283)] = 55417, + [SMALL_STATE(1284)] = 55537, + [SMALL_STATE(1285)] = 55657, + [SMALL_STATE(1286)] = 55777, + [SMALL_STATE(1287)] = 55897, + [SMALL_STATE(1288)] = 56017, + [SMALL_STATE(1289)] = 56137, + [SMALL_STATE(1290)] = 56257, + [SMALL_STATE(1291)] = 56377, + [SMALL_STATE(1292)] = 56497, + [SMALL_STATE(1293)] = 56617, + [SMALL_STATE(1294)] = 56737, + [SMALL_STATE(1295)] = 56857, + [SMALL_STATE(1296)] = 56929, + [SMALL_STATE(1297)] = 57049, + [SMALL_STATE(1298)] = 57169, + [SMALL_STATE(1299)] = 57259, + [SMALL_STATE(1300)] = 57379, + [SMALL_STATE(1301)] = 57499, + [SMALL_STATE(1302)] = 57619, + [SMALL_STATE(1303)] = 57739, + [SMALL_STATE(1304)] = 57859, + [SMALL_STATE(1305)] = 57979, + [SMALL_STATE(1306)] = 58099, + [SMALL_STATE(1307)] = 58166, + [SMALL_STATE(1308)] = 58251, + [SMALL_STATE(1309)] = 58336, + [SMALL_STATE(1310)] = 58409, + [SMALL_STATE(1311)] = 58496, + [SMALL_STATE(1312)] = 58581, + [SMALL_STATE(1313)] = 58666, + [SMALL_STATE(1314)] = 58733, + [SMALL_STATE(1315)] = 58818, + [SMALL_STATE(1316)] = 58903, + [SMALL_STATE(1317)] = 58974, + [SMALL_STATE(1318)] = 59059, + [SMALL_STATE(1319)] = 59144, + [SMALL_STATE(1320)] = 59229, + [SMALL_STATE(1321)] = 59314, + [SMALL_STATE(1322)] = 59399, + [SMALL_STATE(1323)] = 59484, + [SMALL_STATE(1324)] = 59555, + [SMALL_STATE(1325)] = 59626, + [SMALL_STATE(1326)] = 59711, + [SMALL_STATE(1327)] = 59796, + [SMALL_STATE(1328)] = 59881, + [SMALL_STATE(1329)] = 59966, + [SMALL_STATE(1330)] = 60053, + [SMALL_STATE(1331)] = 60126, + [SMALL_STATE(1332)] = 60246, + [SMALL_STATE(1333)] = 60328, + [SMALL_STATE(1334)] = 60398, + [SMALL_STATE(1335)] = 60460, + [SMALL_STATE(1336)] = 60530, + [SMALL_STATE(1337)] = 60592, + [SMALL_STATE(1338)] = 60674, + [SMALL_STATE(1339)] = 60736, + [SMALL_STATE(1340)] = 60802, + [SMALL_STATE(1341)] = 60884, + [SMALL_STATE(1342)] = 60966, + [SMALL_STATE(1343)] = 61048, + [SMALL_STATE(1344)] = 61110, + [SMALL_STATE(1345)] = 61178, + [SMALL_STATE(1346)] = 61240, + [SMALL_STATE(1347)] = 61322, + [SMALL_STATE(1348)] = 61384, + [SMALL_STATE(1349)] = 61504, + [SMALL_STATE(1350)] = 61574, + [SMALL_STATE(1351)] = 61656, + [SMALL_STATE(1352)] = 61718, + [SMALL_STATE(1353)] = 61780, + [SMALL_STATE(1354)] = 61850, + [SMALL_STATE(1355)] = 61916, + [SMALL_STATE(1356)] = 61986, + [SMALL_STATE(1357)] = 62048, + [SMALL_STATE(1358)] = 62110, + [SMALL_STATE(1359)] = 62180, + [SMALL_STATE(1360)] = 62242, + [SMALL_STATE(1361)] = 62324, + [SMALL_STATE(1362)] = 62390, + [SMALL_STATE(1363)] = 62458, + [SMALL_STATE(1364)] = 62528, + [SMALL_STATE(1365)] = 62610, + [SMALL_STATE(1366)] = 62680, + [SMALL_STATE(1367)] = 62744, + [SMALL_STATE(1368)] = 62826, + [SMALL_STATE(1369)] = 62891, + [SMALL_STATE(1370)] = 62960, + [SMALL_STATE(1371)] = 63029, + [SMALL_STATE(1372)] = 63098, + [SMALL_STATE(1373)] = 63163, + [SMALL_STATE(1374)] = 63227, + [SMALL_STATE(1375)] = 63291, + [SMALL_STATE(1376)] = 63355, + [SMALL_STATE(1377)] = 63421, + [SMALL_STATE(1378)] = 63487, + [SMALL_STATE(1379)] = 63562, + [SMALL_STATE(1380)] = 63636, + [SMALL_STATE(1381)] = 63742, + [SMALL_STATE(1382)] = 63848, + [SMALL_STATE(1383)] = 63958, + [SMALL_STATE(1384)] = 64064, + [SMALL_STATE(1385)] = 64170, + [SMALL_STATE(1386)] = 64280, + [SMALL_STATE(1387)] = 64386, + [SMALL_STATE(1388)] = 64492, + [SMALL_STATE(1389)] = 64598, + [SMALL_STATE(1390)] = 64653, + [SMALL_STATE(1391)] = 64762, + [SMALL_STATE(1392)] = 64817, + [SMALL_STATE(1393)] = 64872, + [SMALL_STATE(1394)] = 64927, + [SMALL_STATE(1395)] = 64982, + [SMALL_STATE(1396)] = 65037, + [SMALL_STATE(1397)] = 65092, + [SMALL_STATE(1398)] = 65147, + [SMALL_STATE(1399)] = 65202, + [SMALL_STATE(1400)] = 65257, + [SMALL_STATE(1401)] = 65364, + [SMALL_STATE(1402)] = 65419, + [SMALL_STATE(1403)] = 65474, + [SMALL_STATE(1404)] = 65531, + [SMALL_STATE(1405)] = 65586, + [SMALL_STATE(1406)] = 65688, + [SMALL_STATE(1407)] = 65750, + [SMALL_STATE(1408)] = 65852, + [SMALL_STATE(1409)] = 65954, + [SMALL_STATE(1410)] = 66056, + [SMALL_STATE(1411)] = 66158, + [SMALL_STATE(1412)] = 66242, + [SMALL_STATE(1413)] = 66344, + [SMALL_STATE(1414)] = 66428, + [SMALL_STATE(1415)] = 66530, + [SMALL_STATE(1416)] = 66632, + [SMALL_STATE(1417)] = 66734, + [SMALL_STATE(1418)] = 66836, + [SMALL_STATE(1419)] = 66938, + [SMALL_STATE(1420)] = 67040, + [SMALL_STATE(1421)] = 67142, + [SMALL_STATE(1422)] = 67244, + [SMALL_STATE(1423)] = 67346, + [SMALL_STATE(1424)] = 67448, + [SMALL_STATE(1425)] = 67520, + [SMALL_STATE(1426)] = 67622, + [SMALL_STATE(1427)] = 67724, + [SMALL_STATE(1428)] = 67826, + [SMALL_STATE(1429)] = 67928, + [SMALL_STATE(1430)] = 68030, + [SMALL_STATE(1431)] = 68088, + [SMALL_STATE(1432)] = 68143, + [SMALL_STATE(1433)] = 68212, + [SMALL_STATE(1434)] = 68265, + [SMALL_STATE(1435)] = 68334, + [SMALL_STATE(1436)] = 68387, + [SMALL_STATE(1437)] = 68439, + [SMALL_STATE(1438)] = 68491, + [SMALL_STATE(1439)] = 68589, + [SMALL_STATE(1440)] = 68663, + [SMALL_STATE(1441)] = 68735, + [SMALL_STATE(1442)] = 68833, + [SMALL_STATE(1443)] = 68885, + [SMALL_STATE(1444)] = 68941, + [SMALL_STATE(1445)] = 69039, + [SMALL_STATE(1446)] = 69137, + [SMALL_STATE(1447)] = 69235, + [SMALL_STATE(1448)] = 69333, + [SMALL_STATE(1449)] = 69385, + [SMALL_STATE(1450)] = 69441, + [SMALL_STATE(1451)] = 69493, + [SMALL_STATE(1452)] = 69551, + [SMALL_STATE(1453)] = 69607, + [SMALL_STATE(1454)] = 69705, + [SMALL_STATE(1455)] = 69779, + [SMALL_STATE(1456)] = 69831, + [SMALL_STATE(1457)] = 69883, + [SMALL_STATE(1458)] = 69935, + [SMALL_STATE(1459)] = 70033, + [SMALL_STATE(1460)] = 70087, + [SMALL_STATE(1461)] = 70138, + [SMALL_STATE(1462)] = 70191, + [SMALL_STATE(1463)] = 70242, + [SMALL_STATE(1464)] = 70295, + [SMALL_STATE(1465)] = 70346, + [SMALL_STATE(1466)] = 70403, + [SMALL_STATE(1467)] = 70458, + [SMALL_STATE(1468)] = 70509, + [SMALL_STATE(1469)] = 70560, + [SMALL_STATE(1470)] = 70613, + [SMALL_STATE(1471)] = 70692, + [SMALL_STATE(1472)] = 70743, + [SMALL_STATE(1473)] = 70798, + [SMALL_STATE(1474)] = 70849, + [SMALL_STATE(1475)] = 70906, + [SMALL_STATE(1476)] = 70957, + [SMALL_STATE(1477)] = 71010, + [SMALL_STATE(1478)] = 71079, + [SMALL_STATE(1479)] = 71148, + [SMALL_STATE(1480)] = 71203, + [SMALL_STATE(1481)] = 71254, + [SMALL_STATE(1482)] = 71307, + [SMALL_STATE(1483)] = 71380, + [SMALL_STATE(1484)] = 71431, + [SMALL_STATE(1485)] = 71482, + [SMALL_STATE(1486)] = 71533, + [SMALL_STATE(1487)] = 71584, + [SMALL_STATE(1488)] = 71635, + [SMALL_STATE(1489)] = 71686, + [SMALL_STATE(1490)] = 71737, + [SMALL_STATE(1491)] = 71806, + [SMALL_STATE(1492)] = 71875, + [SMALL_STATE(1493)] = 71930, + [SMALL_STATE(1494)] = 71981, + [SMALL_STATE(1495)] = 72032, + [SMALL_STATE(1496)] = 72083, + [SMALL_STATE(1497)] = 72134, + [SMALL_STATE(1498)] = 72185, + [SMALL_STATE(1499)] = 72236, + [SMALL_STATE(1500)] = 72305, + [SMALL_STATE(1501)] = 72378, + [SMALL_STATE(1502)] = 72447, + [SMALL_STATE(1503)] = 72528, + [SMALL_STATE(1504)] = 72579, + [SMALL_STATE(1505)] = 72630, + [SMALL_STATE(1506)] = 72681, + [SMALL_STATE(1507)] = 72732, + [SMALL_STATE(1508)] = 72783, + [SMALL_STATE(1509)] = 72834, + [SMALL_STATE(1510)] = 72885, + [SMALL_STATE(1511)] = 72954, + [SMALL_STATE(1512)] = 73005, + [SMALL_STATE(1513)] = 73056, + [SMALL_STATE(1514)] = 73107, + [SMALL_STATE(1515)] = 73158, + [SMALL_STATE(1516)] = 73209, + [SMALL_STATE(1517)] = 73268, + [SMALL_STATE(1518)] = 73319, + [SMALL_STATE(1519)] = 73370, + [SMALL_STATE(1520)] = 73423, + [SMALL_STATE(1521)] = 73474, + [SMALL_STATE(1522)] = 73525, + [SMALL_STATE(1523)] = 73576, + [SMALL_STATE(1524)] = 73627, + [SMALL_STATE(1525)] = 73678, + [SMALL_STATE(1526)] = 73729, + [SMALL_STATE(1527)] = 73798, + [SMALL_STATE(1528)] = 73867, + [SMALL_STATE(1529)] = 73918, + [SMALL_STATE(1530)] = 73969, + [SMALL_STATE(1531)] = 74020, + [SMALL_STATE(1532)] = 74071, + [SMALL_STATE(1533)] = 74122, + [SMALL_STATE(1534)] = 74174, + [SMALL_STATE(1535)] = 74234, + [SMALL_STATE(1536)] = 74284, + [SMALL_STATE(1537)] = 74334, + [SMALL_STATE(1538)] = 74390, + [SMALL_STATE(1539)] = 74446, + [SMALL_STATE(1540)] = 74514, + [SMALL_STATE(1541)] = 74582, + [SMALL_STATE(1542)] = 74650, + [SMALL_STATE(1543)] = 74700, + [SMALL_STATE(1544)] = 74770, + [SMALL_STATE(1545)] = 74828, + [SMALL_STATE(1546)] = 74878, + [SMALL_STATE(1547)] = 74928, + [SMALL_STATE(1548)] = 74978, + [SMALL_STATE(1549)] = 75046, + [SMALL_STATE(1550)] = 75096, + [SMALL_STATE(1551)] = 75148, + [SMALL_STATE(1552)] = 75198, + [SMALL_STATE(1553)] = 75248, + [SMALL_STATE(1554)] = 75298, + [SMALL_STATE(1555)] = 75348, + [SMALL_STATE(1556)] = 75398, + [SMALL_STATE(1557)] = 75452, + [SMALL_STATE(1558)] = 75504, + [SMALL_STATE(1559)] = 75554, + [SMALL_STATE(1560)] = 75604, + [SMALL_STATE(1561)] = 75654, + [SMALL_STATE(1562)] = 75704, + [SMALL_STATE(1563)] = 75754, + [SMALL_STATE(1564)] = 75810, + [SMALL_STATE(1565)] = 75860, + [SMALL_STATE(1566)] = 75928, + [SMALL_STATE(1567)] = 75978, + [SMALL_STATE(1568)] = 76032, + [SMALL_STATE(1569)] = 76082, + [SMALL_STATE(1570)] = 76136, + [SMALL_STATE(1571)] = 76188, + [SMALL_STATE(1572)] = 76256, + [SMALL_STATE(1573)] = 76306, + [SMALL_STATE(1574)] = 76358, + [SMALL_STATE(1575)] = 76426, + [SMALL_STATE(1576)] = 76478, + [SMALL_STATE(1577)] = 76528, + [SMALL_STATE(1578)] = 76596, + [SMALL_STATE(1579)] = 76646, + [SMALL_STATE(1580)] = 76700, + [SMALL_STATE(1581)] = 76750, + [SMALL_STATE(1582)] = 76818, + [SMALL_STATE(1583)] = 76868, + [SMALL_STATE(1584)] = 76940, + [SMALL_STATE(1585)] = 77012, + [SMALL_STATE(1586)] = 77084, + [SMALL_STATE(1587)] = 77134, + [SMALL_STATE(1588)] = 77188, + [SMALL_STATE(1589)] = 77242, + [SMALL_STATE(1590)] = 77296, + [SMALL_STATE(1591)] = 77356, + [SMALL_STATE(1592)] = 77424, + [SMALL_STATE(1593)] = 77492, + [SMALL_STATE(1594)] = 77542, + [SMALL_STATE(1595)] = 77592, + [SMALL_STATE(1596)] = 77642, + [SMALL_STATE(1597)] = 77696, + [SMALL_STATE(1598)] = 77764, + [SMALL_STATE(1599)] = 77814, + [SMALL_STATE(1600)] = 77864, + [SMALL_STATE(1601)] = 77932, + [SMALL_STATE(1602)] = 77986, + [SMALL_STATE(1603)] = 78036, + [SMALL_STATE(1604)] = 78086, + [SMALL_STATE(1605)] = 78136, + [SMALL_STATE(1606)] = 78188, + [SMALL_STATE(1607)] = 78240, + [SMALL_STATE(1608)] = 78290, + [SMALL_STATE(1609)] = 78356, + [SMALL_STATE(1610)] = 78406, + [SMALL_STATE(1611)] = 78476, + [SMALL_STATE(1612)] = 78526, + [SMALL_STATE(1613)] = 78576, + [SMALL_STATE(1614)] = 78626, + [SMALL_STATE(1615)] = 78676, + [SMALL_STATE(1616)] = 78726, + [SMALL_STATE(1617)] = 78778, + [SMALL_STATE(1618)] = 78834, + [SMALL_STATE(1619)] = 78886, + [SMALL_STATE(1620)] = 78944, + [SMALL_STATE(1621)] = 78994, + [SMALL_STATE(1622)] = 79044, + [SMALL_STATE(1623)] = 79094, + [SMALL_STATE(1624)] = 79144, + [SMALL_STATE(1625)] = 79194, + [SMALL_STATE(1626)] = 79248, + [SMALL_STATE(1627)] = 79298, + [SMALL_STATE(1628)] = 79352, + [SMALL_STATE(1629)] = 79424, + [SMALL_STATE(1630)] = 79474, + [SMALL_STATE(1631)] = 79540, + [SMALL_STATE(1632)] = 79590, + [SMALL_STATE(1633)] = 79640, + [SMALL_STATE(1634)] = 79714, + [SMALL_STATE(1635)] = 79788, + [SMALL_STATE(1636)] = 79838, + [SMALL_STATE(1637)] = 79912, + [SMALL_STATE(1638)] = 79980, + [SMALL_STATE(1639)] = 80040, + [SMALL_STATE(1640)] = 80090, + [SMALL_STATE(1641)] = 80158, + [SMALL_STATE(1642)] = 80214, + [SMALL_STATE(1643)] = 80285, + [SMALL_STATE(1644)] = 80336, + [SMALL_STATE(1645)] = 80385, + [SMALL_STATE(1646)] = 80434, + [SMALL_STATE(1647)] = 80487, + [SMALL_STATE(1648)] = 80538, + [SMALL_STATE(1649)] = 80587, + [SMALL_STATE(1650)] = 80652, + [SMALL_STATE(1651)] = 80703, + [SMALL_STATE(1652)] = 80774, + [SMALL_STATE(1653)] = 80827, + [SMALL_STATE(1654)] = 80892, + [SMALL_STATE(1655)] = 80945, + [SMALL_STATE(1656)] = 81012, + [SMALL_STATE(1657)] = 81083, + [SMALL_STATE(1658)] = 81138, + [SMALL_STATE(1659)] = 81205, + [SMALL_STATE(1660)] = 81272, + [SMALL_STATE(1661)] = 81339, + [SMALL_STATE(1662)] = 81410, + [SMALL_STATE(1663)] = 81459, + [SMALL_STATE(1664)] = 81508, + [SMALL_STATE(1665)] = 81559, + [SMALL_STATE(1666)] = 81608, + [SMALL_STATE(1667)] = 81659, + [SMALL_STATE(1668)] = 81728, + [SMALL_STATE(1669)] = 81797, + [SMALL_STATE(1670)] = 81864, + [SMALL_STATE(1671)] = 81931, + [SMALL_STATE(1672)] = 81979, + [SMALL_STATE(1673)] = 82031, + [SMALL_STATE(1674)] = 82083, + [SMALL_STATE(1675)] = 82135, + [SMALL_STATE(1676)] = 82183, + [SMALL_STATE(1677)] = 82235, + [SMALL_STATE(1678)] = 82287, + [SMALL_STATE(1679)] = 82337, + [SMALL_STATE(1680)] = 82385, + [SMALL_STATE(1681)] = 82433, + [SMALL_STATE(1682)] = 82481, + [SMALL_STATE(1683)] = 82535, + [SMALL_STATE(1684)] = 82583, + [SMALL_STATE(1685)] = 82635, + [SMALL_STATE(1686)] = 82683, + [SMALL_STATE(1687)] = 82735, + [SMALL_STATE(1688)] = 82783, + [SMALL_STATE(1689)] = 82831, + [SMALL_STATE(1690)] = 82879, + [SMALL_STATE(1691)] = 82929, + [SMALL_STATE(1692)] = 82977, + [SMALL_STATE(1693)] = 83047, + [SMALL_STATE(1694)] = 83095, + [SMALL_STATE(1695)] = 83143, + [SMALL_STATE(1696)] = 83193, + [SMALL_STATE(1697)] = 83247, + [SMALL_STATE(1698)] = 83295, + [SMALL_STATE(1699)] = 83349, + [SMALL_STATE(1700)] = 83397, + [SMALL_STATE(1701)] = 83449, + [SMALL_STATE(1702)] = 83499, + [SMALL_STATE(1703)] = 83547, + [SMALL_STATE(1704)] = 83597, + [SMALL_STATE(1705)] = 83647, + [SMALL_STATE(1706)] = 83701, + [SMALL_STATE(1707)] = 83753, + [SMALL_STATE(1708)] = 83801, + [SMALL_STATE(1709)] = 83855, + [SMALL_STATE(1710)] = 83903, + [SMALL_STATE(1711)] = 83951, + [SMALL_STATE(1712)] = 83999, + [SMALL_STATE(1713)] = 84053, + [SMALL_STATE(1714)] = 84101, + [SMALL_STATE(1715)] = 84153, + [SMALL_STATE(1716)] = 84205, + [SMALL_STATE(1717)] = 84253, + [SMALL_STATE(1718)] = 84301, + [SMALL_STATE(1719)] = 84355, + [SMALL_STATE(1720)] = 84403, + [SMALL_STATE(1721)] = 84451, + [SMALL_STATE(1722)] = 84499, + [SMALL_STATE(1723)] = 84551, + [SMALL_STATE(1724)] = 84603, + [SMALL_STATE(1725)] = 84651, + [SMALL_STATE(1726)] = 84699, + [SMALL_STATE(1727)] = 84769, + [SMALL_STATE(1728)] = 84817, + [SMALL_STATE(1729)] = 84865, + [SMALL_STATE(1730)] = 84913, + [SMALL_STATE(1731)] = 84967, + [SMALL_STATE(1732)] = 85015, + [SMALL_STATE(1733)] = 85067, + [SMALL_STATE(1734)] = 85119, + [SMALL_STATE(1735)] = 85167, + [SMALL_STATE(1736)] = 85215, + [SMALL_STATE(1737)] = 85263, + [SMALL_STATE(1738)] = 85311, + [SMALL_STATE(1739)] = 85363, + [SMALL_STATE(1740)] = 85411, + [SMALL_STATE(1741)] = 85459, + [SMALL_STATE(1742)] = 85507, + [SMALL_STATE(1743)] = 85577, + [SMALL_STATE(1744)] = 85627, + [SMALL_STATE(1745)] = 85697, + [SMALL_STATE(1746)] = 85761, + [SMALL_STATE(1747)] = 85809, + [SMALL_STATE(1748)] = 85861, + [SMALL_STATE(1749)] = 85909, + [SMALL_STATE(1750)] = 85961, + [SMALL_STATE(1751)] = 86013, + [SMALL_STATE(1752)] = 86061, + [SMALL_STATE(1753)] = 86109, + [SMALL_STATE(1754)] = 86157, + [SMALL_STATE(1755)] = 86209, + [SMALL_STATE(1756)] = 86257, + [SMALL_STATE(1757)] = 86311, + [SMALL_STATE(1758)] = 86358, + [SMALL_STATE(1759)] = 86409, + [SMALL_STATE(1760)] = 86456, + [SMALL_STATE(1761)] = 86503, + [SMALL_STATE(1762)] = 86586, + [SMALL_STATE(1763)] = 86651, + [SMALL_STATE(1764)] = 86704, + [SMALL_STATE(1765)] = 86753, + [SMALL_STATE(1766)] = 86800, + [SMALL_STATE(1767)] = 86849, + [SMALL_STATE(1768)] = 86896, + [SMALL_STATE(1769)] = 86981, + [SMALL_STATE(1770)] = 87028, + [SMALL_STATE(1771)] = 87109, + [SMALL_STATE(1772)] = 87156, + [SMALL_STATE(1773)] = 87211, + [SMALL_STATE(1774)] = 87264, + [SMALL_STATE(1775)] = 87311, + [SMALL_STATE(1776)] = 87358, + [SMALL_STATE(1777)] = 87423, + [SMALL_STATE(1778)] = 87470, + [SMALL_STATE(1779)] = 87517, + [SMALL_STATE(1780)] = 87570, + [SMALL_STATE(1781)] = 87635, + [SMALL_STATE(1782)] = 87682, + [SMALL_STATE(1783)] = 87729, + [SMALL_STATE(1784)] = 87810, + [SMALL_STATE(1785)] = 87875, + [SMALL_STATE(1786)] = 87922, + [SMALL_STATE(1787)] = 88005, + [SMALL_STATE(1788)] = 88052, + [SMALL_STATE(1789)] = 88099, + [SMALL_STATE(1790)] = 88146, + [SMALL_STATE(1791)] = 88211, + [SMALL_STATE(1792)] = 88258, + [SMALL_STATE(1793)] = 88339, + [SMALL_STATE(1794)] = 88404, + [SMALL_STATE(1795)] = 88451, + [SMALL_STATE(1796)] = 88534, + [SMALL_STATE(1797)] = 88599, + [SMALL_STATE(1798)] = 88664, + [SMALL_STATE(1799)] = 88747, + [SMALL_STATE(1800)] = 88830, + [SMALL_STATE(1801)] = 88877, + [SMALL_STATE(1802)] = 88960, + [SMALL_STATE(1803)] = 89041, + [SMALL_STATE(1804)] = 89088, + [SMALL_STATE(1805)] = 89153, + [SMALL_STATE(1806)] = 89218, + [SMALL_STATE(1807)] = 89265, + [SMALL_STATE(1808)] = 89346, + [SMALL_STATE(1809)] = 89427, + [SMALL_STATE(1810)] = 89492, + [SMALL_STATE(1811)] = 89557, + [SMALL_STATE(1812)] = 89616, + [SMALL_STATE(1813)] = 89663, + [SMALL_STATE(1814)] = 89710, + [SMALL_STATE(1815)] = 89757, + [SMALL_STATE(1816)] = 89822, + [SMALL_STATE(1817)] = 89869, + [SMALL_STATE(1818)] = 89952, + [SMALL_STATE(1819)] = 90021, + [SMALL_STATE(1820)] = 90068, + [SMALL_STATE(1821)] = 90115, + [SMALL_STATE(1822)] = 90162, + [SMALL_STATE(1823)] = 90235, + [SMALL_STATE(1824)] = 90282, + [SMALL_STATE(1825)] = 90345, + [SMALL_STATE(1826)] = 90422, + [SMALL_STATE(1827)] = 90503, + [SMALL_STATE(1828)] = 90584, + [SMALL_STATE(1829)] = 90669, + [SMALL_STATE(1830)] = 90750, + [SMALL_STATE(1831)] = 90831, + [SMALL_STATE(1832)] = 90884, + [SMALL_STATE(1833)] = 90931, + [SMALL_STATE(1834)] = 90978, + [SMALL_STATE(1835)] = 91059, + [SMALL_STATE(1836)] = 91140, + [SMALL_STATE(1837)] = 91187, + [SMALL_STATE(1838)] = 91252, + [SMALL_STATE(1839)] = 91317, + [SMALL_STATE(1840)] = 91364, + [SMALL_STATE(1841)] = 91411, + [SMALL_STATE(1842)] = 91462, + [SMALL_STATE(1843)] = 91543, + [SMALL_STATE(1844)] = 91624, + [SMALL_STATE(1845)] = 91671, + [SMALL_STATE(1846)] = 91718, + [SMALL_STATE(1847)] = 91799, + [SMALL_STATE(1848)] = 91880, + [SMALL_STATE(1849)] = 91927, + [SMALL_STATE(1850)] = 91974, + [SMALL_STATE(1851)] = 92057, + [SMALL_STATE(1852)] = 92104, + [SMALL_STATE(1853)] = 92151, + [SMALL_STATE(1854)] = 92198, + [SMALL_STATE(1855)] = 92245, + [SMALL_STATE(1856)] = 92330, + [SMALL_STATE(1857)] = 92377, + [SMALL_STATE(1858)] = 92458, + [SMALL_STATE(1859)] = 92505, + [SMALL_STATE(1860)] = 92586, + [SMALL_STATE(1861)] = 92639, + [SMALL_STATE(1862)] = 92686, + [SMALL_STATE(1863)] = 92733, + [SMALL_STATE(1864)] = 92780, + [SMALL_STATE(1865)] = 92837, + [SMALL_STATE(1866)] = 92920, + [SMALL_STATE(1867)] = 92973, + [SMALL_STATE(1868)] = 93020, + [SMALL_STATE(1869)] = 93067, + [SMALL_STATE(1870)] = 93114, + [SMALL_STATE(1871)] = 93161, + [SMALL_STATE(1872)] = 93208, + [SMALL_STATE(1873)] = 93255, + [SMALL_STATE(1874)] = 93308, + [SMALL_STATE(1875)] = 93355, + [SMALL_STATE(1876)] = 93406, + [SMALL_STATE(1877)] = 93453, + [SMALL_STATE(1878)] = 93500, + [SMALL_STATE(1879)] = 93547, + [SMALL_STATE(1880)] = 93600, + [SMALL_STATE(1881)] = 93681, + [SMALL_STATE(1882)] = 93732, + [SMALL_STATE(1883)] = 93797, + [SMALL_STATE(1884)] = 93844, + [SMALL_STATE(1885)] = 93909, + [SMALL_STATE(1886)] = 93962, + [SMALL_STATE(1887)] = 94009, + [SMALL_STATE(1888)] = 94066, + [SMALL_STATE(1889)] = 94131, + [SMALL_STATE(1890)] = 94196, + [SMALL_STATE(1891)] = 94243, + [SMALL_STATE(1892)] = 94326, + [SMALL_STATE(1893)] = 94373, + [SMALL_STATE(1894)] = 94454, + [SMALL_STATE(1895)] = 94501, + [SMALL_STATE(1896)] = 94548, + [SMALL_STATE(1897)] = 94597, + [SMALL_STATE(1898)] = 94646, + [SMALL_STATE(1899)] = 94699, + [SMALL_STATE(1900)] = 94784, + [SMALL_STATE(1901)] = 94831, + [SMALL_STATE(1902)] = 94882, + [SMALL_STATE(1903)] = 94931, + [SMALL_STATE(1904)] = 94980, + [SMALL_STATE(1905)] = 95031, + [SMALL_STATE(1906)] = 95082, + [SMALL_STATE(1907)] = 95133, + [SMALL_STATE(1908)] = 95180, + [SMALL_STATE(1909)] = 95231, + [SMALL_STATE(1910)] = 95282, + [SMALL_STATE(1911)] = 95363, + [SMALL_STATE(1912)] = 95410, + [SMALL_STATE(1913)] = 95459, + [SMALL_STATE(1914)] = 95506, + [SMALL_STATE(1915)] = 95555, + [SMALL_STATE(1916)] = 95602, + [SMALL_STATE(1917)] = 95683, + [SMALL_STATE(1918)] = 95764, + [SMALL_STATE(1919)] = 95813, + [SMALL_STATE(1920)] = 95894, + [SMALL_STATE(1921)] = 95953, + [SMALL_STATE(1922)] = 96018, + [SMALL_STATE(1923)] = 96087, + [SMALL_STATE(1924)] = 96160, + [SMALL_STATE(1925)] = 96223, + [SMALL_STATE(1926)] = 96300, + [SMALL_STATE(1927)] = 96381, + [SMALL_STATE(1928)] = 96462, + [SMALL_STATE(1929)] = 96543, + [SMALL_STATE(1930)] = 96594, + [SMALL_STATE(1931)] = 96641, + [SMALL_STATE(1932)] = 96688, + [SMALL_STATE(1933)] = 96735, + [SMALL_STATE(1934)] = 96786, + [SMALL_STATE(1935)] = 96833, + [SMALL_STATE(1936)] = 96880, + [SMALL_STATE(1937)] = 96927, + [SMALL_STATE(1938)] = 97008, + [SMALL_STATE(1939)] = 97059, + [SMALL_STATE(1940)] = 97106, + [SMALL_STATE(1941)] = 97153, + [SMALL_STATE(1942)] = 97200, + [SMALL_STATE(1943)] = 97247, + [SMALL_STATE(1944)] = 97328, + [SMALL_STATE(1945)] = 97375, + [SMALL_STATE(1946)] = 97422, + [SMALL_STATE(1947)] = 97469, + [SMALL_STATE(1948)] = 97552, + [SMALL_STATE(1949)] = 97601, + [SMALL_STATE(1950)] = 97648, + [SMALL_STATE(1951)] = 97729, + [SMALL_STATE(1952)] = 97776, + [SMALL_STATE(1953)] = 97823, + [SMALL_STATE(1954)] = 97880, + [SMALL_STATE(1955)] = 97927, + [SMALL_STATE(1956)] = 97976, + [SMALL_STATE(1957)] = 98025, + [SMALL_STATE(1958)] = 98074, + [SMALL_STATE(1959)] = 98123, + [SMALL_STATE(1960)] = 98170, + [SMALL_STATE(1961)] = 98217, + [SMALL_STATE(1962)] = 98264, + [SMALL_STATE(1963)] = 98349, + [SMALL_STATE(1964)] = 98396, + [SMALL_STATE(1965)] = 98479, + [SMALL_STATE(1966)] = 98526, + [SMALL_STATE(1967)] = 98591, + [SMALL_STATE(1968)] = 98674, + [SMALL_STATE(1969)] = 98725, + [SMALL_STATE(1970)] = 98790, + [SMALL_STATE(1971)] = 98839, + [SMALL_STATE(1972)] = 98888, + [SMALL_STATE(1973)] = 98934, + [SMALL_STATE(1974)] = 99014, + [SMALL_STATE(1975)] = 99096, + [SMALL_STATE(1976)] = 99142, + [SMALL_STATE(1977)] = 99188, + [SMALL_STATE(1978)] = 99270, + [SMALL_STATE(1979)] = 99316, + [SMALL_STATE(1980)] = 99398, + [SMALL_STATE(1981)] = 99444, + [SMALL_STATE(1982)] = 99490, + [SMALL_STATE(1983)] = 99572, + [SMALL_STATE(1984)] = 99618, + [SMALL_STATE(1985)] = 99664, + [SMALL_STATE(1986)] = 99726, + [SMALL_STATE(1987)] = 99772, + [SMALL_STATE(1988)] = 99852, + [SMALL_STATE(1989)] = 99934, + [SMALL_STATE(1990)] = 99980, + [SMALL_STATE(1991)] = 100026, + [SMALL_STATE(1992)] = 100106, + [SMALL_STATE(1993)] = 100158, + [SMALL_STATE(1994)] = 100204, + [SMALL_STATE(1995)] = 100250, + [SMALL_STATE(1996)] = 100296, + [SMALL_STATE(1997)] = 100342, + [SMALL_STATE(1998)] = 100388, + [SMALL_STATE(1999)] = 100440, + [SMALL_STATE(2000)] = 100486, + [SMALL_STATE(2001)] = 100534, + [SMALL_STATE(2002)] = 100586, + [SMALL_STATE(2003)] = 100642, + [SMALL_STATE(2004)] = 100688, + [SMALL_STATE(2005)] = 100768, + [SMALL_STATE(2006)] = 100848, + [SMALL_STATE(2007)] = 100928, + [SMALL_STATE(2008)] = 101008, + [SMALL_STATE(2009)] = 101060, + [SMALL_STATE(2010)] = 101106, + [SMALL_STATE(2011)] = 101152, + [SMALL_STATE(2012)] = 101232, + [SMALL_STATE(2013)] = 101312, + [SMALL_STATE(2014)] = 101358, + [SMALL_STATE(2015)] = 101440, + [SMALL_STATE(2016)] = 101486, + [SMALL_STATE(2017)] = 101532, + [SMALL_STATE(2018)] = 101578, + [SMALL_STATE(2019)] = 101624, + [SMALL_STATE(2020)] = 101670, + [SMALL_STATE(2021)] = 101716, + [SMALL_STATE(2022)] = 101762, + [SMALL_STATE(2023)] = 101808, + [SMALL_STATE(2024)] = 101888, + [SMALL_STATE(2025)] = 101934, + [SMALL_STATE(2026)] = 102016, + [SMALL_STATE(2027)] = 102062, + [SMALL_STATE(2028)] = 102108, + [SMALL_STATE(2029)] = 102154, + [SMALL_STATE(2030)] = 102206, + [SMALL_STATE(2031)] = 102286, + [SMALL_STATE(2032)] = 102338, + [SMALL_STATE(2033)] = 102388, + [SMALL_STATE(2034)] = 102468, + [SMALL_STATE(2035)] = 102530, + [SMALL_STATE(2036)] = 102592, + [SMALL_STATE(2037)] = 102644, + [SMALL_STATE(2038)] = 102690, + [SMALL_STATE(2039)] = 102736, + [SMALL_STATE(2040)] = 102782, + [SMALL_STATE(2041)] = 102834, + [SMALL_STATE(2042)] = 102900, + [SMALL_STATE(2043)] = 102968, + [SMALL_STATE(2044)] = 103032, + [SMALL_STATE(2045)] = 103094, + [SMALL_STATE(2046)] = 103140, + [SMALL_STATE(2047)] = 103186, + [SMALL_STATE(2048)] = 103268, + [SMALL_STATE(2049)] = 103314, + [SMALL_STATE(2050)] = 103362, + [SMALL_STATE(2051)] = 103442, + [SMALL_STATE(2052)] = 103522, + [SMALL_STATE(2053)] = 103602, + [SMALL_STATE(2054)] = 103682, + [SMALL_STATE(2055)] = 103740, + [SMALL_STATE(2056)] = 103786, + [SMALL_STATE(2057)] = 103850, + [SMALL_STATE(2058)] = 103932, + [SMALL_STATE(2059)] = 103982, + [SMALL_STATE(2060)] = 104050, + [SMALL_STATE(2061)] = 104130, + [SMALL_STATE(2062)] = 104210, + [SMALL_STATE(2063)] = 104260, + [SMALL_STATE(2064)] = 104332, + [SMALL_STATE(2065)] = 104394, + [SMALL_STATE(2066)] = 104440, + [SMALL_STATE(2067)] = 104516, + [SMALL_STATE(2068)] = 104578, + [SMALL_STATE(2069)] = 104628, + [SMALL_STATE(2070)] = 104678, + [SMALL_STATE(2071)] = 104730, + [SMALL_STATE(2072)] = 104780, + [SMALL_STATE(2073)] = 104830, + [SMALL_STATE(2074)] = 104910, + [SMALL_STATE(2075)] = 104956, + [SMALL_STATE(2076)] = 105002, + [SMALL_STATE(2077)] = 105054, + [SMALL_STATE(2078)] = 105100, + [SMALL_STATE(2079)] = 105146, + [SMALL_STATE(2080)] = 105226, + [SMALL_STATE(2081)] = 105278, + [SMALL_STATE(2082)] = 105358, + [SMALL_STATE(2083)] = 105412, + [SMALL_STATE(2084)] = 105458, + [SMALL_STATE(2085)] = 105504, + [SMALL_STATE(2086)] = 105584, + [SMALL_STATE(2087)] = 105666, + [SMALL_STATE(2088)] = 105748, + [SMALL_STATE(2089)] = 105830, + [SMALL_STATE(2090)] = 105906, + [SMALL_STATE(2091)] = 105968, + [SMALL_STATE(2092)] = 106030, + [SMALL_STATE(2093)] = 106110, + [SMALL_STATE(2094)] = 106182, + [SMALL_STATE(2095)] = 106250, + [SMALL_STATE(2096)] = 106330, + [SMALL_STATE(2097)] = 106394, + [SMALL_STATE(2098)] = 106456, + [SMALL_STATE(2099)] = 106514, + [SMALL_STATE(2100)] = 106596, + [SMALL_STATE(2101)] = 106652, + [SMALL_STATE(2102)] = 106708, + [SMALL_STATE(2103)] = 106770, + [SMALL_STATE(2104)] = 106820, + [SMALL_STATE(2105)] = 106870, + [SMALL_STATE(2106)] = 106916, + [SMALL_STATE(2107)] = 106962, + [SMALL_STATE(2108)] = 107008, + [SMALL_STATE(2109)] = 107070, + [SMALL_STATE(2110)] = 107150, + [SMALL_STATE(2111)] = 107196, + [SMALL_STATE(2112)] = 107258, + [SMALL_STATE(2113)] = 107304, + [SMALL_STATE(2114)] = 107350, + [SMALL_STATE(2115)] = 107418, + [SMALL_STATE(2116)] = 107500, + [SMALL_STATE(2117)] = 107552, + [SMALL_STATE(2118)] = 107618, + [SMALL_STATE(2119)] = 107698, + [SMALL_STATE(2120)] = 107778, + [SMALL_STATE(2121)] = 107842, + [SMALL_STATE(2122)] = 107922, + [SMALL_STATE(2123)] = 108004, + [SMALL_STATE(2124)] = 108084, + [SMALL_STATE(2125)] = 108142, + [SMALL_STATE(2126)] = 108206, + [SMALL_STATE(2127)] = 108274, + [SMALL_STATE(2128)] = 108346, + [SMALL_STATE(2129)] = 108408, + [SMALL_STATE(2130)] = 108484, + [SMALL_STATE(2131)] = 108564, + [SMALL_STATE(2132)] = 108610, + [SMALL_STATE(2133)] = 108690, + [SMALL_STATE(2134)] = 108736, + [SMALL_STATE(2135)] = 108782, + [SMALL_STATE(2136)] = 108845, + [SMALL_STATE(2137)] = 108924, + [SMALL_STATE(2138)] = 109003, + [SMALL_STATE(2139)] = 109082, + [SMALL_STATE(2140)] = 109157, + [SMALL_STATE(2141)] = 109236, + [SMALL_STATE(2142)] = 109297, + [SMALL_STATE(2143)] = 109382, + [SMALL_STATE(2144)] = 109461, + [SMALL_STATE(2145)] = 109528, + [SMALL_STATE(2146)] = 109591, + [SMALL_STATE(2147)] = 109662, + [SMALL_STATE(2148)] = 109729, + [SMALL_STATE(2149)] = 109792, + [SMALL_STATE(2150)] = 109849, + [SMALL_STATE(2151)] = 109928, + [SMALL_STATE(2152)] = 110011, + [SMALL_STATE(2153)] = 110090, + [SMALL_STATE(2154)] = 110175, + [SMALL_STATE(2155)] = 110226, + [SMALL_STATE(2156)] = 110311, + [SMALL_STATE(2157)] = 110390, + [SMALL_STATE(2158)] = 110469, + [SMALL_STATE(2159)] = 110548, + [SMALL_STATE(2160)] = 110611, + [SMALL_STATE(2161)] = 110670, + [SMALL_STATE(2162)] = 110735, + [SMALL_STATE(2163)] = 110802, + [SMALL_STATE(2164)] = 110853, + [SMALL_STATE(2165)] = 110938, + [SMALL_STATE(2166)] = 111021, + [SMALL_STATE(2167)] = 111072, + [SMALL_STATE(2168)] = 111153, + [SMALL_STATE(2169)] = 111236, + [SMALL_STATE(2170)] = 111315, + [SMALL_STATE(2171)] = 111398, + [SMALL_STATE(2172)] = 111483, + [SMALL_STATE(2173)] = 111562, + [SMALL_STATE(2174)] = 111611, + [SMALL_STATE(2175)] = 111686, + [SMALL_STATE(2176)] = 111765, + [SMALL_STATE(2177)] = 111844, + [SMALL_STATE(2178)] = 111923, + [SMALL_STATE(2179)] = 111984, + [SMALL_STATE(2180)] = 112069, + [SMALL_STATE(2181)] = 112128, + [SMALL_STATE(2182)] = 112191, + [SMALL_STATE(2183)] = 112248, + [SMALL_STATE(2184)] = 112331, + [SMALL_STATE(2185)] = 112402, + [SMALL_STATE(2186)] = 112481, + [SMALL_STATE(2187)] = 112560, + [SMALL_STATE(2188)] = 112609, + [SMALL_STATE(2189)] = 112660, + [SMALL_STATE(2190)] = 112739, + [SMALL_STATE(2191)] = 112790, + [SMALL_STATE(2192)] = 112869, + [SMALL_STATE(2193)] = 112920, + [SMALL_STATE(2194)] = 112982, + [SMALL_STATE(2195)] = 113056, + [SMALL_STATE(2196)] = 113136, + [SMALL_STATE(2197)] = 113218, + [SMALL_STATE(2198)] = 113300, + [SMALL_STATE(2199)] = 113380, + [SMALL_STATE(2200)] = 113460, + [SMALL_STATE(2201)] = 113542, + [SMALL_STATE(2202)] = 113620, + [SMALL_STATE(2203)] = 113702, + [SMALL_STATE(2204)] = 113784, + [SMALL_STATE(2205)] = 113866, + [SMALL_STATE(2206)] = 113946, + [SMALL_STATE(2207)] = 114028, + [SMALL_STATE(2208)] = 114106, + [SMALL_STATE(2209)] = 114184, + [SMALL_STATE(2210)] = 114242, + [SMALL_STATE(2211)] = 114320, + [SMALL_STATE(2212)] = 114402, + [SMALL_STATE(2213)] = 114484, + [SMALL_STATE(2214)] = 114562, + [SMALL_STATE(2215)] = 114620, + [SMALL_STATE(2216)] = 114698, + [SMALL_STATE(2217)] = 114778, + [SMALL_STATE(2218)] = 114856, + [SMALL_STATE(2219)] = 114914, + [SMALL_STATE(2220)] = 114992, + [SMALL_STATE(2221)] = 115074, + [SMALL_STATE(2222)] = 115154, + [SMALL_STATE(2223)] = 115212, + [SMALL_STATE(2224)] = 115270, + [SMALL_STATE(2225)] = 115332, + [SMALL_STATE(2226)] = 115412, + [SMALL_STATE(2227)] = 115490, + [SMALL_STATE(2228)] = 115568, + [SMALL_STATE(2229)] = 115650, + [SMALL_STATE(2230)] = 115728, + [SMALL_STATE(2231)] = 115788, + [SMALL_STATE(2232)] = 115870, + [SMALL_STATE(2233)] = 115932, + [SMALL_STATE(2234)] = 115992, + [SMALL_STATE(2235)] = 116072, + [SMALL_STATE(2236)] = 116150, + [SMALL_STATE(2237)] = 116210, + [SMALL_STATE(2238)] = 116292, + [SMALL_STATE(2239)] = 116370, + [SMALL_STATE(2240)] = 116440, + [SMALL_STATE(2241)] = 116518, + [SMALL_STATE(2242)] = 116596, + [SMALL_STATE(2243)] = 116654, + [SMALL_STATE(2244)] = 116714, + [SMALL_STATE(2245)] = 116794, + [SMALL_STATE(2246)] = 116864, + [SMALL_STATE(2247)] = 116930, + [SMALL_STATE(2248)] = 116992, + [SMALL_STATE(2249)] = 117066, + [SMALL_STATE(2250)] = 117124, + [SMALL_STATE(2251)] = 117202, + [SMALL_STATE(2252)] = 117258, + [SMALL_STATE(2253)] = 117324, + [SMALL_STATE(2254)] = 117402, + [SMALL_STATE(2255)] = 117480, + [SMALL_STATE(2256)] = 117558, + [SMALL_STATE(2257)] = 117636, + [SMALL_STATE(2258)] = 117694, + [SMALL_STATE(2259)] = 117776, + [SMALL_STATE(2260)] = 117836, + [SMALL_STATE(2261)] = 117896, + [SMALL_STATE(2262)] = 117958, + [SMALL_STATE(2263)] = 118004, + [SMALL_STATE(2264)] = 118082, + [SMALL_STATE(2265)] = 118162, + [SMALL_STATE(2266)] = 118224, + [SMALL_STATE(2267)] = 118280, + [SMALL_STATE(2268)] = 118358, + [SMALL_STATE(2269)] = 118436, + [SMALL_STATE(2270)] = 118516, + [SMALL_STATE(2271)] = 118572, + [SMALL_STATE(2272)] = 118634, + [SMALL_STATE(2273)] = 118700, + [SMALL_STATE(2274)] = 118770, + [SMALL_STATE(2275)] = 118830, + [SMALL_STATE(2276)] = 118904, + [SMALL_STATE(2277)] = 118984, + [SMALL_STATE(2278)] = 119064, + [SMALL_STATE(2279)] = 119144, + [SMALL_STATE(2280)] = 119206, + [SMALL_STATE(2281)] = 119284, + [SMALL_STATE(2282)] = 119342, + [SMALL_STATE(2283)] = 119402, + [SMALL_STATE(2284)] = 119460, + [SMALL_STATE(2285)] = 119520, + [SMALL_STATE(2286)] = 119578, + [SMALL_STATE(2287)] = 119660, + [SMALL_STATE(2288)] = 119742, + [SMALL_STATE(2289)] = 119824, + [SMALL_STATE(2290)] = 119884, + [SMALL_STATE(2291)] = 119942, + [SMALL_STATE(2292)] = 120020, + [SMALL_STATE(2293)] = 120073, + [SMALL_STATE(2294)] = 120152, + [SMALL_STATE(2295)] = 120205, + [SMALL_STATE(2296)] = 120278, + [SMALL_STATE(2297)] = 120357, + [SMALL_STATE(2298)] = 120436, + [SMALL_STATE(2299)] = 120515, + [SMALL_STATE(2300)] = 120594, + [SMALL_STATE(2301)] = 120667, + [SMALL_STATE(2302)] = 120746, + [SMALL_STATE(2303)] = 120813, + [SMALL_STATE(2304)] = 120862, + [SMALL_STATE(2305)] = 120941, + [SMALL_STATE(2306)] = 121010, + [SMALL_STATE(2307)] = 121063, + [SMALL_STATE(2308)] = 121128, + [SMALL_STATE(2309)] = 121201, + [SMALL_STATE(2310)] = 121268, + [SMALL_STATE(2311)] = 121337, + [SMALL_STATE(2312)] = 121402, + [SMALL_STATE(2313)] = 121479, + [SMALL_STATE(2314)] = 121558, + [SMALL_STATE(2315)] = 121637, + [SMALL_STATE(2316)] = 121714, + [SMALL_STATE(2317)] = 121787, + [SMALL_STATE(2318)] = 121864, + [SMALL_STATE(2319)] = 121937, + [SMALL_STATE(2320)] = 122016, + [SMALL_STATE(2321)] = 122095, + [SMALL_STATE(2322)] = 122168, + [SMALL_STATE(2323)] = 122221, + [SMALL_STATE(2324)] = 122274, + [SMALL_STATE(2325)] = 122327, + [SMALL_STATE(2326)] = 122392, + [SMALL_STATE(2327)] = 122471, + [SMALL_STATE(2328)] = 122544, + [SMALL_STATE(2329)] = 122623, + [SMALL_STATE(2330)] = 122692, + [SMALL_STATE(2331)] = 122769, + [SMALL_STATE(2332)] = 122848, + [SMALL_STATE(2333)] = 122913, + [SMALL_STATE(2334)] = 122992, + [SMALL_STATE(2335)] = 123065, + [SMALL_STATE(2336)] = 123144, + [SMALL_STATE(2337)] = 123223, + [SMALL_STATE(2338)] = 123292, + [SMALL_STATE(2339)] = 123369, + [SMALL_STATE(2340)] = 123436, + [SMALL_STATE(2341)] = 123489, + [SMALL_STATE(2342)] = 123542, + [SMALL_STATE(2343)] = 123595, + [SMALL_STATE(2344)] = 123644, + [SMALL_STATE(2345)] = 123697, + [SMALL_STATE(2346)] = 123770, + [SMALL_STATE(2347)] = 123849, + [SMALL_STATE(2348)] = 123902, + [SMALL_STATE(2349)] = 123969, + [SMALL_STATE(2350)] = 124048, + [SMALL_STATE(2351)] = 124101, + [SMALL_STATE(2352)] = 124170, + [SMALL_STATE(2353)] = 124223, + [SMALL_STATE(2354)] = 124288, + [SMALL_STATE(2355)] = 124361, + [SMALL_STATE(2356)] = 124440, + [SMALL_STATE(2357)] = 124507, + [SMALL_STATE(2358)] = 124584, + [SMALL_STATE(2359)] = 124661, + [SMALL_STATE(2360)] = 124714, + [SMALL_STATE(2361)] = 124791, + [SMALL_STATE(2362)] = 124864, + [SMALL_STATE(2363)] = 124941, + [SMALL_STATE(2364)] = 125020, + [SMALL_STATE(2365)] = 125093, + [SMALL_STATE(2366)] = 125172, + [SMALL_STATE(2367)] = 125245, + [SMALL_STATE(2368)] = 125324, + [SMALL_STATE(2369)] = 125377, + [SMALL_STATE(2370)] = 125426, + [SMALL_STATE(2371)] = 125505, + [SMALL_STATE(2372)] = 125584, + [SMALL_STATE(2373)] = 125663, + [SMALL_STATE(2374)] = 125739, + [SMALL_STATE(2375)] = 125799, + [SMALL_STATE(2376)] = 125875, + [SMALL_STATE(2377)] = 125951, + [SMALL_STATE(2378)] = 126027, + [SMALL_STATE(2379)] = 126103, + [SMALL_STATE(2380)] = 126165, + [SMALL_STATE(2381)] = 126225, + [SMALL_STATE(2382)] = 126301, + [SMALL_STATE(2383)] = 126377, + [SMALL_STATE(2384)] = 126437, + [SMALL_STATE(2385)] = 126507, + [SMALL_STATE(2386)] = 126583, + [SMALL_STATE(2387)] = 126643, + [SMALL_STATE(2388)] = 126703, + [SMALL_STATE(2389)] = 126751, + [SMALL_STATE(2390)] = 126821, + [SMALL_STATE(2391)] = 126897, + [SMALL_STATE(2392)] = 126961, + [SMALL_STATE(2393)] = 127031, + [SMALL_STATE(2394)] = 127073, + [SMALL_STATE(2395)] = 127149, + [SMALL_STATE(2396)] = 127225, + [SMALL_STATE(2397)] = 127285, + [SMALL_STATE(2398)] = 127361, + [SMALL_STATE(2399)] = 127431, + [SMALL_STATE(2400)] = 127501, + [SMALL_STATE(2401)] = 127574, + [SMALL_STATE(2402)] = 127653, + [SMALL_STATE(2403)] = 127708, + [SMALL_STATE(2404)] = 127787, + [SMALL_STATE(2405)] = 127866, + [SMALL_STATE(2406)] = 127945, + [SMALL_STATE(2407)] = 128024, + [SMALL_STATE(2408)] = 128103, + [SMALL_STATE(2409)] = 128143, + [SMALL_STATE(2410)] = 128183, + [SMALL_STATE(2411)] = 128223, + [SMALL_STATE(2412)] = 128273, + [SMALL_STATE(2413)] = 128323, + [SMALL_STATE(2414)] = 128373, + [SMALL_STATE(2415)] = 128413, + [SMALL_STATE(2416)] = 128463, + [SMALL_STATE(2417)] = 128503, + [SMALL_STATE(2418)] = 128553, + [SMALL_STATE(2419)] = 128598, + [SMALL_STATE(2420)] = 128636, + [SMALL_STATE(2421)] = 128674, + [SMALL_STATE(2422)] = 128714, + [SMALL_STATE(2423)] = 128752, + [SMALL_STATE(2424)] = 128790, + [SMALL_STATE(2425)] = 128828, + [SMALL_STATE(2426)] = 128878, + [SMALL_STATE(2427)] = 128930, + [SMALL_STATE(2428)] = 128970, + [SMALL_STATE(2429)] = 129022, + [SMALL_STATE(2430)] = 129076, + [SMALL_STATE(2431)] = 129114, + [SMALL_STATE(2432)] = 129166, + [SMALL_STATE(2433)] = 129206, + [SMALL_STATE(2434)] = 129262, + [SMALL_STATE(2435)] = 129300, + [SMALL_STATE(2436)] = 129338, + [SMALL_STATE(2437)] = 129376, + [SMALL_STATE(2438)] = 129414, + [SMALL_STATE(2439)] = 129452, + [SMALL_STATE(2440)] = 129490, + [SMALL_STATE(2441)] = 129528, + [SMALL_STATE(2442)] = 129582, + [SMALL_STATE(2443)] = 129620, + [SMALL_STATE(2444)] = 129667, + [SMALL_STATE(2445)] = 129714, + [SMALL_STATE(2446)] = 129761, + [SMALL_STATE(2447)] = 129808, + [SMALL_STATE(2448)] = 129855, + [SMALL_STATE(2449)] = 129902, + [SMALL_STATE(2450)] = 129949, + [SMALL_STATE(2451)] = 129996, + [SMALL_STATE(2452)] = 130043, + [SMALL_STATE(2453)] = 130090, + [SMALL_STATE(2454)] = 130137, + [SMALL_STATE(2455)] = 130184, + [SMALL_STATE(2456)] = 130231, + [SMALL_STATE(2457)] = 130278, + [SMALL_STATE(2458)] = 130325, + [SMALL_STATE(2459)] = 130372, + [SMALL_STATE(2460)] = 130419, + [SMALL_STATE(2461)] = 130466, + [SMALL_STATE(2462)] = 130514, + [SMALL_STATE(2463)] = 130562, + [SMALL_STATE(2464)] = 130604, + [SMALL_STATE(2465)] = 130640, + [SMALL_STATE(2466)] = 130688, + [SMALL_STATE(2467)] = 130736, + [SMALL_STATE(2468)] = 130784, + [SMALL_STATE(2469)] = 130832, + [SMALL_STATE(2470)] = 130888, + [SMALL_STATE(2471)] = 130937, + [SMALL_STATE(2472)] = 130986, + [SMALL_STATE(2473)] = 131023, + [SMALL_STATE(2474)] = 131068, + [SMALL_STATE(2475)] = 131121, + [SMALL_STATE(2476)] = 131174, + [SMALL_STATE(2477)] = 131227, + [SMALL_STATE(2478)] = 131269, + [SMALL_STATE(2479)] = 131311, + [SMALL_STATE(2480)] = 131353, + [SMALL_STATE(2481)] = 131395, + [SMALL_STATE(2482)] = 131437, + [SMALL_STATE(2483)] = 131479, + [SMALL_STATE(2484)] = 131521, + [SMALL_STATE(2485)] = 131563, + [SMALL_STATE(2486)] = 131605, + [SMALL_STATE(2487)] = 131647, + [SMALL_STATE(2488)] = 131689, + [SMALL_STATE(2489)] = 131731, + [SMALL_STATE(2490)] = 131773, + [SMALL_STATE(2491)] = 131815, + [SMALL_STATE(2492)] = 131857, + [SMALL_STATE(2493)] = 131899, + [SMALL_STATE(2494)] = 131941, + [SMALL_STATE(2495)] = 131983, + [SMALL_STATE(2496)] = 132025, + [SMALL_STATE(2497)] = 132067, + [SMALL_STATE(2498)] = 132109, + [SMALL_STATE(2499)] = 132151, + [SMALL_STATE(2500)] = 132193, + [SMALL_STATE(2501)] = 132235, + [SMALL_STATE(2502)] = 132269, + [SMALL_STATE(2503)] = 132311, + [SMALL_STATE(2504)] = 132341, + [SMALL_STATE(2505)] = 132373, + [SMALL_STATE(2506)] = 132405, + [SMALL_STATE(2507)] = 132434, + [SMALL_STATE(2508)] = 132463, + [SMALL_STATE(2509)] = 132490, + [SMALL_STATE(2510)] = 132516, + [SMALL_STATE(2511)] = 132540, + [SMALL_STATE(2512)] = 132564, + [SMALL_STATE(2513)] = 132585, + [SMALL_STATE(2514)] = 132606, + [SMALL_STATE(2515)] = 132627, + [SMALL_STATE(2516)] = 132648, + [SMALL_STATE(2517)] = 132669, + [SMALL_STATE(2518)] = 132690, + [SMALL_STATE(2519)] = 132711, + [SMALL_STATE(2520)] = 132732, + [SMALL_STATE(2521)] = 132753, + [SMALL_STATE(2522)] = 132774, + [SMALL_STATE(2523)] = 132804, + [SMALL_STATE(2524)] = 132846, + [SMALL_STATE(2525)] = 132888, + [SMALL_STATE(2526)] = 132930, + [SMALL_STATE(2527)] = 132972, + [SMALL_STATE(2528)] = 133012, + [SMALL_STATE(2529)] = 133040, + [SMALL_STATE(2530)] = 133082, + [SMALL_STATE(2531)] = 133110, + [SMALL_STATE(2532)] = 133152, + [SMALL_STATE(2533)] = 133177, + [SMALL_STATE(2534)] = 133212, + [SMALL_STATE(2535)] = 133247, + [SMALL_STATE(2536)] = 133270, + [SMALL_STATE(2537)] = 133305, + [SMALL_STATE(2538)] = 133342, + [SMALL_STATE(2539)] = 133377, + [SMALL_STATE(2540)] = 133412, + [SMALL_STATE(2541)] = 133447, + [SMALL_STATE(2542)] = 133472, + [SMALL_STATE(2543)] = 133507, + [SMALL_STATE(2544)] = 133542, + [SMALL_STATE(2545)] = 133565, + [SMALL_STATE(2546)] = 133597, + [SMALL_STATE(2547)] = 133633, + [SMALL_STATE(2548)] = 133669, + [SMALL_STATE(2549)] = 133701, + [SMALL_STATE(2550)] = 133727, + [SMALL_STATE(2551)] = 133759, + [SMALL_STATE(2552)] = 133787, + [SMALL_STATE(2553)] = 133819, + [SMALL_STATE(2554)] = 133845, + [SMALL_STATE(2555)] = 133877, + [SMALL_STATE(2556)] = 133909, + [SMALL_STATE(2557)] = 133945, + [SMALL_STATE(2558)] = 133981, + [SMALL_STATE(2559)] = 134017, + [SMALL_STATE(2560)] = 134049, + [SMALL_STATE(2561)] = 134085, + [SMALL_STATE(2562)] = 134107, + [SMALL_STATE(2563)] = 134139, + [SMALL_STATE(2564)] = 134156, + [SMALL_STATE(2565)] = 134175, + [SMALL_STATE(2566)] = 134194, + [SMALL_STATE(2567)] = 134213, + [SMALL_STATE(2568)] = 134232, + [SMALL_STATE(2569)] = 134251, + [SMALL_STATE(2570)] = 134270, + [SMALL_STATE(2571)] = 134289, + [SMALL_STATE(2572)] = 134310, + [SMALL_STATE(2573)] = 134329, + [SMALL_STATE(2574)] = 134348, + [SMALL_STATE(2575)] = 134367, + [SMALL_STATE(2576)] = 134388, + [SMALL_STATE(2577)] = 134407, + [SMALL_STATE(2578)] = 134428, + [SMALL_STATE(2579)] = 134447, + [SMALL_STATE(2580)] = 134466, + [SMALL_STATE(2581)] = 134485, + [SMALL_STATE(2582)] = 134504, + [SMALL_STATE(2583)] = 134523, + [SMALL_STATE(2584)] = 134542, + [SMALL_STATE(2585)] = 134561, + [SMALL_STATE(2586)] = 134582, + [SMALL_STATE(2587)] = 134601, + [SMALL_STATE(2588)] = 134624, + [SMALL_STATE(2589)] = 134645, + [SMALL_STATE(2590)] = 134664, + [SMALL_STATE(2591)] = 134683, + [SMALL_STATE(2592)] = 134700, + [SMALL_STATE(2593)] = 134719, + [SMALL_STATE(2594)] = 134738, + [SMALL_STATE(2595)] = 134757, + [SMALL_STATE(2596)] = 134776, + [SMALL_STATE(2597)] = 134797, + [SMALL_STATE(2598)] = 134816, + [SMALL_STATE(2599)] = 134843, + [SMALL_STATE(2600)] = 134862, + [SMALL_STATE(2601)] = 134881, + [SMALL_STATE(2602)] = 134900, + [SMALL_STATE(2603)] = 134919, + [SMALL_STATE(2604)] = 134942, + [SMALL_STATE(2605)] = 134961, + [SMALL_STATE(2606)] = 134995, + [SMALL_STATE(2607)] = 135017, + [SMALL_STATE(2608)] = 135037, + [SMALL_STATE(2609)] = 135055, + [SMALL_STATE(2610)] = 135077, + [SMALL_STATE(2611)] = 135101, + [SMALL_STATE(2612)] = 135121, + [SMALL_STATE(2613)] = 135141, + [SMALL_STATE(2614)] = 135163, + [SMALL_STATE(2615)] = 135197, + [SMALL_STATE(2616)] = 135231, + [SMALL_STATE(2617)] = 135249, + [SMALL_STATE(2618)] = 135283, + [SMALL_STATE(2619)] = 135317, + [SMALL_STATE(2620)] = 135337, + [SMALL_STATE(2621)] = 135359, + [SMALL_STATE(2622)] = 135381, + [SMALL_STATE(2623)] = 135399, + [SMALL_STATE(2624)] = 135419, + [SMALL_STATE(2625)] = 135439, + [SMALL_STATE(2626)] = 135473, + [SMALL_STATE(2627)] = 135493, + [SMALL_STATE(2628)] = 135527, + [SMALL_STATE(2629)] = 135561, + [SMALL_STATE(2630)] = 135595, + [SMALL_STATE(2631)] = 135617, + [SMALL_STATE(2632)] = 135647, + [SMALL_STATE(2633)] = 135681, + [SMALL_STATE(2634)] = 135702, + [SMALL_STATE(2635)] = 135733, + [SMALL_STATE(2636)] = 135764, + [SMALL_STATE(2637)] = 135795, + [SMALL_STATE(2638)] = 135812, + [SMALL_STATE(2639)] = 135829, + [SMALL_STATE(2640)] = 135846, + [SMALL_STATE(2641)] = 135863, + [SMALL_STATE(2642)] = 135894, + [SMALL_STATE(2643)] = 135911, + [SMALL_STATE(2644)] = 135930, + [SMALL_STATE(2645)] = 135947, + [SMALL_STATE(2646)] = 135966, + [SMALL_STATE(2647)] = 135997, + [SMALL_STATE(2648)] = 136028, + [SMALL_STATE(2649)] = 136045, + [SMALL_STATE(2650)] = 136076, + [SMALL_STATE(2651)] = 136095, + [SMALL_STATE(2652)] = 136114, + [SMALL_STATE(2653)] = 136133, + [SMALL_STATE(2654)] = 136164, + [SMALL_STATE(2655)] = 136195, + [SMALL_STATE(2656)] = 136226, + [SMALL_STATE(2657)] = 136251, + [SMALL_STATE(2658)] = 136274, + [SMALL_STATE(2659)] = 136305, + [SMALL_STATE(2660)] = 136336, + [SMALL_STATE(2661)] = 136367, + [SMALL_STATE(2662)] = 136398, + [SMALL_STATE(2663)] = 136429, + [SMALL_STATE(2664)] = 136460, + [SMALL_STATE(2665)] = 136483, + [SMALL_STATE(2666)] = 136514, + [SMALL_STATE(2667)] = 136531, + [SMALL_STATE(2668)] = 136562, + [SMALL_STATE(2669)] = 136587, + [SMALL_STATE(2670)] = 136608, + [SMALL_STATE(2671)] = 136629, + [SMALL_STATE(2672)] = 136655, + [SMALL_STATE(2673)] = 136681, + [SMALL_STATE(2674)] = 136695, + [SMALL_STATE(2675)] = 136709, + [SMALL_STATE(2676)] = 136723, + [SMALL_STATE(2677)] = 136739, + [SMALL_STATE(2678)] = 136753, + [SMALL_STATE(2679)] = 136767, + [SMALL_STATE(2680)] = 136793, + [SMALL_STATE(2681)] = 136819, + [SMALL_STATE(2682)] = 136843, + [SMALL_STATE(2683)] = 136869, + [SMALL_STATE(2684)] = 136891, + [SMALL_STATE(2685)] = 136917, + [SMALL_STATE(2686)] = 136931, + [SMALL_STATE(2687)] = 136945, + [SMALL_STATE(2688)] = 136965, + [SMALL_STATE(2689)] = 136979, + [SMALL_STATE(2690)] = 137005, + [SMALL_STATE(2691)] = 137031, + [SMALL_STATE(2692)] = 137053, + [SMALL_STATE(2693)] = 137079, + [SMALL_STATE(2694)] = 137093, + [SMALL_STATE(2695)] = 137107, + [SMALL_STATE(2696)] = 137121, + [SMALL_STATE(2697)] = 137135, + [SMALL_STATE(2698)] = 137155, + [SMALL_STATE(2699)] = 137171, + [SMALL_STATE(2700)] = 137193, + [SMALL_STATE(2701)] = 137219, + [SMALL_STATE(2702)] = 137245, + [SMALL_STATE(2703)] = 137259, + [SMALL_STATE(2704)] = 137273, + [SMALL_STATE(2705)] = 137287, + [SMALL_STATE(2706)] = 137301, + [SMALL_STATE(2707)] = 137315, + [SMALL_STATE(2708)] = 137341, + [SMALL_STATE(2709)] = 137357, + [SMALL_STATE(2710)] = 137371, + [SMALL_STATE(2711)] = 137391, + [SMALL_STATE(2712)] = 137409, + [SMALL_STATE(2713)] = 137435, + [SMALL_STATE(2714)] = 137449, + [SMALL_STATE(2715)] = 137475, + [SMALL_STATE(2716)] = 137489, + [SMALL_STATE(2717)] = 137503, + [SMALL_STATE(2718)] = 137517, + [SMALL_STATE(2719)] = 137531, + [SMALL_STATE(2720)] = 137551, + [SMALL_STATE(2721)] = 137577, + [SMALL_STATE(2722)] = 137603, + [SMALL_STATE(2723)] = 137617, + [SMALL_STATE(2724)] = 137631, + [SMALL_STATE(2725)] = 137657, + [SMALL_STATE(2726)] = 137677, + [SMALL_STATE(2727)] = 137703, + [SMALL_STATE(2728)] = 137721, + [SMALL_STATE(2729)] = 137739, + [SMALL_STATE(2730)] = 137765, + [SMALL_STATE(2731)] = 137787, + [SMALL_STATE(2732)] = 137801, + [SMALL_STATE(2733)] = 137827, + [SMALL_STATE(2734)] = 137853, + [SMALL_STATE(2735)] = 137879, + [SMALL_STATE(2736)] = 137893, + [SMALL_STATE(2737)] = 137907, + [SMALL_STATE(2738)] = 137923, + [SMALL_STATE(2739)] = 137937, + [SMALL_STATE(2740)] = 137951, + [SMALL_STATE(2741)] = 137965, + [SMALL_STATE(2742)] = 137985, + [SMALL_STATE(2743)] = 138011, + [SMALL_STATE(2744)] = 138037, + [SMALL_STATE(2745)] = 138063, + [SMALL_STATE(2746)] = 138081, + [SMALL_STATE(2747)] = 138095, + [SMALL_STATE(2748)] = 138121, + [SMALL_STATE(2749)] = 138135, + [SMALL_STATE(2750)] = 138157, + [SMALL_STATE(2751)] = 138183, + [SMALL_STATE(2752)] = 138203, + [SMALL_STATE(2753)] = 138223, + [SMALL_STATE(2754)] = 138249, + [SMALL_STATE(2755)] = 138266, + [SMALL_STATE(2756)] = 138291, + [SMALL_STATE(2757)] = 138316, + [SMALL_STATE(2758)] = 138341, + [SMALL_STATE(2759)] = 138358, + [SMALL_STATE(2760)] = 138379, + [SMALL_STATE(2761)] = 138400, + [SMALL_STATE(2762)] = 138425, + [SMALL_STATE(2763)] = 138450, + [SMALL_STATE(2764)] = 138467, + [SMALL_STATE(2765)] = 138492, + [SMALL_STATE(2766)] = 138517, + [SMALL_STATE(2767)] = 138530, + [SMALL_STATE(2768)] = 138555, + [SMALL_STATE(2769)] = 138580, + [SMALL_STATE(2770)] = 138605, + [SMALL_STATE(2771)] = 138630, + [SMALL_STATE(2772)] = 138643, + [SMALL_STATE(2773)] = 138656, + [SMALL_STATE(2774)] = 138681, + [SMALL_STATE(2775)] = 138702, + [SMALL_STATE(2776)] = 138721, + [SMALL_STATE(2777)] = 138746, + [SMALL_STATE(2778)] = 138771, + [SMALL_STATE(2779)] = 138796, + [SMALL_STATE(2780)] = 138809, + [SMALL_STATE(2781)] = 138834, + [SMALL_STATE(2782)] = 138859, + [SMALL_STATE(2783)] = 138878, + [SMALL_STATE(2784)] = 138903, + [SMALL_STATE(2785)] = 138916, + [SMALL_STATE(2786)] = 138941, + [SMALL_STATE(2787)] = 138954, + [SMALL_STATE(2788)] = 138967, + [SMALL_STATE(2789)] = 138980, + [SMALL_STATE(2790)] = 139005, + [SMALL_STATE(2791)] = 139030, + [SMALL_STATE(2792)] = 139043, + [SMALL_STATE(2793)] = 139068, + [SMALL_STATE(2794)] = 139087, + [SMALL_STATE(2795)] = 139112, + [SMALL_STATE(2796)] = 139137, + [SMALL_STATE(2797)] = 139152, + [SMALL_STATE(2798)] = 139165, + [SMALL_STATE(2799)] = 139178, + [SMALL_STATE(2800)] = 139203, + [SMALL_STATE(2801)] = 139228, + [SMALL_STATE(2802)] = 139241, + [SMALL_STATE(2803)] = 139254, + [SMALL_STATE(2804)] = 139279, + [SMALL_STATE(2805)] = 139304, + [SMALL_STATE(2806)] = 139329, + [SMALL_STATE(2807)] = 139346, + [SMALL_STATE(2808)] = 139359, + [SMALL_STATE(2809)] = 139384, + [SMALL_STATE(2810)] = 139403, + [SMALL_STATE(2811)] = 139420, + [SMALL_STATE(2812)] = 139445, + [SMALL_STATE(2813)] = 139470, + [SMALL_STATE(2814)] = 139489, + [SMALL_STATE(2815)] = 139510, + [SMALL_STATE(2816)] = 139535, + [SMALL_STATE(2817)] = 139548, + [SMALL_STATE(2818)] = 139565, + [SMALL_STATE(2819)] = 139590, + [SMALL_STATE(2820)] = 139615, + [SMALL_STATE(2821)] = 139634, + [SMALL_STATE(2822)] = 139653, + [SMALL_STATE(2823)] = 139666, + [SMALL_STATE(2824)] = 139685, + [SMALL_STATE(2825)] = 139710, + [SMALL_STATE(2826)] = 139735, + [SMALL_STATE(2827)] = 139754, + [SMALL_STATE(2828)] = 139779, + [SMALL_STATE(2829)] = 139800, + [SMALL_STATE(2830)] = 139817, + [SMALL_STATE(2831)] = 139842, + [SMALL_STATE(2832)] = 139859, + [SMALL_STATE(2833)] = 139884, + [SMALL_STATE(2834)] = 139909, + [SMALL_STATE(2835)] = 139922, + [SMALL_STATE(2836)] = 139935, + [SMALL_STATE(2837)] = 139960, + [SMALL_STATE(2838)] = 139973, + [SMALL_STATE(2839)] = 139986, + [SMALL_STATE(2840)] = 139999, + [SMALL_STATE(2841)] = 140012, + [SMALL_STATE(2842)] = 140029, + [SMALL_STATE(2843)] = 140046, + [SMALL_STATE(2844)] = 140059, + [SMALL_STATE(2845)] = 140074, + [SMALL_STATE(2846)] = 140087, + [SMALL_STATE(2847)] = 140102, + [SMALL_STATE(2848)] = 140115, + [SMALL_STATE(2849)] = 140130, + [SMALL_STATE(2850)] = 140155, + [SMALL_STATE(2851)] = 140180, + [SMALL_STATE(2852)] = 140193, + [SMALL_STATE(2853)] = 140206, + [SMALL_STATE(2854)] = 140219, + [SMALL_STATE(2855)] = 140232, + [SMALL_STATE(2856)] = 140257, + [SMALL_STATE(2857)] = 140282, + [SMALL_STATE(2858)] = 140295, + [SMALL_STATE(2859)] = 140320, + [SMALL_STATE(2860)] = 140345, + [SMALL_STATE(2861)] = 140362, + [SMALL_STATE(2862)] = 140379, + [SMALL_STATE(2863)] = 140404, + [SMALL_STATE(2864)] = 140417, + [SMALL_STATE(2865)] = 140430, + [SMALL_STATE(2866)] = 140443, + [SMALL_STATE(2867)] = 140460, + [SMALL_STATE(2868)] = 140477, + [SMALL_STATE(2869)] = 140496, + [SMALL_STATE(2870)] = 140513, + [SMALL_STATE(2871)] = 140530, + [SMALL_STATE(2872)] = 140547, + [SMALL_STATE(2873)] = 140564, + [SMALL_STATE(2874)] = 140581, + [SMALL_STATE(2875)] = 140602, + [SMALL_STATE(2876)] = 140623, + [SMALL_STATE(2877)] = 140636, + [SMALL_STATE(2878)] = 140655, + [SMALL_STATE(2879)] = 140672, + [SMALL_STATE(2880)] = 140685, + [SMALL_STATE(2881)] = 140698, + [SMALL_STATE(2882)] = 140711, + [SMALL_STATE(2883)] = 140724, + [SMALL_STATE(2884)] = 140747, + [SMALL_STATE(2885)] = 140760, + [SMALL_STATE(2886)] = 140785, + [SMALL_STATE(2887)] = 140810, + [SMALL_STATE(2888)] = 140835, + [SMALL_STATE(2889)] = 140860, + [SMALL_STATE(2890)] = 140879, + [SMALL_STATE(2891)] = 140898, + [SMALL_STATE(2892)] = 140923, + [SMALL_STATE(2893)] = 140935, + [SMALL_STATE(2894)] = 140957, + [SMALL_STATE(2895)] = 140975, + [SMALL_STATE(2896)] = 140987, + [SMALL_STATE(2897)] = 141005, + [SMALL_STATE(2898)] = 141027, + [SMALL_STATE(2899)] = 141045, + [SMALL_STATE(2900)] = 141063, + [SMALL_STATE(2901)] = 141085, + [SMALL_STATE(2902)] = 141105, + [SMALL_STATE(2903)] = 141121, + [SMALL_STATE(2904)] = 141137, + [SMALL_STATE(2905)] = 141155, + [SMALL_STATE(2906)] = 141177, + [SMALL_STATE(2907)] = 141199, + [SMALL_STATE(2908)] = 141221, + [SMALL_STATE(2909)] = 141243, + [SMALL_STATE(2910)] = 141261, + [SMALL_STATE(2911)] = 141283, + [SMALL_STATE(2912)] = 141299, + [SMALL_STATE(2913)] = 141317, + [SMALL_STATE(2914)] = 141333, + [SMALL_STATE(2915)] = 141351, + [SMALL_STATE(2916)] = 141373, + [SMALL_STATE(2917)] = 141389, + [SMALL_STATE(2918)] = 141405, + [SMALL_STATE(2919)] = 141419, + [SMALL_STATE(2920)] = 141441, + [SMALL_STATE(2921)] = 141461, + [SMALL_STATE(2922)] = 141477, + [SMALL_STATE(2923)] = 141497, + [SMALL_STATE(2924)] = 141513, + [SMALL_STATE(2925)] = 141535, + [SMALL_STATE(2926)] = 141557, + [SMALL_STATE(2927)] = 141579, + [SMALL_STATE(2928)] = 141599, + [SMALL_STATE(2929)] = 141617, + [SMALL_STATE(2930)] = 141633, + [SMALL_STATE(2931)] = 141655, + [SMALL_STATE(2932)] = 141675, + [SMALL_STATE(2933)] = 141693, + [SMALL_STATE(2934)] = 141713, + [SMALL_STATE(2935)] = 141735, + [SMALL_STATE(2936)] = 141751, + [SMALL_STATE(2937)] = 141771, + [SMALL_STATE(2938)] = 141789, + [SMALL_STATE(2939)] = 141811, + [SMALL_STATE(2940)] = 141833, + [SMALL_STATE(2941)] = 141849, + [SMALL_STATE(2942)] = 141865, + [SMALL_STATE(2943)] = 141883, + [SMALL_STATE(2944)] = 141905, + [SMALL_STATE(2945)] = 141921, + [SMALL_STATE(2946)] = 141937, + [SMALL_STATE(2947)] = 141959, + [SMALL_STATE(2948)] = 141977, + [SMALL_STATE(2949)] = 141999, + [SMALL_STATE(2950)] = 142017, + [SMALL_STATE(2951)] = 142037, + [SMALL_STATE(2952)] = 142057, + [SMALL_STATE(2953)] = 142079, + [SMALL_STATE(2954)] = 142099, + [SMALL_STATE(2955)] = 142119, + [SMALL_STATE(2956)] = 142141, + [SMALL_STATE(2957)] = 142161, + [SMALL_STATE(2958)] = 142183, + [SMALL_STATE(2959)] = 142205, + [SMALL_STATE(2960)] = 142225, + [SMALL_STATE(2961)] = 142245, + [SMALL_STATE(2962)] = 142263, + [SMALL_STATE(2963)] = 142283, + [SMALL_STATE(2964)] = 142303, + [SMALL_STATE(2965)] = 142321, + [SMALL_STATE(2966)] = 142341, + [SMALL_STATE(2967)] = 142357, + [SMALL_STATE(2968)] = 142379, + [SMALL_STATE(2969)] = 142397, + [SMALL_STATE(2970)] = 142419, + [SMALL_STATE(2971)] = 142439, + [SMALL_STATE(2972)] = 142459, + [SMALL_STATE(2973)] = 142481, + [SMALL_STATE(2974)] = 142499, + [SMALL_STATE(2975)] = 142515, + [SMALL_STATE(2976)] = 142531, + [SMALL_STATE(2977)] = 142551, + [SMALL_STATE(2978)] = 142571, + [SMALL_STATE(2979)] = 142591, + [SMALL_STATE(2980)] = 142613, + [SMALL_STATE(2981)] = 142635, + [SMALL_STATE(2982)] = 142657, + [SMALL_STATE(2983)] = 142673, + [SMALL_STATE(2984)] = 142693, + [SMALL_STATE(2985)] = 142709, + [SMALL_STATE(2986)] = 142725, + [SMALL_STATE(2987)] = 142743, + [SMALL_STATE(2988)] = 142759, + [SMALL_STATE(2989)] = 142777, + [SMALL_STATE(2990)] = 142799, + [SMALL_STATE(2991)] = 142821, + [SMALL_STATE(2992)] = 142837, + [SMALL_STATE(2993)] = 142855, + [SMALL_STATE(2994)] = 142877, + [SMALL_STATE(2995)] = 142899, + [SMALL_STATE(2996)] = 142921, + [SMALL_STATE(2997)] = 142937, + [SMALL_STATE(2998)] = 142955, + [SMALL_STATE(2999)] = 142975, + [SMALL_STATE(3000)] = 142997, + [SMALL_STATE(3001)] = 143019, + [SMALL_STATE(3002)] = 143035, + [SMALL_STATE(3003)] = 143053, + [SMALL_STATE(3004)] = 143071, + [SMALL_STATE(3005)] = 143085, + [SMALL_STATE(3006)] = 143107, + [SMALL_STATE(3007)] = 143119, + [SMALL_STATE(3008)] = 143141, + [SMALL_STATE(3009)] = 143159, + [SMALL_STATE(3010)] = 143177, + [SMALL_STATE(3011)] = 143195, + [SMALL_STATE(3012)] = 143217, + [SMALL_STATE(3013)] = 143239, + [SMALL_STATE(3014)] = 143261, + [SMALL_STATE(3015)] = 143283, + [SMALL_STATE(3016)] = 143303, + [SMALL_STATE(3017)] = 143325, + [SMALL_STATE(3018)] = 143347, + [SMALL_STATE(3019)] = 143363, + [SMALL_STATE(3020)] = 143381, + [SMALL_STATE(3021)] = 143399, + [SMALL_STATE(3022)] = 143421, + [SMALL_STATE(3023)] = 143439, + [SMALL_STATE(3024)] = 143461, + [SMALL_STATE(3025)] = 143479, + [SMALL_STATE(3026)] = 143501, + [SMALL_STATE(3027)] = 143523, + [SMALL_STATE(3028)] = 143545, + [SMALL_STATE(3029)] = 143557, + [SMALL_STATE(3030)] = 143579, + [SMALL_STATE(3031)] = 143591, + [SMALL_STATE(3032)] = 143607, + [SMALL_STATE(3033)] = 143629, + [SMALL_STATE(3034)] = 143647, + [SMALL_STATE(3035)] = 143663, + [SMALL_STATE(3036)] = 143685, + [SMALL_STATE(3037)] = 143705, + [SMALL_STATE(3038)] = 143721, + [SMALL_STATE(3039)] = 143743, + [SMALL_STATE(3040)] = 143759, + [SMALL_STATE(3041)] = 143775, + [SMALL_STATE(3042)] = 143791, + [SMALL_STATE(3043)] = 143802, + [SMALL_STATE(3044)] = 143813, + [SMALL_STATE(3045)] = 143832, + [SMALL_STATE(3046)] = 143843, + [SMALL_STATE(3047)] = 143854, + [SMALL_STATE(3048)] = 143865, + [SMALL_STATE(3049)] = 143880, + [SMALL_STATE(3050)] = 143891, + [SMALL_STATE(3051)] = 143902, + [SMALL_STATE(3052)] = 143917, + [SMALL_STATE(3053)] = 143936, + [SMALL_STATE(3054)] = 143947, + [SMALL_STATE(3055)] = 143966, + [SMALL_STATE(3056)] = 143985, + [SMALL_STATE(3057)] = 144004, + [SMALL_STATE(3058)] = 144015, + [SMALL_STATE(3059)] = 144034, + [SMALL_STATE(3060)] = 144049, + [SMALL_STATE(3061)] = 144060, + [SMALL_STATE(3062)] = 144075, + [SMALL_STATE(3063)] = 144086, + [SMALL_STATE(3064)] = 144097, + [SMALL_STATE(3065)] = 144108, + [SMALL_STATE(3066)] = 144123, + [SMALL_STATE(3067)] = 144134, + [SMALL_STATE(3068)] = 144145, + [SMALL_STATE(3069)] = 144156, + [SMALL_STATE(3070)] = 144167, + [SMALL_STATE(3071)] = 144178, + [SMALL_STATE(3072)] = 144195, + [SMALL_STATE(3073)] = 144206, + [SMALL_STATE(3074)] = 144217, + [SMALL_STATE(3075)] = 144228, + [SMALL_STATE(3076)] = 144239, + [SMALL_STATE(3077)] = 144252, + [SMALL_STATE(3078)] = 144263, + [SMALL_STATE(3079)] = 144282, + [SMALL_STATE(3080)] = 144301, + [SMALL_STATE(3081)] = 144316, + [SMALL_STATE(3082)] = 144335, + [SMALL_STATE(3083)] = 144350, + [SMALL_STATE(3084)] = 144369, + [SMALL_STATE(3085)] = 144380, + [SMALL_STATE(3086)] = 144391, + [SMALL_STATE(3087)] = 144408, + [SMALL_STATE(3088)] = 144423, + [SMALL_STATE(3089)] = 144442, + [SMALL_STATE(3090)] = 144459, + [SMALL_STATE(3091)] = 144478, + [SMALL_STATE(3092)] = 144495, + [SMALL_STATE(3093)] = 144506, + [SMALL_STATE(3094)] = 144521, + [SMALL_STATE(3095)] = 144532, + [SMALL_STATE(3096)] = 144549, + [SMALL_STATE(3097)] = 144568, + [SMALL_STATE(3098)] = 144583, + [SMALL_STATE(3099)] = 144594, + [SMALL_STATE(3100)] = 144613, + [SMALL_STATE(3101)] = 144624, + [SMALL_STATE(3102)] = 144643, + [SMALL_STATE(3103)] = 144662, + [SMALL_STATE(3104)] = 144681, + [SMALL_STATE(3105)] = 144692, + [SMALL_STATE(3106)] = 144703, + [SMALL_STATE(3107)] = 144720, + [SMALL_STATE(3108)] = 144739, + [SMALL_STATE(3109)] = 144758, + [SMALL_STATE(3110)] = 144777, + [SMALL_STATE(3111)] = 144796, + [SMALL_STATE(3112)] = 144813, + [SMALL_STATE(3113)] = 144832, + [SMALL_STATE(3114)] = 144847, + [SMALL_STATE(3115)] = 144858, + [SMALL_STATE(3116)] = 144875, + [SMALL_STATE(3117)] = 144894, + [SMALL_STATE(3118)] = 144905, + [SMALL_STATE(3119)] = 144916, + [SMALL_STATE(3120)] = 144935, + [SMALL_STATE(3121)] = 144954, + [SMALL_STATE(3122)] = 144973, + [SMALL_STATE(3123)] = 144988, + [SMALL_STATE(3124)] = 144999, + [SMALL_STATE(3125)] = 145014, + [SMALL_STATE(3126)] = 145029, + [SMALL_STATE(3127)] = 145040, + [SMALL_STATE(3128)] = 145051, + [SMALL_STATE(3129)] = 145066, + [SMALL_STATE(3130)] = 145085, + [SMALL_STATE(3131)] = 145100, + [SMALL_STATE(3132)] = 145119, + [SMALL_STATE(3133)] = 145130, + [SMALL_STATE(3134)] = 145145, + [SMALL_STATE(3135)] = 145162, + [SMALL_STATE(3136)] = 145181, + [SMALL_STATE(3137)] = 145200, + [SMALL_STATE(3138)] = 145217, + [SMALL_STATE(3139)] = 145232, + [SMALL_STATE(3140)] = 145247, + [SMALL_STATE(3141)] = 145266, + [SMALL_STATE(3142)] = 145277, + [SMALL_STATE(3143)] = 145288, + [SMALL_STATE(3144)] = 145299, + [SMALL_STATE(3145)] = 145310, + [SMALL_STATE(3146)] = 145329, + [SMALL_STATE(3147)] = 145348, + [SMALL_STATE(3148)] = 145363, + [SMALL_STATE(3149)] = 145374, + [SMALL_STATE(3150)] = 145385, + [SMALL_STATE(3151)] = 145404, + [SMALL_STATE(3152)] = 145415, + [SMALL_STATE(3153)] = 145426, + [SMALL_STATE(3154)] = 145439, + [SMALL_STATE(3155)] = 145450, + [SMALL_STATE(3156)] = 145467, + [SMALL_STATE(3157)] = 145478, + [SMALL_STATE(3158)] = 145489, + [SMALL_STATE(3159)] = 145506, + [SMALL_STATE(3160)] = 145525, + [SMALL_STATE(3161)] = 145544, + [SMALL_STATE(3162)] = 145555, + [SMALL_STATE(3163)] = 145566, + [SMALL_STATE(3164)] = 145577, + [SMALL_STATE(3165)] = 145588, + [SMALL_STATE(3166)] = 145599, + [SMALL_STATE(3167)] = 145618, + [SMALL_STATE(3168)] = 145629, + [SMALL_STATE(3169)] = 145648, + [SMALL_STATE(3170)] = 145659, + [SMALL_STATE(3171)] = 145670, + [SMALL_STATE(3172)] = 145681, + [SMALL_STATE(3173)] = 145692, + [SMALL_STATE(3174)] = 145703, + [SMALL_STATE(3175)] = 145714, + [SMALL_STATE(3176)] = 145725, + [SMALL_STATE(3177)] = 145736, + [SMALL_STATE(3178)] = 145751, + [SMALL_STATE(3179)] = 145766, + [SMALL_STATE(3180)] = 145781, + [SMALL_STATE(3181)] = 145800, + [SMALL_STATE(3182)] = 145819, + [SMALL_STATE(3183)] = 145834, + [SMALL_STATE(3184)] = 145845, + [SMALL_STATE(3185)] = 145856, + [SMALL_STATE(3186)] = 145867, + [SMALL_STATE(3187)] = 145882, + [SMALL_STATE(3188)] = 145893, + [SMALL_STATE(3189)] = 145904, + [SMALL_STATE(3190)] = 145915, + [SMALL_STATE(3191)] = 145926, + [SMALL_STATE(3192)] = 145937, + [SMALL_STATE(3193)] = 145950, + [SMALL_STATE(3194)] = 145963, + [SMALL_STATE(3195)] = 145978, + [SMALL_STATE(3196)] = 145989, + [SMALL_STATE(3197)] = 146004, + [SMALL_STATE(3198)] = 146015, + [SMALL_STATE(3199)] = 146026, + [SMALL_STATE(3200)] = 146041, + [SMALL_STATE(3201)] = 146060, + [SMALL_STATE(3202)] = 146075, + [SMALL_STATE(3203)] = 146086, + [SMALL_STATE(3204)] = 146105, + [SMALL_STATE(3205)] = 146120, + [SMALL_STATE(3206)] = 146137, + [SMALL_STATE(3207)] = 146148, + [SMALL_STATE(3208)] = 146167, + [SMALL_STATE(3209)] = 146178, + [SMALL_STATE(3210)] = 146189, + [SMALL_STATE(3211)] = 146204, + [SMALL_STATE(3212)] = 146215, + [SMALL_STATE(3213)] = 146230, + [SMALL_STATE(3214)] = 146241, + [SMALL_STATE(3215)] = 146252, + [SMALL_STATE(3216)] = 146267, + [SMALL_STATE(3217)] = 146278, + [SMALL_STATE(3218)] = 146295, + [SMALL_STATE(3219)] = 146310, + [SMALL_STATE(3220)] = 146321, + [SMALL_STATE(3221)] = 146336, + [SMALL_STATE(3222)] = 146347, + [SMALL_STATE(3223)] = 146360, + [SMALL_STATE(3224)] = 146371, + [SMALL_STATE(3225)] = 146382, + [SMALL_STATE(3226)] = 146397, + [SMALL_STATE(3227)] = 146416, + [SMALL_STATE(3228)] = 146431, + [SMALL_STATE(3229)] = 146446, + [SMALL_STATE(3230)] = 146465, + [SMALL_STATE(3231)] = 146480, + [SMALL_STATE(3232)] = 146495, + [SMALL_STATE(3233)] = 146514, + [SMALL_STATE(3234)] = 146529, + [SMALL_STATE(3235)] = 146540, + [SMALL_STATE(3236)] = 146555, + [SMALL_STATE(3237)] = 146566, + [SMALL_STATE(3238)] = 146581, + [SMALL_STATE(3239)] = 146592, + [SMALL_STATE(3240)] = 146603, + [SMALL_STATE(3241)] = 146614, + [SMALL_STATE(3242)] = 146633, + [SMALL_STATE(3243)] = 146644, + [SMALL_STATE(3244)] = 146655, + [SMALL_STATE(3245)] = 146672, + [SMALL_STATE(3246)] = 146689, + [SMALL_STATE(3247)] = 146708, + [SMALL_STATE(3248)] = 146727, + [SMALL_STATE(3249)] = 146738, + [SMALL_STATE(3250)] = 146749, + [SMALL_STATE(3251)] = 146762, + [SMALL_STATE(3252)] = 146777, + [SMALL_STATE(3253)] = 146788, + [SMALL_STATE(3254)] = 146803, + [SMALL_STATE(3255)] = 146814, + [SMALL_STATE(3256)] = 146833, + [SMALL_STATE(3257)] = 146852, + [SMALL_STATE(3258)] = 146867, + [SMALL_STATE(3259)] = 146878, + [SMALL_STATE(3260)] = 146897, + [SMALL_STATE(3261)] = 146916, + [SMALL_STATE(3262)] = 146927, + [SMALL_STATE(3263)] = 146942, + [SMALL_STATE(3264)] = 146957, + [SMALL_STATE(3265)] = 146968, + [SMALL_STATE(3266)] = 146987, + [SMALL_STATE(3267)] = 147006, + [SMALL_STATE(3268)] = 147017, + [SMALL_STATE(3269)] = 147028, + [SMALL_STATE(3270)] = 147039, + [SMALL_STATE(3271)] = 147050, + [SMALL_STATE(3272)] = 147065, + [SMALL_STATE(3273)] = 147076, + [SMALL_STATE(3274)] = 147095, + [SMALL_STATE(3275)] = 147106, + [SMALL_STATE(3276)] = 147117, + [SMALL_STATE(3277)] = 147134, + [SMALL_STATE(3278)] = 147145, + [SMALL_STATE(3279)] = 147156, + [SMALL_STATE(3280)] = 147175, + [SMALL_STATE(3281)] = 147190, + [SMALL_STATE(3282)] = 147205, + [SMALL_STATE(3283)] = 147216, + [SMALL_STATE(3284)] = 147231, + [SMALL_STATE(3285)] = 147250, + [SMALL_STATE(3286)] = 147265, + [SMALL_STATE(3287)] = 147284, + [SMALL_STATE(3288)] = 147299, + [SMALL_STATE(3289)] = 147314, + [SMALL_STATE(3290)] = 147325, + [SMALL_STATE(3291)] = 147336, + [SMALL_STATE(3292)] = 147355, + [SMALL_STATE(3293)] = 147366, + [SMALL_STATE(3294)] = 147377, + [SMALL_STATE(3295)] = 147388, + [SMALL_STATE(3296)] = 147399, + [SMALL_STATE(3297)] = 147418, + [SMALL_STATE(3298)] = 147437, + [SMALL_STATE(3299)] = 147448, + [SMALL_STATE(3300)] = 147459, + [SMALL_STATE(3301)] = 147476, + [SMALL_STATE(3302)] = 147493, + [SMALL_STATE(3303)] = 147504, + [SMALL_STATE(3304)] = 147515, + [SMALL_STATE(3305)] = 147526, + [SMALL_STATE(3306)] = 147537, + [SMALL_STATE(3307)] = 147553, + [SMALL_STATE(3308)] = 147567, + [SMALL_STATE(3309)] = 147581, + [SMALL_STATE(3310)] = 147597, + [SMALL_STATE(3311)] = 147613, + [SMALL_STATE(3312)] = 147629, + [SMALL_STATE(3313)] = 147645, + [SMALL_STATE(3314)] = 147657, + [SMALL_STATE(3315)] = 147673, + [SMALL_STATE(3316)] = 147687, + [SMALL_STATE(3317)] = 147703, + [SMALL_STATE(3318)] = 147719, + [SMALL_STATE(3319)] = 147733, + [SMALL_STATE(3320)] = 147749, + [SMALL_STATE(3321)] = 147765, + [SMALL_STATE(3322)] = 147781, + [SMALL_STATE(3323)] = 147797, + [SMALL_STATE(3324)] = 147813, + [SMALL_STATE(3325)] = 147829, + [SMALL_STATE(3326)] = 147845, + [SMALL_STATE(3327)] = 147859, + [SMALL_STATE(3328)] = 147873, + [SMALL_STATE(3329)] = 147887, + [SMALL_STATE(3330)] = 147901, + [SMALL_STATE(3331)] = 147915, + [SMALL_STATE(3332)] = 147927, + [SMALL_STATE(3333)] = 147941, + [SMALL_STATE(3334)] = 147957, + [SMALL_STATE(3335)] = 147973, + [SMALL_STATE(3336)] = 147989, + [SMALL_STATE(3337)] = 148005, + [SMALL_STATE(3338)] = 148021, + [SMALL_STATE(3339)] = 148037, + [SMALL_STATE(3340)] = 148051, + [SMALL_STATE(3341)] = 148061, + [SMALL_STATE(3342)] = 148077, + [SMALL_STATE(3343)] = 148091, + [SMALL_STATE(3344)] = 148103, + [SMALL_STATE(3345)] = 148117, + [SMALL_STATE(3346)] = 148131, + [SMALL_STATE(3347)] = 148147, + [SMALL_STATE(3348)] = 148161, + [SMALL_STATE(3349)] = 148175, + [SMALL_STATE(3350)] = 148189, + [SMALL_STATE(3351)] = 148203, + [SMALL_STATE(3352)] = 148219, + [SMALL_STATE(3353)] = 148235, + [SMALL_STATE(3354)] = 148251, + [SMALL_STATE(3355)] = 148265, + [SMALL_STATE(3356)] = 148279, + [SMALL_STATE(3357)] = 148293, + [SMALL_STATE(3358)] = 148307, + [SMALL_STATE(3359)] = 148323, + [SMALL_STATE(3360)] = 148337, + [SMALL_STATE(3361)] = 148351, + [SMALL_STATE(3362)] = 148367, + [SMALL_STATE(3363)] = 148381, + [SMALL_STATE(3364)] = 148395, + [SMALL_STATE(3365)] = 148409, + [SMALL_STATE(3366)] = 148423, + [SMALL_STATE(3367)] = 148437, + [SMALL_STATE(3368)] = 148453, + [SMALL_STATE(3369)] = 148469, + [SMALL_STATE(3370)] = 148485, + [SMALL_STATE(3371)] = 148501, + [SMALL_STATE(3372)] = 148515, + [SMALL_STATE(3373)] = 148529, + [SMALL_STATE(3374)] = 148543, + [SMALL_STATE(3375)] = 148559, + [SMALL_STATE(3376)] = 148575, + [SMALL_STATE(3377)] = 148591, + [SMALL_STATE(3378)] = 148607, + [SMALL_STATE(3379)] = 148623, + [SMALL_STATE(3380)] = 148637, + [SMALL_STATE(3381)] = 148653, + [SMALL_STATE(3382)] = 148667, + [SMALL_STATE(3383)] = 148683, + [SMALL_STATE(3384)] = 148699, + [SMALL_STATE(3385)] = 148715, + [SMALL_STATE(3386)] = 148731, + [SMALL_STATE(3387)] = 148745, + [SMALL_STATE(3388)] = 148761, + [SMALL_STATE(3389)] = 148777, + [SMALL_STATE(3390)] = 148793, + [SMALL_STATE(3391)] = 148807, + [SMALL_STATE(3392)] = 148823, + [SMALL_STATE(3393)] = 148839, + [SMALL_STATE(3394)] = 148855, + [SMALL_STATE(3395)] = 148871, + [SMALL_STATE(3396)] = 148887, + [SMALL_STATE(3397)] = 148903, + [SMALL_STATE(3398)] = 148917, + [SMALL_STATE(3399)] = 148933, + [SMALL_STATE(3400)] = 148949, + [SMALL_STATE(3401)] = 148961, + [SMALL_STATE(3402)] = 148977, + [SMALL_STATE(3403)] = 148993, + [SMALL_STATE(3404)] = 149007, + [SMALL_STATE(3405)] = 149021, + [SMALL_STATE(3406)] = 149035, + [SMALL_STATE(3407)] = 149051, + [SMALL_STATE(3408)] = 149067, + [SMALL_STATE(3409)] = 149083, + [SMALL_STATE(3410)] = 149099, + [SMALL_STATE(3411)] = 149113, + [SMALL_STATE(3412)] = 149129, + [SMALL_STATE(3413)] = 149145, + [SMALL_STATE(3414)] = 149161, + [SMALL_STATE(3415)] = 149173, + [SMALL_STATE(3416)] = 149189, + [SMALL_STATE(3417)] = 149203, + [SMALL_STATE(3418)] = 149219, + [SMALL_STATE(3419)] = 149235, + [SMALL_STATE(3420)] = 149251, + [SMALL_STATE(3421)] = 149267, + [SMALL_STATE(3422)] = 149281, + [SMALL_STATE(3423)] = 149297, + [SMALL_STATE(3424)] = 149313, + [SMALL_STATE(3425)] = 149329, + [SMALL_STATE(3426)] = 149345, + [SMALL_STATE(3427)] = 149361, + [SMALL_STATE(3428)] = 149377, + [SMALL_STATE(3429)] = 149393, + [SMALL_STATE(3430)] = 149409, + [SMALL_STATE(3431)] = 149425, + [SMALL_STATE(3432)] = 149441, + [SMALL_STATE(3433)] = 149457, + [SMALL_STATE(3434)] = 149471, + [SMALL_STATE(3435)] = 149485, + [SMALL_STATE(3436)] = 149501, + [SMALL_STATE(3437)] = 149515, + [SMALL_STATE(3438)] = 149529, + [SMALL_STATE(3439)] = 149545, + [SMALL_STATE(3440)] = 149561, + [SMALL_STATE(3441)] = 149577, + [SMALL_STATE(3442)] = 149591, + [SMALL_STATE(3443)] = 149603, + [SMALL_STATE(3444)] = 149617, + [SMALL_STATE(3445)] = 149633, + [SMALL_STATE(3446)] = 149649, + [SMALL_STATE(3447)] = 149665, + [SMALL_STATE(3448)] = 149681, + [SMALL_STATE(3449)] = 149697, + [SMALL_STATE(3450)] = 149713, + [SMALL_STATE(3451)] = 149729, + [SMALL_STATE(3452)] = 149745, + [SMALL_STATE(3453)] = 149761, + [SMALL_STATE(3454)] = 149777, + [SMALL_STATE(3455)] = 149789, + [SMALL_STATE(3456)] = 149803, + [SMALL_STATE(3457)] = 149817, + [SMALL_STATE(3458)] = 149833, + [SMALL_STATE(3459)] = 149849, + [SMALL_STATE(3460)] = 149861, + [SMALL_STATE(3461)] = 149877, + [SMALL_STATE(3462)] = 149893, + [SMALL_STATE(3463)] = 149909, + [SMALL_STATE(3464)] = 149925, + [SMALL_STATE(3465)] = 149941, + [SMALL_STATE(3466)] = 149957, + [SMALL_STATE(3467)] = 149973, + [SMALL_STATE(3468)] = 149989, + [SMALL_STATE(3469)] = 150005, + [SMALL_STATE(3470)] = 150021, + [SMALL_STATE(3471)] = 150035, + [SMALL_STATE(3472)] = 150051, + [SMALL_STATE(3473)] = 150065, + [SMALL_STATE(3474)] = 150079, + [SMALL_STATE(3475)] = 150093, + [SMALL_STATE(3476)] = 150109, + [SMALL_STATE(3477)] = 150119, + [SMALL_STATE(3478)] = 150129, + [SMALL_STATE(3479)] = 150143, + [SMALL_STATE(3480)] = 150159, + [SMALL_STATE(3481)] = 150175, + [SMALL_STATE(3482)] = 150191, + [SMALL_STATE(3483)] = 150207, + [SMALL_STATE(3484)] = 150223, + [SMALL_STATE(3485)] = 150237, + [SMALL_STATE(3486)] = 150253, + [SMALL_STATE(3487)] = 150267, + [SMALL_STATE(3488)] = 150283, + [SMALL_STATE(3489)] = 150299, + [SMALL_STATE(3490)] = 150315, + [SMALL_STATE(3491)] = 150331, + [SMALL_STATE(3492)] = 150345, + [SMALL_STATE(3493)] = 150359, + [SMALL_STATE(3494)] = 150373, + [SMALL_STATE(3495)] = 150389, + [SMALL_STATE(3496)] = 150405, + [SMALL_STATE(3497)] = 150415, + [SMALL_STATE(3498)] = 150431, + [SMALL_STATE(3499)] = 150447, + [SMALL_STATE(3500)] = 150463, + [SMALL_STATE(3501)] = 150473, + [SMALL_STATE(3502)] = 150489, + [SMALL_STATE(3503)] = 150503, + [SMALL_STATE(3504)] = 150519, + [SMALL_STATE(3505)] = 150533, + [SMALL_STATE(3506)] = 150549, + [SMALL_STATE(3507)] = 150565, + [SMALL_STATE(3508)] = 150581, + [SMALL_STATE(3509)] = 150597, + [SMALL_STATE(3510)] = 150613, + [SMALL_STATE(3511)] = 150627, + [SMALL_STATE(3512)] = 150643, + [SMALL_STATE(3513)] = 150659, + [SMALL_STATE(3514)] = 150673, + [SMALL_STATE(3515)] = 150689, + [SMALL_STATE(3516)] = 150705, + [SMALL_STATE(3517)] = 150721, + [SMALL_STATE(3518)] = 150737, + [SMALL_STATE(3519)] = 150751, + [SMALL_STATE(3520)] = 150765, + [SMALL_STATE(3521)] = 150781, + [SMALL_STATE(3522)] = 150793, + [SMALL_STATE(3523)] = 150807, + [SMALL_STATE(3524)] = 150821, + [SMALL_STATE(3525)] = 150837, + [SMALL_STATE(3526)] = 150851, + [SMALL_STATE(3527)] = 150867, + [SMALL_STATE(3528)] = 150883, + [SMALL_STATE(3529)] = 150897, + [SMALL_STATE(3530)] = 150913, + [SMALL_STATE(3531)] = 150927, + [SMALL_STATE(3532)] = 150941, + [SMALL_STATE(3533)] = 150957, + [SMALL_STATE(3534)] = 150970, + [SMALL_STATE(3535)] = 150983, + [SMALL_STATE(3536)] = 150996, + [SMALL_STATE(3537)] = 151009, + [SMALL_STATE(3538)] = 151022, + [SMALL_STATE(3539)] = 151035, + [SMALL_STATE(3540)] = 151048, + [SMALL_STATE(3541)] = 151057, + [SMALL_STATE(3542)] = 151068, + [SMALL_STATE(3543)] = 151077, + [SMALL_STATE(3544)] = 151088, + [SMALL_STATE(3545)] = 151101, + [SMALL_STATE(3546)] = 151114, + [SMALL_STATE(3547)] = 151127, + [SMALL_STATE(3548)] = 151140, + [SMALL_STATE(3549)] = 151153, + [SMALL_STATE(3550)] = 151166, + [SMALL_STATE(3551)] = 151179, + [SMALL_STATE(3552)] = 151192, + [SMALL_STATE(3553)] = 151205, + [SMALL_STATE(3554)] = 151218, + [SMALL_STATE(3555)] = 151229, + [SMALL_STATE(3556)] = 151238, + [SMALL_STATE(3557)] = 151251, + [SMALL_STATE(3558)] = 151264, + [SMALL_STATE(3559)] = 151273, + [SMALL_STATE(3560)] = 151286, + [SMALL_STATE(3561)] = 151295, + [SMALL_STATE(3562)] = 151308, + [SMALL_STATE(3563)] = 151321, + [SMALL_STATE(3564)] = 151334, + [SMALL_STATE(3565)] = 151343, + [SMALL_STATE(3566)] = 151356, + [SMALL_STATE(3567)] = 151369, + [SMALL_STATE(3568)] = 151382, + [SMALL_STATE(3569)] = 151395, + [SMALL_STATE(3570)] = 151408, + [SMALL_STATE(3571)] = 151421, + [SMALL_STATE(3572)] = 151434, + [SMALL_STATE(3573)] = 151447, + [SMALL_STATE(3574)] = 151460, + [SMALL_STATE(3575)] = 151473, + [SMALL_STATE(3576)] = 151484, + [SMALL_STATE(3577)] = 151497, + [SMALL_STATE(3578)] = 151510, + [SMALL_STATE(3579)] = 151523, + [SMALL_STATE(3580)] = 151534, + [SMALL_STATE(3581)] = 151547, + [SMALL_STATE(3582)] = 151560, + [SMALL_STATE(3583)] = 151571, + [SMALL_STATE(3584)] = 151584, + [SMALL_STATE(3585)] = 151597, + [SMALL_STATE(3586)] = 151610, + [SMALL_STATE(3587)] = 151621, + [SMALL_STATE(3588)] = 151632, + [SMALL_STATE(3589)] = 151645, + [SMALL_STATE(3590)] = 151658, + [SMALL_STATE(3591)] = 151667, + [SMALL_STATE(3592)] = 151678, + [SMALL_STATE(3593)] = 151691, + [SMALL_STATE(3594)] = 151704, + [SMALL_STATE(3595)] = 151717, + [SMALL_STATE(3596)] = 151730, + [SMALL_STATE(3597)] = 151741, + [SMALL_STATE(3598)] = 151754, + [SMALL_STATE(3599)] = 151767, + [SMALL_STATE(3600)] = 151776, + [SMALL_STATE(3601)] = 151789, + [SMALL_STATE(3602)] = 151802, + [SMALL_STATE(3603)] = 151815, + [SMALL_STATE(3604)] = 151828, + [SMALL_STATE(3605)] = 151841, + [SMALL_STATE(3606)] = 151854, + [SMALL_STATE(3607)] = 151867, + [SMALL_STATE(3608)] = 151878, + [SMALL_STATE(3609)] = 151887, + [SMALL_STATE(3610)] = 151896, + [SMALL_STATE(3611)] = 151905, + [SMALL_STATE(3612)] = 151918, + [SMALL_STATE(3613)] = 151931, + [SMALL_STATE(3614)] = 151944, + [SMALL_STATE(3615)] = 151953, + [SMALL_STATE(3616)] = 151962, + [SMALL_STATE(3617)] = 151971, + [SMALL_STATE(3618)] = 151984, + [SMALL_STATE(3619)] = 151993, + [SMALL_STATE(3620)] = 152006, + [SMALL_STATE(3621)] = 152019, + [SMALL_STATE(3622)] = 152032, + [SMALL_STATE(3623)] = 152045, + [SMALL_STATE(3624)] = 152054, + [SMALL_STATE(3625)] = 152067, + [SMALL_STATE(3626)] = 152076, + [SMALL_STATE(3627)] = 152089, + [SMALL_STATE(3628)] = 152102, + [SMALL_STATE(3629)] = 152111, + [SMALL_STATE(3630)] = 152124, + [SMALL_STATE(3631)] = 152137, + [SMALL_STATE(3632)] = 152150, + [SMALL_STATE(3633)] = 152163, + [SMALL_STATE(3634)] = 152172, + [SMALL_STATE(3635)] = 152185, + [SMALL_STATE(3636)] = 152198, + [SMALL_STATE(3637)] = 152211, + [SMALL_STATE(3638)] = 152224, + [SMALL_STATE(3639)] = 152237, + [SMALL_STATE(3640)] = 152248, + [SMALL_STATE(3641)] = 152261, + [SMALL_STATE(3642)] = 152274, + [SMALL_STATE(3643)] = 152287, + [SMALL_STATE(3644)] = 152300, + [SMALL_STATE(3645)] = 152313, + [SMALL_STATE(3646)] = 152322, + [SMALL_STATE(3647)] = 152331, + [SMALL_STATE(3648)] = 152344, + [SMALL_STATE(3649)] = 152353, + [SMALL_STATE(3650)] = 152366, + [SMALL_STATE(3651)] = 152379, + [SMALL_STATE(3652)] = 152392, + [SMALL_STATE(3653)] = 152405, + [SMALL_STATE(3654)] = 152414, + [SMALL_STATE(3655)] = 152427, + [SMALL_STATE(3656)] = 152440, + [SMALL_STATE(3657)] = 152453, + [SMALL_STATE(3658)] = 152466, + [SMALL_STATE(3659)] = 152479, + [SMALL_STATE(3660)] = 152492, + [SMALL_STATE(3661)] = 152505, + [SMALL_STATE(3662)] = 152516, + [SMALL_STATE(3663)] = 152529, + [SMALL_STATE(3664)] = 152542, + [SMALL_STATE(3665)] = 152555, + [SMALL_STATE(3666)] = 152568, + [SMALL_STATE(3667)] = 152581, + [SMALL_STATE(3668)] = 152594, + [SMALL_STATE(3669)] = 152603, + [SMALL_STATE(3670)] = 152612, + [SMALL_STATE(3671)] = 152621, + [SMALL_STATE(3672)] = 152630, + [SMALL_STATE(3673)] = 152643, + [SMALL_STATE(3674)] = 152656, + [SMALL_STATE(3675)] = 152669, + [SMALL_STATE(3676)] = 152678, + [SMALL_STATE(3677)] = 152691, + [SMALL_STATE(3678)] = 152704, + [SMALL_STATE(3679)] = 152717, + [SMALL_STATE(3680)] = 152730, + [SMALL_STATE(3681)] = 152743, + [SMALL_STATE(3682)] = 152756, + [SMALL_STATE(3683)] = 152767, + [SMALL_STATE(3684)] = 152780, + [SMALL_STATE(3685)] = 152793, + [SMALL_STATE(3686)] = 152806, + [SMALL_STATE(3687)] = 152819, + [SMALL_STATE(3688)] = 152832, + [SMALL_STATE(3689)] = 152845, + [SMALL_STATE(3690)] = 152858, + [SMALL_STATE(3691)] = 152871, + [SMALL_STATE(3692)] = 152884, + [SMALL_STATE(3693)] = 152897, + [SMALL_STATE(3694)] = 152910, + [SMALL_STATE(3695)] = 152923, + [SMALL_STATE(3696)] = 152932, + [SMALL_STATE(3697)] = 152945, + [SMALL_STATE(3698)] = 152954, + [SMALL_STATE(3699)] = 152967, + [SMALL_STATE(3700)] = 152980, + [SMALL_STATE(3701)] = 152989, + [SMALL_STATE(3702)] = 152998, + [SMALL_STATE(3703)] = 153011, + [SMALL_STATE(3704)] = 153020, + [SMALL_STATE(3705)] = 153033, + [SMALL_STATE(3706)] = 153046, + [SMALL_STATE(3707)] = 153059, + [SMALL_STATE(3708)] = 153072, + [SMALL_STATE(3709)] = 153085, + [SMALL_STATE(3710)] = 153098, + [SMALL_STATE(3711)] = 153107, + [SMALL_STATE(3712)] = 153116, + [SMALL_STATE(3713)] = 153125, + [SMALL_STATE(3714)] = 153138, + [SMALL_STATE(3715)] = 153151, + [SMALL_STATE(3716)] = 153160, + [SMALL_STATE(3717)] = 153169, + [SMALL_STATE(3718)] = 153182, + [SMALL_STATE(3719)] = 153195, + [SMALL_STATE(3720)] = 153208, + [SMALL_STATE(3721)] = 153221, + [SMALL_STATE(3722)] = 153234, + [SMALL_STATE(3723)] = 153247, + [SMALL_STATE(3724)] = 153256, + [SMALL_STATE(3725)] = 153265, + [SMALL_STATE(3726)] = 153274, + [SMALL_STATE(3727)] = 153287, + [SMALL_STATE(3728)] = 153300, + [SMALL_STATE(3729)] = 153311, + [SMALL_STATE(3730)] = 153324, + [SMALL_STATE(3731)] = 153337, + [SMALL_STATE(3732)] = 153350, + [SMALL_STATE(3733)] = 153363, + [SMALL_STATE(3734)] = 153376, + [SMALL_STATE(3735)] = 153389, + [SMALL_STATE(3736)] = 153402, + [SMALL_STATE(3737)] = 153415, + [SMALL_STATE(3738)] = 153428, + [SMALL_STATE(3739)] = 153441, + [SMALL_STATE(3740)] = 153454, + [SMALL_STATE(3741)] = 153467, + [SMALL_STATE(3742)] = 153480, + [SMALL_STATE(3743)] = 153493, + [SMALL_STATE(3744)] = 153502, + [SMALL_STATE(3745)] = 153515, + [SMALL_STATE(3746)] = 153524, + [SMALL_STATE(3747)] = 153537, + [SMALL_STATE(3748)] = 153547, + [SMALL_STATE(3749)] = 153557, + [SMALL_STATE(3750)] = 153565, + [SMALL_STATE(3751)] = 153575, + [SMALL_STATE(3752)] = 153583, + [SMALL_STATE(3753)] = 153593, + [SMALL_STATE(3754)] = 153603, + [SMALL_STATE(3755)] = 153611, + [SMALL_STATE(3756)] = 153619, + [SMALL_STATE(3757)] = 153629, + [SMALL_STATE(3758)] = 153637, + [SMALL_STATE(3759)] = 153645, + [SMALL_STATE(3760)] = 153655, + [SMALL_STATE(3761)] = 153665, + [SMALL_STATE(3762)] = 153673, + [SMALL_STATE(3763)] = 153681, + [SMALL_STATE(3764)] = 153691, + [SMALL_STATE(3765)] = 153701, + [SMALL_STATE(3766)] = 153711, + [SMALL_STATE(3767)] = 153719, + [SMALL_STATE(3768)] = 153729, + [SMALL_STATE(3769)] = 153737, + [SMALL_STATE(3770)] = 153747, + [SMALL_STATE(3771)] = 153755, + [SMALL_STATE(3772)] = 153765, + [SMALL_STATE(3773)] = 153775, + [SMALL_STATE(3774)] = 153785, + [SMALL_STATE(3775)] = 153795, + [SMALL_STATE(3776)] = 153805, + [SMALL_STATE(3777)] = 153813, + [SMALL_STATE(3778)] = 153823, + [SMALL_STATE(3779)] = 153833, + [SMALL_STATE(3780)] = 153843, + [SMALL_STATE(3781)] = 153853, + [SMALL_STATE(3782)] = 153861, + [SMALL_STATE(3783)] = 153869, + [SMALL_STATE(3784)] = 153877, + [SMALL_STATE(3785)] = 153885, + [SMALL_STATE(3786)] = 153895, + [SMALL_STATE(3787)] = 153905, + [SMALL_STATE(3788)] = 153915, + [SMALL_STATE(3789)] = 153925, + [SMALL_STATE(3790)] = 153935, + [SMALL_STATE(3791)] = 153943, + [SMALL_STATE(3792)] = 153953, + [SMALL_STATE(3793)] = 153961, + [SMALL_STATE(3794)] = 153971, + [SMALL_STATE(3795)] = 153981, + [SMALL_STATE(3796)] = 153991, + [SMALL_STATE(3797)] = 154001, + [SMALL_STATE(3798)] = 154011, + [SMALL_STATE(3799)] = 154021, + [SMALL_STATE(3800)] = 154031, + [SMALL_STATE(3801)] = 154041, + [SMALL_STATE(3802)] = 154049, + [SMALL_STATE(3803)] = 154059, + [SMALL_STATE(3804)] = 154069, + [SMALL_STATE(3805)] = 154077, + [SMALL_STATE(3806)] = 154085, + [SMALL_STATE(3807)] = 154095, + [SMALL_STATE(3808)] = 154105, + [SMALL_STATE(3809)] = 154113, + [SMALL_STATE(3810)] = 154123, + [SMALL_STATE(3811)] = 154131, + [SMALL_STATE(3812)] = 154139, + [SMALL_STATE(3813)] = 154149, + [SMALL_STATE(3814)] = 154159, + [SMALL_STATE(3815)] = 154169, + [SMALL_STATE(3816)] = 154179, + [SMALL_STATE(3817)] = 154187, + [SMALL_STATE(3818)] = 154197, + [SMALL_STATE(3819)] = 154205, + [SMALL_STATE(3820)] = 154215, + [SMALL_STATE(3821)] = 154225, + [SMALL_STATE(3822)] = 154235, + [SMALL_STATE(3823)] = 154245, + [SMALL_STATE(3824)] = 154255, + [SMALL_STATE(3825)] = 154265, + [SMALL_STATE(3826)] = 154275, + [SMALL_STATE(3827)] = 154285, + [SMALL_STATE(3828)] = 154295, + [SMALL_STATE(3829)] = 154305, + [SMALL_STATE(3830)] = 154315, + [SMALL_STATE(3831)] = 154325, + [SMALL_STATE(3832)] = 154335, + [SMALL_STATE(3833)] = 154345, + [SMALL_STATE(3834)] = 154355, + [SMALL_STATE(3835)] = 154365, + [SMALL_STATE(3836)] = 154375, + [SMALL_STATE(3837)] = 154385, + [SMALL_STATE(3838)] = 154395, + [SMALL_STATE(3839)] = 154403, + [SMALL_STATE(3840)] = 154413, + [SMALL_STATE(3841)] = 154423, + [SMALL_STATE(3842)] = 154433, + [SMALL_STATE(3843)] = 154443, + [SMALL_STATE(3844)] = 154453, + [SMALL_STATE(3845)] = 154463, + [SMALL_STATE(3846)] = 154473, + [SMALL_STATE(3847)] = 154483, + [SMALL_STATE(3848)] = 154493, + [SMALL_STATE(3849)] = 154503, + [SMALL_STATE(3850)] = 154513, + [SMALL_STATE(3851)] = 154523, + [SMALL_STATE(3852)] = 154533, + [SMALL_STATE(3853)] = 154543, + [SMALL_STATE(3854)] = 154551, + [SMALL_STATE(3855)] = 154561, + [SMALL_STATE(3856)] = 154571, + [SMALL_STATE(3857)] = 154581, + [SMALL_STATE(3858)] = 154591, + [SMALL_STATE(3859)] = 154601, + [SMALL_STATE(3860)] = 154611, + [SMALL_STATE(3861)] = 154621, + [SMALL_STATE(3862)] = 154629, + [SMALL_STATE(3863)] = 154639, + [SMALL_STATE(3864)] = 154649, + [SMALL_STATE(3865)] = 154657, + [SMALL_STATE(3866)] = 154667, + [SMALL_STATE(3867)] = 154675, + [SMALL_STATE(3868)] = 154683, + [SMALL_STATE(3869)] = 154691, + [SMALL_STATE(3870)] = 154699, + [SMALL_STATE(3871)] = 154709, + [SMALL_STATE(3872)] = 154719, + [SMALL_STATE(3873)] = 154729, + [SMALL_STATE(3874)] = 154739, + [SMALL_STATE(3875)] = 154749, + [SMALL_STATE(3876)] = 154759, + [SMALL_STATE(3877)] = 154769, + [SMALL_STATE(3878)] = 154779, + [SMALL_STATE(3879)] = 154789, + [SMALL_STATE(3880)] = 154799, + [SMALL_STATE(3881)] = 154809, + [SMALL_STATE(3882)] = 154817, + [SMALL_STATE(3883)] = 154827, + [SMALL_STATE(3884)] = 154837, + [SMALL_STATE(3885)] = 154847, + [SMALL_STATE(3886)] = 154857, + [SMALL_STATE(3887)] = 154867, + [SMALL_STATE(3888)] = 154875, + [SMALL_STATE(3889)] = 154885, + [SMALL_STATE(3890)] = 154895, + [SMALL_STATE(3891)] = 154905, + [SMALL_STATE(3892)] = 154915, + [SMALL_STATE(3893)] = 154925, + [SMALL_STATE(3894)] = 154933, + [SMALL_STATE(3895)] = 154943, + [SMALL_STATE(3896)] = 154951, + [SMALL_STATE(3897)] = 154959, + [SMALL_STATE(3898)] = 154969, + [SMALL_STATE(3899)] = 154977, + [SMALL_STATE(3900)] = 154987, + [SMALL_STATE(3901)] = 154997, + [SMALL_STATE(3902)] = 155007, + [SMALL_STATE(3903)] = 155015, + [SMALL_STATE(3904)] = 155025, + [SMALL_STATE(3905)] = 155033, + [SMALL_STATE(3906)] = 155043, + [SMALL_STATE(3907)] = 155053, + [SMALL_STATE(3908)] = 155063, + [SMALL_STATE(3909)] = 155073, + [SMALL_STATE(3910)] = 155083, + [SMALL_STATE(3911)] = 155093, + [SMALL_STATE(3912)] = 155101, + [SMALL_STATE(3913)] = 155111, + [SMALL_STATE(3914)] = 155121, + [SMALL_STATE(3915)] = 155129, + [SMALL_STATE(3916)] = 155137, + [SMALL_STATE(3917)] = 155147, + [SMALL_STATE(3918)] = 155155, + [SMALL_STATE(3919)] = 155165, + [SMALL_STATE(3920)] = 155175, + [SMALL_STATE(3921)] = 155185, + [SMALL_STATE(3922)] = 155193, + [SMALL_STATE(3923)] = 155203, + [SMALL_STATE(3924)] = 155213, + [SMALL_STATE(3925)] = 155221, + [SMALL_STATE(3926)] = 155231, + [SMALL_STATE(3927)] = 155241, + [SMALL_STATE(3928)] = 155251, + [SMALL_STATE(3929)] = 155261, + [SMALL_STATE(3930)] = 155271, + [SMALL_STATE(3931)] = 155279, + [SMALL_STATE(3932)] = 155289, + [SMALL_STATE(3933)] = 155299, + [SMALL_STATE(3934)] = 155307, + [SMALL_STATE(3935)] = 155317, + [SMALL_STATE(3936)] = 155327, + [SMALL_STATE(3937)] = 155337, + [SMALL_STATE(3938)] = 155345, + [SMALL_STATE(3939)] = 155355, + [SMALL_STATE(3940)] = 155363, + [SMALL_STATE(3941)] = 155373, + [SMALL_STATE(3942)] = 155383, + [SMALL_STATE(3943)] = 155391, + [SMALL_STATE(3944)] = 155401, + [SMALL_STATE(3945)] = 155411, + [SMALL_STATE(3946)] = 155421, + [SMALL_STATE(3947)] = 155431, + [SMALL_STATE(3948)] = 155441, + [SMALL_STATE(3949)] = 155449, + [SMALL_STATE(3950)] = 155459, + [SMALL_STATE(3951)] = 155469, + [SMALL_STATE(3952)] = 155479, + [SMALL_STATE(3953)] = 155489, + [SMALL_STATE(3954)] = 155499, + [SMALL_STATE(3955)] = 155507, + [SMALL_STATE(3956)] = 155517, + [SMALL_STATE(3957)] = 155525, + [SMALL_STATE(3958)] = 155535, + [SMALL_STATE(3959)] = 155545, + [SMALL_STATE(3960)] = 155555, + [SMALL_STATE(3961)] = 155565, + [SMALL_STATE(3962)] = 155575, + [SMALL_STATE(3963)] = 155583, + [SMALL_STATE(3964)] = 155593, + [SMALL_STATE(3965)] = 155603, + [SMALL_STATE(3966)] = 155613, + [SMALL_STATE(3967)] = 155623, + [SMALL_STATE(3968)] = 155631, + [SMALL_STATE(3969)] = 155641, + [SMALL_STATE(3970)] = 155651, + [SMALL_STATE(3971)] = 155661, + [SMALL_STATE(3972)] = 155669, + [SMALL_STATE(3973)] = 155679, + [SMALL_STATE(3974)] = 155689, + [SMALL_STATE(3975)] = 155699, + [SMALL_STATE(3976)] = 155709, + [SMALL_STATE(3977)] = 155719, + [SMALL_STATE(3978)] = 155729, + [SMALL_STATE(3979)] = 155739, + [SMALL_STATE(3980)] = 155749, + [SMALL_STATE(3981)] = 155759, + [SMALL_STATE(3982)] = 155769, + [SMALL_STATE(3983)] = 155779, + [SMALL_STATE(3984)] = 155789, + [SMALL_STATE(3985)] = 155799, + [SMALL_STATE(3986)] = 155809, + [SMALL_STATE(3987)] = 155819, + [SMALL_STATE(3988)] = 155829, + [SMALL_STATE(3989)] = 155839, + [SMALL_STATE(3990)] = 155849, + [SMALL_STATE(3991)] = 155857, + [SMALL_STATE(3992)] = 155867, + [SMALL_STATE(3993)] = 155877, + [SMALL_STATE(3994)] = 155887, + [SMALL_STATE(3995)] = 155897, + [SMALL_STATE(3996)] = 155907, + [SMALL_STATE(3997)] = 155917, + [SMALL_STATE(3998)] = 155925, + [SMALL_STATE(3999)] = 155935, + [SMALL_STATE(4000)] = 155945, + [SMALL_STATE(4001)] = 155955, + [SMALL_STATE(4002)] = 155965, + [SMALL_STATE(4003)] = 155975, + [SMALL_STATE(4004)] = 155982, + [SMALL_STATE(4005)] = 155989, + [SMALL_STATE(4006)] = 155996, + [SMALL_STATE(4007)] = 156003, + [SMALL_STATE(4008)] = 156010, + [SMALL_STATE(4009)] = 156017, + [SMALL_STATE(4010)] = 156024, + [SMALL_STATE(4011)] = 156031, + [SMALL_STATE(4012)] = 156038, + [SMALL_STATE(4013)] = 156045, + [SMALL_STATE(4014)] = 156052, + [SMALL_STATE(4015)] = 156059, + [SMALL_STATE(4016)] = 156066, + [SMALL_STATE(4017)] = 156073, + [SMALL_STATE(4018)] = 156080, + [SMALL_STATE(4019)] = 156087, + [SMALL_STATE(4020)] = 156094, + [SMALL_STATE(4021)] = 156101, + [SMALL_STATE(4022)] = 156108, + [SMALL_STATE(4023)] = 156115, + [SMALL_STATE(4024)] = 156122, + [SMALL_STATE(4025)] = 156129, + [SMALL_STATE(4026)] = 156136, + [SMALL_STATE(4027)] = 156143, + [SMALL_STATE(4028)] = 156150, + [SMALL_STATE(4029)] = 156157, + [SMALL_STATE(4030)] = 156164, + [SMALL_STATE(4031)] = 156171, + [SMALL_STATE(4032)] = 156178, + [SMALL_STATE(4033)] = 156185, + [SMALL_STATE(4034)] = 156192, + [SMALL_STATE(4035)] = 156199, + [SMALL_STATE(4036)] = 156206, + [SMALL_STATE(4037)] = 156213, + [SMALL_STATE(4038)] = 156220, + [SMALL_STATE(4039)] = 156227, + [SMALL_STATE(4040)] = 156234, + [SMALL_STATE(4041)] = 156241, + [SMALL_STATE(4042)] = 156248, + [SMALL_STATE(4043)] = 156255, + [SMALL_STATE(4044)] = 156262, + [SMALL_STATE(4045)] = 156269, + [SMALL_STATE(4046)] = 156276, + [SMALL_STATE(4047)] = 156283, + [SMALL_STATE(4048)] = 156290, + [SMALL_STATE(4049)] = 156297, + [SMALL_STATE(4050)] = 156304, + [SMALL_STATE(4051)] = 156311, + [SMALL_STATE(4052)] = 156318, + [SMALL_STATE(4053)] = 156325, + [SMALL_STATE(4054)] = 156332, + [SMALL_STATE(4055)] = 156339, + [SMALL_STATE(4056)] = 156346, + [SMALL_STATE(4057)] = 156353, + [SMALL_STATE(4058)] = 156360, + [SMALL_STATE(4059)] = 156367, + [SMALL_STATE(4060)] = 156374, + [SMALL_STATE(4061)] = 156381, + [SMALL_STATE(4062)] = 156388, + [SMALL_STATE(4063)] = 156395, + [SMALL_STATE(4064)] = 156402, + [SMALL_STATE(4065)] = 156409, + [SMALL_STATE(4066)] = 156416, + [SMALL_STATE(4067)] = 156423, + [SMALL_STATE(4068)] = 156430, + [SMALL_STATE(4069)] = 156437, + [SMALL_STATE(4070)] = 156444, + [SMALL_STATE(4071)] = 156451, + [SMALL_STATE(4072)] = 156458, + [SMALL_STATE(4073)] = 156465, + [SMALL_STATE(4074)] = 156472, + [SMALL_STATE(4075)] = 156479, + [SMALL_STATE(4076)] = 156486, + [SMALL_STATE(4077)] = 156493, + [SMALL_STATE(4078)] = 156500, + [SMALL_STATE(4079)] = 156507, + [SMALL_STATE(4080)] = 156514, + [SMALL_STATE(4081)] = 156521, + [SMALL_STATE(4082)] = 156528, + [SMALL_STATE(4083)] = 156535, + [SMALL_STATE(4084)] = 156542, + [SMALL_STATE(4085)] = 156549, + [SMALL_STATE(4086)] = 156556, + [SMALL_STATE(4087)] = 156563, + [SMALL_STATE(4088)] = 156570, + [SMALL_STATE(4089)] = 156577, + [SMALL_STATE(4090)] = 156584, + [SMALL_STATE(4091)] = 156591, + [SMALL_STATE(4092)] = 156598, + [SMALL_STATE(4093)] = 156605, + [SMALL_STATE(4094)] = 156612, + [SMALL_STATE(4095)] = 156619, + [SMALL_STATE(4096)] = 156626, + [SMALL_STATE(4097)] = 156633, + [SMALL_STATE(4098)] = 156640, + [SMALL_STATE(4099)] = 156647, + [SMALL_STATE(4100)] = 156654, + [SMALL_STATE(4101)] = 156661, + [SMALL_STATE(4102)] = 156668, + [SMALL_STATE(4103)] = 156675, + [SMALL_STATE(4104)] = 156682, + [SMALL_STATE(4105)] = 156689, + [SMALL_STATE(4106)] = 156696, + [SMALL_STATE(4107)] = 156703, + [SMALL_STATE(4108)] = 156710, + [SMALL_STATE(4109)] = 156717, + [SMALL_STATE(4110)] = 156724, + [SMALL_STATE(4111)] = 156731, + [SMALL_STATE(4112)] = 156738, + [SMALL_STATE(4113)] = 156745, + [SMALL_STATE(4114)] = 156752, + [SMALL_STATE(4115)] = 156759, + [SMALL_STATE(4116)] = 156766, + [SMALL_STATE(4117)] = 156773, + [SMALL_STATE(4118)] = 156780, + [SMALL_STATE(4119)] = 156787, + [SMALL_STATE(4120)] = 156794, + [SMALL_STATE(4121)] = 156801, + [SMALL_STATE(4122)] = 156808, + [SMALL_STATE(4123)] = 156815, + [SMALL_STATE(4124)] = 156822, + [SMALL_STATE(4125)] = 156829, + [SMALL_STATE(4126)] = 156836, + [SMALL_STATE(4127)] = 156843, + [SMALL_STATE(4128)] = 156850, + [SMALL_STATE(4129)] = 156857, + [SMALL_STATE(4130)] = 156864, + [SMALL_STATE(4131)] = 156871, + [SMALL_STATE(4132)] = 156878, + [SMALL_STATE(4133)] = 156885, + [SMALL_STATE(4134)] = 156892, + [SMALL_STATE(4135)] = 156899, + [SMALL_STATE(4136)] = 156906, + [SMALL_STATE(4137)] = 156913, + [SMALL_STATE(4138)] = 156920, + [SMALL_STATE(4139)] = 156927, + [SMALL_STATE(4140)] = 156934, + [SMALL_STATE(4141)] = 156941, + [SMALL_STATE(4142)] = 156948, + [SMALL_STATE(4143)] = 156955, + [SMALL_STATE(4144)] = 156962, + [SMALL_STATE(4145)] = 156969, + [SMALL_STATE(4146)] = 156976, + [SMALL_STATE(4147)] = 156983, + [SMALL_STATE(4148)] = 156990, + [SMALL_STATE(4149)] = 156997, + [SMALL_STATE(4150)] = 157004, + [SMALL_STATE(4151)] = 157011, + [SMALL_STATE(4152)] = 157018, + [SMALL_STATE(4153)] = 157025, + [SMALL_STATE(4154)] = 157032, + [SMALL_STATE(4155)] = 157039, + [SMALL_STATE(4156)] = 157046, + [SMALL_STATE(4157)] = 157053, + [SMALL_STATE(4158)] = 157060, + [SMALL_STATE(4159)] = 157067, + [SMALL_STATE(4160)] = 157074, + [SMALL_STATE(4161)] = 157081, + [SMALL_STATE(4162)] = 157088, + [SMALL_STATE(4163)] = 157095, + [SMALL_STATE(4164)] = 157102, + [SMALL_STATE(4165)] = 157109, + [SMALL_STATE(4166)] = 157116, + [SMALL_STATE(4167)] = 157123, + [SMALL_STATE(4168)] = 157130, + [SMALL_STATE(4169)] = 157137, + [SMALL_STATE(4170)] = 157144, + [SMALL_STATE(4171)] = 157151, + [SMALL_STATE(4172)] = 157158, + [SMALL_STATE(4173)] = 157165, + [SMALL_STATE(4174)] = 157172, + [SMALL_STATE(4175)] = 157179, + [SMALL_STATE(4176)] = 157186, + [SMALL_STATE(4177)] = 157193, + [SMALL_STATE(4178)] = 157200, + [SMALL_STATE(4179)] = 157207, + [SMALL_STATE(4180)] = 157214, + [SMALL_STATE(4181)] = 157221, + [SMALL_STATE(4182)] = 157228, + [SMALL_STATE(4183)] = 157235, + [SMALL_STATE(4184)] = 157242, + [SMALL_STATE(4185)] = 157249, + [SMALL_STATE(4186)] = 157256, + [SMALL_STATE(4187)] = 157263, + [SMALL_STATE(4188)] = 157270, + [SMALL_STATE(4189)] = 157277, + [SMALL_STATE(4190)] = 157284, + [SMALL_STATE(4191)] = 157291, + [SMALL_STATE(4192)] = 157298, + [SMALL_STATE(4193)] = 157305, + [SMALL_STATE(4194)] = 157312, + [SMALL_STATE(4195)] = 157319, + [SMALL_STATE(4196)] = 157326, + [SMALL_STATE(4197)] = 157333, + [SMALL_STATE(4198)] = 157340, + [SMALL_STATE(4199)] = 157347, + [SMALL_STATE(4200)] = 157354, + [SMALL_STATE(4201)] = 157361, + [SMALL_STATE(4202)] = 157368, + [SMALL_STATE(4203)] = 157375, + [SMALL_STATE(4204)] = 157382, + [SMALL_STATE(4205)] = 157389, + [SMALL_STATE(4206)] = 157396, + [SMALL_STATE(4207)] = 157403, + [SMALL_STATE(4208)] = 157410, + [SMALL_STATE(4209)] = 157417, + [SMALL_STATE(4210)] = 157424, + [SMALL_STATE(4211)] = 157431, + [SMALL_STATE(4212)] = 157438, + [SMALL_STATE(4213)] = 157445, + [SMALL_STATE(4214)] = 157452, + [SMALL_STATE(4215)] = 157459, + [SMALL_STATE(4216)] = 157466, + [SMALL_STATE(4217)] = 157473, + [SMALL_STATE(4218)] = 157480, + [SMALL_STATE(4219)] = 157487, + [SMALL_STATE(4220)] = 157494, + [SMALL_STATE(4221)] = 157501, + [SMALL_STATE(4222)] = 157508, + [SMALL_STATE(4223)] = 157515, + [SMALL_STATE(4224)] = 157522, + [SMALL_STATE(4225)] = 157529, + [SMALL_STATE(4226)] = 157536, + [SMALL_STATE(4227)] = 157543, + [SMALL_STATE(4228)] = 157550, + [SMALL_STATE(4229)] = 157557, + [SMALL_STATE(4230)] = 157564, + [SMALL_STATE(4231)] = 157571, + [SMALL_STATE(4232)] = 157578, + [SMALL_STATE(4233)] = 157585, + [SMALL_STATE(4234)] = 157592, + [SMALL_STATE(4235)] = 157599, + [SMALL_STATE(4236)] = 157606, + [SMALL_STATE(4237)] = 157613, + [SMALL_STATE(4238)] = 157620, + [SMALL_STATE(4239)] = 157627, + [SMALL_STATE(4240)] = 157634, + [SMALL_STATE(4241)] = 157641, + [SMALL_STATE(4242)] = 157648, + [SMALL_STATE(4243)] = 157655, + [SMALL_STATE(4244)] = 157662, + [SMALL_STATE(4245)] = 157669, + [SMALL_STATE(4246)] = 157676, + [SMALL_STATE(4247)] = 157683, + [SMALL_STATE(4248)] = 157690, + [SMALL_STATE(4249)] = 157697, + [SMALL_STATE(4250)] = 157704, + [SMALL_STATE(4251)] = 157711, + [SMALL_STATE(4252)] = 157718, + [SMALL_STATE(4253)] = 157725, + [SMALL_STATE(4254)] = 157732, + [SMALL_STATE(4255)] = 157739, + [SMALL_STATE(4256)] = 157746, + [SMALL_STATE(4257)] = 157753, + [SMALL_STATE(4258)] = 157760, + [SMALL_STATE(4259)] = 157767, + [SMALL_STATE(4260)] = 157774, + [SMALL_STATE(4261)] = 157781, + [SMALL_STATE(4262)] = 157788, + [SMALL_STATE(4263)] = 157795, + [SMALL_STATE(4264)] = 157802, + [SMALL_STATE(4265)] = 157809, + [SMALL_STATE(4266)] = 157816, + [SMALL_STATE(4267)] = 157823, + [SMALL_STATE(4268)] = 157830, + [SMALL_STATE(4269)] = 157837, + [SMALL_STATE(4270)] = 157844, + [SMALL_STATE(4271)] = 157851, + [SMALL_STATE(4272)] = 157858, + [SMALL_STATE(4273)] = 157865, + [SMALL_STATE(4274)] = 157872, + [SMALL_STATE(4275)] = 157879, + [SMALL_STATE(4276)] = 157886, + [SMALL_STATE(4277)] = 157893, + [SMALL_STATE(4278)] = 157900, + [SMALL_STATE(4279)] = 157907, + [SMALL_STATE(4280)] = 157914, + [SMALL_STATE(4281)] = 157921, + [SMALL_STATE(4282)] = 157928, + [SMALL_STATE(4283)] = 157935, + [SMALL_STATE(4284)] = 157942, + [SMALL_STATE(4285)] = 157949, + [SMALL_STATE(4286)] = 157956, + [SMALL_STATE(4287)] = 157963, + [SMALL_STATE(4288)] = 157970, + [SMALL_STATE(4289)] = 157977, + [SMALL_STATE(4290)] = 157984, + [SMALL_STATE(4291)] = 157991, + [SMALL_STATE(4292)] = 157998, + [SMALL_STATE(4293)] = 158005, + [SMALL_STATE(4294)] = 158012, + [SMALL_STATE(4295)] = 158019, + [SMALL_STATE(4296)] = 158026, + [SMALL_STATE(4297)] = 158033, + [SMALL_STATE(4298)] = 158040, + [SMALL_STATE(4299)] = 158047, + [SMALL_STATE(4300)] = 158054, }; static TSParseActionEntry ts_parse_actions[] = { @@ -184041,3221 +211109,3516 @@ static 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(997), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(997), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(149), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(842), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(138), [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(700), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(772), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(310), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1164), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2575), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2498), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2392), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(322), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3244), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3246), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3052), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(130), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(374), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3249), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(41), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3252), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3253), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3057), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3058), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3257), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(170), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(207), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(570), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(79), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(162), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(789), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3728), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2288), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(518), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2413), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(210), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(455), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(454), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2903), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2905), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2563), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1811), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1811), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3072), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(999), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3699), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(174), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(701), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3694), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3689), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 80), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 80), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 80), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 80), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(766), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(831), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(524), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1378), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2924), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2926), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2764), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(518), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3780), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3786), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3592), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(132), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(516), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3814), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(29), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3815), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3824), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3587), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3586), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3838), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(197), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(215), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(652), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(68), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(153), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(964), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4177), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2627), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(572), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2790), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(219), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(469), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(461), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3483), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3485), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3008), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1608), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1608), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3548), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(839), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4098), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(143), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(770), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4097), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4096), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 78), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 78), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 78), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 78), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), - [913] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(403), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 131), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 131), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 131), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 131), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 131), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 131), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 104), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 104), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 104), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 104), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 128), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 128), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 128), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 128), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 97), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 97), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 97), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 97), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 96), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 96), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 96), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 96), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 27), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 27), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 158), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 158), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 158), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 158), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 137), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 137), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 137), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 137), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 50), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 50), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 138), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 138), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 138), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 138), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 161), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 161), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 161), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 161), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 110), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 110), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 110), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 110), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 64), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 64), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 59), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 59), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 75), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 75), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 26), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 26), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 108), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 108), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(33), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2173), - [1657] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2032), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1663] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3468), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 48), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 48), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 3), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 3), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 2), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 2), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 4), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 4), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2032), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3468), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(267), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, .production_id = 48), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, .production_id = 48), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(946), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(946), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 160), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 160), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 188), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 188), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(253), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 172), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 172), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 170), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 170), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 171), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 171), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 35), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 35), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 133), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 133), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 45), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 45), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 158), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 158), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 159), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 159), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 181), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 181), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 103), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 103), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 62), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 62), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 92), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 92), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 97), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 97), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 36), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 36), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 87), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 87), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 143), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 143), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 130), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 130), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 85), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 85), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 140), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 140), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 86), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 86), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 163), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 163), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 122), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 122), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 46), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 46), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 169), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 169), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 69), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 69), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 104), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 104), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 162), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 162), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 71), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 71), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 134), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 134), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 72), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 72), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 46), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 46), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 136), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 136), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 118), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 118), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 148), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 148), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 147), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 147), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 145), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 145), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 168), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 168), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 165), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 165), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 144), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 144), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 166), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 166), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 167), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 167), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(946), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1020), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 74), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 24), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 24), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 58), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(260), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 132), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 132), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(840), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 48), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_identifier, 1), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [2939] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(3669), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 48), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(910), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rest_identifier, 2), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(422), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [3000] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [3085] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(266), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), - [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__rest_identifier, 2), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [3304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1072), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 28), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 28), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(1072), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 63), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(72), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 25), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 94), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), - [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(273), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 9), - [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(265), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 60), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 61), - [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(72), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 60), - [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 67), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 60), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 99), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 101), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 102), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 135), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 139), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 139), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(70), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 129), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 129), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 112), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 112), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 111), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 111), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 106), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 106), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 105), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 105), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 100), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 100), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 102), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 101), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 100), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 100), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(70), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 99), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 95), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 95), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 67), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 22), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 60), - [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), REDUCE(sym_assignment_expression, 3, .production_id = 65), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 65), - [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), REDUCE(sym_assignment_expression, 3, .production_id = 66), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 66), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 61), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 53), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 53), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 25), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 13), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 13), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(74), - [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(949), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(74), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 135), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 80), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 60), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 66), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 65), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(69), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 60), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(69), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(949), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 49), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 49), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(75), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(71), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(71), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(263), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(264), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 77), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 63), SHIFT(75), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(966), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), - [3956] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(966), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(439), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 11), SHIFT(440), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2267), - [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2170), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(206), - [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1987), - [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3632), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3005), - [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3008), - [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2199), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3072), - [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1986), - [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2147), - [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2058), - [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1993), - [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1963), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 11), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), - [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 58), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 131), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 131), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 142), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 142), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 197), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 197), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 193), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 193), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 192), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 192), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 183), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 183), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 182), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 182), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 78), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 78), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 104), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 104), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 116), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 116), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 158), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 158), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 164), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 164), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), - [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT_REPEAT(3072), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 123), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 153), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 73), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 123), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 73), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 153), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_type_parameter, 1, .production_id = 14), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(909), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 123), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 123), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 153), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 73), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 73), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 153), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(3669), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 5), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 93), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 103), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 125), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 150), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 130), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 173), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 174), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 185), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 186), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 194), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 195), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 199), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 120), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 149), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 68), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1219), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2579), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(252), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3605), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(268), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), - [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 184), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 198), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 187), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 88), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 187), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 81), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 47), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 184), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 38), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 124), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 176), - [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 175), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 151), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 88), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), - [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 89), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 176), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 152), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 175), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 124), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 152), - [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 151), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), - [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 81), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 14), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2892), - [5490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2892), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 48), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 48), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2596), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 1), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(191), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 14), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(153), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3013), - [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3013), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(181), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 114), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 126), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(989), - [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 154), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 155), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 156), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 130), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 150), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 157), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 103), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(2146), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 82), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), SHIFT_REPEAT(2066), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 21), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 84), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 83), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 177), - [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 178), - [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 179), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 173), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 180), - [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 174), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 82), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 81), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 189), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 190), - [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 114), - [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 191), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 185), - [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2988), - [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 127), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 196), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3304), - [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), SHIFT_REPEAT(684), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2980), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 73), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1937), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), - [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(870), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 41), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 14), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 141), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_tuple_type_member, 2), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 70), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 41), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 91), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 91), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, .production_id = 119), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 121), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 114), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 79), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 113), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 79), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_identifier, 2), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 79), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6522] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 79), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_identifier, 1), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(285), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(439), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 56), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 56), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 56), + [752] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 56), REDUCE(sym_nested_type_identifier, 3, .production_id = 92), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 56), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 6), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 6), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 140), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 140), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 140), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 140), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 139), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 139), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 139), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 139), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 131), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 131), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 131), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 131), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 131), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 131), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 131), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 160), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 160), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 160), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 160), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 128), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 128), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 128), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 128), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 50), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 50), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 102), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 102), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 102), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 102), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 110), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 110), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 110), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 110), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 7), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 7), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 94), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 94), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 94), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 94), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 163), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 163), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 163), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 163), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 27), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 27), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 95), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 95), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 95), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 95), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 5), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 5), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 73), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 73), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 58), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 58), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 57), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 57), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 16), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 16), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 108), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 108), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 26), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 26), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 25), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 25), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(148), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(37), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1336] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(1006), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 8), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1006), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2489), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(123), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1460] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(963), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 92), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 92), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 9), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 9), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 48), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 48), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 4), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 4), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 2), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 2), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_body, 3), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_body, 3), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(225), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(963), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(125), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2997), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(123), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3008), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(122), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(121), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(2909), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, .production_id = 48), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, .production_id = 48), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1270), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(257), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(1270), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 92), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 14), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 14), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 162), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 162), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 190), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 190), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 172), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 172), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 173), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 173), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 174), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 174), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 14), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 14), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 35), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 35), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 46), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 46), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 101), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 101), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 109), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 94), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 94), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 95), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 95), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 7), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 7), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 69), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 69), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 183), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 183), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 163), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 163), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 160), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 160), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 117), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 118), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 118), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 67), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 67), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 70), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 70), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 165), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 165), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 164), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 164), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 122), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 122), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 46), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 46), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 161), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 161), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 131), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 45), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 45), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 90), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 90), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 14), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 14), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 148), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 148), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 130), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 130), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 145), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 145), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 135), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 135), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 61), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 61), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 136), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 136), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 50), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 85), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 85), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 83), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 83), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 84), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 84), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 36), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 36), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 128), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 138), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 138), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 168), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 168), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 150), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 150), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 167), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 167), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 170), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 170), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 149), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 149), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 169), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 169), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 146), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 146), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 147), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 147), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(148), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(158), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(149), + [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(994), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1022), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 6), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(258), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1006), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2593] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 8), SHIFT(1006), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 8), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1230), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 48), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 56), REDUCE(sym_nested_type_identifier, 3, .production_id = 92), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_identifier, 1), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [2644] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(4277), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 48), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1242), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rest_identifier, 2), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(414), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2677] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(298), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [2697] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 23), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 23), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 72), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 72), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(158), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(2997), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 115), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(148), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3008), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(223), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1299), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 134), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 134), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(149), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(2909), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__rest_identifier, 2), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 56), REDUCE(sym_nested_type_identifier, 3, .production_id = 92), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 8), REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 11), + [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(266), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(264), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(991), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(991), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 28), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 28), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), + [3616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 92), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(212), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(213), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 9), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 9), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), + [3668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym__tuple_type_body, 2), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1), SHIFT(148), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [3686] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), SHIFT(1006), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 112), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 112), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 111), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 111), + [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 25), REDUCE(sym_new_expression, 4, .production_id = 103), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 25), REDUCE(sym_new_expression, 4, .production_id = 103), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 103), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 141), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 141), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 53), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 53), + [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 5), REDUCE(sym_new_expression, 3, .production_id = 54), + [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 5), REDUCE(sym_new_expression, 3, .production_id = 54), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 54), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 16), REDUCE(sym_new_expression, 3, .production_id = 55), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 16), REDUCE(sym_new_expression, 3, .production_id = 55), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 55), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 26), REDUCE(sym_new_expression, 4, .production_id = 104), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 26), REDUCE(sym_new_expression, 4, .production_id = 104), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 104), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 24), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 24), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 57), REDUCE(sym_new_expression, 4, .production_id = 105), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 57), REDUCE(sym_new_expression, 4, .production_id = 105), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 105), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 58), REDUCE(sym_new_expression, 4, .production_id = 106), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 58), REDUCE(sym_new_expression, 4, .production_id = 106), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 106), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 60), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 60), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(326), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 13), SHIFT(327), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 13), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 13), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 108), REDUCE(sym_new_expression, 5, .production_id = 133), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 108), REDUCE(sym_new_expression, 5, .production_id = 133), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 73), REDUCE(sym_new_expression, 5, .production_id = 132), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 73), REDUCE(sym_new_expression, 5, .production_id = 132), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 132), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 62), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 62), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 65), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 65), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 129), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 129), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 98), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 98), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 100), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 100), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 99), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 99), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 98), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 98), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 97), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 97), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 96), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 96), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 14), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 14), + [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 13), SHIFT(443), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 13), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(442), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), + [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 93), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 93), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1161), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1161), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 49), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 49), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1266), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(1266), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 137), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 21), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 59), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 63), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 64), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 59), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2591), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2495), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(217), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2214), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4128), + [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3337), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3335), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2523), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3548), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2193), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2470), + [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2368), + [4187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2262), + [4190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2135), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 55), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 54), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 103), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 104), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 105), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 106), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 137), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 132), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 59), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 64), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 63), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 59), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 21), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 64), REDUCE(sym_assignment_expression, 3, .production_id = 64), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 64), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 59), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 63), REDUCE(sym_assignment_expression, 3, .production_id = 63), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 63), + [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 74), REDUCE(sym_assignment_expression, 3, .production_id = 59), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 74), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 74), REDUCE(sym_assignment_expression, 3, .production_id = 21), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 78), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 75), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 56), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 56), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 16), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 16), + [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 184), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 184), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 144), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 144), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 131), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 131), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 76), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 76), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 199), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 199), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 102), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 102), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 195), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 195), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 166), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 166), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 160), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 160), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 116), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 116), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 185), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 185), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 194), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 194), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3548), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 6), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 123), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 155), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 71), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), REDUCE(sym_type_parameter, 1, .production_id = 15), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 15), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(1268), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 6), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 155), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 123), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 71), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 71), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 71), + [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 123), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 155), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 6), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 123), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 6), + [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 155), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), SHIFT(4277), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 5), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [5253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 91), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 151), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 101), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 125), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 152), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 130), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 175), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 176), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 187), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 188), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 196), + [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 197), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 201), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 120), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 66), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1453), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4211), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(231), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3020), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(259), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 47), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 154), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 153), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 88), + [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 79), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 154), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 153), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 79), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 177), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 87), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), + [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 86), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 178), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 186), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 200), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 177), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 124), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 86), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 178), + [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 124), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 38), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 189), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 186), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 189), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 1), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(178), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(3005), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 15), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 15), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 48), + [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 48), + [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), + [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3499), + [6260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3499), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [6269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3507), + [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3507), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(154), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(198), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1261), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [6336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3326), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 71), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 114), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3348), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), + [6370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1304), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(2473), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 6), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 198), + [6442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3858), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 159), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 152), + [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 130), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 158), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 157), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 156), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 179), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 180), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [6505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1185), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 175), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 181), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 182), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1135), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 176), + [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 79), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), SHIFT_REPEAT(772), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_type_body_repeat1, 2), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 126), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 101), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 127), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 80), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 80), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 187), + [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 81), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 82), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 193), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 114), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [6624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 20), SHIFT_REPEAT(2384), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 20), + [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2121), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 191), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 192), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 143), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 41), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_tuple_type_member, 2), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 15), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 89), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_type_arguments, 5), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_type_arguments, 3), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 89), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 113), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 114), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_type_arguments, 4), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 41), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 77), + [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 121), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, .production_id = 119), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 68), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 77), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6898] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 77), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 77), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_identifier, 1), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_identifier, 2), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), }; #ifdef __cplusplus